From 769762dfa70decaeef3bff2aa6d8fe987cf3d37c Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Sat, 5 Apr 2025 22:42:13 -0400 Subject: [PATCH 01/20] Overhaul refactor. Still things in progress --- .env | 17 +- .gitignore | 38 +- .vscode/settings.json | 4 - Makefile | 56 +- README.md | 28 +- api/Cargo.lock | 2023 +- api/Cargo.toml | 12 +- api/diesel.toml | 7 - api/migrations/000000_airports/down.sql | 1 - api/migrations/000000_airports/up.sql | 13 - api/migrations/000001_metars/down.sql | 1 - api/migrations/000001_metars/up.sql | 7 - .../000002_airport_metar_cache/down.sql | 1 - .../000002_airport_metar_cache/up.sql | 5 - api/migrations/000003_users/down.sql | 1 - api/migrations/000003_users/up.sql | 12 - api/migrations/10232024_initial.sql | 35 + api/src/airports/delete.rs | 233 + api/src/airports/model.rs | 432 - api/src/airports/model/airport.rs | 288 + api/src/airports/model/airport_category.rs | 54 + api/src/airports/model/frequency.rs | 15 + api/src/airports/model/mod.rs | 9 + api/src/airports/model/runway.rs | 21 + api/src/airports/routes.rs | 213 +- api/src/auth/mod.rs | 52 +- api/src/auth/model.rs | 51 +- api/src/auth/routes.rs | 53 +- api/src/auth/session.rs | 49 +- api/src/db/mod.rs | 192 +- api/src/db/schema.rs | 41 - api/src/error.rs | 161 +- api/src/main.rs | 72 +- api/src/metars/model.rs | 1353 +- api/src/metars/routes.rs | 39 +- api/src/scheduler.rs | 136 +- api/src/users/model.rs | 99 +- bruno/Airports/Delete Airport.bru | 11 + bruno/Airports/Delete All Airports.bru | 11 + bruno/Airports/Get Airport.bru | 11 + bruno/Airports/Get All Airports.bru | 11 + bruno/Airports/Insert Airport.bru | 28 + bruno/Metars/Find Metars.bru | 15 + bruno/Users/Create API Key.bru | 23 + bruno/Users/Login.bru | 18 + bruno/Users/Logout.bru | 18 + bruno/Users/Register.bru | 20 + bruno/bruno.json | 9 + bruno/collection.bru | 3 + data/airports_2024-09-04.json | 104106 +++++++++++++++ docker-compose.yml | 28 +- {ui => ui-old}/.eslintrc.json | 0 {ui => ui-old}/.nvmrc | 0 ui-old/.prettierrc.json | 8 + ui-old/Dockerfile | 39 + {ui => ui-old}/Makefile | 0 {ui => ui-old}/next-env.d.ts | 0 {ui => ui-old}/next.config.js | 0 ui-old/package-lock.json | 5445 + ui-old/package.json | 47 + {ui => ui-old}/postcss.config.js | 0 {ui => ui-old}/public/favicon.ico | Bin {ui => ui-old}/public/icons/ifr.svg | 0 {ui => ui-old}/public/icons/lifr.svg | 0 {ui => ui-old}/public/icons/mvfr.svg | 0 {ui => ui-old}/public/icons/nometar.svg | 0 {ui => ui-old}/public/icons/unkn.svg | 0 .../VFR.svg => ui-old/public/icons/vfr.svg | 0 {ui => ui-old}/public/layers-2x.png | Bin {ui => ui-old}/public/layers.png | Bin {ui => ui-old}/public/marker-icon-2x.png | Bin {ui => ui-old}/public/marker-icon.png | Bin {ui => ui-old}/public/marker-shadow.png | Bin {ui => ui-old}/public/vercel.svg | 0 {ui => ui-old}/src/api/airport.ts | 0 {ui => ui-old}/src/api/airport.types.ts | 0 {ui => ui-old}/src/api/auth.ts | 0 {ui => ui-old}/src/api/auth.types.ts | 0 {ui => ui-old}/src/api/index.ts | 0 {ui => ui-old}/src/api/metar.ts | 0 {ui => ui-old}/src/api/metar.types.ts | 0 {ui => ui-old}/src/api/users.ts | 0 {ui => ui-old}/src/app/admin/page.tsx | 0 .../src/app/airport/[icao]/page.tsx | 0 {ui => ui-old}/src/app/layout.tsx | 6 +- {ui => ui-old}/src/app/page.tsx | 0 {ui => ui-old}/src/app/profile/page.tsx | 0 .../src/app/profile/profile.module.css | 0 .../src/app/recoil-root-wrapper.tsx | 0 .../src/components/Admin/AirportForm.tsx | 0 .../components/Admin/AirportTablePanel.tsx | 0 .../src/components/Header/HeaderModal.tsx | 0 .../src/components/Header/UserMenu.tsx | 0 ui-old/src/components/Header/index.tsx | 111 + .../src/components/Header/styles.css | 0 {ui => ui-old}/src/components/Loader.tsx | 0 .../src/components/Metars/MapTiles.tsx | 0 .../src/components/Metars/MetarMap.tsx | 0 .../src/components/Metars/MetarModal.tsx | 0 .../src/components/Metars/SkyConditions.tsx | 0 .../src/components/Metars/index.tsx | 0 .../src/components/Metars/metars.css | 0 .../src/components/Sidebar/Sidebar.css | 0 .../src/components/Sidebar/index.tsx | 0 {ui => ui-old}/src/js/theme.ts | 0 {ui => ui-old}/src/state/auth.ts | 0 {ui => ui-old}/src/state/map.ts | 0 {ui => ui-old}/src/state/user.ts | 0 {ui => ui-old}/styles/globals.css | 0 ui-old/styles/leaflet.css | 623 + ui-old/tsconfig.json | 44 + ui/.dockerignore | 3 + ui/Dockerfile | 53 +- ui/eslint.config.js | 28 + ui/index.html | 15 + ui/package-lock.json | 10319 +- ui/package.json | 91 +- ui/postcss.config.cjs | 16 + ui/public/vite.svg | 1 + ui/src/App.css | 27 + ui/src/App.tsx | 48 + ui/src/assets/react.svg | 1 + ui/src/components/Header/Header.module.css | 33 + ui/src/components/Header/index.tsx | 138 +- ui/src/index.css | 0 ui/src/main.tsx | 25 + ui/src/vite-env.d.ts | 1 + ui/styles/global.css | 44 + ui/styles/leaflet.css | 1246 +- ui/tsconfig.app.json | 39 + ui/tsconfig.json | 47 +- ui/tsconfig.node.json | 24 + ui/vite.config.mjs | 16 + 133 files changed, 119890 insertions(+), 8784 deletions(-) delete mode 100644 .vscode/settings.json delete mode 100644 api/diesel.toml delete mode 100644 api/migrations/000000_airports/down.sql delete mode 100644 api/migrations/000000_airports/up.sql delete mode 100644 api/migrations/000001_metars/down.sql delete mode 100644 api/migrations/000001_metars/up.sql delete mode 100644 api/migrations/000002_airport_metar_cache/down.sql delete mode 100644 api/migrations/000002_airport_metar_cache/up.sql delete mode 100644 api/migrations/000003_users/down.sql delete mode 100644 api/migrations/000003_users/up.sql create mode 100644 api/migrations/10232024_initial.sql create mode 100644 api/src/airports/delete.rs delete mode 100644 api/src/airports/model.rs create mode 100644 api/src/airports/model/airport.rs create mode 100644 api/src/airports/model/airport_category.rs create mode 100644 api/src/airports/model/frequency.rs create mode 100644 api/src/airports/model/mod.rs create mode 100644 api/src/airports/model/runway.rs delete mode 100644 api/src/db/schema.rs create mode 100644 bruno/Airports/Delete Airport.bru create mode 100644 bruno/Airports/Delete All Airports.bru create mode 100644 bruno/Airports/Get Airport.bru create mode 100644 bruno/Airports/Get All Airports.bru create mode 100644 bruno/Airports/Insert Airport.bru create mode 100644 bruno/Metars/Find Metars.bru create mode 100644 bruno/Users/Create API Key.bru create mode 100644 bruno/Users/Login.bru create mode 100644 bruno/Users/Logout.bru create mode 100644 bruno/Users/Register.bru create mode 100644 bruno/bruno.json create mode 100644 bruno/collection.bru create mode 100644 data/airports_2024-09-04.json rename {ui => ui-old}/.eslintrc.json (100%) rename {ui => ui-old}/.nvmrc (100%) create mode 100644 ui-old/.prettierrc.json create mode 100644 ui-old/Dockerfile rename {ui => ui-old}/Makefile (100%) rename {ui => ui-old}/next-env.d.ts (100%) rename {ui => ui-old}/next.config.js (100%) create mode 100644 ui-old/package-lock.json create mode 100644 ui-old/package.json rename {ui => ui-old}/postcss.config.js (100%) rename {ui => ui-old}/public/favicon.ico (100%) rename {ui => ui-old}/public/icons/ifr.svg (100%) rename {ui => ui-old}/public/icons/lifr.svg (100%) rename {ui => ui-old}/public/icons/mvfr.svg (100%) rename {ui => ui-old}/public/icons/nometar.svg (100%) rename {ui => ui-old}/public/icons/unkn.svg (100%) rename ui/public/icons/VFR.svg => ui-old/public/icons/vfr.svg (100%) rename {ui => ui-old}/public/layers-2x.png (100%) rename {ui => ui-old}/public/layers.png (100%) rename {ui => ui-old}/public/marker-icon-2x.png (100%) rename {ui => ui-old}/public/marker-icon.png (100%) rename {ui => ui-old}/public/marker-shadow.png (100%) rename {ui => ui-old}/public/vercel.svg (100%) rename {ui => ui-old}/src/api/airport.ts (100%) rename {ui => ui-old}/src/api/airport.types.ts (100%) rename {ui => ui-old}/src/api/auth.ts (100%) rename {ui => ui-old}/src/api/auth.types.ts (100%) rename {ui => ui-old}/src/api/index.ts (100%) rename {ui => ui-old}/src/api/metar.ts (100%) rename {ui => ui-old}/src/api/metar.types.ts (100%) rename {ui => ui-old}/src/api/users.ts (100%) rename {ui => ui-old}/src/app/admin/page.tsx (100%) rename {ui => ui-old}/src/app/airport/[icao]/page.tsx (100%) rename {ui => ui-old}/src/app/layout.tsx (87%) rename {ui => ui-old}/src/app/page.tsx (100%) rename {ui => ui-old}/src/app/profile/page.tsx (100%) rename {ui => ui-old}/src/app/profile/profile.module.css (100%) rename {ui => ui-old}/src/app/recoil-root-wrapper.tsx (100%) rename {ui => ui-old}/src/components/Admin/AirportForm.tsx (100%) rename {ui => ui-old}/src/components/Admin/AirportTablePanel.tsx (100%) rename {ui => ui-old}/src/components/Header/HeaderModal.tsx (100%) rename {ui => ui-old}/src/components/Header/UserMenu.tsx (100%) create mode 100644 ui-old/src/components/Header/index.tsx rename {ui => ui-old}/src/components/Header/styles.css (100%) rename {ui => ui-old}/src/components/Loader.tsx (100%) rename {ui => ui-old}/src/components/Metars/MapTiles.tsx (100%) rename {ui => ui-old}/src/components/Metars/MetarMap.tsx (100%) rename {ui => ui-old}/src/components/Metars/MetarModal.tsx (100%) rename {ui => ui-old}/src/components/Metars/SkyConditions.tsx (100%) rename {ui => ui-old}/src/components/Metars/index.tsx (100%) rename {ui => ui-old}/src/components/Metars/metars.css (100%) rename {ui => ui-old}/src/components/Sidebar/Sidebar.css (100%) rename {ui => ui-old}/src/components/Sidebar/index.tsx (100%) rename {ui => ui-old}/src/js/theme.ts (100%) rename {ui => ui-old}/src/state/auth.ts (100%) rename {ui => ui-old}/src/state/map.ts (100%) rename {ui => ui-old}/src/state/user.ts (100%) rename {ui => ui-old}/styles/globals.css (100%) create mode 100644 ui-old/styles/leaflet.css create mode 100755 ui-old/tsconfig.json create mode 100644 ui/.dockerignore create mode 100644 ui/eslint.config.js create mode 100644 ui/index.html create mode 100644 ui/postcss.config.cjs create mode 100644 ui/public/vite.svg create mode 100644 ui/src/App.css create mode 100644 ui/src/App.tsx create mode 100644 ui/src/assets/react.svg create mode 100644 ui/src/components/Header/Header.module.css create mode 100644 ui/src/index.css create mode 100644 ui/src/main.tsx create mode 100644 ui/src/vite-env.d.ts create mode 100644 ui/styles/global.css create mode 100644 ui/tsconfig.app.json mode change 100755 => 100644 ui/tsconfig.json create mode 100644 ui/tsconfig.node.json create mode 100644 ui/vite.config.mjs diff --git a/.env b/.env index c8cf136..b244b62 100644 --- a/.env +++ b/.env @@ -1,23 +1,26 @@ RUST_LOG=warn,api=info -DATABASE_CONTAINER=aviation-db -DATABASE_USER=aviation -DATABASE_PASSWORD= -DATABASE_NAME=aviation -DATABASE_HOST=localhost -DATABASE_PORT=5432 +POSTGRES_USER=aviation +POSTGRES_PASSWORD=CHANGEME +POSTGRES_NAME=aviation +POSTGRES_HOST=localhost +POSTGRES_PORT=5432 REDIS_HOST=localhost REDIS_PORT=6379 MINIO_ROOT_USER=aviation -MINIO_ROOT_PASSWORD= +MINIO_ROOT_PASSWORD=CHANGEME +MINIO_SCHEMA=http MINIO_HOST=localhost MINIO_PORT=9000 MINIO_PORT_INTERNAL=9001 API_HOST=localhost API_PORT=5000 +ADMIN_USERNAME=admin +ADMIN_PASSWORD=CHANGEME + UI_PORT=3000 NODE_ENV=development diff --git a/.gitignore b/.gitignore index fba87f6..2b6b9e8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,40 +1,18 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +.vscode/ +venv/ +.idea/ + # dependencies -node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# next.js .next/ -/out/ +node_modules +target/ +dist/ +Cargo.lock -# production -/build - -# misc .DS_Store -*.pem -*.pem.pub -keys/ - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnpm-debug.log* # local env files .env*.local -# vercel -.vercel - -# typescript -*.tsbuildinfo - -target/ -dist/ diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 481177f..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "rust-analyzer.showUnlinkedFileNotification": false, - "editor.tabSize": 2 -} \ No newline at end of file diff --git a/Makefile b/Makefile index 6e75499..0598493 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ #!make SHELL := /bin/bash -GIT_HASH ?= $(shell git log --format="%h" -n 1) +export API_VERSION = $(shell awk -F ' = ' '$$1 ~ /package.version/ { gsub(/[\"]/, "", $$2); printf("%s",$$2) }' api/Cargo.toml) +export UI_VERSION := $(shell awk -F'"' '/"version"/ { print $$4 }' ui/package.json) include .env -include .env.local @@ -14,10 +15,47 @@ help: ## This info @cat Makefile | grep -E '^[a-zA-Z\/_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' @echo -format: ## Format code +format: format-api format-ui ## Format code + +psql: ## Connect to the PSQL DB + @docker exec -it aviation-postgres psql -U ${POSTGRES_USER} -P pager=off + +################# +# API Commands # +################# + +format-api: ## Format code @cd api && cargo fmt + +build-api: ## Build the project + @cd api && cargo build + +run-api: ## Run the API project + @cd api && cargo run -p api + +################# +# UI Commands # +################# + +lint-ui: ## Run the linter + @cd ui && npm run lint + +format-ui: ## Run the formatter @cd ui && npm run format +build-ui: ## Build the UI app + @cd ui && npm install && npm run build + +clean-ui: ## Remove UI build files + @cd ui && rm -rf node_modules dist + +run-ui: ## Run the UI app + @cd ui && npm install && npm run dev + +################### +# Docker Commands # +################### + backend-up: ## Start Docker containers @docker compose --profile backend up -d @@ -41,12 +79,16 @@ frontend-down: ## Stop Docker containers down-frontend: frontend-down +docker-prune: ## Prune the docker system + @docker system prune -a + docker-clean: ## Stop the docker containers and remove volumes - @echo "Stopping docker container and removing volumes..." @docker compose --profile frontend --profile api --profile backend down -v - @echo "Docker container stopped and volumes removed" -docker-refresh: docker-clean up-backend ## Refresh the database +docker-down: ## Stop the docker container + @docker compose --profile frontend --profile api --profile backend down -psql: ## Connect to the PSQL DB - @docker exec -it ${DATABASE_CONTAINER} psql -U ${DATABASE_USER} -P pager=off \ No newline at end of file +docker-up: ## Start the docker container + @docker compose --profile backend --profile api --profile frontend up -d + +docker-refresh: docker-clean up-backend ## Refresh the database \ No newline at end of file diff --git a/README.md b/README.md index 24276d0..2ffcf8c 100755 --- a/README.md +++ b/README.md @@ -5,18 +5,30 @@ ## Setup -1. Copy `.env.TEMPLATE` to `.env` -2. Generate JWT RS256 (RSA Signature with SHA-256) Private/Public keys with `make generate` -3. Build the api and ui images with `make build` -4. Run the application with `make up` +1. Override any environment variables in `.env.local` +2. Build the api and ui images with `make build` +3. Run the application with `make up` -## Decoding METARS +## Data Sources + +### Airport Data + +Potential Data sources + - https://adip.faa.gov/agis/public/#/airportSearch/advanced + - https://www.icao.int/Aviation-API-Data-Service/Pages/default.aspx + - https://ourairports.com/data/ + - [mborsetti/airportsdata](https://github.com/mborsetti/airportsdata) + - https://www.iata.org/en/publications/directories/code-search/ + - [openstreet](https://www.openstreetmap.org/#map=13/38.95223/-77.47417) + +### Metar Data +Metar data is collected from aviationweather.gov. + +#### Decoding METARS The following resources were used to help decode METARS. - [Metar Decode Key PDF](https://www.weather.gov/media/wrh/mesowest/metar_decode_key.pdf) - [Metar Decode (NPS EDU)](https://met.nps.edu/~bcreasey/mr3222/files/helpful/DecodeMETAR-TAF.html) - [Weather Phenomena](http://www.moratech.com/aviation/metar-class/metar-pg9-ww.html) -- Airport dataset is based on [mborsetti/airportsdata](https://github.com/mborsetti/airportsdata) - -## OpenMapTiles +### OpenMapTiles [Generate Vector Tiles](https://openmaptiles.org/docs/generate/generate-openmaptiles/) \ No newline at end of file diff --git a/api/Cargo.lock b/api/Cargo.lock index 7d2141b..1e2403e 100644 --- a/api/Cargo.lock +++ b/api/Cargo.lock @@ -1,14 +1,14 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "actix-codec" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" +checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 1.3.2", + "bitflags", "bytes", "futures-core", "futures-sink", @@ -36,9 +36,9 @@ dependencies = [ [[package]] name = "actix-http" -version = "3.8.0" +version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae682f693a9cd7b058f2b0b5d9a6d7728a8555779bedbbc35dd88528611d020" +checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4" dependencies = [ "actix-codec", "actix-rt", @@ -46,7 +46,7 @@ dependencies = [ "actix-utils", "ahash", "base64", - "bitflags 2.4.0", + "bitflags", "brotli", "bytes", "bytestring", @@ -55,7 +55,7 @@ dependencies = [ "flate2", "futures-core", "h2 0.3.26", - "http 0.2.9", + "http 0.2.12", "httparse", "httpdate", "itoa", @@ -80,7 +80,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.71", + "syn", ] [[package]] @@ -118,7 +118,7 @@ dependencies = [ "parse-size", "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] @@ -129,7 +129,7 @@ checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" dependencies = [ "bytestring", "cfg-if", - "http 0.2.9", + "http 0.2.12", "regex", "regex-lite", "serde", @@ -138,9 +138,9 @@ dependencies = [ [[package]] name = "actix-rt" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28f32d40287d3f402ae0028a9d54bef51af15c8769492826a69d28f81893151d" +checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" dependencies = [ "futures-core", "tokio", @@ -148,17 +148,17 @@ dependencies = [ [[package]] name = "actix-server" -version = "2.3.0" +version = "2.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4" +checksum = "6398974fd4284f4768af07965701efbbb5fdc0616bff20cade1bb14b77675e24" dependencies = [ "actix-rt", "actix-service", "actix-utils", "futures-core", "futures-util", - "mio 0.8.11", - "socket2 0.5.7", + "mio", + "socket2", "tokio", "tracing", ] @@ -221,7 +221,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2 0.5.7", + "socket2", "time", "url", ] @@ -235,7 +235,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] @@ -255,18 +255,18 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.21.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ "gimli", ] [[package]] -name = "adler" -version = "1.0.2" +name = "adler2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" [[package]] name = "ahash" @@ -275,7 +275,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" dependencies = [ "cfg-if", - "getrandom", + "getrandom 0.2.15", "once_cell", "version_check", "zerocopy", @@ -283,9 +283,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.5" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] @@ -305,6 +305,12 @@ dependencies = [ "alloc-no-stdlib", ] +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + [[package]] name = "android-tzdata" version = "0.1.1" @@ -322,9 +328,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.14" +version = "0.6.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" +checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" dependencies = [ "anstyle", "anstyle-parse", @@ -337,36 +343,37 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.7" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" [[package]] name = "anstyle-parse" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" +checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.0" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" +checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.3" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", - "windows-sys 0.52.0", + "once_cell", + "windows-sys 0.59.0", ] [[package]] @@ -378,16 +385,13 @@ dependencies = [ "actix-web", "actix-web-httpauth", "argon2", + "byteorder", "chrono", - "diesel", - "diesel_migrations", "dotenv", "env_logger", "futures-util", - "lazy_static", + "geo-types", "log", - "postgis_diesel", - "r2d2", "rand", "rand_chacha", "redis", @@ -396,10 +400,20 @@ dependencies = [ "rust-s3", "serde", "serde_json", + "sqlx", "tokio", "uuid", ] +[[package]] +name = "approx" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" +dependencies = [ + "num-traits", +] + [[package]] name = "arc-swap" version = "1.7.1" @@ -420,13 +434,22 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.82" +version = "0.1.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a27b8a3a6e1a44fa4c8baf1f653e4172e81486d4941f2237e20dc2d0cf4ddff1" +checksum = "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", +] + +[[package]] +name = "atoi" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" +dependencies = [ + "num-traits", ] [[package]] @@ -437,11 +460,11 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "attohttpc" -version = "0.28.0" +version = "0.28.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a13149d0cf3f7f9b9261fad4ec63b2efbf9a80665f52def86282d26255e6331" +checksum = "07a9b245ba0739fc90935094c29adbaee3f977218b5fb95e822e261cda7f56a3" dependencies = [ - "http 1.1.0", + "http 1.2.0", "log", "native-tls", "serde", @@ -451,9 +474,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.1.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "aws-creds" @@ -467,33 +490,33 @@ dependencies = [ "quick-xml", "rust-ini", "serde", - "thiserror", + "thiserror 1.0.69", "time", "url", ] [[package]] name = "aws-region" -version = "0.25.4" +version = "0.25.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42fed2b9fca70f2908268d057a607f2a906f47edbf856ea8587de9038d264e22" +checksum = "e9aed3f9c7eac9be28662fdb3b0f4d1951e812f7c64fed4f0327ba702f459b3b" dependencies = [ - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "backtrace" -version = "0.3.69" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ "addr2line", - "cc", "cfg-if", "libc", "miniz_oxide", "object", "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] @@ -510,15 +533,12 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "bitflags" -version = "1.3.2" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" +checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" +dependencies = [ + "serde", +] [[package]] name = "blake2" @@ -551,9 +571,9 @@ dependencies = [ [[package]] name = "brotli-decompressor" -version = "4.0.1" +version = "4.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" +checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -561,39 +581,40 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.13.0" +version = "3.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" +checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" [[package]] name = "byteorder" -version = "1.4.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.7.1" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "bytestring" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" +checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" dependencies = [ "bytes", ] [[package]] name = "cc" -version = "1.0.83" +version = "1.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" dependencies = [ "jobserver", "libc", + "shlex", ] [[package]] @@ -604,9 +625,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" dependencies = [ "android-tzdata", "iana-time-zone", @@ -614,20 +635,20 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.52.6", + "windows-link", ] [[package]] name = "colorchoice" -version = "1.0.1" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" +checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" [[package]] name = "combine" -version = "4.6.6" +version = "4.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" dependencies = [ "bytes", "futures-core", @@ -637,6 +658,21 @@ dependencies = [ "tokio-util", ] +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + [[package]] name = "const-random" version = "0.1.18" @@ -652,7 +688,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom", + "getrandom 0.2.15", "once_cell", "tiny-keccak", ] @@ -676,9 +712,9 @@ dependencies = [ [[package]] name = "core-foundation" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ "core-foundation-sys", "libc", @@ -686,33 +722,63 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.4" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ "libc", ] [[package]] -name = "crc32fast" -version = "1.3.2" +name = "crc" +version = "3.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + +[[package]] +name = "crc32fast" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ "cfg-if", ] [[package]] -name = "crunchy" -version = "0.2.2" +name = "crossbeam-queue" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crunchy" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929" [[package]] name = "crypto-common" @@ -726,9 +792,9 @@ dependencies = [ [[package]] name = "darling" -version = "0.20.3" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" dependencies = [ "darling_core", "darling_macro", @@ -736,99 +802,61 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.20.3" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", "strsim", - "syn 2.0.71", + "syn", ] [[package]] name = "darling_macro" -version = "0.20.3" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.71", + "syn", +] + +[[package]] +name = "der" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +dependencies = [ + "const-oid", + "pem-rfc7468", + "zeroize", ] [[package]] name = "deranged" -version = "0.3.8" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" dependencies = [ + "powerfmt", "serde", ] [[package]] name = "derive_more" -version = "0.99.17" +version = "0.99.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f" dependencies = [ "convert_case", "proc-macro2", "quote", "rustc_version", - "syn 1.0.109", -] - -[[package]] -name = "diesel" -version = "2.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "158fe8e2e68695bd615d7e4f3227c0727b151330d3e253b525086c348d055d5e" -dependencies = [ - "bitflags 2.4.0", - "byteorder", - "chrono", - "diesel_derives", - "itoa", - "pq-sys", - "r2d2", - "serde_json", - "uuid", -] - -[[package]] -name = "diesel_derives" -version = "2.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59de76a222c2b8059f789cbe07afbfd8deb8c31dd0bc2a21f85e256c1def8259" -dependencies = [ - "diesel_table_macro_syntax", - "dsl_auto_type", - "proc-macro2", - "quote", - "syn 2.0.71", -] - -[[package]] -name = "diesel_migrations" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a73ce704bad4231f001bff3314d91dce4aba0770cee8b233991859abc15c1f6" -dependencies = [ - "diesel", - "migrations_internals", - "migrations_macros", -] - -[[package]] -name = "diesel_table_macro_syntax" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25" -dependencies = [ - "syn 2.0.71", + "syn", ] [[package]] @@ -838,10 +866,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer", + "const-oid", "crypto-common", "subtle", ] +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "dlv-list" version = "0.5.2" @@ -858,39 +898,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" [[package]] -name = "dsl_auto_type" -version = "0.1.1" +name = "dotenvy" +version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0892a17df262a24294c382f0d5997571006e7a4348b4327557c4ff1cd4a8bccc" -dependencies = [ - "darling", - "either", - "heck", - "proc-macro2", - "quote", - "syn 2.0.71", -] +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" [[package]] name = "either" -version = "1.13.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +dependencies = [ + "serde", +] [[package]] name = "encoding_rs" -version = "0.8.33" +version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ "cfg-if", ] [[package]] name = "env_filter" -version = "0.1.0" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" +checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" dependencies = [ "log", "regex", @@ -898,9 +933,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.5" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" +checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" dependencies = [ "anstream", "anstyle", @@ -911,53 +946,81 @@ dependencies = [ [[package]] name = "equivalent" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "errno" -version = "0.3.3" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ - "errno-dragonfly", "libc", + "windows-sys 0.59.0", +] + +[[package]] +name = "etcetera" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" +dependencies = [ + "cfg-if", + "home", "windows-sys 0.48.0", ] [[package]] -name = "errno-dragonfly" -version = "0.1.2" +name = "event-listener" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" dependencies = [ - "cc", - "libc", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] name = "fastrand" -version = "2.0.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "flate2" -version = "1.0.27" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" +checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc" dependencies = [ "crc32fast", "miniz_oxide", ] +[[package]] +name = "flume" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" +dependencies = [ + "futures-core", + "futures-sink", + "spin", +] + [[package]] name = "fnv" version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" + [[package]] name = "foreign-types" version = "0.3.2" @@ -984,9 +1047,9 @@ dependencies = [ [[package]] name = "futures" -version = "0.3.28" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" +checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ "futures-channel", "futures-core", @@ -999,9 +1062,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ "futures-core", "futures-sink", @@ -1009,15 +1072,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" [[package]] name = "futures-executor" -version = "0.3.28" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ "futures-core", "futures-task", @@ -1025,39 +1088,50 @@ dependencies = [ ] [[package]] -name = "futures-io" -version = "0.3.30" +name = "futures-intrusive" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" +checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" +dependencies = [ + "futures-core", + "lock_api", + "parking_lot", +] + +[[package]] +name = "futures-io" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-macro" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] name = "futures-sink" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" [[package]] name = "futures-task" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-util" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ "futures-channel", "futures-core", @@ -1082,21 +1156,44 @@ dependencies = [ ] [[package]] -name = "getrandom" -version = "0.2.10" +name = "geo-types" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +checksum = "3bd1157f0f936bf0cd68dec91e8f7c311afe60295574d62b70d4861a1bfdf2d9" +dependencies = [ + "approx", + "num-traits", + "serde", +] + +[[package]] +name = "getrandom" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "libc", - "wasi", + "wasi 0.11.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.13.3+wasi-0.2.2", + "windows-targets 0.52.6", ] [[package]] name = "gimli" -version = "0.28.0" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] name = "h2" @@ -1109,7 +1206,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http 0.2.9", + "http 0.2.12", "indexmap", "slab", "tokio", @@ -1119,16 +1216,16 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.5" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.1.0", + "http 1.2.0", "indexmap", "slab", "tokio", @@ -1138,9 +1235,29 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" + +[[package]] +name = "hashbrown" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashlink" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" +dependencies = [ + "hashbrown 0.15.2", +] [[package]] name = "heck" @@ -1148,18 +1265,21 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[package]] -name = "hermit-abi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - [[package]] name = "hex" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "hkdf" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +dependencies = [ + "hmac", +] + [[package]] name = "hmac" version = "0.12.1" @@ -1171,18 +1291,18 @@ dependencies = [ [[package]] name = "home" -version = "0.5.9" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "http" -version = "0.2.9" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ "bytes", "fnv", @@ -1191,9 +1311,9 @@ dependencies = [ [[package]] name = "http" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" dependencies = [ "bytes", "fnv", @@ -1202,12 +1322,12 @@ dependencies = [ [[package]] name = "http-body" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http 0.2.9", + "http 0.2.12", "pin-project-lite", ] @@ -1218,7 +1338,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.1.0", + "http 1.2.0", ] [[package]] @@ -1229,16 +1349,16 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" dependencies = [ "bytes", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", "pin-project-lite", ] [[package]] name = "httparse" -version = "1.8.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "httpdate" @@ -1254,21 +1374,21 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.27" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ "bytes", "futures-channel", "futures-core", "futures-util", - "http 0.2.9", - "http-body 0.4.5", + "http 0.2.12", + "http-body 0.4.6", "httparse", "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.9", + "socket2", "tokio", "tower-service", "tracing", @@ -1277,15 +1397,15 @@ dependencies = [ [[package]] name = "hyper" -version = "1.4.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.5", - "http 1.1.0", + "h2 0.4.8", + "http 1.2.0", "http-body 1.0.1", "httparse", "itoa", @@ -1297,13 +1417,13 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.2" +version = "0.27.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" +checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", - "http 1.1.0", - "hyper 1.4.1", + "http 1.2.0", + "hyper 1.6.0", "hyper-util", "rustls", "rustls-pki-types", @@ -1319,7 +1439,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper 0.14.27", + "hyper 0.14.32", "native-tls", "tokio", "tokio-native-tls", @@ -1333,7 +1453,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", "http-body-util", - "hyper 1.4.1", + "hyper 1.6.0", "hyper-util", "native-tls", "tokio", @@ -1343,36 +1463,35 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.6" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" +checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" dependencies = [ "bytes", "futures-channel", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", - "hyper 1.4.1", + "hyper 1.6.0", "pin-project-lite", - "socket2 0.5.7", + "socket2", "tokio", - "tower", "tower-service", "tracing", ] [[package]] name = "iana-time-zone" -version = "0.1.57" +version = "0.1.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows", + "windows-core", ] [[package]] @@ -1384,6 +1503,124 @@ dependencies = [ "cc", ] +[[package]] +name = "icu_collections" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locid" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_locid_transform" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_locid_transform_data", + "icu_provider", + "tinystr", + "zerovec", +] + +[[package]] +name = "icu_locid_transform_data" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" + +[[package]] +name = "icu_normalizer" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "utf16_iter", + "utf8_iter", + "write16", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" + +[[package]] +name = "icu_properties" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_locid_transform", + "icu_properties_data", + "icu_provider", + "tinystr", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" + +[[package]] +name = "icu_provider" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_provider_macros", + "stable_deref_trait", + "tinystr", + "writeable", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_provider_macros" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "ident_case" version = "1.0.1" @@ -1392,63 +1629,75 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "idna" -version = "0.5.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" dependencies = [ - "unicode-bidi", - "unicode-normalization", + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" +dependencies = [ + "icu_normalizer", + "icu_properties", ] [[package]] name = "impl-more" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "indexmap" -version = "2.0.0" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.15.2", ] [[package]] name = "ipnet" -version = "2.8.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] name = "is_terminal_polyfill" -version = "1.70.0" +version = "1.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itoa" -version = "1.0.9" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "jobserver" -version = "0.1.26" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.64" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -1463,42 +1712,66 @@ name = "lazy_static" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +dependencies = [ + "spin", +] [[package]] name = "libc" -version = "0.2.150" +version = "0.2.170" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" +checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" + +[[package]] +name = "libm" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" + +[[package]] +name = "libsqlite3-sys" +version = "0.30.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" +dependencies = [ + "pkg-config", + "vcpkg", +] [[package]] name = "linux-raw-sys" -version = "0.4.11" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" +checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9" + +[[package]] +name = "litemap" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" [[package]] name = "local-channel" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" +checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" dependencies = [ "futures-core", "futures-sink", - "futures-util", "local-waker", ] [[package]] name = "local-waker" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" +checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" [[package]] name = "lock_api" -version = "0.4.10" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ "autocfg", "scopeguard", @@ -1506,19 +1779,29 @@ dependencies = [ [[package]] name = "log" -version = "0.4.22" +version = "0.4.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e" [[package]] name = "maybe-async" -version = "0.2.7" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1b8c13cb1f814b634a96b2c725449fe7ed464a7b8781de8688be5ffbd3f305" +checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn", +] + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", ] [[package]] @@ -1529,30 +1812,9 @@ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" [[package]] name = "memchr" -version = "2.6.3" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" - -[[package]] -name = "migrations_internals" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd01039851e82f8799046eabbb354056283fb265c8ec0996af940f4e85a380ff" -dependencies = [ - "serde", - "toml", -] - -[[package]] -name = "migrations_macros" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb161cc72176cb37aa47f1fc520d3ef02263d67d661f44f05d05a079e1237fd" -dependencies = [ - "migrations_internals", - "proc-macro2", - "quote", -] +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "mime" @@ -1571,44 +1833,31 @@ dependencies = [ [[package]] name = "miniz_oxide" -version = "0.7.1" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5" dependencies = [ - "adler", + "adler2", ] [[package]] name = "mio" -version = "0.8.11" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ "libc", "log", - "wasi", - "windows-sys 0.48.0", -] - -[[package]] -name = "mio" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" -dependencies = [ - "hermit-abi", - "libc", - "wasi", + "wasi 0.11.0+wasi-snapshot-preview1", "windows-sys 0.52.0", ] [[package]] name = "native-tls" -version = "0.2.11" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" dependencies = [ - "lazy_static", "libc", "log", "openssl", @@ -1630,6 +1879,29 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-bigint-dig" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" +dependencies = [ + "byteorder", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + [[package]] name = "num-integer" version = "0.1.46" @@ -1639,6 +1911,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-iter" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + [[package]] name = "num-traits" version = "0.2.19" @@ -1646,30 +1929,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", + "libm", ] [[package]] name = "object" -version = "0.32.1" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "memchr", ] [[package]] name = "once_cell" -version = "1.18.0" +version = "1.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" +checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" [[package]] name = "openssl" -version = "0.10.57" +version = "0.10.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" +checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd" dependencies = [ - "bitflags 2.4.0", + "bitflags", "cfg-if", "foreign-types", "libc", @@ -1686,20 +1970,20 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] name = "openssl-probe" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "openssl-sys" -version = "0.9.93" +version = "0.9.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" +checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd" dependencies = [ "cc", "libc", @@ -1714,14 +1998,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" dependencies = [ "dlv-list", - "hashbrown", + "hashbrown 0.14.5", ] [[package]] -name = "parking_lot" -version = "0.12.1" +name = "parking" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", "parking_lot_core", @@ -1729,22 +2019,22 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.8" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", "redox_syscall", "smallvec", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] name = "parse-size" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae" +checksum = "487f2ccd1e17ce8c1bfab3a65c89525af41cfad4c8659021a1e9a2aacd73b89b" [[package]] name = "password-hash" @@ -1759,9 +2049,18 @@ dependencies = [ [[package]] name = "paste" -version = "1.0.14" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] [[package]] name = "percent-encoding" @@ -1771,29 +2070,29 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pin-project" -version = "1.1.3" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" +checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.3" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] name = "pin-project-lite" -version = "0.2.13" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -1802,42 +2101,52 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] -name = "pkg-config" -version = "0.3.27" +name = "pkcs1" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" - -[[package]] -name = "postgis_diesel" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0af8d70eef8908e7248d05f2ba1da5e81a9674e3b0b01efb75736780052b7d3f" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" dependencies = [ - "byteorder", - "diesel", - "serde", + "der", + "pkcs8", + "spki", ] [[package]] -name = "ppv-lite86" -version = "0.2.17" +name = "pkcs8" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] [[package]] -name = "pq-sys" -version = "0.4.8" +name = "pkg-config" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31c0052426df997c0cbd30789eb44ca097e3541717a7b8fa36b1c464ee7edebd" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" dependencies = [ - "vcpkg", + "zerocopy", ] [[package]] name = "proc-macro2" -version = "1.0.86" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" dependencies = [ "unicode-ident", ] @@ -1854,9 +2163,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.36" +version = "1.0.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "c1f1914ce909e1658d9907913b4b91947430c7d9be598b15a1912935b8c04801" dependencies = [ "proc-macro2", ] @@ -1899,7 +2208,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom", + "getrandom 0.2.15", ] [[package]] @@ -1920,8 +2229,10 @@ dependencies = [ "pin-project-lite", "r2d2", "ryu", + "serde", + "serde_json", "sha1_smol", - "socket2 0.5.7", + "socket2", "tokio", "tokio-retry", "tokio-util", @@ -1930,18 +2241,18 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.3.5" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" dependencies = [ - "bitflags 1.3.2", + "bitflags", ] [[package]] name = "regex" -version = "1.10.6" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", @@ -1951,9 +2262,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", @@ -1968,26 +2279,26 @@ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.7" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64", "bytes", "encoding_rs", "futures-core", "futures-util", - "h2 0.4.5", - "http 1.1.0", + "h2 0.4.8", + "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.4.1", + "hyper 1.6.0", "hyper-rustls", "hyper-tls 0.6.0", "hyper-util", @@ -2007,6 +2318,7 @@ dependencies = [ "system-configuration", "tokio", "tokio-native-tls", + "tower", "tower-service", "url", "wasm-bindgen", @@ -2017,16 +2329,36 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.5" +version = "0.17.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" +checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee" dependencies = [ "cc", - "getrandom", + "cfg-if", + "getrandom 0.2.15", "libc", - "spin", "untrusted", - "windows-sys 0.48.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "rsa" +version = "0.9.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" +dependencies = [ + "const-oid", + "digest", + "num-bigint-dig", + "num-integer", + "num-traits", + "pkcs1", + "pkcs8", + "rand_core", + "signature", + "spki", + "subtle", + "zeroize", ] [[package]] @@ -2055,8 +2387,8 @@ dependencies = [ "futures", "hex", "hmac", - "http 0.2.9", - "hyper 0.14.27", + "http 0.2.12", + "hyper 0.14.32", "hyper-tls 0.5.0", "log", "maybe-async", @@ -2069,7 +2401,7 @@ dependencies = [ "serde_derive", "serde_json", "sha2", - "thiserror", + "thiserror 1.0.69", "time", "tokio", "tokio-native-tls", @@ -2079,37 +2411,37 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc_version" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ "semver", ] [[package]] name = "rustix" -version = "0.38.24" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ad981d6c340a49cdc40a1028d9c6084ec7e9fa33fcb839cab656a267071e234" +checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657" dependencies = [ - "bitflags 2.4.0", + "bitflags", "errno", "libc", "linux-raw-sys", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "rustls" -version = "0.23.11" +version = "0.23.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" +checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395" dependencies = [ "once_cell", "rustls-pki-types", @@ -2120,31 +2452,36 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.2" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "base64", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.7.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" +checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c" [[package]] name = "rustls-webpki" -version = "0.102.5" +version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" +checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ "ring", "rustls-pki-types", "untrusted", ] +[[package]] +name = "rustversion" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" + [[package]] name = "rxml" version = "0.9.1" @@ -2164,17 +2501,17 @@ checksum = "22a197350ece202f19a166d1ad6d9d6de145e1d2a8ef47db299abe164dbd7530" [[package]] name = "ryu" -version = "1.0.15" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "schannel" -version = "0.1.22" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -2194,11 +2531,11 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "security-framework" -version = "2.9.2" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 1.3.2", + "bitflags", "core-foundation", "core-foundation-sys", "libc", @@ -2207,9 +2544,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.9.1" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" dependencies = [ "core-foundation-sys", "libc", @@ -2217,35 +2554,35 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.18" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" +checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" [[package]] name = "serde" -version = "1.0.209" +version = "1.0.218" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" +checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.209" +version = "1.0.218" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" +checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] name = "serde_json" -version = "1.0.127" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" dependencies = [ "itoa", "memchr", @@ -2262,15 +2599,6 @@ dependencies = [ "serde", ] -[[package]] -name = "serde_spanned" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" -dependencies = [ - "serde", -] - [[package]] name = "serde_urlencoded" version = "0.7.1" @@ -2285,9 +2613,9 @@ dependencies = [ [[package]] name = "sha1" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ "cfg-if", "cpufeatures", @@ -2296,9 +2624,9 @@ dependencies = [ [[package]] name = "sha1_smol" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" +checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" [[package]] name = "sha2" @@ -2312,14 +2640,30 @@ dependencies = [ ] [[package]] -name = "signal-hook-registry" -version = "1.4.1" +name = "shlex" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest", + "rand_core", +] + [[package]] name = "slab" version = "0.4.9" @@ -2331,9 +2675,12 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.13.2" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" +dependencies = [ + "serde", +] [[package]] name = "smartstring" @@ -2348,19 +2695,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.4.9" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "socket2" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" dependencies = [ "libc", "windows-sys 0.52.0", @@ -2371,6 +2708,220 @@ name = "spin" version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "sqlx" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4410e73b3c0d8442c5f99b425d7a435b5ee0ae4167b3196771dd3f7a01be745f" +dependencies = [ + "sqlx-core", + "sqlx-macros", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", +] + +[[package]] +name = "sqlx-core" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a007b6936676aa9ab40207cde35daab0a04b823be8ae004368c0793b96a61e0" +dependencies = [ + "bytes", + "chrono", + "crc", + "crossbeam-queue", + "either", + "event-listener", + "futures-core", + "futures-intrusive", + "futures-io", + "futures-util", + "hashbrown 0.15.2", + "hashlink", + "indexmap", + "log", + "memchr", + "once_cell", + "percent-encoding", + "serde", + "serde_json", + "sha2", + "smallvec", + "thiserror 2.0.12", + "tokio", + "tokio-stream", + "tracing", + "url", + "uuid", +] + +[[package]] +name = "sqlx-macros" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3112e2ad78643fef903618d78cf0aec1cb3134b019730edb039b69eaf531f310" +dependencies = [ + "proc-macro2", + "quote", + "sqlx-core", + "sqlx-macros-core", + "syn", +] + +[[package]] +name = "sqlx-macros-core" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e9f90acc5ab146a99bf5061a7eb4976b573f560bc898ef3bf8435448dd5e7ad" +dependencies = [ + "dotenvy", + "either", + "heck", + "hex", + "once_cell", + "proc-macro2", + "quote", + "serde", + "serde_json", + "sha2", + "sqlx-core", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "syn", + "tempfile", + "tokio", + "url", +] + +[[package]] +name = "sqlx-mysql" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4560278f0e00ce64938540546f59f590d60beee33fffbd3b9cd47851e5fff233" +dependencies = [ + "atoi", + "base64", + "bitflags", + "byteorder", + "bytes", + "chrono", + "crc", + "digest", + "dotenvy", + "either", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "generic-array", + "hex", + "hkdf", + "hmac", + "itoa", + "log", + "md-5", + "memchr", + "once_cell", + "percent-encoding", + "rand", + "rsa", + "serde", + "sha1", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror 2.0.12", + "tracing", + "uuid", + "whoami", +] + +[[package]] +name = "sqlx-postgres" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5b98a57f363ed6764d5b3a12bfedf62f07aa16e1856a7ddc2a0bb190a959613" +dependencies = [ + "atoi", + "base64", + "bitflags", + "byteorder", + "chrono", + "crc", + "dotenvy", + "etcetera", + "futures-channel", + "futures-core", + "futures-util", + "hex", + "hkdf", + "hmac", + "home", + "itoa", + "log", + "md-5", + "memchr", + "once_cell", + "rand", + "serde", + "serde_json", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror 2.0.12", + "tracing", + "uuid", + "whoami", +] + +[[package]] +name = "sqlx-sqlite" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f85ca71d3a5b24e64e1d08dd8fe36c6c95c339a896cc33068148906784620540" +dependencies = [ + "atoi", + "chrono", + "flume", + "futures-channel", + "futures-core", + "futures-executor", + "futures-intrusive", + "futures-util", + "libsqlite3-sys", + "log", + "percent-encoding", + "serde", + "serde_urlencoded", + "sqlx-core", + "tracing", + "url", + "uuid", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "static_assertions" @@ -2379,33 +2930,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] -name = "strsim" -version = "0.10.0" +name = "stringprep" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - -[[package]] -name = "subtle" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" - -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "unicode-bidi", + "unicode-normalization", + "unicode-properties", ] [[package]] -name = "syn" -version = "2.0.71" +name = "strsim" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b146dcf730474b4bcd16c311627b31ede9ab149045db4d6088b3becaea046462" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "2.0.99" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e02e925281e18ffd9d640e234264753c43edc62d64b2d4cf898f1bc5e75f3fc2" dependencies = [ "proc-macro2", "quote", @@ -2414,20 +2965,31 @@ dependencies = [ [[package]] name = "sync_wrapper" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ "futures-core", ] +[[package]] +name = "synstructure" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "system-configuration" version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.4.0", + "bitflags", "core-foundation", "system-configuration-sys", ] @@ -2444,45 +3006,68 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.8.0" +version = "3.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" +checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567" dependencies = [ "cfg-if", "fastrand", - "redox_syscall", + "getrandom 0.3.1", + "once_cell", "rustix", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "thiserror" -version = "1.0.50" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +dependencies = [ + "thiserror-impl 2.0.12", ] [[package]] name = "thiserror-impl" -version = "1.0.50" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" +dependencies = [ + "proc-macro2", + "quote", + "syn", ] [[package]] name = "time" -version = "0.3.28" +version = "0.3.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" +checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8" dependencies = [ "deranged", "itoa", + "num-conv", + "powerfmt", "serde", "time-core", "time-macros", @@ -2490,16 +3075,17 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" +checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef" [[package]] name = "time-macros" -version = "0.2.14" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" +checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c" dependencies = [ + "num-conv", "time-core", ] @@ -2513,10 +3099,20 @@ dependencies = [ ] [[package]] -name = "tinyvec" -version = "1.6.0" +name = "tinystr" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" dependencies = [ "tinyvec_macros", ] @@ -2529,31 +3125,31 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.40.0" +version = "1.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" dependencies = [ "backtrace", "bytes", "libc", - "mio 1.0.2", + "mio", "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.7", + "socket2", "tokio-macros", "windows-sys 0.52.0", ] [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", ] [[package]] @@ -2579,20 +3175,19 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" dependencies = [ "rustls", - "rustls-pki-types", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.14" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" +checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" dependencies = [ "futures-core", "pin-project-lite", @@ -2601,62 +3196,27 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.8" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" +checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" dependencies = [ "bytes", "futures-core", "futures-sink", "pin-project-lite", "tokio", - "tracing", -] - -[[package]] -name = "toml" -version = "0.8.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit", -] - -[[package]] -name = "toml_datetime" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" -dependencies = [ - "serde", -] - -[[package]] -name = "toml_edit" -version = "0.22.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59a3a72298453f564e2b111fa896f8d07fabb36f51f06d7e875fc5e0b5a3ef1" -dependencies = [ - "indexmap", - "serde", - "serde_spanned", - "toml_datetime", - "winnow", ] [[package]] name = "tower" -version = "0.4.13" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" dependencies = [ "futures-core", "futures-util", - "pin-project", "pin-project-lite", + "sync_wrapper", "tokio", "tower-layer", "tower-service", @@ -2664,32 +3224,44 @@ dependencies = [ [[package]] name = "tower-layer" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-service" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "log", "pin-project-lite", + "tracing-attributes", "tracing-core", ] [[package]] -name = "tracing-core" -version = "0.1.32" +name = "tracing-attributes" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", ] @@ -2702,37 +3274,43 @@ checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc" [[package]] name = "try-lock" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "typenum" -version = "1.16.0" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" +checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" [[package]] name = "unicode-bidi" -version = "0.3.13" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.11" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" dependencies = [ "tinyvec", ] +[[package]] +name = "unicode-properties" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" + [[package]] name = "untrusted" version = "0.9.0" @@ -2741,15 +3319,27 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.2" +version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", "idna", "percent-encoding", ] +[[package]] +name = "utf16_iter" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + [[package]] name = "utf8parse" version = "0.2.2" @@ -2758,11 +3348,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.10.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" +checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" dependencies = [ - "getrandom", + "getrandom 0.3.1", "serde", ] @@ -2774,9 +3364,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "want" @@ -2794,47 +3384,64 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] -name = "wasm-bindgen" -version = "0.2.87" +name = "wasi" +version = "0.13.3+wasi-0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" +checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" +dependencies = [ + "wit-bindgen-rt", +] + +[[package]] +name = "wasite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" dependencies = [ "cfg-if", + "once_cell", + "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.87" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.71", + "syn", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.37" +version = "0.4.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" dependencies = [ "cfg-if", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.87" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -2842,64 +3449,61 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.87" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.87" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] [[package]] name = "web-sys" -version = "0.3.64" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" dependencies = [ "js-sys", "wasm-bindgen", ] [[package]] -name = "winapi" -version = "0.3.9" +name = "whoami" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", + "redox_syscall", + "wasite", ] [[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" +name = "windows-core" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" dependencies = [ - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] +[[package]] +name = "windows-link" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" + [[package]] name = "windows-registry" version = "0.2.0" @@ -2948,6 +3552,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-targets" version = "0.48.5" @@ -3070,12 +3683,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] -name = "winnow" -version = "0.6.13" +name = "wit-bindgen-rt" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" +checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" dependencies = [ - "memchr", + "bitflags", +] + +[[package]] +name = "write16" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" + +[[package]] +name = "writeable" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" + +[[package]] +name = "yoke" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" +dependencies = [ + "serde", + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", ] [[package]] @@ -3084,6 +3733,7 @@ version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ + "byteorder", "zerocopy-derive", ] @@ -3095,7 +3745,28 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.71", + "syn", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", ] [[package]] @@ -3105,28 +3776,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] -name = "zstd" -version = "0.13.2" +name = "zerovec" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" +checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zstd" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ "zstd-safe", ] [[package]] name = "zstd-safe" -version = "7.2.0" +version = "7.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa" +checksum = "f3051792fbdc2e1e143244dc28c60f73d8470e93f3f9cbd0ead44da5ed802722" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.12+zstd.1.5.6" +version = "2.0.14+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13" +checksum = "8fb060d4926e4ac3a3ad15d864e99ceb5f343c6b34f5bd6d81ae6ed417311be5" dependencies = [ "cc", "pkg-config", diff --git a/api/Cargo.toml b/api/Cargo.toml index a4058c5..8c02fbc 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" authors = ["Ben Sherriff "] repository = "https://github.com/bensherriff/aviation-weather" -readme = "README.md" +readme = "../README.md" license = "GPL-3.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,12 +16,8 @@ actix-web-httpauth = "0.8.2" actix-multipart = "0.7.2" chrono = { version = "0.4.38", features = ["serde"] } dotenv = "0.15.0" -diesel = { version = "2.2.4", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"] } -postgis_diesel = { version = "2.4.1", features = ["serde"] } -diesel_migrations = { version = "2.2.0", features = ["postgres"] } +sqlx = { version = "0.8.2", features = ["runtime-tokio", "postgres", "chrono", "uuid"] } env_logger = "0.11.5" -lazy_static = "1.5.0" -r2d2 = "0.8.10" reqwest = "0.12.7" serde = {version = "1.0.209", features = ["derive"]} serde_json = "1.0.127" @@ -29,9 +25,11 @@ tokio = { version = "1.40.0", features = ["macros", "rt", "time"] } uuid = { version = "1.10.0", features = ["serde", "v4"] } log = "0.4.22" argon2 = "0.5.3" -redis = { version = "0.26.1", features = ["tokio-comp", "connection-manager", "r2d2"] } +redis = { version = "0.26.1", features = ["tokio-comp", "connection-manager", "r2d2", "json"] } regex = "1.10.6" futures-util = "0.3.30" rust-s3 = "0.35.1" rand = "0.8.5" rand_chacha = "0.3.1" +geo-types = "0.7.15" +byteorder = "1.5.0" diff --git a/api/diesel.toml b/api/diesel.toml deleted file mode 100644 index 7e0910b..0000000 --- a/api/diesel.toml +++ /dev/null @@ -1,7 +0,0 @@ -# For documentation on how to configure this file, -# see diesel.rs/guides/configuring-diesel-cli - -[print_schema] -file = "src/schema.rs" -custom_type_derives = ["diesel::sql_types::SqlType", "std::fmt::Debug"] -import_types = ["diesel::sql_types::*", "postgis_diesel::sql_types::*"] \ No newline at end of file diff --git a/api/migrations/000000_airports/down.sql b/api/migrations/000000_airports/down.sql deleted file mode 100644 index 803b3d3..0000000 --- a/api/migrations/000000_airports/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE airports; \ No newline at end of file diff --git a/api/migrations/000000_airports/up.sql b/api/migrations/000000_airports/up.sql deleted file mode 100644 index 3b42a55..0000000 --- a/api/migrations/000000_airports/up.sql +++ /dev/null @@ -1,13 +0,0 @@ -CREATE EXTENSION IF NOT EXISTS postgis; -CREATE TABLE IF NOT EXISTS airports ( - icao TEXT PRIMARY KEY NOT NULL, - category TEXT NOT NULL, - name TEXT NOT NULL, - elevation_ft REAL NOT NULL, - iso_country TEXT NOT NULL, - iso_region TEXT NOT NULL, - municipality TEXT NOT NULL, - has_metar BOOLEAN NOT NULL DEFAULT FALSE, - point GEOMETRY(POINT,4326) NOT NULL, - data JSONB NOT NULL -); \ No newline at end of file diff --git a/api/migrations/000001_metars/down.sql b/api/migrations/000001_metars/down.sql deleted file mode 100644 index 15b92b8..0000000 --- a/api/migrations/000001_metars/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE metars; \ No newline at end of file diff --git a/api/migrations/000001_metars/up.sql b/api/migrations/000001_metars/up.sql deleted file mode 100644 index 82e1964..0000000 --- a/api/migrations/000001_metars/up.sql +++ /dev/null @@ -1,7 +0,0 @@ -CREATE TABLE IF NOT EXISTS metars ( - id INTEGER PRIMARY KEY GENERATED ALWAYS AS IDENTITY, - icao TEXT NOT NULL, - observation_time TIMESTAMP NOT NULL, - raw_text TEXT NOT NULL, - data JSONB NOT NULL -); \ No newline at end of file diff --git a/api/migrations/000002_airport_metar_cache/down.sql b/api/migrations/000002_airport_metar_cache/down.sql deleted file mode 100644 index 51eb513..0000000 --- a/api/migrations/000002_airport_metar_cache/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE airport_metar_cache; \ No newline at end of file diff --git a/api/migrations/000002_airport_metar_cache/up.sql b/api/migrations/000002_airport_metar_cache/up.sql deleted file mode 100644 index b6e2c83..0000000 --- a/api/migrations/000002_airport_metar_cache/up.sql +++ /dev/null @@ -1,5 +0,0 @@ -CREATE TABLE IF NOT EXISTS airport_metar_cache ( - icao TEXT PRIMARY KEY NOT NULL, - has_metar BOOLEAN NOT NULL DEFAULT FALSE, - last_checked TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP -); \ No newline at end of file diff --git a/api/migrations/000003_users/down.sql b/api/migrations/000003_users/down.sql deleted file mode 100644 index 441087a..0000000 --- a/api/migrations/000003_users/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE users; \ No newline at end of file diff --git a/api/migrations/000003_users/up.sql b/api/migrations/000003_users/up.sql deleted file mode 100644 index 4024aaf..0000000 --- a/api/migrations/000003_users/up.sql +++ /dev/null @@ -1,12 +0,0 @@ -CREATE TABLE IF NOT EXISTS users ( - email TEXT PRIMARY KEY NOT NULL, - hash TEXT NOT NULL, - role TEXT NOT NULL, - first_name TEXT NOT NULL, - last_name TEXT NOT NULL, - created_at TIMESTAMP NOT NULL DEFAULT NOW(), - updated_at TIMESTAMP NOT NULL DEFAULT NOW(), - profile_picture TEXT, - favorites TEXT[] NOT NULL DEFAULT '{}', - verified BOOLEAN NOT NULL DEFAULT FALSE -); \ No newline at end of file diff --git a/api/migrations/10232024_initial.sql b/api/migrations/10232024_initial.sql new file mode 100644 index 0000000..6e3e5f6 --- /dev/null +++ b/api/migrations/10232024_initial.sql @@ -0,0 +1,35 @@ +CREATE EXTENSION IF NOT EXISTS postgis; + +CREATE TABLE IF NOT EXISTS airports ( + icao TEXT PRIMARY KEY NOT NULL, + iata TEXT, + local TEXT, + name TEXT NOT NULL, + category TEXT NOT NULL, + iso_country TEXT NOT NULL, + iso_region TEXT NOT NULL, + municipality TEXT NOT NULL, + elevation_ft REAL NOT NULL, + longitude REAL NOT NULL, + latitude REAL NOT NULL, + has_tower BOOLEAN DEFAULT false, + has_beacon BOOLEAN DEFAULT false, + public BOOLEAN DEFAULT false +); + +CREATE TABLE IF NOT EXISTS metars ( + icao TEXT NOT NULL, + observation_time TIMESTAMPTZ NOT NULL, + raw_text TEXT NOT NULL, + data JSONB NOT NULL +); + +CREATE TABLE IF NOT EXISTS users ( + email TEXT PRIMARY KEY NOT NULL, + password_hash TEXT NOT NULL, + role TEXT NOT NULL, + first_name TEXT NOT NULL, + last_name TEXT NOT NULL, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); \ No newline at end of file diff --git a/api/src/airports/delete.rs b/api/src/airports/delete.rs new file mode 100644 index 0000000..5e9999b --- /dev/null +++ b/api/src/airports/delete.rs @@ -0,0 +1,233 @@ +use std::fmt::Display; +use std::str::FromStr; + +use crate::db; +use log::error; +use serde::{Deserialize, Serialize}; +use sqlx::postgres::types::PgPoint; +use crate::error::ApiResult; + +const TABLE_NAME: &str = "airports"; + +#[derive(Debug, Serialize, Deserialize, sqlx::FromRow)] +struct RunwayDb { + pub icao: String, + pub id: String, + pub length_ft: f32, + pub width_ft: f32, + pub surface: String, +} + +#[derive(Debug)] +pub struct AirportFilter { + pub icaos: Option>, + pub name: Option, + // pub bounds: Option>, + pub categories: Option>, + pub has_metar: Option, +} + +impl Default for AirportFilter { + fn default() -> Self { + AirportFilter { + icaos: None, + name: None, + // bounds: None, + categories: None, + has_metar: None, + } + } +} + +impl AirportDb { + pub async fn find_all(_filter: &AirportFilter, _limit: i32, _page: i32) -> ApiResult> { + let pool = db::pool(); + let airports: Vec = sqlx::query_as::<_, Self>(&format!( + "SELECT * FROM {}", + TABLE_NAME + )) + .fetch_all(pool) + .await?; + + Ok(airports) + } + + pub async fn count(_filter: &AirportFilter) -> ApiResult { + let pool = db::pool(); + let count: i64 = sqlx::query_scalar::<_, i64>(&format!( + "SELECT COUNT(*) FROM {}", + TABLE_NAME + )) + .fetch_one(pool) + .await?; + + Ok(count) + } + + // fn build_query<'a>( + // mut query: QueryBuilder<'a, Postgres>, + // filter: &'a AirportFilter, + // ) -> QueryBuilder<'a, Postgres> { + // if let Some(bounds) = &filter.bounds { + // // convert bounds to a WKT polygon + // if bounds.rings.len() > 1 { + // return Err(ApiError { + // status: 400, + // message: "Only one polygon is allowed".to_string(), + // }); + // } else { + // let mut points: Vec = vec![]; + // bounds.rings.iter().for_each(|ring| { + // ring.iter().for_each(|point| { + // points.push(format!("{} {}", point.get_x(), point.get_y())); + // }); + // }); + // let bounds = format!("POLYGON(({}))", points.join(",")); + // query.push(format!( + // "ST_Contains(ST_GeomFromText('{}', 4326), point)", + // bounds + // )); + // } + // } + // if let Some(categories) = &filter.categories { + // query.push(format!( + // "({})", + // categories + // .iter() + // .map(|category| format!("category = '{}'", category.to_string())) + // .collect::>() + // .join(" OR ") + // )); + // } + // + // fn sanitize_icao(icao: &str) -> String { + // // Sanitize search to only allow [a-zA-Z0-9-\\s] + // icao + // .chars() + // .filter(|c| c.is_alphanumeric() || *c == '-' || *c == ' ') + // .collect::() + // } + // + // if &filter.icaos.is_some() == &true && &filter.name.is_some() == &true { + // let icaos = filter.icaos.as_ref().unwrap(); + // let name = sanitize_icao(filter.name.as_ref().unwrap()); + // let icao_part = format!( + // "({})", + // icaos + // .iter() + // .map(|icao| format!("icao ILIKE '{}'", sanitize_icao(icao))) + // .collect::>() + // .join(" OR ") + // ); + // let name_part = format!("name ILIKE '%{}%'", name); + // parts.push(format!("({} OR {})", icao_part, name_part)); + // } else if let Some(icaos) = &filter.icaos { + // parts.push(format!( + // "({})", + // icaos + // .iter() + // .map(|icao| format!("icao ILIKE '{}'", sanitize_icao(icao))) + // .collect::>() + // .join(" OR ") + // )); + // } else if let Some(name) = &filter.name { + // let search = sanitize_icao(name); + // parts.push(format!("name ILIKE '%{}%'", search)); + // } + // if let Some(has_metar) = &filter.has_metar { + // parts.push(format!("has_metar = {}", has_metar)); + // } + // + // if parts.len() > 0 { + // query = format!("{} WHERE {}", query, parts.join(" AND ")); + // } + // + // return Ok(query); + // } + + pub async fn find_by_icao(icao: &str) -> ApiResult { + let pool = db::pool(); + let airport = + sqlx::query_as::<_, Self>(&format!("SELECT * FROM {} WHERE icao = $1", TABLE_NAME)) + .bind(icao) + .fetch_one(pool) + .await?; + + Ok(airport) + } + + pub async fn insert(&self) -> ApiResult<()> { + let pool = db::pool(); + sqlx::query(&format!( + "INSERT INTO {} ( + icao, + category, + name, + elevation_ft, + iso_country, + iso_region, + municipality, + has_metar, + point, + data + ) VALUES ( + $1, $2, $3, $4, $5, $6, $7, $8, $9, $10 + )", + TABLE_NAME + )) + .bind(self.icao.clone()) + .bind(self.category.clone()) + .bind(&self.name) + .bind(self.elevation_ft) + .bind(self.iso_country.clone()) + .bind(self.iso_region.clone()) + .bind(self.municipality.clone()) + .bind(self.has_metar.clone()) + // .bind(self.point.clone()) + .bind(self.data.clone()) + .execute(pool) + .await?; + Ok(()) + } + + // pub fn insert_vec(airports: Vec) -> ApiResult> { + // let mut conn: r2d2::PooledConnection> = + // db::connection()?; + // let mut inserted_airports: Vec = vec![]; + // for airport in airports { + // let airport = Self::from(airport); + // let airport = diesel::insert_into(airports::table) + // .values(airport) + // .on_conflict_do_nothing() + // .get_result(&mut conn)?; + // inserted_airports.push(airport); + // } + // Ok(inserted_airports) + // } + + pub async fn update(&self) -> ApiResult<()> { + // let mut conn = db::pool()?; + // let airport = diesel::update(airports::table) + // .filter(airports::icao.eq(airport.icao.clone())) + // .set(airport) + // .get_result(&mut conn)?; + // Ok(airport) + Ok(()) + } + + pub async fn delete_all() -> ApiResult<()> { + Ok(()) + } + + pub async fn delete_by_icao(_icao: &str) -> ApiResult<()> { + // let mut conn = db::pool()?; + // let res = match icao { + // Some(icao) => { + // diesel::delete(airports::table.filter(airports::icao.eq(icao))).execute(&mut conn)? + // } + // None => diesel::delete(airports::table).execute(&mut conn)?, + // }; + // Ok(res) + Ok(()) + } +} diff --git a/api/src/airports/model.rs b/api/src/airports/model.rs deleted file mode 100644 index 1ab0174..0000000 --- a/api/src/airports/model.rs +++ /dev/null @@ -1,432 +0,0 @@ -use std::fmt::Display; -use std::str::FromStr; - -use crate::db; -use crate::error::{ApiError, ApiResult}; -use crate::db::schema::airports; -use diesel::prelude::*; -use diesel::sql_query; -use log::error; -use postgis_diesel::types::*; -use serde::{Deserialize, Serialize}; - -#[derive(Serialize, Deserialize)] -pub struct Runway { - pub id: String, - pub length_ft: f32, - pub width_ft: f32, - pub surface: String, -} - -#[derive(Serialize, Deserialize)] -pub struct Frequency { - pub id: String, - pub frequency_mhz: f32, -} - -#[derive(Serialize, Deserialize)] -pub struct Airport { - pub icao: String, - #[serde(skip_serializing_if = "Option::is_none")] - pub iata: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub local: Option, - pub name: String, - pub category: AirportCategory, - pub iso_country: String, - pub iso_region: String, - pub municipality: String, - pub elevation_ft: f32, - pub latitude: f64, - pub longitude: f64, - #[serde(skip_serializing_if = "Option::is_none")] - pub has_tower: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub has_beacon: Option, - pub runways: Vec, - pub frequencies: Vec, - pub public: bool, -} - -#[derive(Serialize, Deserialize, Clone, Debug)] -pub struct AirportMetarCache { - pub icao: String, - pub has_metar: bool, - pub last_checked: chrono::NaiveDateTime, -} - -impl Into for Airport { - fn into(self) -> QueryAirport { - return QueryAirport { - icao: self.icao.clone(), - category: self.category.clone().to_string(), - name: self.name.clone(), - elevation_ft: self.elevation_ft, - iso_country: self.iso_country.clone(), - iso_region: self.iso_region.clone(), - municipality: self.municipality.clone(), - has_metar: false, - point: Point::new(self.longitude, self.latitude, Some(4326)), - data: match serde_json::to_value(&self) { - Ok(d) => d, - Err(err) => { - error!("{}", err); - serde_json::Value::Null - } - }, - }; - } -} - -impl From for Airport { - fn from(airport: QueryAirport) -> Self { - serde_json::from_value(airport.data).unwrap() - } -} - -#[derive(Serialize, Deserialize, Clone, Debug)] -pub enum AirportCategory { - #[serde(rename = "small_airport")] - Small, - #[serde(rename = "medium_airport")] - Medium, - #[serde(rename = "large_airport")] - Large, - #[serde(rename = "heliport")] - Heliport, - #[serde(rename = "closed")] - Closed, - #[serde(rename = "seaplane_base")] - Seaplane, - #[serde(rename = "balloonport")] - Balloonport, - #[serde(rename = "unknown")] - Unknown, -} - -impl FromStr for AirportCategory { - type Err = (); - fn from_str(s: &str) -> Result { - match s { - "small_airport" => Ok(AirportCategory::Small), - "medium_airport" => Ok(AirportCategory::Medium), - "large_airport" => Ok(AirportCategory::Large), - "heliport" => Ok(AirportCategory::Heliport), - "closed" => Ok(AirportCategory::Closed), - "seaplane_base" => Ok(AirportCategory::Seaplane), - "balloonport" => Ok(AirportCategory::Balloonport), - _ => Ok(AirportCategory::Unknown), - } - } -} - -impl Display for AirportCategory { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - AirportCategory::Small => write!(f, "small_airport"), - AirportCategory::Medium => write!(f, "medium_airport"), - AirportCategory::Large => write!(f, "large_airport"), - AirportCategory::Heliport => write!(f, "heliport"), - AirportCategory::Closed => write!(f, "closed"), - AirportCategory::Seaplane => write!(f, "seaplane_base"), - AirportCategory::Balloonport => write!(f, "balloonport"), - AirportCategory::Unknown => write!(f, "unknown"), - } - } -} - -#[derive(Serialize, Deserialize, AsChangeset, Insertable, Queryable, QueryableByName)] -#[diesel(table_name = airports)] -pub struct QueryAirport { - pub icao: String, - pub category: String, - pub name: String, - pub elevation_ft: f32, - pub iso_country: String, - pub iso_region: String, - pub municipality: String, - pub has_metar: bool, - pub point: Point, - pub data: serde_json::Value, -} - -#[derive(Debug)] -pub struct QueryFilters { - pub icaos: Option>, - pub name: Option, - pub bounds: Option>, - pub categories: Option>, - pub order_field: Option, - pub order_by: Option, - pub has_metar: Option, -} - -impl Default for QueryFilters { - fn default() -> Self { - QueryFilters { - icaos: None, - name: None, - bounds: None, - categories: None, - order_field: None, - order_by: None, - has_metar: None, - } - } -} - -#[derive(Debug)] -pub enum QueryOrderBy { - Asc, - Desc, -} - -impl FromStr for QueryOrderBy { - type Err = (); - fn from_str(s: &str) -> Result { - match s { - "asc" => Ok(QueryOrderBy::Asc), - "desc" => Ok(QueryOrderBy::Desc), - _ => Err(()), - } - } -} - -#[derive(Debug)] -pub enum QueryOrderField { - Icao, - Name, - Category, - Country, - Region, - Municipality, -} - -impl FromStr for QueryOrderField { - type Err = (); - fn from_str(s: &str) -> Result { - match s { - "icao" => Ok(QueryOrderField::Icao), - "name" => Ok(QueryOrderField::Name), - "category" => Ok(QueryOrderField::Category), - "iso_country" => Ok(QueryOrderField::Country), - "iso_region" => Ok(QueryOrderField::Region), - "municipality" => Ok(QueryOrderField::Municipality), - _ => Err(()), - } - } -} - -impl QueryAirport { - pub fn get_all(filters: &QueryFilters, limit: i32, page: i32) -> ApiResult> { - let mut conn = db::connection()?; - let mut query: String = "SELECT * FROM airports".to_string(); - query = format!("{} {}", query, QueryAirport::build_filter_query(&filters)?); - - query = format!("{} ORDER BY has_metar DESC", query); - if let Some(order_by) = &filters.order_by { - match order_by { - QueryOrderBy::Asc => { - if let Some(order_field) = &filters.order_field { - query = match order_field { - QueryOrderField::Icao => format!("{}, icao ASC", query), - QueryOrderField::Name => format!("{}, name ASC", query), - QueryOrderField::Category => format!("{}, category ASC", query), - QueryOrderField::Country => format!("{}, iso_country ASC", query), - QueryOrderField::Region => format!("{}, iso_region ASC", query), - QueryOrderField::Municipality => format!("{}, municipality ASC", query), - }; - }; - } - QueryOrderBy::Desc => { - if let Some(order_field) = &filters.order_field { - query = match order_field { - QueryOrderField::Icao => format!("{}, icao DESC", query), - QueryOrderField::Name => format!("{}, name DESC", query), - QueryOrderField::Category => format!("{}, category DESC", query), - QueryOrderField::Country => format!("{}, iso_country DESC", query), - QueryOrderField::Region => format!("{}, iso_region DESC", query), - QueryOrderField::Municipality => format!("{}, municipality DESC", query), - }; - }; - } - } - } - // Limit query to page and limit - query = format!("{} LIMIT {} OFFSET {}", query, limit, (page - 1) * limit); - - let airports: Vec = match sql_query(query).load(&mut conn) { - Ok(a) => a, - Err(err) => { - return Err(ApiError { - status: 500, - message: format!("{}", err), - }) - } - }; - Ok(airports) - } - - pub fn get_count(filters: &QueryFilters) -> ApiResult { - let mut conn = db::connection()?; - let mut query = "SELECT COUNT(*) FROM airports".to_string(); - query = format!("{} {}", query, QueryAirport::build_filter_query(&filters)?); - - // TODO: Fix this to use get_result() instead of building this table to do the load() - diesel::table! { - airports (count) { - count -> BigInt, - } - } - #[derive(Debug, Queryable, QueryableByName)] - #[diesel(table_name = airports)] - struct Count { - count: i64, - } - - let count: Vec = match sql_query(query).load(&mut conn) { - Ok(a) => a, - Err(err) => { - return Err(ApiError { - status: 500, - message: format!("{}", err), - }) - } - }; - return Ok(count[0].count); - } - - // TODO: Unsafe query, need to sanitize inputs - fn build_filter_query(filters: &QueryFilters) -> ApiResult { - let mut query = "".to_string(); - let mut parts: Vec = vec![]; - - if let Some(bounds) = &filters.bounds { - // convert bounds to a WKT polygon - if bounds.rings.len() > 1 { - return Err(ApiError { - status: 400, - message: "Only one polygon is allowed".to_string(), - }); - } else { - let mut points: Vec = vec![]; - bounds.rings.iter().for_each(|ring| { - ring.iter().for_each(|point| { - points.push(format!("{} {}", point.get_x(), point.get_y())); - }); - }); - let bounds = format!("POLYGON(({}))", points.join(",")); - parts.push(format!( - "ST_Contains(ST_GeomFromText('{}', 4326), point)", - bounds - )); - } - } - if let Some(categories) = &filters.categories { - parts.push(format!( - "({})", - categories - .iter() - .map(|category| format!("category = '{}'", category.to_string())) - .collect::>() - .join(" OR ") - )); - } - fn sanitize_icao(icao: &str) -> String { - // Sanitize search to only allow [a-zA-Z0-9-\\s] - icao - .chars() - .filter(|c| c.is_alphanumeric() || *c == '-' || *c == ' ') - .collect::() - } - if &filters.icaos.is_some() == &true && &filters.name.is_some() == &true { - let icaos = filters.icaos.as_ref().unwrap(); - let name = sanitize_icao(filters.name.as_ref().unwrap()); - let icao_part = format!( - "({})", - icaos - .iter() - .map(|icao| format!("icao ILIKE '{}'", sanitize_icao(icao))) - .collect::>() - .join(" OR ") - ); - let name_part = format!("name ILIKE '%{}%'", name); - parts.push(format!("({} OR {})", icao_part, name_part)); - } else if let Some(icaos) = &filters.icaos { - parts.push(format!( - "({})", - icaos - .iter() - .map(|icao| format!("icao ILIKE '{}'", sanitize_icao(icao))) - .collect::>() - .join(" OR ") - )); - } else if let Some(name) = &filters.name { - let search = sanitize_icao(name); - parts.push(format!("name ILIKE '%{}%'", search)); - } - if let Some(has_metar) = &filters.has_metar { - parts.push(format!("has_metar = {}", has_metar)); - } - - if parts.len() > 0 { - query = format!("{} WHERE {}", query, parts.join(" AND ")); - } - - return Ok(query); - } - - pub fn get(icao: &str) -> ApiResult { - let mut conn = db::connection()?; - let airport = airports::table - .filter(airports::icao.eq(icao)) - .first(&mut conn)?; - Ok(airport) - } - - pub fn insert(airport: Self) -> ApiResult { - let mut conn: r2d2::PooledConnection> = - db::connection()?; - let airport = Self::from(airport); - let airport = diesel::insert_into(airports::table) - .values(airport) - .on_conflict_do_nothing() - .get_result(&mut conn)?; - Ok(airport) - } - - pub fn insert_all(airports: Vec) -> ApiResult> { - let mut conn: r2d2::PooledConnection> = - db::connection()?; - let mut inserted_airports: Vec = vec![]; - for airport in airports { - let airport = Self::from(airport); - let airport = diesel::insert_into(airports::table) - .values(airport) - .on_conflict_do_nothing() - .get_result(&mut conn)?; - inserted_airports.push(airport); - } - Ok(inserted_airports) - } - - pub fn update(airport: Self) -> ApiResult { - let mut conn = db::connection()?; - let airport = diesel::update(airports::table) - .filter(airports::icao.eq(airport.icao.clone())) - .set(airport) - .get_result(&mut conn)?; - Ok(airport) - } - - pub fn delete(icao: Option) -> ApiResult { - let mut conn = db::connection()?; - let res = match icao { - Some(icao) => { - diesel::delete(airports::table.filter(airports::icao.eq(icao))).execute(&mut conn)? - } - None => diesel::delete(airports::table).execute(&mut conn)?, - }; - Ok(res) - } -} diff --git a/api/src/airports/model/airport.rs b/api/src/airports/model/airport.rs new file mode 100644 index 0000000..68a2f61 --- /dev/null +++ b/api/src/airports/model/airport.rs @@ -0,0 +1,288 @@ +use std::str::FromStr; +use actix_web::web::Json; +use serde::{Deserialize, Serialize}; +use sqlx::{Postgres, QueryBuilder}; +use crate::airports::model::airport_category::AirportCategory; +use crate::airports::{Frequency, Runway, UpdateFrequency, UpdateRunway}; +use crate::db; +use crate::error::ApiResult; + +const TABLE_NAME: &str = "airports"; + +#[derive(Debug, Serialize, Deserialize)] +pub struct Airport { + pub icao: String, + #[serde(skip_serializing_if = "Option::is_none")] + pub iata: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub local: Option, + pub name: String, + pub category: AirportCategory, + pub iso_country: String, + pub iso_region: String, + pub municipality: String, + pub elevation_ft: f32, + pub longitude: f32, + pub latitude: f32, + #[serde(skip_serializing_if = "Option::is_none")] + pub has_tower: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub has_beacon: Option, + pub runways: Vec, + pub frequencies: Vec, + pub public: bool, +} + +#[derive(Debug, Serialize, Deserialize, sqlx::FromRow)] +struct AirportRow { + pub icao: String, + pub iata: Option, + pub local: Option, + pub name: String, + pub category: String, + pub iso_country: String, + pub iso_region: String, + pub municipality: String, + pub elevation_ft: f32, + longitude: f32, + latitude: f32, + pub has_tower: Option, + pub has_beacon: Option, + pub public: bool, +} + +#[derive(Debug, Serialize, Deserialize)] +pub struct UpdateAirport { + #[serde(skip_serializing_if = "Option::is_none")] + pub icao: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub iata: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub local: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub name: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub category: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub iso_country: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub iso_region: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub municipality: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub elevation_ft: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub longitude: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub latitude: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub has_tower: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub has_beacon: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub runways: Option>, + #[serde(skip_serializing_if = "Option::is_none")] + pub frequencies: Option>, + #[serde(skip_serializing_if = "Option::is_none")] + pub public: Option, +} + +impl Into for Airport { + fn into(self) -> AirportRow { + AirportRow { + icao: self.icao.clone(), + iata: self.iata.clone(), + local: self.local.clone(), + name: self.name.clone(), + category: self.category.clone().to_string(), + iso_country: self.iso_country.clone(), + iso_region: self.iso_region.clone(), + municipality: self.municipality.clone(), + elevation_ft: self.elevation_ft, + longitude: self.longitude, + latitude: self.latitude, + has_tower: self.has_tower, + has_beacon: self.has_beacon, + public: self.public, + } + } +} + +impl From for Airport { + fn from(airport: AirportRow) -> Self { + Airport { + icao: airport.icao.clone(), + iata: airport.iata.clone(), + local: airport.local.clone(), + name: airport.name.clone(), + category: match AirportCategory::from_str(&airport.category) { + Ok(c) => c, + Err(_) => { + log::error!("Invalid Airport category: {}", airport.category); + AirportCategory::Unknown + } + }, + iso_country: airport.iso_country.clone(), + iso_region: airport.iso_region.clone(), + municipality: airport.municipality.clone(), + elevation_ft: airport.elevation_ft, + longitude: airport.longitude, + latitude: airport.latitude, + has_tower: airport.has_tower, + has_beacon: airport.has_beacon, + runways: vec![], + frequencies: vec![], + public: airport.public, + } + } +} + +impl Airport { + pub async fn select(icao: &str) -> Option { + let pool = db::pool(); + + let airport: Option = sqlx::query_as(&format!( + r#" + SELECT * FROM {} WHERE icao = $1 + "#, + TABLE_NAME + )) + .bind(icao) + .fetch_optional(pool) + .await + .unwrap_or_else(|err| { + log::error!("Unable to find airport '{}'", icao); + None + }); + + match airport { + Some(a) => Some(a.into()), + None => None, + } + } + + pub async fn select_all() -> ApiResult> { + let pool = db::pool(); + + let airports: Vec = sqlx::query_as(&format!( + r#" + SELECT * FROM {} + "#, + TABLE_NAME + )) + .fetch_all(pool) + .await?; + + Ok(airports.into_iter().map(From::from).collect()) + } + + pub async fn insert(&self) -> ApiResult { + let pool = db::pool(); + + let airport: AirportRow = sqlx::query_as(&format!( + r#" + INSERT INTO {} ( + icao, iata, local, name, category, iso_country, iso_region, municipality, + elevation_ft, longitude, latitude, has_tower, has_beacon, public + ) + VALUES ( + $1, $2, $3, $4, $5, $6, $7, + $8, $9, $10, $11, $12, $13, $14 + ) + RETURNING * + "#, + TABLE_NAME, + )) + .bind(self.icao.to_string()) + .bind(&self.iata) + .bind(&self.local) + .bind(self.name.to_string()) + .bind(self.category.to_string()) + .bind(self.iso_country.to_string()) + .bind(self.iso_region.to_string()) + .bind(self.municipality.to_string()) + .bind(self.elevation_ft) + .bind(self.longitude) + .bind(self.latitude) + .bind(self.has_tower) + .bind(self.has_beacon) + .bind(self.public) + .fetch_one(pool) + .await?; + + Ok(airport.into()) + } + + pub async fn insert_all(airports: Vec) -> ApiResult<()> { + let pool = db::pool(); + let airport_rows: Vec = airports.into_iter().map(Into::into).collect(); + + // Define the maximum size of a single insertion batch. + let chunk_size = 1000; + for chunk in airport_rows.chunks(chunk_size) { + // Build a dynamic query for batch insertion. + let mut query_builder: QueryBuilder = QueryBuilder::new( + "INSERT INTO airports (icao, iata, local, name, category, \ + iso_country, iso_region, municipality, elevation_ft, \ + longitude, latitude, has_tower, has_beacon, public) ", + ); + query_builder.push_values(chunk, |mut b, row| { + b.push_bind(&row.icao) + .push_bind(&row.iata) + .push_bind(&row.local) + .push_bind(&row.name) + .push_bind(&row.category) + .push_bind(&row.iso_country) + .push_bind(&row.iso_region) + .push_bind(&row.municipality) + .push_bind(row.elevation_ft) + .push_bind(row.longitude) + .push_bind(row.latitude) + .push_bind(row.has_tower) + .push_bind(row.has_beacon) + .push_bind(row.public); + }); + + let query = query_builder.build(); + query.execute(pool).await?; + } + + Ok(()) + } + + // TODO + pub async fn update(icao: &str, airport: &UpdateAirport) -> ApiResult<()> { + Ok(()) + } + + pub async fn delete(icao: &str) -> ApiResult<()> { + let pool = db::pool(); + + sqlx::query(&format!( + r#" + DELETE FROM {} WHERE icao = $1 + "#, + TABLE_NAME + )) + .bind(icao.to_string()) + .execute(pool) + .await?; + + Ok(()) + } + + pub async fn delete_all() -> ApiResult<()> { + let pool = db::pool(); + + sqlx::query(&format!( + r#" + DELETE FROM {} WHERE true + "#, + TABLE_NAME + )) + .execute(pool) + .await?; + + Ok(()) + } +} diff --git a/api/src/airports/model/airport_category.rs b/api/src/airports/model/airport_category.rs new file mode 100644 index 0000000..c43e833 --- /dev/null +++ b/api/src/airports/model/airport_category.rs @@ -0,0 +1,54 @@ +use std::fmt::Display; +use std::str::FromStr; +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub enum AirportCategory { + #[serde(rename = "small_airport")] + Small, + #[serde(rename = "medium_airport")] + Medium, + #[serde(rename = "large_airport")] + Large, + #[serde(rename = "heliport")] + Heliport, + #[serde(rename = "closed")] + Closed, + #[serde(rename = "seaplane_base")] + Seaplane, + #[serde(rename = "balloon_port")] + BalloonPort, + #[serde(rename = "unknown")] + Unknown, +} + +impl FromStr for AirportCategory { + type Err = (); + fn from_str(s: &str) -> Result { + match s { + "small_airport" => Ok(AirportCategory::Small), + "medium_airport" => Ok(AirportCategory::Medium), + "large_airport" => Ok(AirportCategory::Large), + "heliport" => Ok(AirportCategory::Heliport), + "closed" => Ok(AirportCategory::Closed), + "seaplane_base" => Ok(AirportCategory::Seaplane), + "balloon_port" => Ok(AirportCategory::BalloonPort), + _ => Ok(AirportCategory::Unknown), + } + } +} + +impl Display for AirportCategory { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + AirportCategory::Small => write!(f, "small_airport"), + AirportCategory::Medium => write!(f, "medium_airport"), + AirportCategory::Large => write!(f, "large_airport"), + AirportCategory::Heliport => write!(f, "heliport"), + AirportCategory::Closed => write!(f, "closed"), + AirportCategory::Seaplane => write!(f, "seaplane_base"), + AirportCategory::BalloonPort => write!(f, "balloon_port"), + AirportCategory::Unknown => write!(f, "unknown"), + } + } +} diff --git a/api/src/airports/model/frequency.rs b/api/src/airports/model/frequency.rs new file mode 100644 index 0000000..0280d66 --- /dev/null +++ b/api/src/airports/model/frequency.rs @@ -0,0 +1,15 @@ +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Serialize, Deserialize)] +pub struct Frequency { + pub id: String, + pub frequency_mhz: f32, +} + +#[derive(Debug, Serialize, Deserialize)] +pub struct UpdateFrequency { + #[serde(skip_serializing_if = "Option::is_none")] + pub id: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub frequency_mhz: Option, +} diff --git a/api/src/airports/model/mod.rs b/api/src/airports/model/mod.rs new file mode 100644 index 0000000..0c42a68 --- /dev/null +++ b/api/src/airports/model/mod.rs @@ -0,0 +1,9 @@ +mod airport; +mod airport_category; +mod frequency; +mod runway; + +pub use airport::*; +pub use airport_category::*; +pub use frequency::*; +pub use runway::*; diff --git a/api/src/airports/model/runway.rs b/api/src/airports/model/runway.rs new file mode 100644 index 0000000..b0fc9b4 --- /dev/null +++ b/api/src/airports/model/runway.rs @@ -0,0 +1,21 @@ +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Serialize, Deserialize)] +pub struct Runway { + pub id: String, + pub length_ft: f32, + pub width_ft: f32, + pub surface: String, +} + +#[derive(Debug, Serialize, Deserialize)] +pub struct UpdateRunway { + #[serde(skip_serializing_if = "Option::is_none")] + pub id: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub length_ft: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub width_ft: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub surface: Option, +} diff --git a/api/src/airports/routes.rs b/api/src/airports/routes.rs index ec2a9e6..cae8f39 100644 --- a/api/src/airports/routes.rs +++ b/api/src/airports/routes.rs @@ -2,15 +2,15 @@ use std::str::FromStr; use futures_util::stream::StreamExt as _; use crate::{ - airports::{QueryAirport, QueryFilters, QueryOrderField, QueryOrderBy, Airport, AirportCategory}, - db::{Response, Metadata}, + airports::{Airport, AirportCategory}, + db::Paged, auth::{Auth, verify_role}, }; use actix_multipart::Multipart; use actix_web::{delete, get, post, put, web, HttpResponse, HttpRequest, ResponseError}; -use log::{error, warn}; -use postgis_diesel::types::{Polygon, Point}; use serde::{Serialize, Deserialize}; +use crate::airports::UpdateAirport; +use crate::users::ADMIN_ROLE; #[derive(Debug, Serialize, Deserialize)] struct AirportsQuery { @@ -27,7 +27,7 @@ struct AirportsQuery { #[post("/import")] async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { - if let Err(err) = verify_role(&auth, "admin") { + if let Err(err) = verify_role(&auth, ADMIN_ROLE) { return ResponseError::error_response(&err); }; @@ -43,7 +43,7 @@ async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { let data = match chunk { Ok(data) => data, Err(err) => { - error!("Failed to get chunk: {}", err); + log::error!("Failed to get chunk: {}", err); return ResponseError::error_response(&err); } }; @@ -54,14 +54,12 @@ async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { let airports: Vec = match serde_json::from_slice(&bytes) { Ok(a) => a, Err(err) => { - error!("Failed to parse JSON: {}", err); + log::error!("Failed to parse JSON: {}", err); return ResponseError::error_response(&err); } }; - // Convert Vec to Vec and insert into database - let query_airports: Vec = airports.into_iter().map(|a| a.into()).collect(); - match QueryAirport::insert_all(query_airports) { + match Airport::insert_all(airports).await { Ok(_) => {} Err(err) => return ResponseError::error_response(&err), }; @@ -71,220 +69,83 @@ async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { #[get("")] async fn get_airports(req: HttpRequest) -> HttpResponse { - let params = web::Query::::from_query(req.query_string()).unwrap(); - let mut filters = QueryFilters::default(); - filters.icaos = match ¶ms.icaos { - Some(i) => Some(i.split(",").map(|s| s.to_string()).collect()), - None => None, - }; - filters.name = params.name.clone(); - filters.categories = match ¶ms.categories { - Some(c) => Some( - c.split(",") - .map(|s| AirportCategory::from_str(s).unwrap()) - .collect(), - ), - None => None, - }; - filters.bounds = match ¶ms.bounds { - Some(b) => { - let bounds: Vec<&str> = b.split(",").collect(); - if bounds.len() != 4 { - warn!("Expected 4 bounds, received {}: {}", bounds.len(), b); - return HttpResponse::UnprocessableEntity().body(format!( - "Received {}; expected NE_LAT,NE_LON,SW_LAT,SW_LON", - b - )); - } - let ne_lat = match bounds[0].parse::() { - Ok(b) => b, - Err(err) => { - warn!("{}", err); - return HttpResponse::UnprocessableEntity().body(format!("{}", err)); - } - }; - let ne_lon = match bounds[1].parse::() { - Ok(b) => b, - Err(err) => { - warn!("{}", err); - return HttpResponse::UnprocessableEntity().body(format!("{}", err)); - } - }; - let sw_lat = match bounds[2].parse::() { - Ok(b) => b, - Err(err) => { - warn!("{}", err); - return HttpResponse::UnprocessableEntity().body(format!("{}", err)); - } - }; - let sw_lon = match bounds[3].parse::() { - Ok(b) => b, - Err(err) => { - warn!("{}", err); - return HttpResponse::UnprocessableEntity().body(format!("{}", err)); - } - }; - let mut polygon: Polygon = Polygon::new(Some(4326)); - polygon.add_point(Point { - x: sw_lon, - y: sw_lat, - srid: Some(4326), - }); - polygon.add_point(Point { - x: ne_lon, - y: sw_lat, - srid: Some(4326), - }); - polygon.add_point(Point { - x: ne_lon, - y: ne_lat, - srid: Some(4326), - }); - polygon.add_point(Point { - x: sw_lon, - y: ne_lat, - srid: Some(4326), - }); - polygon.add_point(Point { - x: sw_lon, - y: sw_lat, - srid: Some(4326), - }); - Some(polygon) - } - None => None, - }; - - filters.order_by = match ¶ms.order_by { - Some(o) => Some(QueryOrderBy::from_str(&o).unwrap()), - None => None, - }; - filters.order_field = match ¶ms.order_field { - Some(o) => Some(QueryOrderField::from_str(&o).unwrap()), - None => None, - }; - filters.has_metar = match ¶ms.has_metar { - Some(h) => Some(h.parse::().unwrap()), - None => None, - }; - - let limit = match params.limit { - Some(l) => l, - None => 100, - }; - let page = match params.page { - Some(p) => p, - None => 1, - }; - let total = match QueryAirport::get_count(&filters) { - Ok(t) => t, - Err(_) => 0, - }; - - match web::block(move || QueryAirport::get_all(&filters, limit, page)) - .await - .unwrap() - { - Ok(a) => { - // Convert Vec to Vec - let mut airports: Vec = vec![]; - for airport in a { - airports.push(airport.into()); - } - HttpResponse::Ok().json(Response { - data: airports, - meta: Some(Metadata { page, limit, total }), - }) - } + match Airport::select_all().await { + Ok(airports) => HttpResponse::Ok().json(airports), Err(err) => { - error!("{}", err); - err.to_http_response() + log::error!("{}", err); + ResponseError::error_response(&err) } } } #[get("/{icao}")] async fn get_airport(icao: web::Path) -> HttpResponse { - match QueryAirport::get(&icao.into_inner()) { - Ok(a) => { - let airport: Airport = a.into(); - HttpResponse::Ok().json(airport) - } - Err(err) => { - error!("{}", err); - err.to_http_response() - } + match Airport::select(&icao.into_inner()).await { + Some(airport) => HttpResponse::Ok().json(airport), + None => HttpResponse::NotFound().finish(), } } #[post("")] -async fn create_airport(airport: web::Json, auth: Auth) -> HttpResponse { - let _ = match verify_role(&auth, "admin") { +async fn insert_airport(airport: web::Json, auth: Auth) -> HttpResponse { + let _ = match verify_role(&auth, ADMIN_ROLE) { Ok(_) => {} Err(err) => return ResponseError::error_response(&err), }; - let query_airport: QueryAirport = airport.into_inner().into(); - match QueryAirport::insert(query_airport) { - Ok(a) => { - let airport: Airport = a.into(); - HttpResponse::Ok().json(airport) - } + match airport.insert().await { + Ok(a) => HttpResponse::Ok().json(a), Err(err) => { - error!("{}", err); - err.to_http_response() + log::error!("{}", err); + ResponseError::error_response(&err) } } } #[put("/{icao}")] async fn update_airport( - _icao: web::Path, - airport: web::Json, + icao: web::Path, + airport: web::Json, auth: Auth, ) -> HttpResponse { - let _ = match verify_role(&auth, "admin") { + let _ = match verify_role(&auth, ADMIN_ROLE) { Ok(_) => {} Err(err) => return ResponseError::error_response(&err), }; - let query_airport: QueryAirport = airport.into_inner().into(); - match QueryAirport::update(query_airport) { - Ok(a) => { - let airport: Airport = a.into(); - HttpResponse::Ok().json(airport) - } + match Airport::update(&icao.into_inner(), &airport.into_inner()).await { + Ok(a) => HttpResponse::Ok().json(a), Err(err) => { - error!("{}", err); - err.to_http_response() + log::error!("{}", err); + ResponseError::error_response(&err) } } } #[delete("")] async fn delete_airports(auth: Auth) -> HttpResponse { - let _ = match verify_role(&auth, "admin") { + let _ = match verify_role(&auth, ADMIN_ROLE) { Ok(_) => {} Err(err) => return ResponseError::error_response(&err), }; - match QueryAirport::delete(None) { + match Airport::delete_all().await { Ok(_) => HttpResponse::NoContent().finish(), Err(err) => { - error!("{}", err); - err.to_http_response() + log::error!("{}", err); + ResponseError::error_response(&err) } } } #[delete("/{icao}")] async fn delete_airport(icao: web::Path, auth: Auth) -> HttpResponse { - let _ = match verify_role(&auth, "admin") { + let _ = match verify_role(&auth, ADMIN_ROLE) { Ok(_) => {} Err(err) => return ResponseError::error_response(&err), }; - match QueryAirport::delete(Some(icao.into_inner())) { + match Airport::delete(&icao.into_inner()).await { Ok(_) => HttpResponse::NoContent().finish(), Err(err) => { - error!("{}", err); - err.to_http_response() + log::error!("{}", err); + ResponseError::error_response(&err) } } } @@ -295,7 +156,7 @@ pub fn init_routes(config: &mut web::ServiceConfig) { .service(import_airports) .service(get_airports) .service(get_airport) - .service(create_airport) + .service(insert_airport) .service(update_airport) .service(delete_airports) .service(delete_airport), diff --git a/api/src/auth/mod.rs b/api/src/auth/mod.rs index 2179a81..96a7f65 100644 --- a/api/src/auth/mod.rs +++ b/api/src/auth/mod.rs @@ -4,6 +4,7 @@ use argon2::{ }; use rand::prelude::*; use rand_chacha::ChaCha20Rng; +use serde::{Deserialize, Serialize}; mod model; mod routes; @@ -13,11 +14,9 @@ pub use model::*; pub use session::*; pub use routes::init_routes; -use crate::error::{ApiError, ApiResult}; +use crate::error::{Error, ApiResult}; -pub const SESSION_COOKIE_NAME: &str = "session"; - -pub fn csprng_128bit(take: usize) -> String { +pub fn csprng(take: usize) -> String { // Generate a CSPRNG 128-bit (16 byte) ID using alphanumeric characters (a-z, A-Z, 0-9) let rng = ChaCha20Rng::from_entropy(); rng @@ -27,32 +26,51 @@ pub fn csprng_128bit(take: usize) -> String { .collect() } -pub fn hash(str: &str) -> ApiResult { +pub fn hash(string: &str) -> ApiResult { let salt = SaltString::generate(&mut OsRng); - let bytes = str.as_bytes(); - let hash = Argon2::default().hash_password(bytes, &salt)?.to_string(); + let hash = Argon2::default() + .hash_password(string.as_bytes(), &salt)? + .to_string(); Ok(hash) } -pub fn verify_hash(str: &str, hash: &str) -> bool { - let bytes = str.as_bytes(); - let parsed_hash = match PasswordHash::new(hash) { +pub fn verify_hash(string: &str, hashed_string: &str) -> bool { + let bytes = string.as_bytes(); + let parsed_hash = match PasswordHash::new(hashed_string) { Ok(h) => h, - Err(_) => return false, + Err(err) => { + log::error!( + "Failed to construct PasswordHash from '{}': {}", + hashed_string, + err + ); + return false; + } }; - match Argon2::default().verify_password(bytes, &parsed_hash) { - Ok(_) => true, - Err(_) => false, - } + Argon2::default() + .verify_password(bytes, &parsed_hash) + .is_ok() } pub fn verify_role(auth: &Auth, role: &str) -> ApiResult<()> { if auth.user.role == role { Ok(()) } else { - Err(ApiError { + Err(Error { status: 403, - message: "User does not have permission to perform this action.".to_string(), + details: "User does not have permission to perform this action.".to_string(), }) } } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_hash() { + let password = hash("password").unwrap(); + assert!(!verify_hash(&password, "bad_password")); + assert!(verify_hash("password", &password)); + } +} diff --git a/api/src/auth/model.rs b/api/src/auth/model.rs index 1cd2788..1b5a9ba 100644 --- a/api/src/auth/model.rs +++ b/api/src/auth/model.rs @@ -3,17 +3,14 @@ use std::pin::Pin; use actix_web::{FromRequest, Error as ActixError, HttpRequest, dev::Payload, http}; use serde::{Serialize, Deserialize}; -use crate::{ - error::ApiError, - users::{User, UserResponse}, -}; - +use crate::{error::Error, users::User}; use super::{Session, SESSION_COOKIE_NAME}; #[derive(Debug, Serialize, Deserialize)] pub struct Auth { pub session_id: Option, - pub user: UserResponse, + pub api_key: Option, + pub user: User, } impl FromRequest for Auth { @@ -21,7 +18,34 @@ impl FromRequest for Auth { type Future = Pin>>>; fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future { - // Get session ID from request + // Check for API key + match req + .headers() + .get(http::header::AUTHORIZATION) + .map(|h| h.to_str().unwrap().split_at(7).1.to_string()) + { + Some(key_id) => { + let fut = async move { + // Check if the Session API key exists + let api_key = match Session::get(&key_id).await? { + Some(session) => session, + None => return Err(Error::new(401, "API Key does not exist".to_string()).into()), + }; + match User::select(&api_key.email).await { + Some(user) => Ok(Auth { + session_id: None, + api_key: Some(key_id), + user, + }), + None => Err(Error::new(404, format!("User {} not found", api_key.email)).into()), + } + }; + return Box::pin(fut); + } + None => {} + }; + + // Check for session let session_id = match req .cookie(SESSION_COOKIE_NAME) .map(|c| c.value().to_string()) @@ -35,9 +59,9 @@ impl FromRequest for Auth { None => { let fut = async { Err( - ApiError { + Error { status: 401, - message: "No session ID found in the request".to_string(), + details: "No session ID found in the request".to_string(), } .into(), ) @@ -52,12 +76,13 @@ impl FromRequest for Auth { // Verify the session let fut = async move { match Session::verify(&session_id, &ip_address).await { - Ok(session) => match User::get_by_email(&session.email) { - Ok(user) => Ok(Auth { + Ok(session) => match User::select(&session.email).await { + Some(user) => Ok(Auth { session_id: Some(session_id), - user: user.into(), + api_key: None, + user, }), - Err(err) => Err(err.into()), + None => Err(Error::new(404, format!("User {} not found", session.email)).into()), }, Err(err) => Err(err.into()), } diff --git a/api/src/auth/routes.rs b/api/src/auth/routes.rs index d7d46c1..e40544f 100644 --- a/api/src/auth/routes.rs +++ b/api/src/auth/routes.rs @@ -5,11 +5,11 @@ use actix_web::{ }; use crate::{ auth::{verify_hash, Session, SESSION_COOKIE_NAME}, - error::ApiError, + error::Error, users::{LoginRequest, RegisterRequest, User, UserResponse}, }; -use crate::auth::Auth; +use crate::auth::{Auth, DEFAULT_SESSION_TTL}; #[post("/register")] async fn register(user: web::Json) -> HttpResponse { @@ -18,17 +18,18 @@ async fn register(user: web::Json) -> HttpResponse { Ok(user) => user, Err(err) => return ResponseError::error_response(&err), }; - match User::insert(insert_user) { + match insert_user.insert().await { Ok(user) => { let response: UserResponse = user.into(); + log::trace!("Registered user '{}'", response.email); HttpResponse::Created().json(response) - }, + } Err(err) => { // Obfuscate the service error message to prevent leaking database details if err.status == 409 { - return HttpResponse::Conflict().finish(); + HttpResponse::Conflict().finish() } else { - return ResponseError::error_response(&err); + ResponseError::error_response(&err) } } } @@ -36,29 +37,27 @@ async fn register(user: web::Json) -> HttpResponse { #[post("/login")] async fn login(request: web::Json, req: HttpRequest) -> HttpResponse { - let email = request.email.clone(); + let email = &request.email; let ip_address = req.peer_addr().unwrap().ip().to_string(); - let query_user = match User::get_by_email(&email) { - Ok(query_user) => query_user, - Err(err) => { - log::error!("{}", err); - return ResponseError::error_response(&err); - } + let query_user = match User::select(&email).await { + Some(query_user) => query_user, + None => return HttpResponse::Unauthorized().finish(), }; - if verify_hash(&query_user.hash, &request.password) { + + if verify_hash(&request.password, &query_user.password_hash) { // Create a session - let session = Session::new(&email, &ip_address); - let session_cookie = session.cookie(); + let session = Session::new(64, &email, &ip_address, Some(DEFAULT_SESSION_TTL)); + let session_cookie = session.to_cookie(); // Save the session to the database if let Err(err) = session.store().await { log::error!("Failed to store session"); - return ResponseError::error_response(&ApiError::new(500, err.to_string())); + return ResponseError::error_response(&Error::new(500, err.to_string())); } - return HttpResponse::Ok().cookie(session_cookie).finish(); + HttpResponse::Ok().cookie(session_cookie).finish() } else { log::error!("Invalid login attempt for {}", email); - return HttpResponse::Unauthorized().finish(); + HttpResponse::Unauthorized().finish() } } @@ -70,11 +69,11 @@ async fn logout(req: HttpRequest, _auth: Auth) -> HttpResponse { let session_id = cookie.value().to_string(); if let Err(err) = Session::delete(&session_id).await { log::error!("Failed to delete session"); - return ResponseError::error_response(&ApiError::new(500, err.to_string())); + return ResponseError::error_response(&Error::new(500, err.to_string())); } } None => { - return ResponseError::error_response(&ApiError::new(400, "Invalid session".to_string())); + return ResponseError::error_response(&Error::new(400, "Invalid session".to_string())); } } @@ -88,11 +87,21 @@ async fn logout(req: HttpRequest, _auth: Auth) -> HttpResponse { HttpResponse::Ok().cookie(session_cookie).finish() } +#[post("/key")] +async fn create_api_key(req: HttpRequest, auth: Auth) -> HttpResponse { + let ip_address = req.peer_addr().unwrap().ip().to_string(); + let api_key = Session::new(128, &auth.user.email, &ip_address, None); + + // TODO: store api key + HttpResponse::Ok().body(api_key.session_id) +} + pub fn init_routes(config: &mut web::ServiceConfig) { config.service( web::scope("auth") .service(register) .service(login) - .service(logout), + .service(logout) + .service(create_api_key), ); } diff --git a/api/src/auth/session.rs b/api/src/auth/session.rs index fbf2465..33e3cb4 100644 --- a/api/src/auth/session.rs +++ b/api/src/auth/session.rs @@ -5,10 +5,10 @@ use redis::{AsyncCommands, RedisResult}; use crate::{ db::redis_async_connection, - error::{ApiError, ApiResult}, + error::{Error, ApiResult}, }; -use super::{csprng_128bit, hash, verify_hash}; +use super::{csprng, hash, verify_hash}; pub const DEFAULT_SESSION_TTL: i64 = 86400; // (In seconds) 24 hours pub const SESSION_COOKIE_NAME: &str = "session"; @@ -18,17 +18,21 @@ pub struct Session { pub session_id: String, pub email: String, pub ip_address: String, - pub expires_at: DateTime, + #[serde(skip_serializing_if = "Option::is_none")] + pub expires_at: Option>, } impl Session { - pub fn new(email: &str, ip_address: &str) -> Self { - let now = chrono::Utc::now(); + pub fn new(take: usize, email: &str, ip_address: &str, ttl: Option) -> Self { + let now = Utc::now(); Self { - session_id: csprng_128bit(32), + session_id: csprng(take), email: email.to_string(), ip_address: hash(&ip_address).unwrap(), - expires_at: now + chrono::Duration::seconds(DEFAULT_SESSION_TTL), + expires_at: match ttl { + Some(ttl) => Some(now + chrono::Duration::seconds(ttl)), + None => None, + }, } } @@ -36,7 +40,13 @@ impl Session { let mut conn = redis_async_connection().await?; let key = self.session_id.clone(); let value = serde_json::to_string(self)?; - let result: RedisResult<()> = conn.set_ex(key, &value, DEFAULT_SESSION_TTL as u64).await; + let result: RedisResult<()> = match self.expires_at { + Some(expires_at) => { + let ttl = expires_at.timestamp() - Utc::now().timestamp(); + conn.set_ex(key, &value, ttl as u64).await + } + None => conn.set(key, value).await, + }; match result { Ok(_) => Ok(()), Err(err) => Err(err.into()), @@ -66,26 +76,29 @@ impl Session { // Check if the session exists let session = match Self::get(session_id).await? { Some(session) => session, - None => return Err(ApiError::new(401, "Session does not exist".to_string())), + None => return Err(Error::new(401, "Session does not exist".to_string())), }; // Check if the IP Address matches the Session's IP Address if verify_hash(ip_address, &session.ip_address) { - return Ok(session); + Ok(session) } else { - return Err(ApiError::new( - 401, - "IP Address does not match".to_string(), - )); + Err(Error::new(401, "IP Address does not match".to_string())) } } - pub fn cookie(&self) -> Cookie { + pub fn to_cookie(&self) -> Cookie { + let expires_at = match self.expires_at { + Some(expires_at) => expires_at.timestamp(), + None => DEFAULT_SESSION_TTL, + }; + let ttl = expires_at - Utc::now().timestamp(); Cookie::build(SESSION_COOKIE_NAME, self.session_id.clone()) .path("/") - .max_age(Duration::seconds(DEFAULT_SESSION_TTL)) - .secure(true) - .http_only(true) + .max_age(Duration::seconds(ttl)) + // TODO: enable secure and http_only + // .secure(true) + // .http_only(true) .finish() } } diff --git a/api/src/db/mod.rs b/api/src/db/mod.rs index b44eb87..4078903 100644 --- a/api/src/db/mod.rs +++ b/api/src/db/mod.rs @@ -1,112 +1,129 @@ -use crate::error::{ApiError, ApiResult}; -use diesel::{r2d2::ConnectionManager, PgConnection}; -use redis::{Client as RedisClient, aio::MultiplexedConnection as RedisConnection}; +use crate::error::ApiResult; +use redis::{Client as RedisClient, aio::MultiplexedConnection as RedisConnection, RedisResult}; use s3::{ Bucket, Region, creds::Credentials, BucketConfiguration, request::ResponseData, bucket_ops::CreateBucketResponse, }; use serde::{Deserialize, Serialize}; -use crate::diesel_migrations::MigrationHarness; -use lazy_static::lazy_static; -use log::{error, info, warn}; -use r2d2; -use std::env; +use std::sync::OnceLock; +use std::time::Duration; +use sqlx::{Pool, Postgres}; +use sqlx::postgres::PgPoolOptions; -pub mod schema; +static POOL: OnceLock> = OnceLock::new(); +static REDIS: OnceLock = OnceLock::new(); +static BUCKET: OnceLock = OnceLock::new(); -type Pool = r2d2::Pool>; -pub type DbConnection = r2d2::PooledConnection>; +pub async fn initialize() -> ApiResult<()> { + log::info!("Initializing database..."); + let db_user = std::env::var("POSTGRES_USER").unwrap_or("siren".to_string()); + let db_password = std::env::var("POSTGRES_PASSWORD").expect("POSTGRES_PASSWORD must be set"); + let db_host: String = std::env::var("POSTGRES_HOST").expect("POSTGRES_HOST must be set"); + let db_port = std::env::var("POSTGRES_PORT").unwrap_or("5432".to_string()); + let db_name = std::env::var("POSTGRES_NAME").unwrap_or("siren".to_string()); -pub const MIGRATIONS: diesel_migrations::EmbeddedMigrations = embed_migrations!(); - -lazy_static! { - static ref POOL: Pool = { - let username = env::var("DATABASE_USER").expect("Database username is not set"); - let password = env::var("DATABASE_PASSWORD").expect("Database password is not set"); - let host = env::var("DATABASE_HOST").unwrap_or("localhost".to_string()); - let name = env::var("DATABASE_NAME").expect("Database name is not set"); - let port = env::var("DATABASE_PORT").unwrap_or("5432".to_string()); - let url = format!( + // Setup Postgres pool connection + let pool = PgPoolOptions::new() + .max_connections(5) + .acquire_timeout(Duration::from_secs(30)) + .connect(&format!( "postgres://{}:{}@{}:{}/{}", - username, password, host, port, name - ); - let manager = ConnectionManager::::new(url); - Pool::builder() - .test_on_check_out(true) - .build(manager) - .expect("Failed to create db pool") - }; - static ref REDIS: RedisClient = { - let host = env::var("REDIS_HOST").unwrap_or("localhost".to_string()); - let port = env::var("REDIS_PORT").unwrap_or("6379".to_string()); + db_user, db_password, db_host, db_port, db_name + )) + .await?; + match POOL.set(pool) { + Ok(_) => {} + Err(_) => { + log::warn!("Database pool already initialized"); + } + } + + // Setup Redis connection + let redis = { + let host = std::env::var("REDIS_HOST").unwrap_or("localhost".to_string()); + let port = std::env::var("REDIS_PORT").unwrap_or("6379".to_string()); let url = format!("redis://{}:{}", host, port); RedisClient::open(url).expect("Failed to create redis client") }; - static ref BUCKET: Bucket = { - let url = env::var("MINIO_HOST").unwrap_or("localhost".to_string()); - let port = env::var("MINIO_PORT").unwrap_or("9000".to_string()); - let user = env::var("MINIO_ROOT_USER").expect("MINIO_ROOT_USER is not set"); - let password = env::var("MINIO_ROOT_PASSWORD").expect("MINIO_ROOT_PASSWORD is not set"); - let base_url = format!("http://{}:{}", url, port); + match REDIS.set(redis) { + Ok(_) => {} + Err(_) => { + log::warn!("Redis client already initialized"); + } + } - let region = Region::Custom { - region: "".to_string(), - endpoint: base_url, - }; + let schema = std::env::var("MINIO_SCHEMA").unwrap_or("http".to_string()); + let url = std::env::var("MINIO_HOST").unwrap_or("localhost".to_string()); + let port = std::env::var("MINIO_PORT").unwrap_or("9000".to_string()); + let user = std::env::var("MINIO_ROOT_USER").expect("MINIO_ROOT_USER is not set"); + let password = std::env::var("MINIO_ROOT_PASSWORD").expect("MINIO_ROOT_PASSWORD is not set"); + let base_url = format!("{}://{}:{}", schema, url, port); - let credentials = Credentials { - access_key: Some(user), - secret_key: Some(password), - security_token: None, - session_token: None, - expiration: None, - }; - - *Bucket::new("aviation", region.clone(), credentials.clone()) - .expect("Failed to create S3 Bucket") - .with_path_style() + let region = Region::Custom { + region: "".to_string(), + endpoint: base_url, }; + + let credentials = Credentials { + access_key: Some(user), + secret_key: Some(password), + security_token: None, + session_token: None, + expiration: None, + }; + + let bucket = Bucket::new("aviation", region.clone(), credentials.clone()) + .expect("Failed to create S3 Bucket") + .with_path_style(); + + match BUCKET.set(*bucket) { + Ok(_) => {} + Err(_) => { + log::warn!("Bucket client already initialized"); + } + } + + // Run migrations + match run_migrations().await { + Ok(_) => log::debug!("Successfully ran migrations"), + Err(e) => log::error!("Failed to run migrations: {}", e), + } + + log::info!("Database initialized"); + + Ok(()) } -pub async fn init() { - lazy_static::initialize(&POOL); - lazy_static::initialize(&REDIS); - lazy_static::initialize(&BUCKET); - match create_bucket().await { - Ok(_) => info!("Bucket initialized"), - Err(err) => match err.status { - 409 => warn!("Bucket already exists"), - _ => error!("Failed to initialize bucket; {}", err), - }, - }; - let mut pool: DbConnection = connection().expect("Failed to get db connection"); - match pool.run_pending_migrations(MIGRATIONS) { - Ok(_) => info!("Database initialized"), - Err(err) => error!("Failed to initialize database; {}", err), - }; +pub fn pool() -> &'static Pool { + POOL.get().unwrap() } -pub fn connection() -> ApiResult { - POOL - .get() - .map_err(|e| ApiError::new(500, format!("Failed getting db connection: {}", e))) +fn redis() -> &'static RedisClient { + REDIS.get().unwrap() } -pub fn redis_connection() -> ApiResult { - let conn = REDIS.get_connection()?; +pub fn redis_connection() -> RedisResult { + let conn = redis().get_connection()?; Ok(conn) } -pub async fn redis_async_connection() -> ApiResult { - let conn = REDIS.get_multiplexed_async_connection().await?; +pub async fn redis_async_connection() -> RedisResult { + let conn = redis().get_multiplexed_async_connection().await?; Ok(conn) } +async fn run_migrations() -> ApiResult<()> { + log::debug!("Running migrations"); + let pool = pool(); + sqlx::migrate!().run(pool).await?; + Ok(()) +} + async fn create_bucket() -> ApiResult { - let url = env::var("MINIO_URL").unwrap_or("localhost".to_string()); - let port = env::var("MINIO_PORT").unwrap_or("9000".to_string()); - let user = env::var("MINIO_ROOT_USER").expect("MINIO_ROOT_USER is not set"); - let password = env::var("MINIO_ROOT_PASSWORD").expect("MINIO_ROOT_PASSWORD is not set"); + let url = std::env::var("MINIO_URL").unwrap_or("localhost".to_string()); + let port = std::env::var("MINIO_PORT").unwrap_or("9000".to_string()); + let user = std::env::var("MINIO_ROOT_USER").expect("MINIO_ROOT_USER is not set"); + let password = std::env::var("MINIO_ROOT_PASSWORD").expect("MINIO_ROOT_PASSWORD is not set"); let base_url = format!("http://{}:{}", url, port); let region = Region::Custom { @@ -133,29 +150,24 @@ async fn create_bucket() -> ApiResult { } pub async fn upload_file(path: &str, content: &[u8]) -> ApiResult { - let response = BUCKET.put_object(path, content).await?; + let response = BUCKET.get().unwrap().put_object(path, content).await?; Ok(response) } pub async fn get_file(path: &str) -> ApiResult> { - let response = BUCKET.get_object(path).await?; + let response = BUCKET.get().unwrap().get_object(path).await?; let bytes = response.bytes(); Ok(bytes.to_vec()) } pub async fn delete_file(path: &str) -> ApiResult { - let response = BUCKET.delete_object(path).await?; + let response = BUCKET.get().unwrap().delete_object(path).await?; Ok(response) } #[derive(Serialize, Deserialize)] -pub struct Response { +pub struct Paged { pub data: T, - pub meta: Option, -} - -#[derive(Serialize, Deserialize)] -pub struct Metadata { pub page: i32, pub limit: i32, pub total: i64, diff --git a/api/src/db/schema.rs b/api/src/db/schema.rs deleted file mode 100644 index 6cf5cf6..0000000 --- a/api/src/db/schema.rs +++ /dev/null @@ -1,41 +0,0 @@ -diesel::table! { - use diesel::sql_types::*; - use postgis_diesel::sql_types::*; - airports (icao) { - icao -> Text, - category -> Text, - name -> Text, - elevation_ft -> Float, - iso_country -> Text, - iso_region -> Text, - municipality -> Text, - has_metar -> Bool, - point -> Geometry, - data -> Jsonb - } -} - -diesel::table! { - metars (id) { - id -> Integer, - icao -> Text, - observation_time -> Timestamp, - raw_text -> Text, - data -> Jsonb, - } -} - -diesel::table! { - users (email) { - email -> Text, - hash -> Text, - role -> Text, - first_name -> Text, - last_name -> Text, - updated_at -> Timestamp, - created_at -> Timestamp, - profile_picture -> Nullable, - favorites -> Array, - verified -> Bool, - } -} diff --git a/api/src/error.rs b/api/src/error.rs index 88dc996..b5fcc77 100644 --- a/api/src/error.rs +++ b/api/src/error.rs @@ -1,50 +1,86 @@ use actix_web::http::StatusCode; use actix_web::{HttpResponse, ResponseError}; -use diesel::result::Error as DieselError; use log::warn; use regex::Regex; use serde::{Deserialize, Serialize}; use serde_json::json; use std::fmt; -pub type ApiResult = Result; +pub type ApiResult = Result; #[derive(Debug, Deserialize, Serialize)] -pub struct ApiError { +pub struct Error { pub status: u16, - pub message: String, + pub details: String, } -impl ApiError { +impl Error { pub fn new(status: u16, message: String) -> Self { - Self { status, message } + Self { + status, + details: message, + } } pub fn to_http_response(&self) -> HttpResponse { - let status = match StatusCode::from_u16(self.status) { - Ok(s) => s, - Err(err) => { - warn!("{}", err); - StatusCode::INTERNAL_SERVER_ERROR + let status = StatusCode::from_u16(self.status).unwrap_or_else(|err| { + warn!("{}", err); + StatusCode::INTERNAL_SERVER_ERROR + }); + HttpResponse::build(status).body(self.details.to_string()) + } +} + +impl fmt::Display for Error { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + f.write_str(self.details.as_str()) + } +} + +impl std::error::Error for Error { + fn description(&self) -> &str { + &self.details + } +} + +impl ResponseError for Error { + fn error_response(&self) -> HttpResponse { + let status = + StatusCode::from_u16(self.status).unwrap_or_else(|_| StatusCode::INTERNAL_SERVER_ERROR); + + let status_code = status.as_u16(); + let details = match status_code { + 401 => String::from("Unauthorized"), + code if code < 500 => self.details.clone(), + _ => { + log::error!("Internal server error: {}", self.details); + String::from("Internal Server Error") } }; - HttpResponse::build(status).body(self.message.to_string()) + + HttpResponse::build(status).json(json!({ "status": status_code, "details": details })) } } -impl fmt::Display for ApiError { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - f.write_str(self.message.as_str()) - } -} - -impl From for ApiError { +impl From for Error { fn from(error: std::io::Error) -> Self { Self::new(500, format!("Unknown IO error: {}", error)) } } -impl From for ApiError { +impl From for Error { + fn from(error: chrono::ParseError) -> Self { + Self::new(500, format!("Parse error: {}", error)) + } +} + +impl From for Error { + fn from(error: core::num::ParseIntError) -> Self { + Self::new(500, format!("Parse error: {}", error)) + } +} + +impl From for Error { fn from(error: std::env::VarError) -> Self { Self::new( 500, @@ -53,47 +89,31 @@ impl From for ApiError { } } -impl From for ApiError { - fn from(error: DieselError) -> Self { - match error { - DieselError::DatabaseError(kind, err) => match kind { - diesel::result::DatabaseErrorKind::UniqueViolation => { - Self::new(409, err.message().to_string()) - } - _ => Self::new(500, err.message().to_string()), - }, - DieselError::NotFound => Self::new(404, "The record was not found".to_string()), - DieselError::SerializationError(err) => Self::new(422, err.to_string()), - err => Self::new(500, format!("Unknown Diesel error: {}", err)), - } - } -} - -impl From for ApiError { +impl From for Error { fn from(error: reqwest::Error) -> Self { Self::new(500, format!("Unknown reqwest error: {}", error)) } } -impl From for ApiError { +impl From for Error { fn from(error: serde_json::Error) -> Self { Self::new(500, format!("Unknown serde_json error: {}", error)) } } -impl From for ApiError { +impl From for Error { fn from(error: argon2::password_hash::Error) -> Self { Self::new(500, format!("Unknown argon2 error: {}", error)) } } -impl From for ApiError { +impl From for Error { fn from(error: redis::RedisError) -> Self { Self::new(500, format!("Unknown redis error: {}", error)) } } -impl From for ApiError { +impl From for Error { fn from(error: s3::error::S3Error) -> Self { match error { s3::error::S3Error::Credentials(err) => { @@ -102,9 +122,7 @@ impl From for ApiError { s3::error::S3Error::FromUtf8(err) => { Self::new(500, format!("Unknown s3 from utf8 error: {}", err)) } - s3::error::S3Error::FmtError(err) => { - Self::new(500, format!("Unknown s3 fmt error: {}", err)) - } + s3::error::S3Error::FmtError(err) => Self::new(500, format!("Unknown s3 fmt error: {}", err)), s3::error::S3Error::HeaderToStr(err) => { Self::new(500, format!("Unknown s3 header to str error: {}", err)) } @@ -112,9 +130,7 @@ impl From for ApiError { 500, format!("Unknown s3 hmac invalid length error: {}", err), ), - s3::error::S3Error::Http(error) => { - Self::new(error.status_code().as_u16(), error.to_string()) - } + s3::error::S3Error::Http(error) => Self::new(error.status_code().as_u16(), error.to_string()), _ => { let re = Regex::new(r"HTTP (\d{3})").unwrap(); // Apply the regex to the input string @@ -131,18 +147,43 @@ impl From for ApiError { } } -impl ResponseError for ApiError { - fn error_response(&self) -> HttpResponse { - let status = match StatusCode::from_u16(self.status) { - Ok(status) => status, - Err(_) => StatusCode::INTERNAL_SERVER_ERROR, - }; - - let message = match status.as_u16() < 500 { - true => self.message.clone(), - false => "Internal server error".to_string(), - }; - - HttpResponse::build(status).json(json!({ "status": status.as_u16(), "message": message })) +impl From for Error { + fn from(error: sqlx::Error) -> Self { + match error { + sqlx::Error::RowNotFound => Error::new(404, "Not found".to_string()), + sqlx::Error::ColumnIndexOutOfBounds { .. } => Error::new(422, error.to_string()), + sqlx::Error::ColumnNotFound { .. } => Error::new(422, error.to_string()), + sqlx::Error::ColumnDecode { .. } => Error::new(422, error.to_string()), + sqlx::Error::Decode(_) => Error::new(422, error.to_string()), + sqlx::Error::PoolTimedOut => Error::new(503, error.to_string()), + sqlx::Error::PoolClosed => Error::new(503, error.to_string()), + sqlx::Error::Tls(_) => Error::new(500, error.to_string()), + sqlx::Error::Io(_) => Error::new(500, error.to_string()), + sqlx::Error::Protocol(_) => Error::new(500, error.to_string()), + sqlx::Error::Configuration(_) => Error::new(500, error.to_string()), + sqlx::Error::AnyDriverError(_) => Error::new(500, error.to_string()), + sqlx::Error::Database(err) => { + if let Some(code) = err.code() { + match code.trim() { + // Unique violation + "23505" => return Error::new(409, err.to_string()), + _ => (), + } + } + Error::new(500, err.to_string()) + } + sqlx::Error::Migrate(_) => Error::new(500, error.to_string()), + sqlx::Error::TypeNotFound { type_name } => { + Error::new(500, format!("Type not found: {}", type_name)) + } + sqlx::Error::WorkerCrashed => Error::new(500, error.to_string()), + _ => Error::new(500, error.to_string()), + } + } +} + +impl From for Error { + fn from(error: sqlx::migrate::MigrateError) -> Self { + Error::new(500, error.to_string()) } } diff --git a/api/src/main.rs b/api/src/main.rs index 6d848b6..d536c64 100644 --- a/api/src/main.rs +++ b/api/src/main.rs @@ -1,12 +1,10 @@ -extern crate diesel; -#[macro_use] -extern crate diesel_migrations; - use std::env; use actix_cors::Cors; use actix_web::{App, HttpServer, middleware::Logger}; -use dotenv::dotenv; +use dotenv::from_filename; +use crate::auth::hash; +use crate::users::{User, ADMIN_ROLE}; mod airports; mod auth; @@ -17,15 +15,41 @@ mod scheduler; mod users; #[actix_web::main] -async fn main() -> std::io::Result<()> { - dotenv().ok(); - env_logger::init_from_env(env_logger::Env::default().filter_or("RUST_LOG", "warn,api=info")); - db::init().await; +async fn main() -> Result<(), Box> { + initialize_environment()?; + db::initialize().await?; // scheduler::update_airports(); let host = env::var("API_HOST").unwrap_or("localhost".to_string()); let port = env::var("API_PORT").unwrap_or("5000".to_string()); + // Initialize admin user + let admin_username = env::var("ADMIN_USERNAME"); + let admin_password = env::var("ADMIN_PASSWORD"); + if admin_username.is_ok() && admin_password.is_ok() { + let username = admin_username.unwrap(); + if User::select(&username).await.is_none() { + log::debug!("Creating default administrator"); + let password = admin_password.unwrap(); + let password_hash = hash(&password)?; + let admin_user = User { + email: username, + password_hash, + role: ADMIN_ROLE.to_string(), + first_name: "Admin".to_string(), + last_name: "".to_string(), + updated_at: Default::default(), + created_at: Default::default(), + }; + match admin_user.insert().await { + Ok(_) => log::debug!("Default administrator was successfully created"), + Err(err) => { + log::warn!("{}", err); + } + }; + } + } + let server = match HttpServer::new(move || { let cors = Cors::default() .allow_any_origin() @@ -49,9 +73,35 @@ async fn main() -> std::io::Result<()> { } Err(err) => { log::error!("Could not bind server: {}", err); - return Err(err); + return Err(err.into()); } }; - server.run().await + if let Err(err) = server.run().await { + return Err(err.into()); + } + Ok(()) +} + +fn initialize_environment() -> std::io::Result<()> { + // Iterate over files in the current directory + for entry in std::fs::read_dir(".")? { + let entry = entry?; + let path = entry.path(); + + // Check if the file name starts with ".env" and is a file + if let Some(file_name) = path.file_name().and_then(|n| n.to_str()) { + if file_name.starts_with(".env") && path.is_file() { + // Try to load the file + if let Err(err) = from_filename(&file_name) { + eprintln!("Failed to load {}: {}", file_name, err); + } else { + println!("Loaded: {}", file_name); + } + } + } + } + + env_logger::init_from_env(env_logger::Env::default().filter_or("RUST_LOG", "warn,api=info")); + Ok(()) } diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index 23d75bd..d231e1f 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -1,13 +1,71 @@ -use crate::airports::QueryAirport; -use crate::error::ApiError; +use crate::error::Error; use crate::{error::ApiResult, db}; -use crate::db::schema::metars::{self}; -use chrono::Datelike; -use diesel::{prelude::*, sql_query}; -use log::{warn, trace}; +use chrono::{DateTime, Datelike, Utc}; use std::collections::HashSet; use serde::{Deserialize, Serialize}; +const TABLE_NAME: &str = "metars"; + +#[derive(Serialize, Deserialize, Debug)] +pub struct Metar { + pub station_id: String, // icao + pub raw_text: String, + pub observation_time: DateTime, + #[serde(skip_serializing_if = "Option::is_none")] + pub temp_c: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub dewpoint_c: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub wind_dir_degrees: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub wind_speed_kt: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub wind_gust_kt: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub variable_wind_dir_degrees: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub visibility_statute_mi: Option, + pub runway_visual_range: Vec, + #[serde(skip_serializing_if = "Option::is_none")] + pub altim_in_hg: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub sea_level_pressure_mb: Option, + pub quality_control_flags: QualityControlFlags, + pub weather_phenomena: Vec, + pub sky_condition: Vec, + pub flight_category: FlightCategory, + #[serde(skip_serializing_if = "Option::is_none")] + pub three_hr_pressure_tendency_mb: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub max_t_c: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub min_t_c: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub precip_in: Option, +} + +#[derive(Serialize, Deserialize, Debug)] +pub struct RunwayVisualRange { + pub runway: String, + #[serde(skip_serializing_if = "Option::is_none")] + pub visibility_ft: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub variable_visibility_high_ft: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub variable_visibility_low_ft: Option, +} + +impl Default for RunwayVisualRange { + fn default() -> Self { + RunwayVisualRange { + runway: "".to_string(), + visibility_ft: None, + variable_visibility_high_ft: None, + variable_visibility_low_ft: None, + } + } +} + #[derive(Serialize, Deserialize, Debug)] pub struct QualityControlFlags { #[serde(skip_serializing_if = "Option::is_none")] @@ -59,28 +117,6 @@ impl Default for SkyCondition { } } -#[derive(Serialize, Deserialize, Debug)] -pub struct RunwayVisualRange { - pub runway: String, - #[serde(skip_serializing_if = "Option::is_none")] - pub visibility_ft: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub variable_visibility_high_ft: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub variable_visibility_low_ft: Option, -} - -impl Default for RunwayVisualRange { - fn default() -> Self { - RunwayVisualRange { - runway: "".to_string(), - visibility_ft: None, - variable_visibility_high_ft: None, - variable_visibility_low_ft: None, - } - } -} - #[derive(Serialize, Deserialize, Debug)] pub enum FlightCategory { VFR, @@ -90,54 +126,14 @@ pub enum FlightCategory { UNKN, } -#[derive(Serialize, Deserialize, Debug)] -pub struct Metar { - pub raw_text: String, - pub station_id: String, - pub observation_time: chrono::NaiveDateTime, - #[serde(skip_serializing_if = "Option::is_none")] - pub temp_c: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub dewpoint_c: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub wind_dir_degrees: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub wind_speed_kt: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub wind_gust_kt: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub variable_wind_dir_degrees: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub visibility_statute_mi: Option, - pub runway_visual_range: Vec, - #[serde(skip_serializing_if = "Option::is_none")] - pub altim_in_hg: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub sea_level_pressure_mb: Option, - pub quality_control_flags: QualityControlFlags, - pub weather_phenomena: Vec, - pub sky_condition: Vec, - pub flight_category: FlightCategory, - #[serde(skip_serializing_if = "Option::is_none")] - pub three_hr_pressure_tendency_mb: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub max_t_c: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub min_t_c: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub precip_in: Option, -} - impl Default for Metar { fn default() -> Self { - Metar { + Self { raw_text: "".to_string(), station_id: "".to_string(), - observation_time: chrono::NaiveDateTime::parse_from_str( - "1970-01-01T00:00:00", - "%Y-%m-%dT%H:%M:%S", - ) - .unwrap(), + observation_time: chrono::DateTime::parse_from_rfc3339("1970-01-01T00:00:00Z") + .unwrap() + .with_timezone(&Utc), temp_c: None, dewpoint_c: None, wind_dir_degrees: None, @@ -160,502 +156,539 @@ impl Default for Metar { } } +#[derive(Serialize, Deserialize, sqlx::FromRow, Debug)] +struct MetarDb { + icao: String, + observation_time: DateTime, + raw_text: String, + data: serde_json::Value, +} + impl Metar { - fn parse(metar_strings: Vec<&str>) -> ApiResult> { - let mut metars: Vec = vec![]; + fn parse_multiple(metar_strings: &Vec<&str>) -> ApiResult> { + let mut metars: Vec = vec![]; for metar_string in metar_strings { - trace!("Parsing METAR data: {}", metar_string); - let mut metar: Metar = Metar::default(); - metar.raw_text = metar_string.to_owned(); - let mut metar_parts: Vec<&str> = metar_string.split_whitespace().collect(); - if metar_parts.len() < 4 { - warn!( + match Metar::parse(metar_string) { + Ok(metar) => metars.push(metar), + Err(e) => { + log::warn!("Failed to parse metar string: {}", e); + continue; + } + }; + } + + Ok(metars) + } + + fn parse(metar_string: &str) -> ApiResult { + if metar_string.is_empty() { + return Err(Error::new( + 404, + "Unable to parse empty METAR data".to_string(), + )); + } + + log::trace!("Parsing METAR data: {}", metar_string); + let mut metar: Metar = Metar::default(); + metar.raw_text = metar_string.to_owned(); + let mut metar_parts: Vec<&str> = metar_string.split_whitespace().collect(); + if metar_parts.len() < 4 { + return Err(Error::new( + 500, + format!( "Unable to parse METAR data in an unexpected format: {}", metar_string - ); - continue; - } + ), + )); + } - // Station Identifier - metar.station_id = metar_parts[0].to_string(); - metar_parts.remove(0); + // Station Identifier + metar.station_id = metar_parts[0].to_string(); + metar_parts.remove(0); - // Date/Time - let observation_time = metar_parts[0]; - metar_parts.remove(0); - if observation_time.len() != 7 { - warn!( + // Date/Time + let observation_time = metar_parts[0]; + metar_parts.remove(0); + if observation_time.len() != 7 { + return Err(Error::new( + 500, + format!( "Unable to parse observation time in {}: {}", observation_time, metar_string - ); - continue; + ), + )); + } + let observation_time_day = match observation_time[0..2].parse::() { + Ok(day) => day, + Err(err) => return Err(err.into()), + }; + let mut observation_time_hour = match observation_time[2..4].parse::() { + Ok(hour) => hour, + Err(err) => return Err(err.into()), + }; + let observation_time_minute = match observation_time[4..6].parse::() { + Ok(minute) => minute, + Err(err) => return Err(err.into()), + }; + let current_time = Utc::now().naive_utc(); + + // Check if the observation time is from the previous month + let observation_time_month = if current_time.day() > observation_time_day { + current_time.month() - 1 + } else { + current_time.month() + }; + // Check if the observation time is from the previous year + let observation_time_year = if current_time.month() > observation_time_month { + current_time.year() - 1 + } else { + current_time.year() + }; + let observation_time = format!( + "{:04}-{:02}-{:02}T{:02}:{:02}:00Z", + observation_time_year, + observation_time_month, + observation_time_day, + observation_time_hour, + observation_time_minute + ); + metar.observation_time = match chrono::DateTime::parse_from_rfc3339(&observation_time) { + Ok(datetime) => datetime.with_timezone(&Utc), + Err(err) => return Err(err.into()), + }; + + loop { + if metar_parts.is_empty() { + break; + } + // Report Modifiers + if !metar_parts.is_empty() && metar_parts[0] == "AUTO" { + metar.quality_control_flags.auto = Some(true); + metar_parts.remove(0); + } + if !metar_parts.is_empty() && metar_parts[0] == "COR" { + metar.quality_control_flags.corrected = Some(true); + metar_parts.remove(0); + } + if !metar_parts.is_empty() && metar_parts[0] == "NOSIG" { + metar.quality_control_flags.no_significant_change = Some(true); + metar_parts.remove(0); } - let observation_time_day = &observation_time[0..2]; - let observation_time_hour = &observation_time[2..4]; - let observation_time_minute = &observation_time[4..6]; - let current_time = chrono::Utc::now().naive_utc(); - // Check if the observation time is from the previous month - let observation_time_month = - if current_time.day() > observation_time_day.parse::().unwrap() { - current_time.month() - 1 - } else { - current_time.month() - }; - // Check if the observation time is from the previous year - let observation_time_year = if current_time.month() > observation_time_month { - current_time.year() - 1 - } else { - current_time.year() - }; - // Handle Daylight Savings Time - let observation_time_hour = - if observation_time_month == 3 && observation_time_day.parse::().unwrap() < 14 { - observation_time_hour.parse::().unwrap() - 1 - } else { - observation_time_hour.parse::().unwrap() - }; - let observation_time = format!( - "{}-{}-{}T{}:{}:00Z", - observation_time_year, - observation_time_month, - observation_time_day, - observation_time_hour, - observation_time_minute - ); - metar.observation_time = - chrono::NaiveDateTime::parse_from_str(&observation_time, "%Y-%m-%dT%H:%M:%SZ").unwrap(); - loop { - if metar_parts.is_empty() { - break; - } - // Report Modifiers - if !metar_parts.is_empty() && metar_parts[0] == "AUTO" { - metar.quality_control_flags.auto = Some(true); - metar_parts.remove(0); - } - if !metar_parts.is_empty() && metar_parts[0] == "COR" { - metar.quality_control_flags.corrected = Some(true); - metar_parts.remove(0); - } - if !metar_parts.is_empty() && metar_parts[0] == "NOSIG" { - metar.quality_control_flags.no_significant_change = Some(true); - metar_parts.remove(0); - } + // Wind Direction and Speed + let wind_re = regex::Regex::new(r"^(?:[0-9]{3}|VRB)[0-9]{2}(?:KT|MPS)$").unwrap(); + let wind_gust_re = + regex::Regex::new(r"^(?:[0-9]{3}|VRB)[0-9]{2}G[0-9]{2}(?:KT|MPS)$").unwrap(); + // Handle input error where there is a space between the numbers and units + let mut value: Option = None; + if metar_parts.len() >= 2 + && metar_parts[0].len() == 5 + && (metar_parts[1] == "KT" || metar_parts[1] == "MPS") + { + value = Some(format!("{}{}", metar_parts[0], metar_parts[1])); + metar_parts.remove(0); + metar_parts.remove(0); + } else if metar_parts.len() >= 2 + && metar_parts[0].len() == 7 + && metar_parts[0].contains("G") + && (metar_parts[1] == "KT" || metar_parts[1] == "MPS") + { + value = Some(format!("{}{}", metar_parts[0], metar_parts[1])); + metar_parts.remove(0); + metar_parts.remove(0); + } else if !metar_parts.is_empty() && wind_re.is_match(metar_parts[0]) { + value = Some(metar_parts[0].to_string()); + metar_parts.remove(0); + } else if !metar_parts.is_empty() && wind_gust_re.is_match(metar_parts[0]) { + value = Some(metar_parts[0].to_string()); + metar_parts.remove(0); + } - // Wind Direction and Speed - let wind_re = regex::Regex::new(r"^(?:[0-9]{3}|VRB)[0-9]{2}(?:KT|MPS)$").unwrap(); - let wind_gust_re = - regex::Regex::new(r"^(?:[0-9]{3}|VRB)[0-9]{2}G[0-9]{2}(?:KT|MPS)$").unwrap(); - // Handle input error where there is a space between the numbers and units - let mut value: Option = None; - if metar_parts.len() >= 2 - && metar_parts[0].len() == 5 - && (metar_parts[1] == "KT" || metar_parts[1] == "MPS") - { - value = Some(format!("{}{}", metar_parts[0], metar_parts[1])); - metar_parts.remove(0); - metar_parts.remove(0); - } else if metar_parts.len() >= 2 - && metar_parts[0].len() == 7 - && metar_parts[0].contains("G") - && (metar_parts[1] == "KT" || metar_parts[1] == "MPS") - { - value = Some(format!("{}{}", metar_parts[0], metar_parts[1])); - metar_parts.remove(0); - metar_parts.remove(0); - } else if !metar_parts.is_empty() && wind_re.is_match(metar_parts[0]) { - value = Some(metar_parts[0].to_string()); - metar_parts.remove(0); - } else if !metar_parts.is_empty() && wind_gust_re.is_match(metar_parts[0]) { - value = Some(metar_parts[0].to_string()); - metar_parts.remove(0); - } - - match value { - Some(wind) => { - if wind_re.is_match(&wind) { - let wind_dir_degrees = &wind[0..3]; - metar.wind_dir_degrees = Some(wind_dir_degrees.to_string()); - let mut wind_speed_kt = wind[3..5].to_string(); - // Convert m/s to kt - if wind.len() == 8 { - wind_speed_kt = (wind_speed_kt.parse::().unwrap() * 1.94384).to_string(); - } - metar.wind_speed_kt = Some(wind_speed_kt.parse::().unwrap()); - } else if wind_gust_re.is_match(&wind) { - let wind_dir_degrees = &wind[0..3]; - metar.wind_dir_degrees = Some(wind_dir_degrees.to_string()); - let mut wind_speed_kt = wind[3..5].to_string(); - let mut wind_gust_kt = wind[6..8].to_string(); - // Convert m/s to kt - if wind.len() == 9 { - wind_speed_kt = (wind_speed_kt.parse::().unwrap() * 1.94384).to_string(); - wind_gust_kt = (wind_gust_kt.parse::().unwrap() * 1.94384).to_string(); - } - metar.wind_speed_kt = Some(wind_speed_kt.parse::().unwrap()); - metar.wind_gust_kt = Some(wind_gust_kt.parse::().unwrap()); + match value { + Some(wind) => { + if wind_re.is_match(&wind) { + let wind_dir_degrees = &wind[0..3]; + metar.wind_dir_degrees = Some(wind_dir_degrees.to_string()); + let mut wind_speed_kt = wind[3..5].to_string(); + // Convert m/s to kt + if wind.len() == 8 { + wind_speed_kt = (wind_speed_kt.parse::().unwrap() * 1.94384).to_string(); } + metar.wind_speed_kt = Some(wind_speed_kt.parse::().unwrap()); + } else if wind_gust_re.is_match(&wind) { + let wind_dir_degrees = &wind[0..3]; + metar.wind_dir_degrees = Some(wind_dir_degrees.to_string()); + let mut wind_speed_kt = wind[3..5].to_string(); + let mut wind_gust_kt = wind[6..8].to_string(); + // Convert m/s to kt + if wind.len() == 9 { + wind_speed_kt = (wind_speed_kt.parse::().unwrap() * 1.94384).to_string(); + wind_gust_kt = (wind_gust_kt.parse::().unwrap() * 1.94384).to_string(); + } + metar.wind_speed_kt = Some(wind_speed_kt.parse::().unwrap()); + metar.wind_gust_kt = Some(wind_gust_kt.parse::().unwrap()); } - None => {} } + None => {} + } - // Variable Wind Direction - let variable_wind_re = regex::Regex::new(r"^[0-9]{3}V[0-9]{3}$").unwrap(); - if !metar_parts.is_empty() && variable_wind_re.is_match(metar_parts[0]) { - metar.variable_wind_dir_degrees = Some(metar_parts[0].to_string()); - metar_parts.remove(0); - } + // Variable Wind Direction + let variable_wind_re = regex::Regex::new(r"^[0-9]{3}V[0-9]{3}$").unwrap(); + if !metar_parts.is_empty() && variable_wind_re.is_match(metar_parts[0]) { + metar.variable_wind_dir_degrees = Some(metar_parts[0].to_string()); + metar_parts.remove(0); + } - // Visibility - let visibility_re = regex::Regex::new(r"^M?(?:[0-9]+|[0-9]+/[0-9]+)SM$").unwrap(); - let visibility_re_m = regex::Regex::new(r"^[0-9]{4}(:?N|NE|NW|S|SE|SW)?$").unwrap(); - if !metar_parts.is_empty() && visibility_re.is_match(metar_parts[0]) { - let visibility_str = &metar_parts[0][0..metar_parts[0].len() - 2]; - metar_parts.remove(0); - let visibility: String = if visibility_str.contains("/") { - let visibility_parts: Vec<&str> = visibility_str.split("/").collect(); - let visibility_left = visibility_parts[0]; - let visibility_right = visibility_parts[1].parse::().unwrap(); - if visibility_left.starts_with("M") { - format!( - "M{}", - visibility_left[1..visibility_left.len()] - .parse::() - .unwrap() - / visibility_right - ) - } else if visibility_left.starts_with("P") { - format!( - "P{}", - visibility_left[1..visibility_left.len()] - .parse::() - .unwrap() - / visibility_right - ) - } else { - format!( - "{}", - visibility_left.parse::().unwrap() / visibility_right - ) - } - } else { - visibility_str.to_string() - }; - metar.visibility_statute_mi = Some(visibility); - } else if !metar_parts.is_empty() - && metar_parts[0].parse::().is_ok() - && metar_parts.len() > 1 - && visibility_re.is_match(metar_parts[1]) - { - let visibility_whole = metar_parts[0].parse::().unwrap(); - metar_parts.remove(0); - let visibility_parts: Vec<&str> = metar_parts[0].split("/").collect(); - metar_parts.remove(0); + // Visibility + let visibility_re = regex::Regex::new(r"^M?(?:[0-9]+|[0-9]+/[0-9]+)SM$").unwrap(); + let visibility_re_m = regex::Regex::new(r"^[0-9]{4}(:?N|NE|NW|S|SE|SW)?$").unwrap(); + if !metar_parts.is_empty() && visibility_re.is_match(metar_parts[0]) { + let visibility_str = &metar_parts[0][0..metar_parts[0].len() - 2]; + metar_parts.remove(0); + let visibility: String = if visibility_str.contains("/") { + let visibility_parts: Vec<&str> = visibility_str.split("/").collect(); let visibility_left = visibility_parts[0]; - let visibility_right = visibility_parts[1][0..visibility_parts[1].len() - 2] - .parse::() - .unwrap(); - let visibility = if visibility_left.starts_with("M") { + let visibility_right = visibility_parts[1].parse::().unwrap(); + if visibility_left.starts_with("M") { format!( "M{}", - visibility_whole - + (visibility_left[1..visibility_left.len()] - .parse::() - .unwrap() - / visibility_right) + visibility_left[1..visibility_left.len()] + .parse::() + .unwrap() + / visibility_right ) } else if visibility_left.starts_with("P") { format!( "P{}", - visibility_whole - + (visibility_left[1..visibility_left.len()] - .parse::() - .unwrap() - / visibility_right) + visibility_left[1..visibility_left.len()] + .parse::() + .unwrap() + / visibility_right ) } else { format!( "{}", - visibility_whole + (visibility_left.parse::().unwrap() / visibility_right) + visibility_left.parse::().unwrap() / visibility_right ) - }; - metar.visibility_statute_mi = Some(visibility); - } else if !metar_parts.is_empty() && visibility_re_m.is_match(metar_parts[0]) { - // Convert meters to statute miles - let visibility = metar_parts[0]; - metar_parts.remove(0); - if &visibility[0..4] == "9999" { - metar.visibility_statute_mi = Some("P10".to_string()); - } else { - let visibility = visibility[0..4].parse::().unwrap() * 0.000621371; - metar.visibility_statute_mi = Some(format!("{:.2}", visibility)); } - } - - // Runway Visual Range - let rvr_re = regex::Regex::new(r"^R[0-9]{1,3}(?:L|R|C)?/[PM]?[0-9]{4}FT$").unwrap(); - let variable_rvr_re = - regex::Regex::new(r"^R[0-9]{1,3}(?:L|R|C)?/[PM]?[0-9]{4}V[PM]?[0-9]{4}FT$").unwrap(); - while !metar_parts.is_empty() - && (rvr_re.is_match(metar_parts[0]) || variable_rvr_re.is_match(metar_parts[0])) - { - let rvr_string = metar_parts[0]; - metar_parts.remove(0); - let mut rvr = RunwayVisualRange::default(); - let rvr_parts: Vec<&str> = rvr_string.split("/").collect(); - rvr.runway = rvr_parts[0].to_string(); - if rvr_re.is_match(rvr_string) { - rvr.visibility_ft = Some(rvr_parts[1].to_string()); - } else { - let rvr_variable_parts: Vec<&str> = rvr_parts[1].split("V").collect(); - if rvr_variable_parts.len() != 2 { - warn!( - "Unable to parse runway visual range in {}: {}", - rvr_string, metar_string - ); - } else { - rvr.variable_visibility_low_ft = Some(rvr_variable_parts[0].to_string()); - rvr.variable_visibility_high_ft = Some(rvr_variable_parts[1].to_string()); - } - } - } - - // Weather Phenomena - let wx_intensity = "(?:[+-]|VC)?"; - let wx_descriptor = "(?:MI|PR|BC|DR|BL|SH|TS|FZ)?"; - let wx_precipitation = - "(?:DZ|RA|SN|SG|IC|PL|GR|GS|UP|BR|FG|FU|VA|DU|SA|HZ|PY|PO|SQ|FC|SS|DS)?"; - let wx_re = regex::Regex::new(&format!( - r"^{}{}{}$", - wx_intensity, wx_descriptor, wx_precipitation - )) - .unwrap(); - while !metar_parts.is_empty() && wx_re.is_match(metar_parts[0]) { - metar.weather_phenomena.push(metar_parts[0].to_string()); - metar_parts.remove(0); - } - - // Sky Condition - if !metar_parts.is_empty() && metar_parts[0] == "CAVOK" { - metar.sky_condition.push(SkyCondition { - sky_cover: "CLR".to_string(), - cloud_base_ft_agl: None, - significant_convective_clouds: None, - }); - metar_parts.remove(0); - } - let sky_condition_re = - regex::Regex::new(r"^(?:CLR|SKC|NSC|NCD|(?:FEW|SCT|BKN|OVC|VV)([0-9/]{3})?(?:CB|TCU)?)$") - .unwrap(); - while !metar_parts.is_empty() && sky_condition_re.is_match(metar_parts[0]) { - let sky_condition_string = metar_parts[0]; - metar_parts.remove(0); - let mut sky_condition = SkyCondition::default(); - let mut vv_offset = 0; - if &sky_condition_string[0..2] == "VV" { - sky_condition.sky_cover = "VV".to_string(); - vv_offset = 1; - } else { - sky_condition.sky_cover = sky_condition_string[0..3].to_string(); - } - if sky_condition_string.len() > 3 - vv_offset { - // Parse out the next three digits - let cloud_base_ft_agl = &sky_condition_string[3 - vv_offset..6 - vv_offset]; - if cloud_base_ft_agl == "///" { - sky_condition.cloud_base_ft_agl = None; - } else { - sky_condition.cloud_base_ft_agl = match cloud_base_ft_agl.parse::() { - Ok(c) => Some(c * 100), - Err(err) => { - warn!( - "Unable to parse cloud base in {}: {}", - sky_condition_string, err - ); - None - } - }; - } - if sky_condition_string.len() > 6 - vv_offset { - // Parse out the next two digits - let scc = &sky_condition_string[6 - vv_offset..8 - vv_offset]; - sky_condition.significant_convective_clouds = Some(scc.to_string()); - } - } - metar.sky_condition.push(sky_condition); - } - - // Temperature and Dewpoint - let temp_re = regex::Regex::new(r"^(?:M?[0-9]{2})?/(?:M?[0-9]{2})?$").unwrap(); - if !metar_parts.is_empty() && temp_re.is_match(metar_parts[0]) { - let temp_string = metar_parts[0]; - metar_parts.remove(0); - let temp_parts: Vec<&str> = temp_string.split("/").collect(); - let mut temp_c = ""; - let mut dewpoint_c = ""; - if temp_parts.len() != 2 { - if temp_string.ends_with("/") { - temp_c = temp_parts[0]; - } else { - dewpoint_c = temp_parts[0]; - } - } else { - temp_c = temp_parts[0]; - dewpoint_c = temp_parts[1]; - } - if temp_c.starts_with("M") { - metar.temp_c = Some(temp_c[1..temp_c.len()].parse::().unwrap() * -1.0); - } else if !temp_c.is_empty() { - metar.temp_c = match temp_c.parse::() { - Ok(t) => Some(t), - Err(err) => { - warn!("Unable to parse temperature in {}: {}", temp_c, err); - None - } - }; - } - if dewpoint_c.starts_with("M") { - metar.dewpoint_c = Some(dewpoint_c[1..dewpoint_c.len()].parse::().unwrap() * -1.0); - } else if !dewpoint_c.is_empty() { - metar.dewpoint_c = match dewpoint_c.parse::() { - Ok(d) => Some(d), - Err(err) => { - warn!("Unable to parse dewpoint in {}: {}", dewpoint_c, err); - None - } - }; - } - } - - // Altimeter - let altim_re = regex::Regex::new(r"^A[0-9]{4}$").unwrap(); - if !metar_parts.is_empty() && altim_re.is_match(metar_parts[0]) { - let altim = metar_parts[0]; - metar_parts.remove(0); - metar.altim_in_hg = Some(altim[1..altim.len()].parse::().unwrap() / 100.0); - } - - // Pressure - let pressure_re = regex::Regex::new(r"^Q[0-9]{4}$").unwrap(); - if !metar_parts.is_empty() && pressure_re.is_match(metar_parts[0]) { - let pressure = metar_parts[0]; - metar_parts.remove(0); - metar.sea_level_pressure_mb = Some(pressure[1..pressure.len()].parse::().unwrap()); - } - - // Temporary Change - if !metar_parts.is_empty() && metar_parts[0] == "TEMPO" { - metar.quality_control_flags.temporary_change = Some(true); - metar_parts.remove(0); - } - - // Remarks - if !metar_parts.is_empty() && metar_parts[0] == "RMK" { - metar_parts.remove(0); - loop { - if metar_parts.is_empty() { - break; - } - let slp_re = regex::Regex::new(r"^SLP([0-9]{3})$").unwrap(); - let hourly_temp_re = regex::Regex::new(r"^T[01][0-9]{3}[01][0-9]{3}$").unwrap(); - let remark = metar_parts[0]; - metar_parts.remove(0); - if remark == "AO1" { - metar - .quality_control_flags - .auto_station_without_precipication = Some(true); - } else if remark == "AO2" { - metar.quality_control_flags.auto_station_with_precipication = Some(true); - } else if remark == "$" { - metar.quality_control_flags.maintenance_indicator_on = Some(true); - } else if slp_re.is_match(remark) { - let slp = slp_re.captures(remark).unwrap(); - let sea_level_pressure = slp[1].parse::().unwrap(); - if sea_level_pressure > 500.0 { - metar.sea_level_pressure_mb = Some((sea_level_pressure / 10.0) + 900.0); - } else { - metar.sea_level_pressure_mb = Some((sea_level_pressure / 10.0) + 1000.0); - } - } else if hourly_temp_re.is_match(remark) { - let temp_negation = &remark[1..2]; - let temp = &remark[2..5]; - if let Ok(t) = temp.parse::() { - if temp_negation == "0" { - metar.temp_c = Some(t / 10.0); - } else { - metar.temp_c = Some(t / 10.0 * -1.0); - } - } - let dewpoint_negation = &remark[6..7]; - let dewpoint = &remark[6..9]; - if let Ok(d) = dewpoint.parse::() { - if dewpoint_negation == "0" { - metar.dewpoint_c = Some(d / 10.0); - } else { - metar.dewpoint_c = Some(d / 10.0 * -1.0); - } - } - } - } - } - - // Skip unexpected fields - if !metar_parts.is_empty() { - warn!( - "Skipping unexpected field: '{}' ({})", - metar_parts[0], metar_string - ); - metar_parts.remove(0); - } - } - - // Flight Category - if metar.visibility_statute_mi.is_none() && metar.sky_condition.is_empty() { - metar.flight_category = FlightCategory::UNKN; - } else { - let visibility = match &metar.visibility_statute_mi { - Some(v) => { - if v.starts_with("M") || v.starts_with("P") { - v[1..v.len()].parse::().unwrap() - } else { - v.parse::().unwrap() - } - } - None => 5.0, // Assume VFR if no visibility is present - }; - // Ceiling is the lowest cloud base that is BKN or OVC - let ceiling = match metar.sky_condition.first() { - Some(s) => { - if s.sky_cover == "VV" { - 0.0 - } else if s.sky_cover == "BKN" || s.sky_cover == "OVC" { - match s.cloud_base_ft_agl { - Some(c) => c as f64, - None => 0.0, - } - } else { - 3000.0 // Assume VFR if no BKN or OVC sky condition is present - } - } - None => 3000.0, // Assume VFR if no sky condition is present - }; - if visibility >= 5.0 && ceiling >= 3000.0 { - metar.flight_category = FlightCategory::VFR; - } else if visibility >= 3.0 && ceiling >= 1000.0 { - metar.flight_category = FlightCategory::MVFR; - } else if visibility >= 1.0 && ceiling >= 500.0 { - metar.flight_category = FlightCategory::IFR; } else { - metar.flight_category = FlightCategory::LIFR; + visibility_str.to_string() + }; + metar.visibility_statute_mi = Some(visibility); + } else if !metar_parts.is_empty() + && metar_parts[0].parse::().is_ok() + && metar_parts.len() > 1 + && visibility_re.is_match(metar_parts[1]) + { + let visibility_whole = metar_parts[0].parse::().unwrap(); + metar_parts.remove(0); + let visibility_parts: Vec<&str> = metar_parts[0].split("/").collect(); + metar_parts.remove(0); + let visibility_left = visibility_parts[0]; + let visibility_right = visibility_parts[1][0..visibility_parts[1].len() - 2] + .parse::() + .unwrap(); + let visibility = if visibility_left.starts_with("M") { + format!( + "M{}", + visibility_whole + + (visibility_left[1..visibility_left.len()] + .parse::() + .unwrap() + / visibility_right) + ) + } else if visibility_left.starts_with("P") { + format!( + "P{}", + visibility_whole + + (visibility_left[1..visibility_left.len()] + .parse::() + .unwrap() + / visibility_right) + ) + } else { + format!( + "{}", + visibility_whole + (visibility_left.parse::().unwrap() / visibility_right) + ) + }; + metar.visibility_statute_mi = Some(visibility); + } else if !metar_parts.is_empty() && visibility_re_m.is_match(metar_parts[0]) { + // Convert meters to statute miles + let visibility = metar_parts[0]; + metar_parts.remove(0); + if &visibility[0..4] == "9999" { + metar.visibility_statute_mi = Some("P10".to_string()); + } else { + let visibility = visibility[0..4].parse::().unwrap() * 0.000621371; + metar.visibility_statute_mi = Some(format!("{:.2}", visibility)); } } - metars.push(metar); + // Runway Visual Range + let rvr_re = regex::Regex::new(r"^R[0-9]{1,3}(?:L|R|C)?/[PM]?[0-9]{4}FT$").unwrap(); + let variable_rvr_re = + regex::Regex::new(r"^R[0-9]{1,3}(?:L|R|C)?/[PM]?[0-9]{4}V[PM]?[0-9]{4}FT$").unwrap(); + while !metar_parts.is_empty() + && (rvr_re.is_match(metar_parts[0]) || variable_rvr_re.is_match(metar_parts[0])) + { + let rvr_string = metar_parts[0]; + metar_parts.remove(0); + let mut rvr = RunwayVisualRange::default(); + let rvr_parts: Vec<&str> = rvr_string.split("/").collect(); + rvr.runway = rvr_parts[0].to_string(); + if rvr_re.is_match(rvr_string) { + rvr.visibility_ft = Some(rvr_parts[1].to_string()); + } else { + let rvr_variable_parts: Vec<&str> = rvr_parts[1].split("V").collect(); + if rvr_variable_parts.len() != 2 { + log::warn!( + "Unable to parse runway visual range in {}: {}", + rvr_string, + metar_string + ); + } else { + rvr.variable_visibility_low_ft = Some(rvr_variable_parts[0].to_string()); + rvr.variable_visibility_high_ft = Some(rvr_variable_parts[1].to_string()); + } + } + } + + // Weather Phenomena + let wx_intensity = "(?:[+-]|VC)?"; + let wx_descriptor = "(?:MI|PR|BC|DR|BL|SH|TS|FZ)?"; + let wx_precipitation = + "(?:DZ|RA|SN|SG|IC|PL|GR|GS|UP|BR|FG|FU|VA|DU|SA|HZ|PY|PO|SQ|FC|SS|DS)?"; + let wx_re = regex::Regex::new(&format!( + r"^{}{}{}$", + wx_intensity, wx_descriptor, wx_precipitation + )) + .unwrap(); + while !metar_parts.is_empty() && wx_re.is_match(metar_parts[0]) { + metar.weather_phenomena.push(metar_parts[0].to_string()); + metar_parts.remove(0); + } + + // Sky Condition + if !metar_parts.is_empty() && metar_parts[0] == "CAVOK" { + metar.sky_condition.push(SkyCondition { + sky_cover: "CLR".to_string(), + cloud_base_ft_agl: None, + significant_convective_clouds: None, + }); + metar_parts.remove(0); + } + let sky_condition_re = + regex::Regex::new(r"^(?:CLR|SKC|NSC|NCD|(?:FEW|SCT|BKN|OVC|VV)([0-9/]{3})?(?:CB|TCU)?)$") + .unwrap(); + while !metar_parts.is_empty() && sky_condition_re.is_match(metar_parts[0]) { + let sky_condition_string = metar_parts[0]; + metar_parts.remove(0); + let mut sky_condition = SkyCondition::default(); + let mut vv_offset = 0; + if &sky_condition_string[0..2] == "VV" { + sky_condition.sky_cover = "VV".to_string(); + vv_offset = 1; + } else { + sky_condition.sky_cover = sky_condition_string[0..3].to_string(); + } + if sky_condition_string.len() > 3 - vv_offset { + // Parse out the next three digits + let cloud_base_ft_agl = &sky_condition_string[3 - vv_offset..6 - vv_offset]; + if cloud_base_ft_agl == "///" { + sky_condition.cloud_base_ft_agl = None; + } else { + sky_condition.cloud_base_ft_agl = match cloud_base_ft_agl.parse::() { + Ok(c) => Some(c * 100), + Err(err) => { + log::warn!( + "Unable to parse cloud base in {}: {}", + sky_condition_string, + err + ); + None + } + }; + } + if sky_condition_string.len() > 6 - vv_offset { + // Parse out the next two digits + let scc = &sky_condition_string[6 - vv_offset..8 - vv_offset]; + sky_condition.significant_convective_clouds = Some(scc.to_string()); + } + } + metar.sky_condition.push(sky_condition); + } + + // Temperature and Dewpoint + let temp_re = regex::Regex::new(r"^(?:M?[0-9]{2})?/(?:M?[0-9]{2})?$").unwrap(); + if !metar_parts.is_empty() && temp_re.is_match(metar_parts[0]) { + let temp_string = metar_parts[0]; + metar_parts.remove(0); + let temp_parts: Vec<&str> = temp_string.split("/").collect(); + let mut temp_c = ""; + let mut dewpoint_c = ""; + if temp_parts.len() != 2 { + if temp_string.ends_with("/") { + temp_c = temp_parts[0]; + } else { + dewpoint_c = temp_parts[0]; + } + } else { + temp_c = temp_parts[0]; + dewpoint_c = temp_parts[1]; + } + if temp_c.starts_with("M") { + metar.temp_c = Some(temp_c[1..temp_c.len()].parse::().unwrap() * -1.0); + } else if !temp_c.is_empty() { + metar.temp_c = match temp_c.parse::() { + Ok(t) => Some(t), + Err(err) => { + log::warn!("Unable to parse temperature in {}: {}", temp_c, err); + None + } + }; + } + if dewpoint_c.starts_with("M") { + metar.dewpoint_c = Some(dewpoint_c[1..dewpoint_c.len()].parse::().unwrap() * -1.0); + } else if !dewpoint_c.is_empty() { + metar.dewpoint_c = match dewpoint_c.parse::() { + Ok(d) => Some(d), + Err(err) => { + log::warn!("Unable to parse dewpoint in {}: {}", dewpoint_c, err); + None + } + }; + } + } + + // Altimeter + let altim_re = regex::Regex::new(r"^A[0-9]{4}$").unwrap(); + if !metar_parts.is_empty() && altim_re.is_match(metar_parts[0]) { + let altim = metar_parts[0]; + metar_parts.remove(0); + metar.altim_in_hg = Some(altim[1..altim.len()].parse::().unwrap() / 100.0); + } + + // Pressure + let pressure_re = regex::Regex::new(r"^Q[0-9]{4}$").unwrap(); + if !metar_parts.is_empty() && pressure_re.is_match(metar_parts[0]) { + let pressure = metar_parts[0]; + metar_parts.remove(0); + metar.sea_level_pressure_mb = Some(pressure[1..pressure.len()].parse::().unwrap()); + } + + // Temporary Change + if !metar_parts.is_empty() && metar_parts[0] == "TEMPO" { + metar.quality_control_flags.temporary_change = Some(true); + metar_parts.remove(0); + } + + // Remarks + if !metar_parts.is_empty() && metar_parts[0] == "RMK" { + metar_parts.remove(0); + loop { + if metar_parts.is_empty() { + break; + } + let slp_re = regex::Regex::new(r"^SLP([0-9]{3})$").unwrap(); + let hourly_temp_re = regex::Regex::new(r"^T[01][0-9]{3}[01][0-9]{3}$").unwrap(); + let remark = metar_parts[0]; + metar_parts.remove(0); + if remark == "AO1" { + metar + .quality_control_flags + .auto_station_without_precipication = Some(true); + } else if remark == "AO2" { + metar.quality_control_flags.auto_station_with_precipication = Some(true); + } else if remark == "$" { + metar.quality_control_flags.maintenance_indicator_on = Some(true); + } else if slp_re.is_match(remark) { + let slp = slp_re.captures(remark).unwrap(); + let sea_level_pressure = slp[1].parse::().unwrap(); + if sea_level_pressure > 500.0 { + metar.sea_level_pressure_mb = Some((sea_level_pressure / 10.0) + 900.0); + } else { + metar.sea_level_pressure_mb = Some((sea_level_pressure / 10.0) + 1000.0); + } + } else if hourly_temp_re.is_match(remark) { + let temp_negation = &remark[1..2]; + let temp = &remark[2..5]; + if let Ok(t) = temp.parse::() { + if temp_negation == "0" { + metar.temp_c = Some(t / 10.0); + } else { + metar.temp_c = Some(t / 10.0 * -1.0); + } + } + let dewpoint_negation = &remark[6..7]; + let dewpoint = &remark[6..9]; + if let Ok(d) = dewpoint.parse::() { + if dewpoint_negation == "0" { + metar.dewpoint_c = Some(d / 10.0); + } else { + metar.dewpoint_c = Some(d / 10.0 * -1.0); + } + } + } + } + } + + // Skip unexpected fields + if !metar_parts.is_empty() { + log::warn!( + "Skipping unexpected field: '{}' ({})", + metar_parts[0], + metar_string + ); + metar_parts.remove(0); + } } - return Ok(metars); + + // Flight Category + if metar.visibility_statute_mi.is_none() && metar.sky_condition.is_empty() { + metar.flight_category = FlightCategory::UNKN; + } else { + let visibility = match &metar.visibility_statute_mi { + Some(v) => { + if v.starts_with("M") || v.starts_with("P") { + v[1..v.len()].parse::().unwrap() + } else { + v.parse::().unwrap() + } + } + None => 5.0, // Assume VFR if no visibility is present + }; + // Ceiling is the lowest cloud base that is BKN or OVC + let ceiling = match metar.sky_condition.first() { + Some(s) => { + if s.sky_cover == "VV" { + 0.0 + } else if s.sky_cover == "BKN" || s.sky_cover == "OVC" { + match s.cloud_base_ft_agl { + Some(c) => c as f64, + None => 0.0, + } + } else { + 3000.0 // Assume VFR if no BKN or OVC sky condition is present + } + } + None => 3000.0, // Assume VFR if no sky condition is present + }; + if visibility >= 5.0 && ceiling >= 3000.0 { + metar.flight_category = FlightCategory::VFR; + } else if visibility >= 3.0 && ceiling >= 1000.0 { + metar.flight_category = FlightCategory::MVFR; + } else if visibility >= 1.0 && ceiling >= 500.0 { + metar.flight_category = FlightCategory::IFR; + } else { + metar.flight_category = FlightCategory::LIFR; + } + } + + Ok(metar) } - fn get_missing_metar_icaos(db_metars: &Vec, station_icaos: &Vec<&str>) -> Vec { + fn get_missing_metar_icaos(db_metars: &Vec, station_icaos: &[&str]) -> Vec { let mut missing_metar_icaos: Vec = vec![]; let current_time = chrono::Local::now().naive_local().and_utc().timestamp(); let db_metars_set: HashSet<&str> = db_metars @@ -667,15 +700,15 @@ impl Metar { missing_metar_icaos.push(difference.to_string()); } for metar in db_metars { - if current_time > (metar.observation_time.and_utc().timestamp() + 3600) { - trace!("{} METAR data is outdated", metar.station_id); + if current_time > (metar.observation_time.timestamp() + 3600) { + log::trace!("{} METAR data is outdated", metar.station_id); missing_metar_icaos.push(metar.station_id.to_string()); } } - return missing_metar_icaos; + missing_metar_icaos } - async fn get_remote_metars(icaos: Vec) -> ApiResult> { + async fn get_remote_metars(icaos: &[&str]) -> ApiResult> { let gov_api_url = std::env::var("GOV_API_URL").expect("GOV_API_URL must be set"); // Query the remote API for the missing METAR data 10 at a time let icao_chunks = icaos @@ -689,7 +722,7 @@ impl Metar { Ok(r) => { // Check if the status code is 200 if r.status() != 200 { - return Err(ApiError::new( + return Err(Error::new( 500, format!("Unable to get METAR request: {}", r.status()), )); @@ -701,13 +734,13 @@ impl Metar { .split("\n") .filter(|m| !m.trim().is_empty()) .collect(); - match Metar::parse(metar_chunk) { + match Self::parse_multiple(&metar_chunk) { Ok(m) => m, Err(err) => return Err(err), } } Err(err) => { - return Err(ApiError::new( + return Err(Error::new( 500, format!("Unable to parse METAR request: {}", err), )) @@ -715,7 +748,7 @@ impl Metar { } } Err(err) => { - return Err(ApiError::new( + return Err(Error::new( 500, format!("Unable to get METAR request: {}", err), )) @@ -723,166 +756,100 @@ impl Metar { }; metars.append(&mut m); } - return Ok(metars); - } - - fn from_query(query_metars: Vec) -> Vec { - let mut metars: Vec = vec![]; - for metar in query_metars { - let mut metar: Metar = serde_json::from_value(metar.data).unwrap(); - metar.raw_text = metar.raw_text.to_string(); - metar.station_id = metar.station_id.to_string(); - metars.push(metar); - } - return metars; - } - - fn to_insert(metars: &Vec) -> Vec { - let mut insert_metars: Vec = vec![]; - for metar in metars { - insert_metars.push(InsertMetar { - icao: metar.station_id.to_string(), - observation_time: metar.observation_time, - raw_text: metar.raw_text.to_string(), - data: serde_json::to_value(metar).unwrap(), - }); - } - return insert_metars; - } - - pub async fn get_all(icao_string: String) -> ApiResult> { - if icao_string.is_empty() { - return Ok(vec![]); - } - - let icaos: Vec<&str> = icao_string.split(",").collect(); - - let mut db_metars = match QueryMetar::get_all(&icaos) { - Ok(m) => Self::from_query(m), - Err(err) => return Err(err), - }; - - let missing_icaos = Self::get_missing_metar_icaos(&db_metars, &icaos); - if missing_icaos.is_empty() { - return Ok(db_metars); - } - trace!("Retrieving missing METAR data for {:?}", missing_icaos); - let missing_icaos_string: Vec = missing_icaos - .iter() - .map(|icao| format!("{}", icao.to_string())) - .collect(); - let mut airports: Vec = vec![]; - missing_icaos_string - .clone() - .iter() - .for_each(|icao| match QueryAirport::get(icao) { - Ok(a) => airports.push(a), - Err(_) => {} - }); - let missing_result = Self::get_remote_metars(missing_icaos_string).await; - let mut missing_metars = match missing_result { - Ok(m) => m, - Err(err) => { - warn!("Unable to get remote METAR data; {}", err); - vec![] - } - }; - if missing_metars.len() > 0 { - let insert_metars = Self::to_insert(&missing_metars); - match InsertMetar::insert(&insert_metars) { - Ok(rows) => trace!("Inserted {} metar rows", rows), - Err(err) => warn!("Unable to insert metar data; {}", err), - }; - // Update airports with the appropriate has_metar flag - airports.iter().for_each(|airport| { - if missing_metars - .iter() - .any(|metar| metar.station_id == airport.icao) - { - let updated = QueryAirport { - icao: airport.icao.to_string(), - category: airport.category.to_string(), - name: airport.name.to_string(), - elevation_ft: airport.elevation_ft, - iso_country: airport.iso_country.to_string(), - iso_region: airport.iso_region.to_string(), - municipality: airport.municipality.to_string(), - has_metar: true, - point: airport.point, - data: airport.data.to_owned(), - }; - match QueryAirport::update(updated) { - Ok(_) => {} - Err(err) => warn!("Unable to update airport with has_metar flag; {}", err), - } - } - }); - } - let mut metars: Vec = vec![]; - metars.append(&mut missing_metars); - metars.append(&mut db_metars); Ok(metars) } -} -#[derive(Serialize, Deserialize, AsChangeset, Insertable)] -#[diesel(table_name = metars)] -struct InsertMetar { - icao: String, - observation_time: chrono::NaiveDateTime, - raw_text: String, - data: serde_json::Value, -} + fn from_db(metar_db: MetarDb) -> ApiResult { + let metar: Metar = serde_json::from_value(metar_db.data)?; + Ok(metar) + } -impl InsertMetar { - fn insert(metars: &Vec) -> ApiResult { - let mut conn = db::connection()?; - match diesel::insert_into(metars::table) - .values(metars) - .execute(&mut conn) - { - Ok(rows) => Ok(rows), - Err(err) => Err(ApiError { - status: 500, - message: format!("{}", err), - }), + fn to_db(&self) -> ApiResult { + let data = serde_json::to_value(self)?; + Ok(MetarDb { + icao: self.station_id.clone(), + observation_time: self.observation_time, + raw_text: self.raw_text.clone(), + data, + }) + } + + pub async fn find_all(icao_list: &[&str]) -> ApiResult> { + if icao_list.is_empty() { + return Ok(Vec::new()); } - } -} -#[derive(Serialize, Deserialize, Queryable, QueryableByName)] -#[diesel(table_name = metars)] -struct QueryMetar { - id: i32, - icao: String, - observation_time: chrono::NaiveDateTime, - raw_text: String, - data: serde_json::Value, -} - -impl QueryMetar { - fn get_all(icaos: &Vec<&str>) -> ApiResult> { - // Sanitize search to only allow [a-zA-Z0-9] - let icaos = icaos - .iter() - .map(|icao| { - icao - .chars() - .filter(|c| c.is_alphanumeric()) - .collect::() - }) - .collect::>(); - let station_query: Vec = icaos - .iter() - .map(|icao| format!("'{}'", icao.to_string())) - .collect(); - let mut conn = db::connection()?; - let db_metars: Vec = match sql_query( - format!("SELECT DISTINCT ON (icao) * FROM metars WHERE icao IN ({}) ORDER BY icao, observation_time DESC", station_query.join(",")) - ).load(&mut conn) { + let pool = db::pool(); + let metar_dbs: Vec = match sqlx::query_as::<_, MetarDb>(&format!( + r#" + SELECT DISTINCT ON (icao) * FROM {} WHERE icao = ANY($1) ORDER BY icao, observation_time DESC + "#, + TABLE_NAME + )) + .bind(icao_list) + .fetch_all(pool) + .await + { Ok(m) => m, - Err(err) => return Err(ApiError { status: 500, message: format!("{}", err) }) + Err(err) => { + return Err(Error::new( + 500, + format!("Unable to find METARs with input {:?}: {}", icao_list, err), + )); + } }; - return Ok(db_metars); + let mut metars: Vec = metar_dbs + .into_iter() + .filter_map(|metar_db| Metar::from_db(metar_db).ok()) + .collect(); + + // Check for missing metars + let missing_icao_list = Self::get_missing_metar_icaos(&metars, icao_list); + if !missing_icao_list.is_empty() { + log::trace!("Retrieving missing METAR data for {:?}", missing_icao_list); + + let missing_icao_list: Vec<&str> = missing_icao_list.iter().map(|s| s.as_str()).collect(); + let mut missing_icao_list = Self::get_remote_metars(&missing_icao_list) + .await + .unwrap_or_else(|err| { + log::warn!("Unable to get remote METAR data; {}", err); + vec![] + }); + + if missing_icao_list.len() > 0 { + // Insert missing METARs + for missing_metar in &missing_icao_list { + missing_metar.insert().await?; + } + metars.append(&mut missing_icao_list) + } + } + + Ok(metars) + } + + pub async fn insert(&self) -> ApiResult<()> { + let pool = db::pool(); + let metar: MetarDb = self.to_db()?; + sqlx::query(&format!( + r#" + INSERT INTO {} ( + icao, + observation_time, + raw_text, + data + ) + VALUES ($1, $2, $3, $4) + "#, + TABLE_NAME, + )) + .bind(metar.icao) + .bind(metar.observation_time) + .bind(metar.raw_text) + .bind(metar.data) + .execute(pool) + .await?; + + Ok(()) } } diff --git a/api/src/metars/routes.rs b/api/src/metars/routes.rs index 5710fb6..bbfb335 100644 --- a/api/src/metars/routes.rs +++ b/api/src/metars/routes.rs @@ -1,45 +1,34 @@ -use crate::{error::ApiError, db::Metadata}; +use crate::error::Error; use crate::metars::Metar; use actix_web::{get, web, HttpResponse, HttpRequest}; use log::error; use serde::{Deserialize, Serialize}; -#[derive(Serialize, Deserialize)] -pub struct MetarsResponse { - pub data: Vec, - pub meta: Metadata, -} - #[derive(Debug, Serialize, Deserialize)] -struct GetAllParameters { +struct FindAllParameters { icaos: Option, } #[get("metars")] -async fn get_all(req: HttpRequest) -> HttpResponse { - let params = web::Query::::from_query(req.query_string()).unwrap(); - let icao_option = params.icaos.clone(); +async fn find_all(req: HttpRequest) -> HttpResponse { + let parameters = web::Query::::from_query(req.query_string()).unwrap(); + let icao_option = ¶meters.icaos; let icao_string = match icao_option { Some(i) => i, None => return HttpResponse::UnprocessableEntity().body("Missing icaos parameter"), }; + let icaos: Vec<&str> = icao_string.split(',').collect(); - let metars = - match web::block(|| Ok::<_, ApiError>(async { Metar::get_all(icao_string).await })) - .await - .unwrap() - .unwrap() - .await - { - Ok(a) => a, - Err(err) => { - error!("{}", err); - return err.to_http_response(); - } - }; + let metars = match Metar::find_all(&icaos).await { + Ok(a) => a, + Err(err) => { + error!("{}", err); + return err.to_http_response(); + } + }; HttpResponse::Ok().json(metars) } pub fn init_routes(config: &mut web::ServiceConfig) { - config.service(get_all); + config.service(find_all); } diff --git a/api/src/scheduler.rs b/api/src/scheduler.rs index ded94ec..6a75ccd 100644 --- a/api/src/scheduler.rs +++ b/api/src/scheduler.rs @@ -1,74 +1,74 @@ use tokio::time::{sleep, Duration}; -use crate::airports::{QueryAirport, QueryFilters}; +// use crate::airports::{AirportDb, AirportFilter}; use crate::metars::Metar; pub fn update_airports() { - tokio::spawn(async { - let mut airports: Vec = vec![]; - let limit = 100; - loop { - log::debug!("METAR update start"); - let total = match QueryAirport::get_count(&QueryFilters::default()) { - Ok(t) => t, - Err(err) => { - log::warn!("{}", err); - break; - } - }; - if total != airports.len() as i64 { - log::debug!("{} cached airports, expected {}", airports.len(), total); - airports = vec![]; - let pages = ((total as f32) / (if limit <= 0 { 1 } else { limit } as f32)).ceil() as i32; - for page in 1..(pages + 1) { - match QueryAirport::get_all(&QueryFilters::default(), limit, page) { - Ok(mut a) => airports.append(&mut a), - Err(err) => { - log::warn!("{}", err); - break; - } - } - } - } - log::debug!("Updating {} airport METARS", airports.len()); - - let airport_icaos: Vec = airports.iter().map(|a| a.icao.to_string()).collect(); - let mut peekable = airport_icaos.into_iter().peekable(); - let mut observation_time = chrono::Utc::now().timestamp(); - - if peekable.peek().is_none() { - log::debug!("No airports to update, sleeping for 1 hour"); - sleep(Duration::from_secs(3600)).await; - continue; - } - - while peekable.peek().is_some() { - let chunk: Vec = peekable.by_ref().take(limit as usize).collect(); - let icao_string = chunk.join(","); - log::trace!("Updating METARS for: {}", icao_string); - match Metar::get_all(icao_string).await { - Ok(metars) => { - // Find the oldest observation time - for metar in metars { - if metar.observation_time.and_utc().timestamp() < observation_time { - observation_time = metar.observation_time.and_utc().timestamp(); - } - } - } - Err(err) => { - log::warn!("{}", err); - } - } - // Sleep for 100ms between chunks to avoid rate limiting - sleep(Duration::from_millis(100)).await; - } - log::debug!("METAR update complete"); - // Sleep until the earliest observation time is 1 hour old - // Bounded by 1 and 3600 seconds - let now = chrono::Utc::now().timestamp(); - let sleep_time = std::cmp::min(std::cmp::max(1, now - (observation_time + 3600)), 3600); - log::debug!("Next update in {} seconds", sleep_time); - sleep(Duration::from_secs(sleep_time as u64)).await; - } - }); + // tokio::spawn(async { + // let mut airports: Vec = vec![]; + // let limit = 100; + // loop { + // log::debug!("METAR update start"); + // let total = match AirportDb::count(&AirportFilter::default()).await { + // Ok(t) => t, + // Err(err) => { + // log::warn!("{}", err); + // break; + // } + // }; + // if total != airports.len() as i64 { + // log::debug!("{} cached airports, expected {}", airports.len(), total); + // airports = vec![]; + // let pages = ((total as f32) / (if limit <= 0 { 1 } else { limit } as f32)).ceil() as i32; + // for page in 1..(pages + 1) { + // match AirportDb::find_all(&AirportFilter::default(), limit, page).await { + // Ok(mut a) => airports.append(&mut a), + // Err(err) => { + // log::warn!("{}", err); + // break; + // } + // } + // } + // } + // log::debug!("Updating {} airport METARS", airports.len()); + // + // let airport_icaos: Vec = airports.iter().map(|a| a.icao.to_string()).collect(); + // let mut peekable = airport_icaos.into_iter().peekable(); + // let mut observation_time = chrono::Utc::now().timestamp(); + // + // if peekable.peek().is_none() { + // log::debug!("No airports to update, sleeping for 1 hour"); + // sleep(Duration::from_secs(3600)).await; + // continue; + // } + // + // while peekable.peek().is_some() { + // let chunk: Vec = peekable.by_ref().take(limit as usize).collect(); + // let icao_string = chunk.join(","); + // log::warn!("Updating METARS for: {}", &icao_string); // TODO: back to trace after + // match Metar::find_all(&[&icao_string]).await { + // Ok(metars) => { + // // Find the oldest observation time + // for metar in metars { + // if metar.observation_time.timestamp() < observation_time { + // observation_time = metar.observation_time.timestamp(); + // } + // } + // } + // Err(err) => { + // log::warn!("{}", err); + // } + // } + // // Sleep for 100ms between chunks to avoid rate limiting + // sleep(Duration::from_millis(100)).await; + // } + // log::debug!("METAR update complete"); + // // Sleep until the earliest observation time is 1 hour old + // // Bounded by 1 and 3600 seconds + // let now = chrono::Utc::now().timestamp(); + // let sleep_time = std::cmp::min(std::cmp::max(1, now - (observation_time + 3600)), 3600); + // log::debug!("Next update in {} seconds", sleep_time); + // sleep(Duration::from_secs(sleep_time as u64)).await; + // } + // }); } diff --git a/api/src/users/model.rs b/api/src/users/model.rs index 0544184..c94edc1 100644 --- a/api/src/users/model.rs +++ b/api/src/users/model.rs @@ -1,11 +1,12 @@ +use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; -use diesel::prelude::*; -use crate::{ - auth::hash, - db::{connection, schema::users}, - error::ApiResult, -}; +use crate::{auth::hash, error::ApiResult}; +use crate::db; + +pub const ADMIN_ROLE: &str = "ADMIN"; +pub const USER_ROLE: &str = "USER"; +const TABLE_NAME: &str = "users"; /** * RegisterRequest @@ -20,18 +21,15 @@ pub struct RegisterRequest { impl RegisterRequest { pub fn to_user(self) -> ApiResult { - let hash = hash(&self.password)?; + let password_hash = hash(&self.password)?; Ok(User { email: self.email.to_lowercase(), - hash, - role: "user".to_string(), + password_hash, + role: USER_ROLE.to_string(), first_name: self.first_name, last_name: self.last_name, - updated_at: chrono::Utc::now().naive_utc(), - created_at: chrono::Utc::now().naive_utc(), - profile_picture: None, - favorites: vec![], - verified: false, + updated_at: Utc::now(), + created_at: Utc::now(), }) } } @@ -54,7 +52,6 @@ pub struct UserResponse { pub role: String, pub first_name: String, pub last_name: String, - pub profile_picture: Option, } impl From for UserResponse { @@ -64,45 +61,69 @@ impl From for UserResponse { role: user.role, first_name: user.first_name, last_name: user.last_name, - profile_picture: user.profile_picture, } } } -/** - * User - */ -#[derive(Debug, Insertable, AsChangeset, Queryable, QueryableByName, Serialize, Deserialize)] -#[diesel(table_name = users)] +#[derive(Serialize, Deserialize, sqlx::FromRow, Debug)] pub struct User { pub email: String, - pub hash: String, + pub password_hash: String, pub role: String, pub first_name: String, pub last_name: String, - pub updated_at: chrono::NaiveDateTime, - pub created_at: chrono::NaiveDateTime, - pub profile_picture: Option, - pub favorites: Vec, - pub verified: bool, + pub updated_at: DateTime, + pub created_at: DateTime, } impl User { - pub fn get_by_email(email: &str) -> ApiResult { - let mut conn = connection()?; - // Check if the user exists by email, case insensitive + pub async fn select(email: &str) -> Option { + let pool = db::pool(); + let user: Option = sqlx::query_as::<_, Self>(&format!( + r#" + SELECT * FROM {} WHERE email = LOWER($1) + "#, + TABLE_NAME + )) + .bind(email) + .fetch_optional(pool) + .await + .unwrap_or_else(|err| { + log::error!("Unable to find user '{}': {}", email, err); + None + }); - let user = users::table - .filter(users::email.eq(email.to_lowercase())) - .first(&mut conn)?; - Ok(user) + user } - pub fn insert(user: Self) -> ApiResult { - let mut conn = connection()?; - let user = diesel::insert_into(users::table) - .values(user) - .get_result(&mut conn)?; + pub async fn insert(&self) -> ApiResult { + let pool = db::pool(); + let user: User = sqlx::query_as::<_, Self>(&format!( + r#" + INSERT INTO {} ( + email, + password_hash, + role, + first_name, + last_name, + created_at, + updated_at + ) + VALUES ($1, $2, $3, $4, $5, $6, $7) + RETURNING * + "#, + TABLE_NAME, + )) + .bind(&self.email) + .bind(&self.password_hash) + .bind(&self.role) + .bind(&self.first_name) + .bind(&self.last_name) + .bind(self.created_at) + .bind(self.updated_at) + .fetch_one(pool) + .await?; + Ok(user) } } diff --git a/bruno/Airports/Delete Airport.bru b/bruno/Airports/Delete Airport.bru new file mode 100644 index 0000000..2969aef --- /dev/null +++ b/bruno/Airports/Delete Airport.bru @@ -0,0 +1,11 @@ +meta { + name: Delete Airport + type: http + seq: 4 +} + +delete { + url: {{BASE_URL}}/airports/TEST + body: none + auth: none +} diff --git a/bruno/Airports/Delete All Airports.bru b/bruno/Airports/Delete All Airports.bru new file mode 100644 index 0000000..2220ad4 --- /dev/null +++ b/bruno/Airports/Delete All Airports.bru @@ -0,0 +1,11 @@ +meta { + name: Delete All Airports + type: http + seq: 5 +} + +delete { + url: {{BASE_URL}}/airports + body: none + auth: none +} diff --git a/bruno/Airports/Get Airport.bru b/bruno/Airports/Get Airport.bru new file mode 100644 index 0000000..8949bd5 --- /dev/null +++ b/bruno/Airports/Get Airport.bru @@ -0,0 +1,11 @@ +meta { + name: Get Airport + type: http + seq: 2 +} + +get { + url: {{BASE_URL}}/airports/TEST + body: none + auth: none +} diff --git a/bruno/Airports/Get All Airports.bru b/bruno/Airports/Get All Airports.bru new file mode 100644 index 0000000..a2131c5 --- /dev/null +++ b/bruno/Airports/Get All Airports.bru @@ -0,0 +1,11 @@ +meta { + name: Get All Airports + type: http + seq: 3 +} + +get { + url: {{BASE_URL}}/airports + body: none + auth: none +} diff --git a/bruno/Airports/Insert Airport.bru b/bruno/Airports/Insert Airport.bru new file mode 100644 index 0000000..021dd22 --- /dev/null +++ b/bruno/Airports/Insert Airport.bru @@ -0,0 +1,28 @@ +meta { + name: Insert Airport + type: http + seq: 1 +} + +post { + url: {{BASE_URL}}/airports + body: json + auth: none +} + +body:json { + { + "icao": "TEST", + "name": "Test Airport", + "category": "unknown", + "iso_country": "", + "iso_region": "", + "municipality": "", + "elevation_ft": 0, + "latitude": 0, + "longitude": 0, + "runways": [], + "frequencies": [], + "public": true + } +} diff --git a/bruno/Metars/Find Metars.bru b/bruno/Metars/Find Metars.bru new file mode 100644 index 0000000..a7ef918 --- /dev/null +++ b/bruno/Metars/Find Metars.bru @@ -0,0 +1,15 @@ +meta { + name: Find Metars + type: http + seq: 1 +} + +get { + url: {{BASE_URL}}/metars?icaos=KHEF,KJYO,KLNS,KRMN,KIAD,KSFO,KPBI,KJFK,KORD,KDAL,KSAN,KGFK + body: none + auth: none +} + +params:query { + icaos: KHEF,KJYO,KLNS,KRMN,KIAD,KSFO,KPBI,KJFK,KORD,KDAL,KSAN,KGFK +} diff --git a/bruno/Users/Create API Key.bru b/bruno/Users/Create API Key.bru new file mode 100644 index 0000000..d426255 --- /dev/null +++ b/bruno/Users/Create API Key.bru @@ -0,0 +1,23 @@ +meta { + name: Create API Key + type: http + seq: 4 +} + +post { + url: {{BASE_URL}}/auth/key + body: none + auth: none +} + +body:json { + { + "email": "john.doe@gmail.com", + "password": "fake_password123" + } +} + +script:post-response { + const apiKey = res.body + bru.setVar("bearer",apiKey) +} diff --git a/bruno/Users/Login.bru b/bruno/Users/Login.bru new file mode 100644 index 0000000..4069f89 --- /dev/null +++ b/bruno/Users/Login.bru @@ -0,0 +1,18 @@ +meta { + name: Login + type: http + seq: 2 +} + +post { + url: {{BASE_URL}}/auth/login + body: json + auth: none +} + +body:json { + { + "email": "admin", + "password": "CHANGEME" + } +} diff --git a/bruno/Users/Logout.bru b/bruno/Users/Logout.bru new file mode 100644 index 0000000..ea71de3 --- /dev/null +++ b/bruno/Users/Logout.bru @@ -0,0 +1,18 @@ +meta { + name: Logout + type: http + seq: 3 +} + +post { + url: {{BASE_URL}}/auth/logout + body: none + auth: none +} + +body:json { + { + "email": "john.doe@gmail.com", + "password": "fake_password123" + } +} diff --git a/bruno/Users/Register.bru b/bruno/Users/Register.bru new file mode 100644 index 0000000..db0b5da --- /dev/null +++ b/bruno/Users/Register.bru @@ -0,0 +1,20 @@ +meta { + name: Register + type: http + seq: 1 +} + +post { + url: {{BASE_URL}}/auth/register + body: json + auth: none +} + +body:json { + { + "email": "john.doe@gmail.com", + "password": "fake_password123", + "first_name": "John", + "last_name": "Doe" + } +} diff --git a/bruno/bruno.json b/bruno/bruno.json new file mode 100644 index 0000000..e5e59ad --- /dev/null +++ b/bruno/bruno.json @@ -0,0 +1,9 @@ +{ + "version": "1", + "name": "Aviation", + "type": "collection", + "ignore": [ + "node_modules", + ".git" + ] +} \ No newline at end of file diff --git a/bruno/collection.bru b/bruno/collection.bru new file mode 100644 index 0000000..2633139 --- /dev/null +++ b/bruno/collection.bru @@ -0,0 +1,3 @@ +vars:pre-request { + BASE_URL: http://localhost:5000 +} diff --git a/data/airports_2024-09-04.json b/data/airports_2024-09-04.json new file mode 100644 index 0000000..02220eb --- /dev/null +++ b/data/airports_2024-09-04.json @@ -0,0 +1,104106 @@ +[ + { + "name": "Peterstown Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "487", + "location": { + "latitude": 37.4012325, + "longitude": -80.8072992 + }, + "state": "WV", + "type": "aerodrome" + }, + { + "name": "Robinson Private Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "290", + "location": { + "latitude": 37.3484735, + "longitude": -79.5719779 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Brookneal-Campbell County Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "0V4", + "elevation": "178", + "location": { + "latitude": 37.1418094, + "longitude": -79.0161286 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Ayres-Acip Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "160", + "location": { + "latitude": 38.7759492, + "longitude": -77.9105505 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Mecklenburg-Brunswick Regional Airport", + "alt_name": null, + "icao": "KAVC", + "iata": null, + "faa": null, + "elevation": "130", + "location": { + "latitude": 36.6882004, + "longitude": -78.0544403 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Franwood Farms Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "299", + "location": { + "latitude": 38.6909503, + "longitude": -78.6294596 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Kilmarnock-Tolbert Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "2", + "location": { + "latitude": 37.6926338, + "longitude": -76.3182779 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Johnson Fox Field Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "0VA1", + "elevation": "266", + "location": { + "latitude": 37.2334759, + "longitude": -79.5853093 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "High View Farm Airport", + "alt_name": null, + "icao": "61VA", + "iata": "61VA", + "faa": null, + "elevation": "179", + "location": { + "latitude": 39.2353805, + "longitude": -78.0119425 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Meadow Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "20", + "location": { + "latitude": 37.8570844, + "longitude": -77.420537 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Mayers Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "56", + "location": { + "latitude": 37.7818091, + "longitude": -77.4938727 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Nashs Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "232", + "location": { + "latitude": 37.3904451, + "longitude": -78.8148365 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Hill Top Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "74", + "location": { + "latitude": 37.4159832, + "longitude": -77.9538903 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Powell Valley Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "486", + "location": { + "latitude": 36.8562088, + "longitude": -82.717104 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Alpha Hotel Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "154", + "location": { + "latitude": 36.8195838, + "longitude": -78.7830623 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Big River Ranch Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "110", + "location": { + "latitude": 36.6751394, + "longitude": -78.6950044 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Lake County Regional Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W63", + "elevation": "120", + "location": { + "latitude": 36.5951632, + "longitude": -78.5605134 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "White Oak Stand Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "640", + "location": { + "latitude": 36.8078925, + "longitude": -81.7012303 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Merifield Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "104", + "location": { + "latitude": 36.5844512, + "longitude": -78.5007112 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Huff Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "590", + "location": { + "latitude": 36.7723367, + "longitude": -81.7234538 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Skovhus Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "221", + "location": { + "latitude": 37.4143105, + "longitude": -78.9641861 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Crewe Municipal Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W81", + "elevation": "123", + "location": { + "latitude": 37.180985, + "longitude": -78.0983336 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Ayers Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "411", + "location": { + "latitude": 38.9032741, + "longitude": -78.6549254 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Berryvale Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "135", + "location": { + "latitude": 38.5290151, + "longitude": -77.9563047 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Layne Farm Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "170", + "location": { + "latitude": 37.121259, + "longitude": -78.6436126 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Moorefields Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "327", + "location": { + "latitude": 36.55986, + "longitude": -80.1378265 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Trent Farm Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "338", + "location": { + "latitude": 36.6501369, + "longitude": -80.1164365 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Longs Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "256", + "location": { + "latitude": 38.8041692, + "longitude": -78.5716663 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "The Greenhouse Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "90", + "location": { + "latitude": 38.4356828, + "longitude": -77.8572166 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Grand Pre Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "150", + "location": { + "latitude": 38.4542933, + "longitude": -78.1863901 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Woodford Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "73", + "location": { + "latitude": 38.0823564, + "longitude": -77.4883163 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Mann Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "9", + "location": { + "latitude": 36.5490406, + "longitude": -77.1913561 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Wheatland Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "23VA", + "elevation": "144", + "location": { + "latitude": 37.5570452, + "longitude": -78.6203323 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Toga Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "216", + "location": { + "latitude": 37.4509784, + "longitude": -78.6786199 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Springwood Airstrip Gliderport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "313", + "location": { + "latitude": 37.554022, + "longitude": -79.7497635 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Eastview Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "151", + "location": { + "latitude": 37.6143112, + "longitude": -78.6036203 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Byrd Creek Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "90", + "location": { + "latitude": 37.8187547, + "longitude": -78.0472209 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Burnt Chimney Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "311", + "location": { + "latitude": 37.0754184, + "longitude": -79.827255 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Walnut Hill Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "58VA", + "elevation": "82", + "location": { + "latitude": 38.5951218, + "longitude": -77.6461009 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Shivok Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "7", + "location": { + "latitude": 38.009019, + "longitude": -76.5630107 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Chase City Municipal Airport", + "alt_name": null, + "icao": "KCXE", + "iata": null, + "faa": "CXE", + "elevation": "151", + "location": { + "latitude": 36.7881968, + "longitude": -78.501387 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Twin Towers Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "141", + "location": { + "latitude": 36.7648333, + "longitude": -78.3587663 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Stokes Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "78", + "location": { + "latitude": 37.6563343, + "longitude": -78.0454742 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Snow Hill Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA19", + "elevation": "83", + "location": { + "latitude": 37.9540296, + "longitude": -78.3691745 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Woods Farm Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "20", + "location": { + "latitude": 37.7151428, + "longitude": -77.3024786 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Fox Fire Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "136", + "location": { + "latitude": 36.784304, + "longitude": -79.0497366 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Heathsville Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "30", + "location": { + "latitude": 37.945131, + "longitude": -76.4571739 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Riverwood Airport", + "alt_name": null, + "icao": "0VA2", + "iata": null, + "faa": null, + "elevation": "322", + "location": { + "latitude": 37.7970435, + "longitude": -79.767433 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Irvington Marina Seaplane Base", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "3", + "location": { + "latitude": 37.6576374, + "longitude": -76.4371705 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Keysville Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "193", + "location": { + "latitude": 37.0382067, + "longitude": -78.4627724 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Wells Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA56", + "elevation": "30", + "location": { + "latitude": 37.0034831, + "longitude": -76.8274597 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Apple Grove Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "5", + "location": { + "latitude": 37.7626342, + "longitude": -76.346335 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Tye River Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "192", + "location": { + "latitude": 37.6584219, + "longitude": -78.9446668 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Providence Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "143", + "location": { + "latitude": 37.2253651, + "longitude": -78.4186344 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Big Buffalo Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "140", + "location": { + "latitude": 37.2834853, + "longitude": -78.449718 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Barrows Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "333", + "location": { + "latitude": 37.4920756, + "longitude": -79.9286544 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Deer Run Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "717", + "location": { + "latitude": 36.994296, + "longitude": -80.4544965 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "New London Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W90", + "elevation": "248", + "location": { + "latitude": 37.2734046, + "longitude": -79.3370815 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Balcony Downs Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA43", + "elevation": "230", + "location": { + "latitude": 37.6471956, + "longitude": -79.4254925 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Twin County Airport", + "alt_name": null, + "icao": "KHLX", + "iata": null, + "faa": "HLX", + "elevation": "814", + "location": { + "latitude": 36.7659599, + "longitude": -80.8234089 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "DNE", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "232", + "location": { + "latitude": 37.6795631, + "longitude": -79.4203479 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Bachman Farm Ultralight Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "105", + "location": { + "latitude": 37.7484784, + "longitude": -77.8538836 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Rose Retreat Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "88", + "location": { + "latitude": 37.7168124, + "longitude": -77.8838846 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Als Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "335", + "location": { + "latitude": 39.290657, + "longitude": -78.3508391 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Timber Ridge Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "303", + "location": { + "latitude": 39.2962123, + "longitude": -78.3622283 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Lockerman Seaplane Base", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA48", + "elevation": "242", + "location": { + "latitude": 37.0379554, + "longitude": -79.5960949 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Orange County Airport", + "alt_name": null, + "icao": "KOMH", + "iata": null, + "faa": "OMH", + "elevation": "136", + "location": { + "latitude": 38.2475219, + "longitude": -78.045868 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Christians Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "56", + "location": { + "latitude": 37.6137556, + "longitude": -77.2958113 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Rhynalds Ranch Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "84", + "location": { + "latitude": 38.5287121, + "longitude": -77.7364561 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Harris Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "166", + "location": { + "latitude": 38.9126115, + "longitude": -77.8816618 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Redhouse Airfield", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "233", + "location": { + "latitude": 37.1890344, + "longitude": -78.829733 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Fighting Creek Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "110", + "location": { + "latitude": 37.5168158, + "longitude": -77.9138885 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Davis Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "267", + "location": { + "latitude": 36.6868041, + "longitude": -79.6661433 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Covington Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "285", + "location": { + "latitude": 36.6001377, + "longitude": -80.0386559 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Mazza Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "52", + "location": { + "latitude": 37.2445951, + "longitude": -77.4941529 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Gravely Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "223", + "location": { + "latitude": 36.6468043, + "longitude": -79.7969808 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Blue Ridge Airport", + "alt_name": null, + "icao": "KMTV", + "iata": null, + "faa": "MTV", + "elevation": "278", + "location": { + "latitude": 36.6311065, + "longitude": -80.017917 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Loury Lester Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "314", + "location": { + "latitude": 36.7424744, + "longitude": -79.8473674 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Hunt Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "42", + "location": { + "latitude": 37.6987537, + "longitude": -77.0952498 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Red Birds Airyard Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "271", + "location": { + "latitude": 37.1126432, + "longitude": -79.609197 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Cub Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "119", + "location": { + "latitude": 37.9454187, + "longitude": -77.8994399 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Lakeview Aerodrome", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "305", + "location": { + "latitude": 37.1187543, + "longitude": -79.6028082 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Hickory Tree Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "163", + "location": { + "latitude": 38.9533101, + "longitude": -77.7464997 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Wharton Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "52", + "location": { + "latitude": 37.5945889, + "longitude": -77.2177531 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Wakefield Municipal Airport", + "alt_name": null, + "icao": "KAKQ", + "iata": null, + "faa": "AKQ", + "elevation": "31", + "location": { + "latitude": 36.9870954, + "longitude": -77.0010719 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Camp Nimcock Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "23", + "location": { + "latitude": 37.6241426, + "longitude": -76.5963983 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Airlie Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "160", + "location": { + "latitude": 38.758346, + "longitude": -77.7877842 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Wallops Flight Facility Airport", + "alt_name": null, + "icao": "KWAL", + "iata": "WAL", + "faa": "WAL", + "elevation": "10", + "location": { + "latitude": 37.9417901, + "longitude": -75.4621455 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Tangier Island Airport", + "alt_name": null, + "icao": "KTGI", + "iata": null, + "faa": "TGI", + "elevation": "1", + "location": { + "latitude": 37.8248484, + "longitude": -75.9977149 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Melville Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "2VA2", + "elevation": "22", + "location": { + "latitude": 37.1447907, + "longitude": -76.7905627 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Micro Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "890", + "location": { + "latitude": 36.7355861, + "longitude": -80.4506264 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Flying Horse Farm Balloonport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA60", + "elevation": "146", + "location": { + "latitude": 39.0515416, + "longitude": -77.7770579 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Brammer Seaplane Base", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "9VA7", + "elevation": "264", + "location": { + "latitude": 37.0344145, + "longitude": -79.6944873 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Frog Hollow Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "8", + "location": { + "latitude": 37.6951425, + "longitude": -76.9949687 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "White Post Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "3VA7", + "elevation": "184", + "location": { + "latitude": 39.0603304, + "longitude": -78.0932456 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "The Meadows Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "179", + "location": { + "latitude": 38.7742829, + "longitude": -77.7997158 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Aviacres Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "3VA2", + "elevation": "129", + "location": { + "latitude": 38.624288, + "longitude": -77.7861042 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Shandy Hall Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "12", + "location": { + "latitude": 37.8576368, + "longitude": -76.7357919 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Thornton River Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "111", + "location": { + "latitude": 38.6317876, + "longitude": -78.0838872 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Fox Acres Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "135", + "location": { + "latitude": 38.7223399, + "longitude": -77.899717 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Pace Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "232", + "location": { + "latitude": 36.5854157, + "longitude": -79.8939289 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Worley Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "362", + "location": { + "latitude": 36.9501398, + "longitude": -79.8794782 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Breezy Knoll Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "244", + "location": { + "latitude": 37.2661953, + "longitude": -79.0417675 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Sabot Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "79", + "location": { + "latitude": 37.6293133, + "longitude": -77.7474937 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Trussmark Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "6VA4", + "elevation": null, + "location": { + "latitude": 37.2839764, + "longitude": -80.0688393 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Bradshaw Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "150", + "location": { + "latitude": 37.6154223, + "longitude": -78.6038982 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Bush Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "451", + "location": { + "latitude": 36.8426345, + "longitude": -80.2383823 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Wood Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "104", + "location": { + "latitude": 37.6365319, + "longitude": -78.7300152 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Rockfish Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "226", + "location": { + "latitude": 37.8795842, + "longitude": -78.8936337 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Weems Landing Strip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "5", + "location": { + "latitude": 37.6726381, + "longitude": -76.4577269 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Janeway Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "65", + "location": { + "latitude": 37.8320855, + "longitude": -77.5008169 + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Vaughan Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5761122, + "longitude": -78.9987017 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Groundhog Mountain Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6632996, + "longitude": -80.4994965 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Manquin Flight Park Ultralightport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "04VG", + "elevation": null, + "location": { + "latitude": 37.7113789, + "longitude": -77.2027293 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Jayarz Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2862704, + "longitude": -77.7921965 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Brooklyn Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6889, + "longitude": -77.1014023 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Whithall Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "1VG2", + "elevation": "7", + "location": { + "latitude": 38.1275783, + "longitude": -76.6891235 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hawk Ridge Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2904072, + "longitude": -79.4448743 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Mc Laughlin Seaplane Base", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3205986, + "longitude": -77.3458023 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Serenity Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9332102, + "longitude": -76.3457189 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Merlin Aerodrome", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3171403, + "longitude": -77.8678453 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Seven Gables Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1638985, + "longitude": -77.8499985 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Folly Neck Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8722, + "longitude": -76.731102 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Old South Aerodrome", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.677778, + "longitude": -81.928722 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Cool Water Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.858056, + "longitude": -77.547222 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hilldale Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2463989, + "longitude": -78.4753036 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Holly Springs Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7903173, + "longitude": -77.8299586 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Ferguson Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1176277, + "longitude": -79.7871335 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Root Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1731987, + "longitude": -78.9692001 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Cottonwood Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "87VA", + "elevation": null, + "location": { + "latitude": 38.0812062, + "longitude": -78.6956152 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Belmont Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3741989, + "longitude": -77.9918976 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hen & Bacon Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2181015, + "longitude": -78.2118988 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Timberdoodle Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.536195, + "longitude": -79.0228442 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Highview Farms Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2630997, + "longitude": -78.8494034 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Buck Hollar Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "95VA", + "elevation": null, + "location": { + "latitude": 36.6209879, + "longitude": -79.3567475 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Jucapa Farms Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.3708948, + "longitude": -78.3049849 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Davison Army Airfield", + "alt_name": null, + "icao": "KDAA", + "iata": "DAA", + "faa": "14/32", + "elevation": null, + "location": { + "latitude": 38.7145694, + "longitude": -77.1810423 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Catawba Valley Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2839945, + "longitude": -80.3011846 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Fincastle Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5231785, + "longitude": -79.8535692 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Federhart-Ophelia STOLport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9078375, + "longitude": -76.2903144 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Eureka Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0624008, + "longitude": -78.5616989 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Payne Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VG05", + "elevation": null, + "location": { + "latitude": 37.8796005, + "longitude": -78.0575027 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Fulcher Family Farms Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7251015, + "longitude": -79.0830994 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Rular Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5388985, + "longitude": -77.8283005 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Collins Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6250992, + "longitude": -80.1706009 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Branham Mill Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.970423, + "longitude": -76.7092365 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Woody Field Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8839287, + "longitude": -79.8524796 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Woodridge Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8391991, + "longitude": -78.821701 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Venning's Landing Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0435982, + "longitude": -79.8013992 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Woodstock Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.882, + "longitude": -78.5578003 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Abbott Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.945333, + "longitude": -79.796667 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Lee Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5615, + "longitude": -76.852528 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hop-Along Airport", + "alt_name": null, + "icao": "12VA", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7885636, + "longitude": -79.7672515 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hotinger's Landing Strip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8561555, + "longitude": -79.4800564 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9070861, + "longitude": -79.6504927 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Fork Union Military Academy Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA36", + "elevation": null, + "location": { + "latitude": 37.7438326, + "longitude": -78.2699318 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Garner Gliderport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "3VA8", + "elevation": null, + "location": { + "latitude": 36.8563124, + "longitude": -76.6820993 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Grayson Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "65VA", + "elevation": null, + "location": { + "latitude": 37.8453847, + "longitude": -78.5472052 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Slate River Airpark", + "alt_name": null, + "icao": "8VA1", + "iata": null, + "faa": "8VA1", + "elevation": null, + "location": { + "latitude": 37.5447267, + "longitude": -78.5872544 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Heth Army Heliport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1579609, + "longitude": -77.3734476 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Naval Support Facility Dahlgren", + "alt_name": null, + "icao": "KNDY", + "iata": "DGN", + "faa": "NSF Dahlgren", + "elevation": null, + "location": { + "latitude": 38.3324701, + "longitude": -77.0372541 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Sanford Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1200263, + "longitude": -76.6139172 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Potts Landing Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "3VG9", + "elevation": null, + "location": { + "latitude": 36.7111618, + "longitude": -79.1362896 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5417729, + "longitude": -78.8279028 + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Virginia Tech Montgomery Executive Airport", + "alt_name": null, + "icao": "KBCB", + "iata": "BCB", + "faa": null, + "elevation": "650", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hanover County Municipal Airport", + "alt_name": null, + "icao": "KOFP", + "iata": null, + "faa": null, + "elevation": "58", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Front Royal-Warren County Airport", + "alt_name": null, + "icao": "KFRR", + "iata": "FRR", + "faa": "FRR", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Franklin Municipal Airport", + "alt_name": "John Beverly Rose Field", + "icao": "KFKN", + "iata": "FKN", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Upperville Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "160", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Charlottesville-Albemarle Airport", + "alt_name": "Charlottesville Albemarle Airport", + "icao": "KCHO", + "iata": "CHO", + "faa": null, + "elevation": "193", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Bridgewater Air Park", + "alt_name": null, + "icao": "KVBW", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Emporia-Greensville Regional Airport", + "alt_name": null, + "icao": "KEMV", + "iata": null, + "faa": "EMV", + "elevation": "36", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Shannon Airport", + "alt_name": null, + "icao": "KEZF", + "iata": null, + "faa": "EZF", + "elevation": "26", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Winchester Regional Airport", + "alt_name": null, + "icao": "KOKV", + "iata": "WGO", + "faa": "OKV", + "elevation": "221", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Norfolk International Airport", + "alt_name": null, + "icao": "KORF", + "iata": "ORF", + "faa": null, + "elevation": "7", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Richmond International Airport", + "alt_name": "Byrd Field / Intl", + "icao": "KRIC", + "iata": "RIC", + "faa": null, + "elevation": "49", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Newport News/Williamsburg Airport", + "alt_name": null, + "icao": "KPHF", + "iata": "PHF", + "faa": "PHF", + "elevation": "13", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Warrenton-Fauquier Airport", + "alt_name": null, + "icao": "KHWY", + "iata": null, + "faa": "HWY", + "elevation": "98", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Farmville Regional Airport", + "alt_name": null, + "icao": "KFVX", + "iata": null, + "faa": "FVX", + "elevation": "122", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Gordonsville Municipal Airport", + "alt_name": null, + "icao": "KGVE", + "iata": "GVE", + "faa": "GVE", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Calvin Grove Airstrip", + "alt_name": null, + "icao": "YCVG", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Williamsburg - Jamestown Airport", + "alt_name": null, + "icao": "KJGG", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Camp Peary Airstrip", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "New Kent County Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W96", + "elevation": "34", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Virginia Beach Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Chesapeake Regional Airport", + "alt_name": null, + "icao": "KCPK", + "iata": null, + "faa": "CPK", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Middle Peninsula Regional Airport", + "alt_name": null, + "icao": "KFYJ", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Hampton Roads Executive Airport", + "alt_name": null, + "icao": "KPVG", + "iata": null, + "faa": "PVG", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Aberdeen Field", + "alt_name": null, + "icao": "31VA", + "iata": null, + "faa": "31VA", + "elevation": "10", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Suffolk Executive Airport", + "alt_name": null, + "icao": "KSFQ", + "iata": null, + "faa": "SFQ", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Tappahannock-Essex County Airport", + "alt_name": null, + "icao": "KXSA", + "iata": null, + "faa": "XSA", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Stafford Regional Airport", + "alt_name": null, + "icao": "KRMN", + "iata": null, + "faa": null, + "elevation": "64.67856", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Manassas Regional Airport", + "alt_name": null, + "icao": "KHEF", + "iata": "MNZ", + "faa": null, + "elevation": "55", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Dogwood Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "42", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Flying T Farm Airport", + "alt_name": null, + "icao": "1VA9", + "iata": null, + "faa": null, + "elevation": "77", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Quantico Marine Corps Airfield/Turner Field", + "alt_name": null, + "icao": "KNYG", + "iata": "NYG", + "faa": null, + "elevation": "19", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Chimney View Airport", + "alt_name": null, + "icao": "5VA5", + "iata": null, + "faa": null, + "elevation": "7", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Flying Circus Aerodrome", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "3VA3", + "elevation": "94", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Hartwood Airport", + "alt_name": null, + "icao": "3VG7", + "iata": null, + "faa": null, + "elevation": "110", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Sky Bryce Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VG18", + "elevation": "386", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Accomack County Airport", + "alt_name": null, + "icao": "KMFV", + "iata": "MFV", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "William M Tuck Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W78", + "elevation": "119", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "New Castle International Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "409", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Lynchburg Regional Airport", + "alt_name": "Lynchburg Regional Airport-Preston Glenn Field", + "icao": "KLYH", + "iata": "LYH", + "faa": "LYH", + "elevation": "284", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Falwell Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W24", + "elevation": "259", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Starr Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "198", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Spring Valley Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "84", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Hannah Airfield", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "7VA9", + "elevation": "929", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Pleasantdale Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "4VA9", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Arrowpoint Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VG43", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "New Market Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "8W2", + "elevation": "292", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Singleton Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "97VA", + "elevation": "628", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Bath Alum Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "9VA0", + "elevation": "542", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Ingalls Field", + "alt_name": null, + "icao": "KHSP", + "iata": "HSP", + "faa": "HSP", + "elevation": "1150", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Lee County Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "0VG", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Lee County Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "563", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Virginia Highlands Airport", + "alt_name": null, + "icao": "KVJI", + "iata": "VJI", + "faa": "VJI", + "elevation": "628", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Eagles Nest Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W13", + "elevation": "434", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Big Hill Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "489", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Tazewell County Airport", + "alt_name": null, + "icao": "KJFZ", + "iata": null, + "faa": null, + "elevation": "794", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Felker Army Airfield", + "alt_name": null, + "icao": "KFAF", + "iata": "FAF", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Milton Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Chesterfield County Airport", + "alt_name": null, + "icao": "KFCI", + "iata": null, + "faa": "FCI", + "elevation": "64", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": "KAPH", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Fairfax County Police Heliport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "26VA", + "elevation": "135", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Mountain Empire Airport", + "alt_name": null, + "icao": "KMKJ", + "iata": null, + "faa": "MKJ", + "elevation": "759", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Culpeper Regional Airport", + "alt_name": null, + "icao": "KCJR", + "iata": null, + "faa": null, + "elevation": "94", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Lawrenceville-Brunswick Municipal Airport", + "alt_name": null, + "icao": "KLVL", + "iata": "LVL", + "faa": "LVL", + "elevation": "101", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Nocarva Landowners", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "NC10", + "elevation": "84", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Martindale Executive Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "70NC", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Smith Mountain Lake Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W91", + "elevation": "265", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Reedville Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "3", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Longbranch Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "3", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Devil's Reach Landing Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Toddsbury Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "22", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Louisa County Airport-Freeman Field", + "alt_name": null, + "icao": "KLKU", + "iata": "LOW", + "faa": "LKU", + "elevation": "149", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Johnson Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA91", + "elevation": "10", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Midway Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VG56", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "High Hopes Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "3", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Sawyer Stolport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "3", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Lonesome Pine Airport", + "alt_name": null, + "icao": "KLNP", + "iata": "LNP", + "faa": "LNP", + "elevation": "810", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Hummel Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W75", + "elevation": "9", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Easter Field", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "112", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Plainview Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "125", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Flying W Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Bundoran Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "252", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Twin County Airport", + "alt_name": null, + "icao": "KHLX", + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Lake Anna Airport", + "alt_name": null, + "icao": null, + "iata": "7W4", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Warrenton Air Park", + "alt_name": null, + "icao": null, + "iata": "7VG0", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Lunenburg County Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "W31", + "elevation": "163", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Scott Airpark", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VA61", + "elevation": "529", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "The Grass Patch Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "530", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Krens Farm Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": "227", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Maples Field Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "VG57", + "elevation": "67", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Holly Point Airport", + "alt_name": null, + "icao": null, + "iata": null, + "faa": "9VA1", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Washington Dulles International Airport", + "alt_name": "Dulles International Airport", + "icao": "KIAD", + "iata": "IAD", + "faa": "IAD", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Langley Air Force Base", + "alt_name": "Joint Base Langley-Eustis", + "icao": "KLFI", + "iata": "LFI", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Naval Air Station Oceana", + "alt_name": "Apollo Soucek Field", + "icao": "KNTU", + "iata": "NTU", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Naval Auxillary Landing Field Fentress", + "alt_name": null, + "icao": "KNFE", + "iata": null, + "faa": "NFE", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Dinwiddie County Airport", + "alt_name": null, + "icao": "KPTB", + "iata": "PTB", + "faa": "KPTB", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Luray Caverns Airport", + "alt_name": null, + "icao": "KLUA", + "iata": null, + "faa": "LUA", + "elevation": "275.2", + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "New River Valley Airport", + "alt_name": null, + "icao": "KPSK", + "iata": "PSK", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Roanoke-Blacksburg Regional Airport", + "alt_name": "Woodrum Field", + "icao": "KROA", + "iata": "ROA", + "faa": null, + "elevation": "356", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Danville Regional Airport", + "alt_name": null, + "icao": "KDAN", + "iata": "DAN", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Shenandoah Valley Regional Airport", + "alt_name": null, + "icao": "KSHD", + "iata": "SHD", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Ronald Reagan Washington National Airport", + "alt_name": null, + "icao": "KDCA", + "iata": "DCA", + "faa": "DCA", + "elevation": "4.3", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Norfolk Naval Station (Chambers Field)", + "alt_name": null, + "icao": "KNGU", + "iata": "NGU", + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": "Leesburg Executive Airport", + "alt_name": null, + "icao": "KJYO", + "iata": null, + "faa": "JYO", + "elevation": "116", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Allen C. Perkinson Municipal Airport / Blackstone Army Airfield", + "alt_name": null, + "icao": "KBKT", + "iata": "BKT", + "faa": null, + "elevation": "133", + "location": { + "latitude": null, + "longitude": null + }, + "state": "VA", + "type": "aerodrome" + }, + { + "name": "Norfolk Naval Station Airport", + "alt_name": null, + "icao": "KNHU", + "iata": null, + "faa": "NHU", + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": "aerodrome" + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6491203, + "longitude": -83.2268921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6502281, + "longitude": -83.2276959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6505926, + "longitude": -83.2219814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6501874, + "longitude": -83.222849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6508008, + "longitude": -83.2232941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6517477, + "longitude": -83.2263344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6510877, + "longitude": -83.2258555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6555862, + "longitude": -83.2221959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6549012, + "longitude": -83.2216989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6541368, + "longitude": -83.2233356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6533985, + "longitude": -83.2227998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6528307, + "longitude": -83.2190916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6519771, + "longitude": -83.2184722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6515643, + "longitude": -83.2193558 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6524295, + "longitude": -83.2199836 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6512677, + "longitude": -83.2224712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6572365, + "longitude": -83.2158079 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.65569, + "longitude": -83.2128631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6550473, + "longitude": -83.2123967 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6546931, + "longitude": -83.2131553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6554076, + "longitude": -83.2136738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.65505, + "longitude": -83.2144395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6545882, + "longitude": -83.2141044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6542542, + "longitude": -83.2148195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6546812, + "longitude": -83.2151294 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6569209, + "longitude": -83.2087112 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6569696, + "longitude": -83.2101234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6577988, + "longitude": -83.2125914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6585008, + "longitude": -83.2131009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6582321, + "longitude": -83.2165304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6581947, + "longitude": -83.2067692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6590984, + "longitude": -83.207252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6594857, + "longitude": -83.2096124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6586139, + "longitude": -83.2108461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7446315, + "longitude": -83.0410731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7452462, + "longitude": -83.0410248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.746424, + "longitude": -83.0398232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7453537, + "longitude": -83.0406171 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7459297, + "longitude": -83.0403382 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7465658, + "longitude": -83.0393082 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7466862, + "longitude": -83.0383533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7465315, + "longitude": -83.0376881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7467464, + "longitude": -83.0370122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7466733, + "longitude": -83.0364543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7476834, + "longitude": -83.0332142 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.747202, + "longitude": -83.0329835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8879757, + "longitude": -82.3041112 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8879106, + "longitude": -82.3041607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8878738, + "longitude": -82.3041784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8877973, + "longitude": -82.3041466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8877549, + "longitude": -82.3040935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.887752, + "longitude": -82.3040298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8879389, + "longitude": -82.3032653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8878228, + "longitude": -82.3032299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8880029, + "longitude": -82.2939317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8879151, + "longitude": -82.2961351 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8872787, + "longitude": -82.2956976 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8902285, + "longitude": -82.2966076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8880016, + "longitude": -82.2998709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8891452, + "longitude": -82.298158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8892018, + "longitude": -82.2980589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.889332, + "longitude": -82.2977191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.889349, + "longitude": -82.297528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.889315, + "longitude": -82.2974501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8879835, + "longitude": -82.2963765 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9850763, + "longitude": -82.5360909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9840766, + "longitude": -82.5388483 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9840157, + "longitude": -82.5381283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9830635, + "longitude": -82.5365614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9819969, + "longitude": -82.5363849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9818047, + "longitude": -82.5372029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9818239, + "longitude": -82.5378565 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9819873, + "longitude": -82.5382093 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.982378, + "longitude": -82.53847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.983025, + "longitude": -82.5388349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9833774, + "longitude": -82.538911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9835952, + "longitude": -82.5386504 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9847626, + "longitude": -82.5298149 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9842023, + "longitude": -82.5326944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9842724, + "longitude": -82.5333013 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9839545, + "longitude": -82.5337059 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9846279, + "longitude": -82.5340768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.985005, + "longitude": -82.5233209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.984601, + "longitude": -82.5237593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9842077, + "longitude": -82.5244269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9846494, + "longitude": -82.5263218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9848595, + "longitude": -82.5272794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9851396, + "longitude": -82.5278121 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.984741, + "longitude": -82.5284797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9849726, + "longitude": -82.5288574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9877635, + "longitude": -82.530929 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9891631, + "longitude": -82.5301578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9891948, + "longitude": -82.5296758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9885516, + "longitude": -82.5295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9852851, + "longitude": -82.5309074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9910518, + "longitude": -82.5248445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.98605, + "longitude": -82.5229568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9854898, + "longitude": -82.5230782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9915291, + "longitude": -82.5249124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9927112, + "longitude": -82.5230694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9924486, + "longitude": -82.5236988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9924803, + "longitude": -82.5242319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.992444, + "longitude": -82.5245381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9923399, + "longitude": -82.5251959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9921677, + "longitude": -82.5255248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9920138, + "longitude": -82.5256779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9901898, + "longitude": -82.5209806 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9897989, + "longitude": -82.5214867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9894865, + "longitude": -82.5217025 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9892064, + "longitude": -82.5216688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9887486, + "longitude": -82.5216014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9885654, + "longitude": -82.5216081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9880537, + "longitude": -82.5217362 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9876605, + "longitude": -82.5219048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9873481, + "longitude": -82.5219722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9870842, + "longitude": -82.5220936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9868956, + "longitude": -82.5222757 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9866209, + "longitude": -82.5226668 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9908316, + "longitude": -82.5197975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9911487, + "longitude": -82.5194856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9913797, + "longitude": -82.5193949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9919639, + "longitude": -82.5194402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9932185, + "longitude": -82.5196501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9937575, + "longitude": -82.5198939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9940202, + "longitude": -82.5201491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9941198, + "longitude": -82.5206594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.994156, + "longitude": -82.5213172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.994002, + "longitude": -82.5216801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9937439, + "longitude": -82.5220204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9932683, + "longitude": -82.5224457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6810887, + "longitude": -82.0488788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6781983, + "longitude": -82.0472119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.679099, + "longitude": -82.045528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6790401, + "longitude": -82.0456381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6793457, + "longitude": -82.0452887 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6794431, + "longitude": -82.0457569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6795972, + "longitude": -82.0454806 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6815536, + "longitude": -82.0480437 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6823708, + "longitude": -82.0485163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6825459, + "longitude": -82.0482121 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6829817, + "longitude": -82.0490634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6807047, + "longitude": -82.0426249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6815317, + "longitude": -82.0414982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6815328, + "longitude": -82.0407808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6815338, + "longitude": -82.0404978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.681535, + "longitude": -82.0384661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6809033, + "longitude": -82.0426615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6806866, + "longitude": -82.0436505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6802309, + "longitude": -82.0434114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6801028, + "longitude": -82.0436583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6803258, + "longitude": -82.0438676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6845088, + "longitude": -82.0474025 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6852195, + "longitude": -82.0483788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6857789, + "longitude": -82.049381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6870653, + "longitude": -82.04598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.688304, + "longitude": -82.0407808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6886718, + "longitude": -82.0408908 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.688731, + "longitude": -82.0397776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6890591, + "longitude": -82.0411113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6827578, + "longitude": -82.0371558 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6852712, + "longitude": -82.032836 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6839097, + "longitude": -82.0352393 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6903086, + "longitude": -82.0362533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6871791, + "longitude": -82.0291319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6876652, + "longitude": -82.0283354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6880631, + "longitude": -82.0278136 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6891192, + "longitude": -82.0267006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6895558, + "longitude": -82.026266 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6884278, + "longitude": -82.0274113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6878574, + "longitude": -82.0280658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.68746, + "longitude": -82.0286584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6867523, + "longitude": -82.0299896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6862065, + "longitude": -82.0310639 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6915226, + "longitude": -82.0318191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6904409, + "longitude": -82.0253299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6924443, + "longitude": -82.0253554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6911226, + "longitude": -82.0278445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6928379, + "longitude": -82.0294404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.691969, + "longitude": -82.0302934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6928007, + "longitude": -82.0294768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6918763, + "longitude": -82.0285406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6909724, + "longitude": -82.0275592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6910463, + "longitude": -82.0277095 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6914707, + "longitude": -82.0271566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6917534, + "longitude": -82.0267003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6941444, + "longitude": -82.0260118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6920345, + "longitude": -82.0261623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6907818, + "longitude": -82.0249592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6910797, + "longitude": -82.0245279 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6930799, + "longitude": -82.0212691 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6953826, + "longitude": -82.0233695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6913743, + "longitude": -82.0240495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6916373, + "longitude": -82.0236081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0615129, + "longitude": -81.803872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0609264, + "longitude": -81.8045372 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0601387, + "longitude": -81.8048322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0601259, + "longitude": -81.8055511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0611405, + "longitude": -81.8060875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.062765, + "longitude": -81.8016699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0630475, + "longitude": -81.8014607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0632829, + "longitude": -81.8010744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0635077, + "longitude": -81.800884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0635419, + "longitude": -81.8006641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0634863, + "longitude": -81.8002161 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0637003, + "longitude": -81.7995966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.063696, + "longitude": -81.7991754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0638052, + "longitude": -81.7965066 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0633579, + "longitude": -81.7964664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0632102, + "longitude": -81.7965254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0629512, + "longitude": -81.7967775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0627265, + "longitude": -81.7971812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0624835, + "longitude": -81.7974709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0623219, + "longitude": -81.7975581 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0619195, + "longitude": -81.7975956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0615428, + "longitude": -81.7975339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0613267, + "longitude": -81.7974106 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0611126, + "longitude": -81.7979899 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0618703, + "longitude": -81.798411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0617376, + "longitude": -81.7988294 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0621025, + "longitude": -81.7990413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0622042, + "longitude": -81.7991728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0623647, + "longitude": -81.7994893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0625231, + "longitude": -81.7999131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0626387, + "longitude": -81.8003261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0626473, + "longitude": -81.8006319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0645714, + "longitude": -81.7966783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0648603, + "longitude": -81.7964315 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0649695, + "longitude": -81.796048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0643296, + "longitude": -81.7961016 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0640363, + "longitude": -81.7964289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.065023, + "longitude": -81.7954445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0655795, + "longitude": -81.7938781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0661402, + "longitude": -81.7940068 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0661531, + "longitude": -81.7934704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0668379, + "longitude": -81.7930573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0668508, + "longitude": -81.7928374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0662644, + "longitude": -81.7923439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.06632, + "longitude": -81.7920274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0667181, + "longitude": -81.7919308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0670391, + "longitude": -81.7917699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0673473, + "longitude": -81.7913729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0672874, + "longitude": -81.7910188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0670948, + "longitude": -81.7907828 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0663542, + "longitude": -81.7904878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0661274, + "longitude": -81.7907909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0653312, + "longitude": -81.7906031 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0652413, + "longitude": -81.7914936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0653398, + "longitude": -81.7920059 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0655538, + "longitude": -81.7924029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0655538, + "longitude": -81.7926014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8909844, + "longitude": -81.3638234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8901414, + "longitude": -81.3636625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8928872, + "longitude": -81.3592824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8918597, + "longitude": -81.3619459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8915572, + "longitude": -81.3589847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8936766, + "longitude": -81.3571876 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8922651, + "longitude": -81.3552672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8922565, + "longitude": -81.3541782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8924281, + "longitude": -81.3542748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8926469, + "longitude": -81.3533092 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.892707, + "longitude": -81.3523275 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8922908, + "longitude": -81.3521773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8953133, + "longitude": -81.3514906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8950709, + "longitude": -81.3523248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.89485, + "longitude": -81.3535801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8943201, + "longitude": -81.3552511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8968277, + "longitude": -81.3444176 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8964566, + "longitude": -81.346432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8961134, + "longitude": -81.3482291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8940262, + "longitude": -81.3449621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8940563, + "longitude": -81.3447931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8941056, + "longitude": -81.344541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8943888, + "longitude": -81.344187 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8945947, + "longitude": -81.3433072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8946526, + "longitude": -81.3427734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8942064, + "longitude": -81.3424355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8954484, + "longitude": -81.3404936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8957895, + "longitude": -81.3399974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8960104, + "longitude": -81.3396567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8962807, + "longitude": -81.3391686 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8965274, + "longitude": -81.3386965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8978787, + "longitude": -81.3390961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8977264, + "longitude": -81.3393402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8974176, + "longitude": -81.3411963 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.758701, + "longitude": -80.8210269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7579987, + "longitude": -80.8223474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.756886, + "longitude": -80.8222507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7568944, + "longitude": -80.8242464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7569996, + "longitude": -80.8243898 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7570046, + "longitude": -80.825091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7684858, + "longitude": -80.8217377 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7673166, + "longitude": -80.8215184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7672405, + "longitude": -80.8215549 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7669691, + "longitude": -80.8215354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7666646, + "longitude": -80.8215452 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7662859, + "longitude": -80.8216402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7657921, + "longitude": -80.8219448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7655168, + "longitude": -80.8220618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7652416, + "longitude": -80.8219935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7652455, + "longitude": -80.8211163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.764084, + "longitude": -80.8210749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7656961, + "longitude": -80.8252902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7652633, + "longitude": -80.8219989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7656207, + "longitude": -80.8220176 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7660767, + "longitude": -80.8217693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7734359, + "longitude": -80.8254732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7727195, + "longitude": -80.8239039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7727078, + "longitude": -80.8237602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7725478, + "longitude": -80.8231827 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.772458, + "longitude": -80.8229658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7717182, + "longitude": -80.8204121 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7716714, + "longitude": -80.8203366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7705471, + "longitude": -80.8209799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7703636, + "longitude": -80.8211382 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7701548, + "longitude": -80.8213917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7699888, + "longitude": -80.8215915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7698073, + "longitude": -80.8217596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7696668, + "longitude": -80.8218327 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7694813, + "longitude": -80.8218717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7693252, + "longitude": -80.8218863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7703607, + "longitude": -80.8254154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.773396, + "longitude": -80.8255086 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1279162, + "longitude": -80.6941579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1284979, + "longitude": -80.69386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1290383, + "longitude": -80.6935199 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1283042, + "longitude": -80.6903761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.128257, + "longitude": -80.6909286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1281626, + "longitude": -80.6913561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1280001, + "longitude": -80.6917836 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1278323, + "longitude": -80.6922966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1277746, + "longitude": -80.692586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1277588, + "longitude": -80.6928622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.127806, + "longitude": -80.6933029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1296675, + "longitude": -80.6930266 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1301185, + "longitude": -80.6926386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1305222, + "longitude": -80.6921979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1310309, + "longitude": -80.6915665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1318069, + "longitude": -80.6904484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1325148, + "longitude": -80.6894422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1329936, + "longitude": -80.6887346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1334166, + "longitude": -80.6882123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.133899, + "longitude": -80.6877256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1342766, + "longitude": -80.687423 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1348166, + "longitude": -80.6870745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1311148, + "longitude": -80.6858775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1300014, + "longitude": -80.6877212 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1317801, + "longitude": -80.6831753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1310415, + "longitude": -80.6842883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1349812, + "longitude": -80.6780554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1333986, + "longitude": -80.6807057 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1365521, + "longitude": -80.6863642 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1370659, + "longitude": -80.6861537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1375535, + "longitude": -80.6860419 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1379992, + "longitude": -80.6860485 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1382794, + "longitude": -80.6860575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1385183, + "longitude": -80.6861405 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1386913, + "longitude": -80.686226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1388119, + "longitude": -80.6861603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1388748, + "longitude": -80.6860813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1389461, + "longitude": -80.6858409 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1390909, + "longitude": -80.6858927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1394292, + "longitude": -80.6860805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1400476, + "longitude": -80.6863619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1423472, + "longitude": -80.6815415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1422544, + "longitude": -80.6833346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1401543, + "longitude": -80.686388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1368968, + "longitude": -80.6749684 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1398439, + "longitude": -80.6786363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1429592, + "longitude": -80.6822459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1424508, + "longitude": -80.674438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.139925, + "longitude": -80.6698278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1382266, + "longitude": -80.6727857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1392288, + "longitude": -80.6711234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1398888, + "longitude": -80.6698952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1436618, + "longitude": -80.6724788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1446583, + "longitude": -80.6732516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.145613, + "longitude": -80.6705171 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1465393, + "longitude": -80.6675542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1426149, + "longitude": -80.6649625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2056405, + "longitude": -80.4128093 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.205235, + "longitude": -80.4143385 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052144, + "longitude": -80.4144936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2053232, + "longitude": -80.4148075 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2055337, + "longitude": -80.4150323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052266, + "longitude": -80.4145756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2057251, + "longitude": -80.4151311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052512, + "longitude": -80.4146597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052798, + "longitude": -80.4147374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052169, + "longitude": -80.4144052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2054242, + "longitude": -80.4149293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2069531, + "longitude": -80.4156404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052276, + "longitude": -80.4143659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2136849, + "longitude": -80.4192895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2129324, + "longitude": -80.4244436 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2132258, + "longitude": -80.4180078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2114286, + "longitude": -80.4133352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2115578, + "longitude": -80.4128536 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2130299, + "longitude": -80.4173776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2130658, + "longitude": -80.4175331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2126824, + "longitude": -80.4165003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2121818, + "longitude": -80.4152366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2116285, + "longitude": -80.4138398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2100441, + "longitude": -80.4168819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2133742, + "longitude": -80.4180424 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2136962, + "longitude": -80.4188161 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2100841, + "longitude": -80.4169867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.21018, + "longitude": -80.4175164 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2088512, + "longitude": -80.4164276 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2093147, + "longitude": -80.4166041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2054178, + "longitude": -80.4082441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2051066, + "longitude": -80.4090589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2057703, + "longitude": -80.4066583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2056785, + "longitude": -80.4070821 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2050343, + "longitude": -80.4097343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2051608, + "longitude": -80.4105763 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2050462, + "longitude": -80.4099903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2052803, + "longitude": -80.4085756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2056462, + "longitude": -80.4068281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2056074, + "longitude": -80.407647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2050571, + "longitude": -80.4092498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2056672, + "longitude": -80.4073407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2050188, + "longitude": -80.4094727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2055813, + "longitude": -80.4125339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2050055, + "longitude": -80.4048408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2063371, + "longitude": -80.4006819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2061662, + "longitude": -80.4002356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.204642, + "longitude": -80.4033776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2119755, + "longitude": -80.4120153 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2093654, + "longitude": -80.4084496 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2096192, + "longitude": -80.4076797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2116682, + "longitude": -80.4113001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2108269, + "longitude": -80.4118553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2091105, + "longitude": -80.4073936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.20955, + "longitude": -80.4060463 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2091057, + "longitude": -80.4058145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2091057, + "longitude": -80.4052309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2089689, + "longitude": -80.405188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2089348, + "longitude": -80.4048017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2099806, + "longitude": -80.4019007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2093244, + "longitude": -80.4051622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2089142, + "longitude": -80.4050764 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2059816, + "longitude": -80.3994802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2030694, + "longitude": -80.3994459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2059132, + "longitude": -80.3991198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2040264, + "longitude": -80.3992914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.215132, + "longitude": -80.4228379 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2152002, + "longitude": -80.4230051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3112667, + "longitude": -79.9702982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3114581, + "longitude": -79.9701205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3121135, + "longitude": -79.9690543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3127844, + "longitude": -79.9682766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3127934, + "longitude": -79.9715083 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3116806, + "longitude": -79.9697748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3125621, + "longitude": -79.9685401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3120999, + "longitude": -79.9709395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3127045, + "longitude": -79.9683713 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3127554, + "longitude": -79.968311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3170679, + "longitude": -79.9748408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.315568, + "longitude": -79.9736718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.315944, + "longitude": -79.9739656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3191442, + "longitude": -79.9764698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3132658, + "longitude": -79.9676975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3135415, + "longitude": -79.9674987 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3138221, + "longitude": -79.9722986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3139501, + "longitude": -79.9674471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3151043, + "longitude": -79.9676234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3157977, + "longitude": -79.9678311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3171716, + "longitude": -79.9686308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3175954, + "longitude": -79.9687329 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3179953, + "longitude": -79.9685428 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3179779, + "longitude": -79.9684178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3181834, + "longitude": -79.9683024 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3180983, + "longitude": -79.9682848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.318024, + "longitude": -79.9683336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3190439, + "longitude": -79.9685344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3192698, + "longitude": -79.9685041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.317276, + "longitude": -79.9687025 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3139703, + "longitude": -79.9724062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3149332, + "longitude": -79.9731667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3179136, + "longitude": -79.9685817 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3204957, + "longitude": -79.9818017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3206196, + "longitude": -79.9820155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3208416, + "longitude": -79.9827021 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3209111, + "longitude": -79.9831236 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.321012, + "longitude": -79.9836106 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.321057, + "longitude": -79.9837438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3213533, + "longitude": -79.9842775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3215227, + "longitude": -79.9844574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.322027, + "longitude": -79.9847986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3224649, + "longitude": -79.9850213 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3227662, + "longitude": -79.9850714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3230908, + "longitude": -79.9850432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3232933, + "longitude": -79.9849658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3236088, + "longitude": -79.9848379 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.324003, + "longitude": -79.9846637 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3243435, + "longitude": -79.9845976 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3250982, + "longitude": -79.9847687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3254655, + "longitude": -79.9850194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3257562, + "longitude": -79.9852198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3247802, + "longitude": -79.9846369 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3245688, + "longitude": -79.9845989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3207419, + "longitude": -79.9823123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3205259, + "longitude": -79.9817606 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3253023, + "longitude": -79.9849023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3249207, + "longitude": -79.9846811 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3233559, + "longitude": -79.9849563 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3238181, + "longitude": -79.9847402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3241587, + "longitude": -79.9846201 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3228576, + "longitude": -79.9850706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3222284, + "longitude": -79.9849184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3225986, + "longitude": -79.9850532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3217797, + "longitude": -79.9845928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3212232, + "longitude": -79.9840905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.321431, + "longitude": -79.98437 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3206882, + "longitude": -79.9821675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3208099, + "longitude": -79.9825618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3207913, + "longitude": -79.9824833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3208709, + "longitude": -79.9828638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.320969, + "longitude": -79.9834416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3211075, + "longitude": -79.9838678 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3211625, + "longitude": -79.983983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.321296, + "longitude": -79.9841989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.321857, + "longitude": -79.9846571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3297375, + "longitude": -79.9829373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3314173, + "longitude": -79.9802379 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3260781, + "longitude": -79.9854367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.327297, + "longitude": -79.9845722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3275551, + "longitude": -79.9846747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3285788, + "longitude": -79.9854102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3289867, + "longitude": -79.9846297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3290993, + "longitude": -79.9844028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3292075, + "longitude": -79.9836754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3292867, + "longitude": -79.9834592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3293459, + "longitude": -79.9833601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3294514, + "longitude": -79.9832396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3296379, + "longitude": -79.983105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3297132, + "longitude": -79.9829327 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3297942, + "longitude": -79.982948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3298496, + "longitude": -79.9830655 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3299027, + "longitude": -79.9830402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3301024, + "longitude": -79.9831308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3307282, + "longitude": -79.9817907 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3303977, + "longitude": -79.9825051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3290507, + "longitude": -79.9845869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3313427, + "longitude": -79.9804218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3261063, + "longitude": -79.9853737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3265236, + "longitude": -79.9855003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3264215, + "longitude": -79.9855875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3295335, + "longitude": -79.9831769 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3292305, + "longitude": -79.9836509 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.329228, + "longitude": -79.9836147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3290817, + "longitude": -79.9844848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287818, + "longitude": -79.9850384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287836, + "longitude": -79.9850347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287328, + "longitude": -79.9851281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3281967, + "longitude": -79.9851355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3281825, + "longitude": -79.9851079 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3281109, + "longitude": -79.9850533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3280546, + "longitude": -79.9850332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3274321, + "longitude": -79.9845693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3273213, + "longitude": -79.9845085 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3278007, + "longitude": -79.9848393 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3271514, + "longitude": -79.9849041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3268405, + "longitude": -79.9858715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3269909, + "longitude": -79.9852904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3270398, + "longitude": -79.985159 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3265152, + "longitude": -79.9856488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3265474, + "longitude": -79.9855185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3264992, + "longitude": -79.9854835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3207895, + "longitude": -79.9777672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3210231, + "longitude": -79.9779478 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.319533, + "longitude": -79.9767868 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3204003, + "longitude": -79.9686194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3232718, + "longitude": -79.9684138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3237625, + "longitude": -79.9685548 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.324509, + "longitude": -79.9690518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.319753, + "longitude": -79.9685847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.321646, + "longitude": -79.9685522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.322635, + "longitude": -79.9684697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3235629, + "longitude": -79.9684533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3246547, + "longitude": -79.9687317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3256159, + "longitude": -79.9694166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3309924, + "longitude": -79.9762226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3311285, + "longitude": -79.9758766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.331192, + "longitude": -79.9758555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3313277, + "longitude": -79.9755875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.331326, + "longitude": -79.9753495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3313158, + "longitude": -79.9749839 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3316192, + "longitude": -79.9791708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3317611, + "longitude": -79.9783339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.33171, + "longitude": -79.974636 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318574, + "longitude": -79.9776467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318024, + "longitude": -79.9745764 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318718, + "longitude": -79.9775094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3320078, + "longitude": -79.9745766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3320648, + "longitude": -79.9770895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3319211, + "longitude": -79.9736893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3323734, + "longitude": -79.9741147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3310537, + "longitude": -79.9761104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3311683, + "longitude": -79.9763718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3309316, + "longitude": -79.9760439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3312745, + "longitude": -79.9754286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.331375, + "longitude": -79.9748777 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3315235, + "longitude": -79.9748606 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3320123, + "longitude": -79.9744621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3321397, + "longitude": -79.9744288 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3320855, + "longitude": -79.9741546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3321524, + "longitude": -79.9740677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3310882, + "longitude": -79.9765355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3319317, + "longitude": -79.9770165 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.332071, + "longitude": -79.9738495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3314401, + "longitude": -79.9800718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3322229, + "longitude": -79.9739833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3314707, + "longitude": -79.9800115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3319146, + "longitude": -79.9774016 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318532, + "longitude": -79.9777454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318431, + "longitude": -79.97781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318189, + "longitude": -79.9779864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3317873, + "longitude": -79.9781752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3298002, + "longitude": -79.968834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287789, + "longitude": -79.9677952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3292587, + "longitude": -79.9675371 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3302506, + "longitude": -79.9673027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3307045, + "longitude": -79.9671188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3319128, + "longitude": -79.9726533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3293185, + "longitude": -79.9695414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287399, + "longitude": -79.9703914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3281859, + "longitude": -79.9712184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3309861, + "longitude": -79.9670407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3323217, + "longitude": -79.972006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3322057, + "longitude": -79.9729652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3320856, + "longitude": -79.9731475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3321949, + "longitude": -79.9732949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3268644, + "longitude": -79.9703129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287531, + "longitude": -79.9676825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287663, + "longitude": -79.9675852 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3288251, + "longitude": -79.9675161 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3289066, + "longitude": -79.9675061 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3295721, + "longitude": -79.9675162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3311714, + "longitude": -79.9667577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3321267, + "longitude": -79.9653821 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3312412, + "longitude": -79.9667409 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3313918, + "longitude": -79.9665098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3313072, + "longitude": -79.9666396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3342842, + "longitude": -79.9702049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3356294, + "longitude": -79.9687525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3365325, + "longitude": -79.9682511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3372004, + "longitude": -79.9686146 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3374129, + "longitude": -79.9684401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3375912, + "longitude": -79.9678326 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3376038, + "longitude": -79.9675854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3375607, + "longitude": -79.9673261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3374897, + "longitude": -79.9671343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3363732, + "longitude": -79.9684622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3361497, + "longitude": -79.9688957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3353785, + "longitude": -79.9685708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3355669, + "longitude": -79.9687747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3357412, + "longitude": -79.9688609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3360713, + "longitude": -79.9688642 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.33623, + "longitude": -79.9688712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3327544, + "longitude": -79.9724763 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.333435, + "longitude": -79.9714552 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3330265, + "longitude": -79.9720667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3342769, + "longitude": -79.9702197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.332971, + "longitude": -79.9721559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3337133, + "longitude": -79.9710483 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3350436, + "longitude": -79.9643554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3356827, + "longitude": -79.9642729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.33384, + "longitude": -79.9642586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3331327, + "longitude": -79.9638923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3358715, + "longitude": -79.9644651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.336193, + "longitude": -79.9646108 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3368573, + "longitude": -79.9660974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3367904, + "longitude": -79.9658178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3367345, + "longitude": -79.965333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3366256, + "longitude": -79.9650228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3364542, + "longitude": -79.9647942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3373737, + "longitude": -79.9669424 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3370346, + "longitude": -79.9664803 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3369234, + "longitude": -79.9662775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3337116, + "longitude": -79.9645273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3341166, + "longitude": -79.9641023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5591099, + "longitude": -79.3425472 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5588966, + "longitude": -79.342064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5590032, + "longitude": -79.3422758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5611344, + "longitude": -79.344829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5615057, + "longitude": -79.344878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.560071, + "longitude": -79.3451157 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5604951, + "longitude": -79.3454746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5602728, + "longitude": -79.3453122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5607515, + "longitude": -79.3449603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5606028, + "longitude": -79.3453196 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5593446, + "longitude": -79.3435331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5607406, + "longitude": -79.3403843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5608827, + "longitude": -79.3402747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5647574, + "longitude": -79.3388797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5598822, + "longitude": -79.3441818 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5653678, + "longitude": -79.3427656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.559299, + "longitude": -79.3431551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5594904, + "longitude": -79.3436255 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5598194, + "longitude": -79.3442338 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5629185, + "longitude": -79.344064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5639962, + "longitude": -79.3434574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5628731, + "longitude": -79.3395495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5614899, + "longitude": -79.3400462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5662252, + "longitude": -79.3423793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5689804, + "longitude": -79.3420311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.567512, + "longitude": -79.3418749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5692019, + "longitude": -79.3430623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5710306, + "longitude": -79.343495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5666088, + "longitude": -79.3423825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5679368, + "longitude": -79.3419913 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.568392, + "longitude": -79.3419941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5702957, + "longitude": -79.3433042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5711317, + "longitude": -79.3431096 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5718043, + "longitude": -79.3433808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5678536, + "longitude": -79.3377531 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5708431, + "longitude": -79.3367837 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.571589, + "longitude": -79.3363828 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5722783, + "longitude": -79.3326887 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5704126, + "longitude": -79.3368282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5691836, + "longitude": -79.3372769 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5704351, + "longitude": -79.3269526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5721437, + "longitude": -79.3256627 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5722882, + "longitude": -79.3302194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5732985, + "longitude": -79.3427797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5739596, + "longitude": -79.3409983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.574042, + "longitude": -79.3403731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5741893, + "longitude": -79.3404741 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5743097, + "longitude": -79.3398866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.574468, + "longitude": -79.3398195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5755992, + "longitude": -79.3400881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5764892, + "longitude": -79.3404637 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.572658, + "longitude": -79.3436094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5736337, + "longitude": -79.3417623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5739539, + "longitude": -79.3419084 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5741435, + "longitude": -79.3412128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5731022, + "longitude": -79.3429586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.572995, + "longitude": -79.3428951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5747824, + "longitude": -79.3398857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5752011, + "longitude": -79.3399699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5805693, + "longitude": -79.3422748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5805301, + "longitude": -79.3418833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5790705, + "longitude": -79.341667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5790954, + "longitude": -79.3415805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5805323, + "longitude": -79.3401391 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5728291, + "longitude": -79.3347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5729261, + "longitude": -79.3317064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5728108, + "longitude": -79.3314004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5734508, + "longitude": -79.3338454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5729142, + "longitude": -79.3313157 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.575035, + "longitude": -79.3304707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5769132, + "longitude": -79.3295198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5783031, + "longitude": -79.3269724 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5775176, + "longitude": -79.3283929 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5767191, + "longitude": -79.3298123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5760514, + "longitude": -79.3302692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5764263, + "longitude": -79.3300875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5756218, + "longitude": -79.3304082 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5753079, + "longitude": -79.330448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5747666, + "longitude": -79.3304112 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5749008, + "longitude": -79.3304495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5734073, + "longitude": -79.327905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5807141, + "longitude": -79.3375049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5807843, + "longitude": -79.3358494 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.580735, + "longitude": -79.3340661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5805682, + "longitude": -79.3294785 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.580725, + "longitude": -79.331068 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5806927, + "longitude": -79.3307946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5804305, + "longitude": -79.3297386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.580443, + "longitude": -79.3296532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5804218, + "longitude": -79.3288395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5795455, + "longitude": -79.3280189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5799751, + "longitude": -79.3282526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5802121, + "longitude": -79.328495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5803169, + "longitude": -79.3286545 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5798235, + "longitude": -79.3281422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7032088, + "longitude": -78.8540209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.70398, + "longitude": -78.8529217 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.704439, + "longitude": -78.8540026 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.70445, + "longitude": -78.8540438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7063044, + "longitude": -78.8541354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7075859, + "longitude": -78.8542041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7092934, + "longitude": -78.854282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7108686, + "longitude": -78.854369 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7117498, + "longitude": -78.8545019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7118306, + "longitude": -78.8557752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7135893, + "longitude": -78.8556011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7137656, + "longitude": -78.8533247 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1046359, + "longitude": -79.5979505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1048448, + "longitude": -79.5953909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1047673, + "longitude": -79.5979334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1048102, + "longitude": -79.5975677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1048456, + "longitude": -79.5974186 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1058435, + "longitude": -79.5957949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1049606, + "longitude": -79.5949983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104644, + "longitude": -79.595847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1047043, + "longitude": -79.597969 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.105768, + "longitude": -79.5954649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1057048, + "longitude": -79.5962207 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1046567, + "longitude": -79.5979625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1047982, + "longitude": -79.5977192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1056057, + "longitude": -79.5961022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1049087, + "longitude": -79.595219 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1046723, + "longitude": -79.5979675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1047905, + "longitude": -79.5978957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1048013, + "longitude": -79.5978568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104903, + "longitude": -79.5972806 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039933, + "longitude": -79.5973146 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1047352, + "longitude": -79.5979591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1049805, + "longitude": -79.5971589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1073311, + "longitude": -79.592238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080101, + "longitude": -79.5914498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1081425, + "longitude": -79.5912938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1124298, + "longitude": -79.5890044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1124353, + "longitude": -79.5890646 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1124156, + "longitude": -79.5889814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1108475, + "longitude": -79.5882116 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.112224, + "longitude": -79.5889825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1124375, + "longitude": -79.589044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.110765, + "longitude": -79.5882392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1120436, + "longitude": -79.5889456 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1123823, + "longitude": -79.589267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1110141, + "longitude": -79.5907523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1107523, + "longitude": -79.590123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1121382, + "longitude": -79.5889757 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1107371, + "longitude": -79.5900864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1119988, + "longitude": -79.5900294 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1118304, + "longitude": -79.5902231 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.112396, + "longitude": -79.5889659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1108225, + "longitude": -79.5882091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1107917, + "longitude": -79.5882179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1100788, + "longitude": -79.5904451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1107884, + "longitude": -79.5900532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1119076, + "longitude": -79.5901593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1124343, + "longitude": -79.5890178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1123734, + "longitude": -79.5889596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1108695, + "longitude": -79.5882215 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1101364, + "longitude": -79.5905222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1119929, + "longitude": -79.5889187 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3119882, + "longitude": -79.2203873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3117371, + "longitude": -79.2199412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3113791, + "longitude": -79.2135746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3127531, + "longitude": -79.2187838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3083808, + "longitude": -79.2086173 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3087642, + "longitude": -79.2081698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3100374, + "longitude": -79.2075329 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.310941, + "longitude": -79.2126796 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3104344, + "longitude": -79.2117328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3097225, + "longitude": -79.2109238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3094313, + "longitude": -79.2099362 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3088074, + "longitude": -79.2090173 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.317244, + "longitude": -79.2158774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3168351, + "longitude": -79.2153076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3133301, + "longitude": -79.218564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3131831, + "longitude": -79.2182751 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.313026, + "longitude": -79.2192312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3134347, + "longitude": -79.2187754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3105303, + "longitude": -79.2063968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3125291, + "longitude": -79.2050714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.311864, + "longitude": -79.2055124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3132273, + "longitude": -79.2053296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3158694, + "longitude": -79.2035395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3189221, + "longitude": -79.2014739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3177585, + "longitude": -79.1979281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3186224, + "longitude": -79.1973824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3192649, + "longitude": -79.197484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3253967, + "longitude": -79.21395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3214936, + "longitude": -79.2177095 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3234386, + "longitude": -79.2158489 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3303896, + "longitude": -79.2073246 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3277188, + "longitude": -79.2077473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3286661, + "longitude": -79.209122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3277396, + "longitude": -79.2094952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3271157, + "longitude": -79.2101665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3278038, + "longitude": -79.2116233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3286958, + "longitude": -79.2075769 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3266176, + "longitude": -79.2127867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3200309, + "longitude": -79.19736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3210849, + "longitude": -79.1970158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3218926, + "longitude": -79.1964478 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3224538, + "longitude": -79.1958453 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3230971, + "longitude": -79.1950363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.323684, + "longitude": -79.1945625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3242666, + "longitude": -79.1940069 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3244037, + "longitude": -79.1940597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3241405, + "longitude": -79.1950358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3256931, + "longitude": -79.1957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3257833, + "longitude": -79.1953816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.320573, + "longitude": -79.1972542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3240565, + "longitude": -79.1941826 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3304492, + "longitude": -79.2026023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3302944, + "longitude": -79.2028835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3305518, + "longitude": -79.2047816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3302291, + "longitude": -79.2066601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3321316, + "longitude": -79.2021677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3312671, + "longitude": -79.2023752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.330312, + "longitude": -79.2027339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3303734, + "longitude": -79.202647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3305069, + "longitude": -79.2039484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3304365, + "longitude": -79.2034882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3305365, + "longitude": -79.2043589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.330612, + "longitude": -79.2062124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.330338, + "longitude": -79.2062506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3302227, + "longitude": -79.2064663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.330263, + "longitude": -79.2063202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3304782, + "longitude": -79.2037607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3273415, + "longitude": -79.1960488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3278213, + "longitude": -79.194296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3276005, + "longitude": -79.1951024 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3352401, + "longitude": -79.2024184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3333012, + "longitude": -79.2019322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3360832, + "longitude": -79.2013575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3362251, + "longitude": -79.2006324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3354822, + "longitude": -79.2022729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3357229, + "longitude": -79.2020807 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3359418, + "longitude": -79.2017501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3345305, + "longitude": -79.2024473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3348431, + "longitude": -79.2024992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3350381, + "longitude": -79.2024765 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3338244, + "longitude": -79.202088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3341862, + "longitude": -79.202292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3343795, + "longitude": -79.2024006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3335575, + "longitude": -79.2019858 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.333094, + "longitude": -79.2019464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3326163, + "longitude": -79.2020438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3345817, + "longitude": -79.1968823 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3349017, + "longitude": -79.1978067 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3362193, + "longitude": -79.1996242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3345833, + "longitude": -79.196512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3346158, + "longitude": -79.1963225 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3346918, + "longitude": -79.1960596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3347839, + "longitude": -79.1975966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3346793, + "longitude": -79.1973324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3346129, + "longitude": -79.1971073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3358173, + "longitude": -79.1986712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3360113, + "longitude": -79.1989619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3361434, + "longitude": -79.1992798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3350957, + "longitude": -79.1980487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3354495, + "longitude": -79.1983201 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.335665, + "longitude": -79.1984735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3362715, + "longitude": -79.2000487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.327995, + "longitude": -79.1934581 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3275501, + "longitude": -79.1927427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3302454, + "longitude": -79.1920561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3276784, + "longitude": -79.1926664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3287456, + "longitude": -79.1923335 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3280543, + "longitude": -79.1925491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3297969, + "longitude": -79.1920986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3301382, + "longitude": -79.19204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3306348, + "longitude": -79.1917225 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3303995, + "longitude": -79.1919953 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3304797, + "longitude": -79.1919964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3305822, + "longitude": -79.1918987 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3306148, + "longitude": -79.1918263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3314527, + "longitude": -79.1919445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3318089, + "longitude": -79.1919895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3324474, + "longitude": -79.1919964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3359066, + "longitude": -79.1922046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3331859, + "longitude": -79.1919404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3341502, + "longitude": -79.1918747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3347241, + "longitude": -79.1919113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3347156, + "longitude": -79.1920845 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3356543, + "longitude": -79.1931864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.335472, + "longitude": -79.1936983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4762949, + "longitude": -80.1024047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4764056, + "longitude": -80.1025334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4765205, + "longitude": -80.1026326 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4766355, + "longitude": -80.1026782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4767185, + "longitude": -80.1026943 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4762736, + "longitude": -80.1012138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4761693, + "longitude": -80.1012325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4760629, + "longitude": -80.1013184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4760139, + "longitude": -80.1014659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4760182, + "longitude": -80.1016268 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4760948, + "longitude": -80.1018763 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4762076, + "longitude": -80.1022544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4767951, + "longitude": -80.1026997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.476876, + "longitude": -80.1026997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4769782, + "longitude": -80.1026809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4771527, + "longitude": -80.1025924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4773209, + "longitude": -80.1024905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4831402, + "longitude": -80.1022223 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4830274, + "longitude": -80.1020882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4827209, + "longitude": -80.1019004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4826124, + "longitude": -80.1020104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4825379, + "longitude": -80.1020426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4784575, + "longitude": -80.1015356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4815247, + "longitude": -80.1038638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.481629, + "longitude": -80.1039067 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4816929, + "longitude": -80.1039979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4817482, + "longitude": -80.1041481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4818568, + "longitude": -80.1043868 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4828997, + "longitude": -80.1045638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4832062, + "longitude": -80.1044512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4775146, + "longitude": -80.1024047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4777083, + "longitude": -80.1023564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4783085, + "longitude": -80.1023778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4792302, + "longitude": -80.1024824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4796772, + "longitude": -80.102579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4797751, + "longitude": -80.102689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4798602, + "longitude": -80.1032308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4799007, + "longitude": -80.1033407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4806222, + "longitude": -80.1036733 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.480833, + "longitude": -80.1037377 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4836191, + "longitude": -80.1033059 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4836617, + "longitude": -80.1023456 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4833318, + "longitude": -80.1023054 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4833956, + "longitude": -80.1042795 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4834084, + "longitude": -80.1035553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4835042, + "longitude": -80.1033407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7289011, + "longitude": -79.8123372 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7285531, + "longitude": -79.8134101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7277979, + "longitude": -79.8140109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7280355, + "longitude": -79.8148155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7282646, + "longitude": -79.8146653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7290453, + "longitude": -79.8133993 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7351547, + "longitude": -79.8075414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7353922, + "longitude": -79.8082388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9484952, + "longitude": -79.846992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9443579, + "longitude": -79.8442347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9482583, + "longitude": -79.8349006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9473276, + "longitude": -79.8336561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9482329, + "longitude": -79.832551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9449163, + "longitude": -79.8281736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9466846, + "longitude": -79.8269076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9536389, + "longitude": -79.8364992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9540873, + "longitude": -79.8371 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9528775, + "longitude": -79.8385377 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9523276, + "longitude": -79.8378296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9487067, + "longitude": -79.8296542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9501449, + "longitude": -79.8268647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9528352, + "longitude": -79.8254485 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9579025, + "longitude": -79.8244293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9566674, + "longitude": -79.8274333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9568874, + "longitude": -79.8287422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9542649, + "longitude": -79.822026 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0506828, + "longitude": -79.7360923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0509606, + "longitude": -79.7363136 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0507393, + "longitude": -79.7353086 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0507635, + "longitude": -79.7347244 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0520916, + "longitude": -79.7262781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0532575, + "longitude": -79.7260581 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0523767, + "longitude": -79.7232727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0526858, + "longitude": -79.7233624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0544117, + "longitude": -79.723903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0543172, + "longitude": -79.7238825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0536606, + "longitude": -79.7236745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3778456, + "longitude": -79.1281351 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3783827, + "longitude": -79.1280198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3778371, + "longitude": -79.1260994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3778413, + "longitude": -79.1270784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3779121, + "longitude": -79.1281208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3781958, + "longitude": -79.1280599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3773426, + "longitude": -79.1160927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3806441, + "longitude": -79.1189969 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3795614, + "longitude": -79.1182673 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3789902, + "longitude": -79.1186535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3785511, + "longitude": -79.1186911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3800536, + "longitude": -79.118599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3804739, + "longitude": -79.1188822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3783763, + "longitude": -79.1148984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3777369, + "longitude": -79.1135734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3772424, + "longitude": -79.1137505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3778257, + "longitude": -79.1137575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6568975, + "longitude": -78.9254724 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6571782, + "longitude": -78.9258375 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6622062, + "longitude": -78.9196689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6619255, + "longitude": -78.9193038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0739697, + "longitude": -78.9490145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0749874, + "longitude": -78.9488268 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0762543, + "longitude": -78.9465898 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0765879, + "longitude": -78.9467454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0737712, + "longitude": -78.9487088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0776203, + "longitude": -78.9442804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0784979, + "longitude": -78.9408896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0778779, + "longitude": -78.9445353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0783192, + "longitude": -78.9430949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0790793, + "longitude": -78.9438647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0796324, + "longitude": -78.9429635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0792271, + "longitude": -78.9420033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0790687, + "longitude": -78.9420864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0789758, + "longitude": -78.9419872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0791706, + "longitude": -78.9399222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0797549, + "longitude": -78.9406943 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7032382, + "longitude": -78.8465414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.702893, + "longitude": -78.8471735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7026911, + "longitude": -78.8476361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7025148, + "longitude": -78.8480666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7023752, + "longitude": -78.8485109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7023679, + "longitude": -78.8485567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.704451, + "longitude": -78.8522518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7036421, + "longitude": -78.8486804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7036642, + "longitude": -78.8486529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7038111, + "longitude": -78.8486758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.703969, + "longitude": -78.8486392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7040938, + "longitude": -78.8486529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7041819, + "longitude": -78.8487445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7055663, + "longitude": -78.8488773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7067414, + "longitude": -78.8489918 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7058087, + "longitude": -78.8503109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7047915, + "longitude": -78.8517675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7087903, + "longitude": -78.8413978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7078246, + "longitude": -78.8410314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.707384, + "longitude": -78.8408665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7068625, + "longitude": -78.8406192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.705783, + "longitude": -78.8423597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048723, + "longitude": -78.8438711 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.70398, + "longitude": -78.8452956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.715304, + "longitude": -78.8471277 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7138867, + "longitude": -78.847004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7117058, + "longitude": -78.8467979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7126971, + "longitude": -78.8513094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7127338, + "longitude": -78.8506728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7121684, + "longitude": -78.850627 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7121505, + "longitude": -78.8504957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.713806, + "longitude": -78.8506087 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7154839, + "longitude": -78.8507232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7116837, + "longitude": -78.8435551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7116764, + "longitude": -78.8423459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7110705, + "longitude": -78.842149 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7183697, + "longitude": -78.8499812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7180319, + "longitude": -78.8491384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7179438, + "longitude": -78.848914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7177676, + "longitude": -78.8484147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7176317, + "longitude": -78.8480071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7175473, + "longitude": -78.8476727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7171361, + "longitude": -78.8508285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7175216, + "longitude": -78.850856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7174959, + "longitude": -78.8504346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7174812, + "longitude": -78.8472926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5442486, + "longitude": -78.1561457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5442961, + "longitude": -78.1560706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5448865, + "longitude": -78.1559204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454554, + "longitude": -78.1558185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5458217, + "longitude": -78.155561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5456493, + "longitude": -78.1549602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5455545, + "longitude": -78.1542306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5456881, + "longitude": -78.1535333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5458346, + "longitude": -78.153029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5455588, + "longitude": -78.1528305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454511, + "longitude": -78.1523531 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5457915, + "longitude": -78.1513339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5459251, + "longitude": -78.1507599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5459682, + "longitude": -78.1504702 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5459682, + "longitude": -78.1502234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5459208, + "longitude": -78.1497782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5457398, + "longitude": -78.1488233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5456709, + "longitude": -78.1485175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5456234, + "longitude": -78.1482493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5455631, + "longitude": -78.147965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5455071, + "longitude": -78.14767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.545464, + "longitude": -78.1473535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454338, + "longitude": -78.1467687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454381, + "longitude": -78.1465005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454166, + "longitude": -78.1461786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454424, + "longitude": -78.1458782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5454295, + "longitude": -78.1455939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5455114, + "longitude": -78.1452935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5448994, + "longitude": -78.1437968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5445503, + "longitude": -78.1438612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5440806, + "longitude": -78.1440812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5455631, + "longitude": -78.1449448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5457872, + "longitude": -78.1443655 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5459682, + "longitude": -78.1440597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5462613, + "longitude": -78.1439041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5467009, + "longitude": -78.1443547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5464768, + "longitude": -78.143416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5395937, + "longitude": -78.0581462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5388912, + "longitude": -78.0582213 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5388955, + "longitude": -78.0584842 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5442247, + "longitude": -78.0584118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5443475, + "longitude": -78.0579128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5433024, + "longitude": -78.0578754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5397747, + "longitude": -78.0579746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5396497, + "longitude": -78.0583983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5433282, + "longitude": -78.0584091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5438023, + "longitude": -78.058409 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.5435178, + "longitude": -78.058408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9532108, + "longitude": -78.1881685 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9528921, + "longitude": -78.1861408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9650292, + "longitude": -78.1848694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9587426, + "longitude": -78.1843374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9585566, + "longitude": -78.1832986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9597613, + "longitude": -78.1830619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9599649, + "longitude": -78.1831408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9612054, + "longitude": -78.1828406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9613095, + "longitude": -78.1828466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9613992, + "longitude": -78.1828921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9619637, + "longitude": -78.1834106 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9620267, + "longitude": -78.183447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9620897, + "longitude": -78.1834713 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9621793, + "longitude": -78.1834773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9651406, + "longitude": -78.1826433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7689102, + "longitude": -77.7989209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7686105, + "longitude": -77.7992213 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7684504, + "longitude": -77.7996987 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7667058, + "longitude": -77.800042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7669636, + "longitude": -77.7996209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7676769, + "longitude": -77.7986527 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7679949, + "longitude": -77.7980921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7687695, + "longitude": -77.7963862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7690564, + "longitude": -77.7986285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7723458, + "longitude": -77.7921228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7713341, + "longitude": -77.7918714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7708397, + "longitude": -77.7918197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7715917, + "longitude": -77.7919297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7719859, + "longitude": -77.7920155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7746017, + "longitude": -77.793071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7751259, + "longitude": -77.7932252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7755062, + "longitude": -77.7943638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7753912, + "longitude": -77.7948104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.771799, + "longitude": -77.794518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7714101, + "longitude": -77.7946065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7711759, + "longitude": -77.7951336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7709954, + "longitude": -77.7953897 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7708236, + "longitude": -77.7959088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7707827, + "longitude": -77.7960978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7706012, + "longitude": -77.7962923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7699383, + "longitude": -77.7975033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7690864, + "longitude": -77.7956405 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7692196, + "longitude": -77.7952918 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7693378, + "longitude": -77.7948439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7695709, + "longitude": -77.7938059 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7697375, + "longitude": -77.7930133 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7699018, + "longitude": -77.792037 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7699265, + "longitude": -77.7917902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7699878, + "longitude": -77.7917111 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7700748, + "longitude": -77.7916843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7758692, + "longitude": -77.7933794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7770734, + "longitude": -77.7935645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.777357, + "longitude": -77.7938502 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7773441, + "longitude": -77.7941103 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7787846, + "longitude": -77.7943155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7787502, + "longitude": -77.7947366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7762785, + "longitude": -77.7943786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6835634, + "longitude": -77.4912822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6824965, + "longitude": -77.4918348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6839652, + "longitude": -77.492134 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6885944, + "longitude": -77.4899904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6849959, + "longitude": -77.4921185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6914571, + "longitude": -77.4898821 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6813807, + "longitude": -77.4846749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6820718, + "longitude": -77.4891488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6813148, + "longitude": -77.4842406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6817635, + "longitude": -77.487199 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6812353, + "longitude": -77.4837165 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6802946, + "longitude": -77.4776689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6810131, + "longitude": -77.4820677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6848712, + "longitude": -77.4774689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6840968, + "longitude": -77.4770343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6852325, + "longitude": -77.4786812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6802637, + "longitude": -77.4748832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6830514, + "longitude": -77.476455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6938874, + "longitude": -77.4876132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6943563, + "longitude": -77.4855316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6927303, + "longitude": -77.4890347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6909452, + "longitude": -77.4886242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.693922, + "longitude": -77.4877911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6917539, + "longitude": -77.4836379 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6939046, + "longitude": -77.4867868 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6923948, + "longitude": -77.4831659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.067049, + "longitude": -77.9648741 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0670185, + "longitude": -77.964853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0665435, + "longitude": -77.9622672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0694656, + "longitude": -77.963811 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0692162, + "longitude": -77.9638197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0682649, + "longitude": -77.9640524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0674645, + "longitude": -77.9646787 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0673521, + "longitude": -77.965126 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0767701, + "longitude": -77.9650985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0767551, + "longitude": -77.9636829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0834164, + "longitude": -77.964389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0770777, + "longitude": -77.9650354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0818217, + "longitude": -77.9644119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0809246, + "longitude": -77.9644574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0806636, + "longitude": -77.9644708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0802709, + "longitude": -77.9644695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800206, + "longitude": -77.9645526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0789624, + "longitude": -77.9647498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0787431, + "longitude": -77.9647498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0824974, + "longitude": -77.9644022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.08243, + "longitude": -77.9644032 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0663617, + "longitude": -77.9603791 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0662436, + "longitude": -77.9590205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0660315, + "longitude": -77.9573393 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.067739, + "longitude": -77.9558006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0664827, + "longitude": -77.9564336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0660386, + "longitude": -77.956844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0738907, + "longitude": -77.9500687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0717239, + "longitude": -77.9519328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0718052, + "longitude": -77.9522668 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.070671, + "longitude": -77.9533423 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0725941, + "longitude": -77.9511792 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0823423, + "longitude": -77.9559226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0805812, + "longitude": -77.9594794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0808967, + "longitude": -77.9570256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0816966, + "longitude": -77.9571858 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0813201, + "longitude": -77.9596274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0816692, + "longitude": -77.9568287 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.081618, + "longitude": -77.9568198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0817194, + "longitude": -77.9570083 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0822989, + "longitude": -77.9562297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0817132, + "longitude": -77.9561109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0814912, + "longitude": -77.9560675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0814286, + "longitude": -77.9567179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0816254, + "longitude": -77.9567514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0816479, + "longitude": -77.9569955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0826402, + "longitude": -77.9535309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0826386, + "longitude": -77.953573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0827692, + "longitude": -77.9528435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0828665, + "longitude": -77.9518752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0829917, + "longitude": -77.950467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0831811, + "longitude": -77.9492667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0826417, + "longitude": -77.9534894 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0768, + "longitude": -77.9475635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0764095, + "longitude": -77.9478841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.083303, + "longitude": -77.9481657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0834539, + "longitude": -77.9474629 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0829136, + "longitude": -77.9469439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0826055, + "longitude": -77.9466274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0822406, + "longitude": -77.9462385 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0816864, + "longitude": -77.9456592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0807684, + "longitude": -77.9448639 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0804325, + "longitude": -77.9446694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0797156, + "longitude": -77.9453293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0791186, + "longitude": -77.9459073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0787035, + "longitude": -77.9463753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0784542, + "longitude": -77.9461138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0782776, + "longitude": -77.9462828 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0777223, + "longitude": -77.9467709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0851454, + "longitude": -77.9622094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0853158, + "longitude": -77.9619717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0854657, + "longitude": -77.9617134 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0855933, + "longitude": -77.9614371 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0856975, + "longitude": -77.9611458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0857769, + "longitude": -77.9608426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0858309, + "longitude": -77.9605309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2865635, + "longitude": -77.793633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2859553, + "longitude": -77.7938744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2853578, + "longitude": -77.7929222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2856779, + "longitude": -77.7922114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2894337, + "longitude": -77.7957251 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2886655, + "longitude": -77.7968516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2844225, + "longitude": -77.7902349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2853434, + "longitude": -77.7896816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.174115, + "longitude": -77.5206248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1751835, + "longitude": -77.5193105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.171982, + "longitude": -77.5172077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.176765, + "longitude": -77.5170682 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1781841, + "longitude": -77.5187312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1792718, + "longitude": -77.5171111 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1844625, + "longitude": -77.517492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1842403, + "longitude": -77.5203029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1847873, + "longitude": -77.520775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1854797, + "longitude": -77.5205497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1866165, + "longitude": -77.5201957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1871037, + "longitude": -77.5200991 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1878473, + "longitude": -77.5200562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1739867, + "longitude": -77.5144665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1732088, + "longitude": -77.5155447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1750467, + "longitude": -77.5135921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1806844, + "longitude": -77.5149063 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1758204, + "longitude": -77.5102286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1773848, + "longitude": -77.5115268 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.176889, + "longitude": -77.5031046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1784619, + "longitude": -77.5046281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1880225, + "longitude": -77.5146435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1847617, + "longitude": -77.5104002 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1858109, + "longitude": -77.5118191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1871731, + "longitude": -77.5136336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1850138, + "longitude": -77.5076429 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1866934, + "longitude": -77.5056474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1876005, + "longitude": -77.504612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.180257, + "longitude": -77.5007872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1797655, + "longitude": -77.5020854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1780986, + "longitude": -77.4994675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1767351, + "longitude": -77.5009267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1770856, + "longitude": -77.5016562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1799792, + "longitude": -77.5013612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1799535, + "longitude": -77.5015838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1792163, + "longitude": -77.5011091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1790442, + "longitude": -77.5009642 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1788043, + "longitude": -77.5006719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1784878, + "longitude": -77.5001877 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.184283, + "longitude": -77.4965761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1834539, + "longitude": -77.4973754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.185078, + "longitude": -77.4957983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1863133, + "longitude": -77.4948542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1865208, + "longitude": -77.4939047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1875348, + "longitude": -77.4939717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1884015, + "longitude": -77.4938571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1888644, + "longitude": -77.5200133 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.189155, + "longitude": -77.5199596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1893772, + "longitude": -77.5198201 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1896593, + "longitude": -77.5194446 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1906165, + "longitude": -77.5182001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1910824, + "longitude": -77.5175027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1915709, + "longitude": -77.5164096 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1913159, + "longitude": -77.5170635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.188499, + "longitude": -77.5141224 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1911774, + "longitude": -77.5150186 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.190257, + "longitude": -77.5140609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1887797, + "longitude": -77.5145154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.189668, + "longitude": -77.5134781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.191867, + "longitude": -77.5157349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1899269, + "longitude": -77.5019109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1903601, + "longitude": -77.5026433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1907704, + "longitude": -77.5009589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1913003, + "longitude": -77.5006263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1915396, + "longitude": -77.5008194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1921379, + "longitude": -77.5005672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1915439, + "longitude": -77.4989472 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1913003, + "longitude": -77.4985341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1911123, + "longitude": -77.4981962 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1908559, + "longitude": -77.4976651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1904926, + "longitude": -77.4967531 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.190843, + "longitude": -77.501211 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1902234, + "longitude": -77.4962864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1895616, + "longitude": -77.4953102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1899032, + "longitude": -77.4958144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.18867, + "longitude": -77.4941394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1889854, + "longitude": -77.4946202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3504143, + "longitude": -78.4421893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3493171, + "longitude": -78.4396048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3501838, + "longitude": -78.4393628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3525908, + "longitude": -78.4382309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3572976, + "longitude": -78.4353073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3524288, + "longitude": -78.4375979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3575884, + "longitude": -78.4363427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3665955, + "longitude": -78.434662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3651131, + "longitude": -78.432771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3663329, + "longitude": -78.4327453 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3697819, + "longitude": -78.0833155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3697735, + "longitude": -78.0829533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3664034, + "longitude": -78.0830768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3664118, + "longitude": -78.083439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6570061, + "longitude": -78.0443401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6567145, + "longitude": -78.0453951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6555041, + "longitude": -78.0461997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6553979, + "longitude": -78.0459959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6561369, + "longitude": -78.045379 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6564852, + "longitude": -78.0451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6568334, + "longitude": -78.0446226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6572963, + "longitude": -78.0447084 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9703562, + "longitude": -78.6827721 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9713878, + "longitude": -78.6832942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9715908, + "longitude": -78.6834552 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9716034, + "longitude": -78.6836912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9715717, + "longitude": -78.6839192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9710579, + "longitude": -78.6836697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.969976, + "longitude": -78.6830503 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9647487, + "longitude": -78.6799557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9649625, + "longitude": -78.6795921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9653269, + "longitude": -78.6792532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9678306, + "longitude": -78.6812404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9672902, + "longitude": -78.6812958 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.967178, + "longitude": -78.6815966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1280062, + "longitude": -78.4599018 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1284481, + "longitude": -78.4600064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1279253, + "longitude": -78.4598631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1278803, + "longitude": -78.4598062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1278438, + "longitude": -78.4597439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1287829, + "longitude": -78.4599546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1282256, + "longitude": -78.4599911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1283465, + "longitude": -78.46001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1281035, + "longitude": -78.4599367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1294615, + "longitude": -78.4598071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1291051, + "longitude": -78.4545808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1320502, + "longitude": -78.4591077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1300839, + "longitude": -78.4532857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1301641, + "longitude": -78.4531844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1301304, + "longitude": -78.4532254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1300534, + "longitude": -78.4533278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1298034, + "longitude": -78.4536802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1297363, + "longitude": -78.4537696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1295975, + "longitude": -78.4539341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1294506, + "longitude": -78.4541316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.129289, + "longitude": -78.454342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.128681, + "longitude": -78.455046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1284354, + "longitude": -78.4553243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1282257, + "longitude": -78.455619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1279324, + "longitude": -78.4561564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1277161, + "longitude": -78.4567478 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1275893, + "longitude": -78.4574071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.127565, + "longitude": -78.4580348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.127725, + "longitude": -78.4593805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1277894, + "longitude": -78.4595773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1302248, + "longitude": -78.4596397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1307129, + "longitude": -78.4595321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1310091, + "longitude": -78.4594717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1312189, + "longitude": -78.4594229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1314149, + "longitude": -78.4593631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1316362, + "longitude": -78.459297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1318408, + "longitude": -78.4592092 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1319166, + "longitude": -78.4591755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1278148, + "longitude": -78.4596883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1275682, + "longitude": -78.4577169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1275946, + "longitude": -78.4584411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.127637, + "longitude": -78.457079 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.12781, + "longitude": -78.4564447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1280769, + "longitude": -78.4558707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1282698, + "longitude": -78.455557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1303917, + "longitude": -78.4529657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1319298, + "longitude": -78.4518796 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1310619, + "longitude": -78.452395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1309355, + "longitude": -78.4524704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.130552, + "longitude": -78.4526688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.130609, + "longitude": -78.4527894 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1313294, + "longitude": -78.4522361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1307087, + "longitude": -78.4525877 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1386201, + "longitude": -78.4564863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1335243, + "longitude": -78.4583061 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1326884, + "longitude": -78.4587863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.132215, + "longitude": -78.4590267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1324791, + "longitude": -78.4588847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1329498, + "longitude": -78.4586525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1339744, + "longitude": -78.4582244 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1340893, + "longitude": -78.4581595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1334424, + "longitude": -78.4578735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1344017, + "longitude": -78.4576783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1358624, + "longitude": -78.4568847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1366094, + "longitude": -78.4564912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1373157, + "longitude": -78.4570735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.138617, + "longitude": -78.4548775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.138235, + "longitude": -78.4566783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1378221, + "longitude": -78.4569771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1375768, + "longitude": -78.4570295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1370494, + "longitude": -78.45654 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1353867, + "longitude": -78.4570507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1350208, + "longitude": -78.4572197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1347445, + "longitude": -78.4574702 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1336269, + "longitude": -78.4583252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1332817, + "longitude": -78.4584888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1368383, + "longitude": -78.4480293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1383219, + "longitude": -78.4468596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1364303, + "longitude": -78.4485359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.136112, + "longitude": -78.44903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1385686, + "longitude": -78.4466949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1380713, + "longitude": -78.4470512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1379293, + "longitude": -78.4471622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1373843, + "longitude": -78.4475885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1370805, + "longitude": -78.4478355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1369457, + "longitude": -78.4479119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1368595, + "longitude": -78.4479977 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1367178, + "longitude": -78.4481705 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.136633, + "longitude": -78.4483238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1362458, + "longitude": -78.4487991 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1361636, + "longitude": -78.4489414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1360363, + "longitude": -78.4491514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1358065, + "longitude": -78.4494982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1357987, + "longitude": -78.449546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1357871, + "longitude": -78.4495929 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1357825, + "longitude": -78.4495982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1357514, + "longitude": -78.4496346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1356883, + "longitude": -78.4496074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.134986, + "longitude": -78.4500796 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1349558, + "longitude": -78.4500984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1349132, + "longitude": -78.4501249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1348825, + "longitude": -78.450142 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1348569, + "longitude": -78.4501562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1347794, + "longitude": -78.4502014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1346296, + "longitude": -78.4502888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1341946, + "longitude": -78.4505425 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1341619, + "longitude": -78.4505625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.134126, + "longitude": -78.4505843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1336868, + "longitude": -78.4508523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1330163, + "longitude": -78.451256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1366977, + "longitude": -78.448241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1387933, + "longitude": -78.456357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1393928, + "longitude": -78.4558937 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1395514, + "longitude": -78.4556023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1397219, + "longitude": -78.4557144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1401861, + "longitude": -78.4554379 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.140574, + "longitude": -78.4551764 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1407856, + "longitude": -78.4547804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1437767, + "longitude": -78.4532785 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1428894, + "longitude": -78.453809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1426426, + "longitude": -78.4537343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1425897, + "longitude": -78.4539585 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1417905, + "longitude": -78.4545488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1413673, + "longitude": -78.4548103 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1404447, + "longitude": -78.4538389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1403213, + "longitude": -78.4538688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1401979, + "longitude": -78.4542574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1395044, + "longitude": -78.4547281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1392223, + "longitude": -78.4543993 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1386934, + "longitude": -78.454631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1388345, + "longitude": -78.4551914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1392693, + "longitude": -78.455565 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.143051, + "longitude": -78.447012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1439699, + "longitude": -78.4468601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1433279, + "longitude": -78.4472851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1428234, + "longitude": -78.446817 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1425761, + "longitude": -78.4466142 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1451636, + "longitude": -78.452479 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.144309, + "longitude": -78.4516972 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1440647, + "longitude": -78.451814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1448932, + "longitude": -78.4526359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1394848, + "longitude": -78.446363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1412244, + "longitude": -78.4460986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1391244, + "longitude": -78.4464411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1423389, + "longitude": -78.4464681 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1421455, + "longitude": -78.4463489 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1419381, + "longitude": -78.4462535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.141717, + "longitude": -78.4461749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1415985, + "longitude": -78.4461402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1414146, + "longitude": -78.4461153 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1410506, + "longitude": -78.4461191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1409606, + "longitude": -78.4461294 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1408697, + "longitude": -78.4461422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1406618, + "longitude": -78.446177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1404683, + "longitude": -78.4462094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1403262, + "longitude": -78.4462316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1402845, + "longitude": -78.4462381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1402369, + "longitude": -78.4462455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1396631, + "longitude": -78.4463352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1393531, + "longitude": -78.4463916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1392643, + "longitude": -78.4464108 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1390687, + "longitude": -78.4464579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1389495, + "longitude": -78.4464937 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1388638, + "longitude": -78.4465271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1387996, + "longitude": -78.4465521 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1398327, + "longitude": -78.4463087 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1405609, + "longitude": -78.4461939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1505291, + "longitude": -78.4536464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.149705, + "longitude": -78.4542585 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1485919, + "longitude": -78.4534245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1458351, + "longitude": -78.4467523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1480564, + "longitude": -78.4517908 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1481297, + "longitude": -78.4513418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1480144, + "longitude": -78.4508564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1472497, + "longitude": -78.4511953 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1466764, + "longitude": -78.4506111 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1464348, + "longitude": -78.4507339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1467565, + "longitude": -78.4512794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1462409, + "longitude": -78.4517557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1459588, + "longitude": -78.452006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1528932, + "longitude": -78.447011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1527777, + "longitude": -78.4466912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1545343, + "longitude": -78.4517579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1529193, + "longitude": -78.4470736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1528272, + "longitude": -78.4468477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1527987, + "longitude": -78.4467575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.152731, + "longitude": -78.4466182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1529734, + "longitude": -78.4472295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1530241, + "longitude": -78.4473755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1533084, + "longitude": -78.448194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1500663, + "longitude": -78.4442116 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1507003, + "longitude": -78.4437508 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1514314, + "longitude": -78.4429695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1507313, + "longitude": -78.4439573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1504175, + "longitude": -78.4441789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.150157, + "longitude": -78.4443947 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1499458, + "longitude": -78.4443007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1493731, + "longitude": -78.4447242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1487354, + "longitude": -78.445182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1481183, + "longitude": -78.4456696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1473119, + "longitude": -78.4442304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.147219, + "longitude": -78.4443412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.147169, + "longitude": -78.4444247 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1471045, + "longitude": -78.444529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1470249, + "longitude": -78.4446925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1470046, + "longitude": -78.4447353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1469118, + "longitude": -78.4449638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1468991, + "longitude": -78.444997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1468905, + "longitude": -78.4450195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1467301, + "longitude": -78.4454264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1466577, + "longitude": -78.4453765 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1466092, + "longitude": -78.4453431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1460999, + "longitude": -78.4464485 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1454465, + "longitude": -78.4459491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1516711, + "longitude": -78.4436459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1516292, + "longitude": -78.4435242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1516024, + "longitude": -78.4434443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1515536, + "longitude": -78.4432983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1515473, + "longitude": -78.443281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1514752, + "longitude": -78.4430827 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1526273, + "longitude": -78.4464583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1525909, + "longitude": -78.4463784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.152531, + "longitude": -78.4461489 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1524931, + "longitude": -78.4460035 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1524712, + "longitude": -78.4459195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1524247, + "longitude": -78.4457904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1523798, + "longitude": -78.4456657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1522472, + "longitude": -78.445332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1521558, + "longitude": -78.4451025 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1520877, + "longitude": -78.4448974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1520403, + "longitude": -78.4447444 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.151977, + "longitude": -78.4445289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1518883, + "longitude": -78.4442716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1518373, + "longitude": -78.4441246 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.98895, + "longitude": -78.4008259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9903664, + "longitude": -78.4007349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9904204, + "longitude": -78.4007321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9889541, + "longitude": -78.4007609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9913931, + "longitude": -78.4006762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9916476, + "longitude": -78.4006755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9919914, + "longitude": -78.4006352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.992622, + "longitude": -78.4005925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9928025, + "longitude": -78.400565 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9933234, + "longitude": -78.4005256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9930758, + "longitude": -78.400549 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9935768, + "longitude": -78.4004914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9943572, + "longitude": -78.3943819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9893726, + "longitude": -78.3951853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9890907, + "longitude": -78.3986063 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9983348, + "longitude": -78.4001038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9995712, + "longitude": -78.3995935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.998961, + "longitude": -78.398033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9987791, + "longitude": -78.3969334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9947216, + "longitude": -78.4003699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9993469, + "longitude": -78.3996399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9990216, + "longitude": -78.3997652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9991914, + "longitude": -78.399693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9986744, + "longitude": -78.3999686 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9988533, + "longitude": -78.3998703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9984881, + "longitude": -78.400051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.998192, + "longitude": -78.400117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9979269, + "longitude": -78.4001258 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9977392, + "longitude": -78.4001412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9976985, + "longitude": -78.4001451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9970614, + "longitude": -78.4001924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9965377, + "longitude": -78.4002249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9966794, + "longitude": -78.4002108 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9962833, + "longitude": -78.400246 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9963944, + "longitude": -78.4002389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9959019, + "longitude": -78.4002653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9948304, + "longitude": -78.4003583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9987152, + "longitude": -78.3965984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9980993, + "longitude": -78.396396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9974637, + "longitude": -78.396134 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9964496, + "longitude": -78.3956276 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9952241, + "longitude": -78.3948772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9898823, + "longitude": -78.389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9939712, + "longitude": -78.394011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9912521, + "longitude": -78.3892925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9904356, + "longitude": -78.3890832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9936161, + "longitude": -78.3933799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9926643, + "longitude": -78.3907451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9929953, + "longitude": -78.3916303 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9932909, + "longitude": -78.392522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.992331, + "longitude": -78.3901651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9917761, + "longitude": -78.3895825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9898248, + "longitude": -78.3896978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1580316, + "longitude": -78.1653003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.158213, + "longitude": -78.1654559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1579641, + "longitude": -78.1658314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1574706, + "longitude": -78.1672476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1567915, + "longitude": -78.1669955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1564836, + "longitude": -78.1668989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1560322, + "longitude": -78.1672744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1556483, + "longitude": -78.1668668 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1548637, + "longitude": -78.1674998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1550409, + "longitude": -78.1680308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.154404, + "longitude": -78.1684975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1530246, + "longitude": -78.169844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1524087, + "longitude": -78.1685405 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1588162, + "longitude": -78.1623177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1590735, + "longitude": -78.1634979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1588457, + "longitude": -78.1638841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.1584998, + "longitude": -78.1641792 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5346445, + "longitude": -77.8930762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5348536, + "longitude": -77.893222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5366608, + "longitude": -77.8884789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5368699, + "longitude": -77.8886247 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5947371, + "longitude": -77.8004873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5965274, + "longitude": -77.800498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5968835, + "longitude": -77.7997094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5967739, + "longitude": -77.7991891 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5988046, + "longitude": -77.7985078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5997057, + "longitude": -77.7987117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5996292, + "longitude": -77.7995378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5978143, + "longitude": -77.7999991 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.597147, + "longitude": -77.8001493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.596756, + "longitude": -77.8003746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5947881, + "longitude": -77.8008896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3980956, + "longitude": -77.5188607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3980998, + "longitude": -77.5185013 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3972603, + "longitude": -77.5176698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3982554, + "longitude": -77.5165701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4058919, + "longitude": -77.5185227 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4059771, + "longitude": -77.518394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.406889, + "longitude": -77.51701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4160159, + "longitude": -77.5368283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4161182, + "longitude": -77.536397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4164249, + "longitude": -77.5379441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4164931, + "longitude": -77.537472 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4167871, + "longitude": -77.5379215 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4168894, + "longitude": -77.5376469 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4176563, + "longitude": -77.5361824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4151638, + "longitude": -77.535367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4146246, + "longitude": -77.5355548 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4121344, + "longitude": -77.5330603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4162119, + "longitude": -77.5304478 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4128758, + "longitude": -77.5230825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4125711, + "longitude": -77.526792 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3988179, + "longitude": -77.5158727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3990395, + "longitude": -77.5155723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3992995, + "longitude": -77.5151056 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.399585, + "longitude": -77.5145155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3998663, + "longitude": -77.5139254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3998705, + "longitude": -77.5135499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4005524, + "longitude": -77.5138342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4012555, + "longitude": -77.5142044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4022016, + "longitude": -77.5148749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4957958, + "longitude": -77.3350436 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4988691, + "longitude": -77.3396989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4993879, + "longitude": -77.3405344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4914075, + "longitude": -77.3110401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4908946, + "longitude": -77.3082303 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4916011, + "longitude": -77.3113359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4914476, + "longitude": -77.3114094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4921628, + "longitude": -77.3070552 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.492253, + "longitude": -77.3075555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4918913, + "longitude": -77.3076926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4921042, + "longitude": -77.3067368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4921944, + "longitude": -77.3067446 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4922336, + "longitude": -77.3069208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4915727, + "longitude": -77.3109481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4916265, + "longitude": -77.3112423 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4922102, + "longitude": -77.3068159 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5009945, + "longitude": -77.3063396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5012236, + "longitude": -77.306323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5003934, + "longitude": -77.3062851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5007263, + "longitude": -77.3063328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4908214, + "longitude": -77.2998797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.491175, + "longitude": -77.3017132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4913473, + "longitude": -77.3027015 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.491754, + "longitude": -77.2998358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.49506, + "longitude": -77.3024983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4967938, + "longitude": -77.3037952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4979341, + "longitude": -77.3047521 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4990187, + "longitude": -77.3056203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4997499, + "longitude": -77.3060537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5029665, + "longitude": -77.3059807 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5015809, + "longitude": -77.3062603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5001198, + "longitude": -77.3062076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5065227, + "longitude": -77.3379344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5104882, + "longitude": -77.3365809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5109009, + "longitude": -77.3364612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5142988, + "longitude": -77.3368634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5127598, + "longitude": -77.3366578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5105874, + "longitude": -77.3365407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5112592, + "longitude": -77.3364113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5114993, + "longitude": -77.3364071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5155201, + "longitude": -77.3370539 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5170302, + "longitude": -77.3405802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5178618, + "longitude": -77.3405692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5179911, + "longitude": -77.3390914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5174158, + "longitude": -77.3373495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5180862, + "longitude": -77.3384007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5182716, + "longitude": -77.3376331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5193585, + "longitude": -77.333439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5168285, + "longitude": -77.3372579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5139216, + "longitude": -77.3133017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5127615, + "longitude": -77.3070508 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5137483, + "longitude": -77.3079543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5134602, + "longitude": -77.3106487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5123484, + "longitude": -77.3070522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5197244, + "longitude": -77.3319694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5198994, + "longitude": -77.3313232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5200893, + "longitude": -77.3307915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5204149, + "longitude": -77.3300097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5207517, + "longitude": -77.3291522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5209484, + "longitude": -77.3286373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5215486, + "longitude": -77.3271831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5218464, + "longitude": -77.3263749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5219476, + "longitude": -77.326047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5211819, + "longitude": -77.3280566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5226069, + "longitude": -77.3225862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5220224, + "longitude": -77.3257843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5220441, + "longitude": -77.3256147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5221002, + "longitude": -77.3253888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5225434, + "longitude": -77.3197456 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5229919, + "longitude": -77.3205967 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5226944, + "longitude": -77.3204941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5227499, + "longitude": -77.3205132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5178841, + "longitude": -77.3147989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5204195, + "longitude": -77.3173914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.522448, + "longitude": -77.3167517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.522458, + "longitude": -77.319322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5194774, + "longitude": -77.3176746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5191624, + "longitude": -77.3172008 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5181585, + "longitude": -77.3160836 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5207621, + "longitude": -77.3172834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5193999, + "longitude": -77.3175324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5192722, + "longitude": -77.3173416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.519675, + "longitude": -77.3176152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5200656, + "longitude": -77.3174978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5227817, + "longitude": -77.3192141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5227239, + "longitude": -77.3192334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5074107, + "longitude": -77.3050966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5085359, + "longitude": -77.3048668 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5117629, + "longitude": -77.3042167 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.706241, + "longitude": -77.4381893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.709309, + "longitude": -77.4404466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7100537, + "longitude": -77.4387898 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7125947, + "longitude": -77.4378798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6994662, + "longitude": -77.4308447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7061018, + "longitude": -77.436563 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7052163, + "longitude": -77.4323615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7016992, + "longitude": -77.4277553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.702155, + "longitude": -77.4281883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7036895, + "longitude": -77.4281181 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7053972, + "longitude": -77.4292761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7060774, + "longitude": -77.4304074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.709731, + "longitude": -77.4324739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7102098, + "longitude": -77.436025 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7067123, + "longitude": -77.4370682 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7063749, + "longitude": -77.4359704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7082148, + "longitude": -77.4326202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7078956, + "longitude": -77.4342561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7107817, + "longitude": -77.4348679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7098533, + "longitude": -77.4327525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7170027, + "longitude": -77.4413082 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7159531, + "longitude": -77.4431205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9646881, + "longitude": -77.7523784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9639713, + "longitude": -77.7524595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9649238, + "longitude": -77.751407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9659187, + "longitude": -77.7514153 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9656209, + "longitude": -77.7500787 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9660234, + "longitude": -77.747862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9637065, + "longitude": -77.7514473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9642256, + "longitude": -77.7514317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9677547, + "longitude": -77.7414878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.967627, + "longitude": -77.740913 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9682128, + "longitude": -77.7402737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9678415, + "longitude": -77.7397047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9660774, + "longitude": -77.7399547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9695708, + "longitude": -77.7454128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9693352, + "longitude": -77.7444373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9686087, + "longitude": -77.7432708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9694792, + "longitude": -77.74237 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9686848, + "longitude": -77.7410418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9663965, + "longitude": -77.7384078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0068251, + "longitude": -77.9794404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0067461, + "longitude": -77.9787547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0076086, + "longitude": -77.9775117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0096755, + "longitude": -77.9796591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0082184, + "longitude": -77.9794043 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0080162, + "longitude": -77.9790595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0078298, + "longitude": -77.9783337 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.00837, + "longitude": -77.9771749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0091615, + "longitude": -77.9695665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0080892, + "longitude": -77.9693737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0118256, + "longitude": -77.9684577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0118177, + "longitude": -77.9687384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.011557, + "longitude": -77.9712495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.01172, + "longitude": -77.9715614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.011624, + "longitude": -77.9725083 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0112174, + "longitude": -77.9724148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0110834, + "longitude": -77.9736481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0103551, + "longitude": -77.9735404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0087594, + "longitude": -77.9636067 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.008536, + "longitude": -77.9632892 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0090051, + "longitude": -77.9625917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0092017, + "longitude": -77.9619509 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0115354, + "longitude": -77.9625029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0118418, + "longitude": -77.9626954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0120946, + "longitude": -77.9627515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.011787, + "longitude": -77.9656561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.011863, + "longitude": -77.9657951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0116776, + "longitude": -77.967896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0094385, + "longitude": -77.960607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0097825, + "longitude": -77.9601477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0103678, + "longitude": -77.9601307 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0104438, + "longitude": -77.9602838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.010904, + "longitude": -77.9600172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0120124, + "longitude": -77.9602334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0663608, + "longitude": -77.3217033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0660588, + "longitude": -77.322714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0657426, + "longitude": -77.321836 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0709834, + "longitude": -77.3200512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0698754, + "longitude": -77.3245577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0710259, + "longitude": -77.3204607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0713139, + "longitude": -77.3211727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0674578, + "longitude": -77.320358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0709422, + "longitude": -77.3203202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0691913, + "longitude": -77.3194637 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0706685, + "longitude": -77.3191726 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0708316, + "longitude": -77.3180413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0684791, + "longitude": -77.3164822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0681261, + "longitude": -77.3190447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0685295, + "longitude": -77.3131125 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0690148, + "longitude": -77.3151953 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0709118, + "longitude": -77.316232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0715442, + "longitude": -77.3157277 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0715515, + "longitude": -77.3162601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0679948, + "longitude": -77.3112992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.069003, + "longitude": -77.311538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0671174, + "longitude": -77.3111329 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0671426, + "longitude": -77.3122059 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0672687, + "longitude": -77.3123821 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0677352, + "longitude": -77.312238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.0690148, + "longitude": -77.3125427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2092658, + "longitude": -79.7160622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2088612, + "longitude": -79.7156545 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2100372, + "longitude": -79.7133773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2114745, + "longitude": -79.7114649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2120351, + "longitude": -79.7123071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2109561, + "longitude": -79.714072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3932981, + "longitude": -79.6070595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3924198, + "longitude": -79.6069858 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3917847, + "longitude": -79.6061302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3914932, + "longitude": -79.6052221 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3913696, + "longitude": -79.6049352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3936399, + "longitude": -79.6030045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3931863, + "longitude": -79.6020533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3939119, + "longitude": -79.606547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3984516, + "longitude": -79.6030764 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3961607, + "longitude": -79.6047641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3989467, + "longitude": -79.6027884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988686, + "longitude": -79.6022805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988201, + "longitude": -79.6015861 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3986479, + "longitude": -79.6013077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3987341, + "longitude": -79.6005352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988178, + "longitude": -79.6003412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3986392, + "longitude": -79.6011602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3986681, + "longitude": -79.6010427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3964766, + "longitude": -79.5992138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3966356, + "longitude": -79.5994381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3978222, + "longitude": -79.5985342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.399634, + "longitude": -79.5971824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3980671, + "longitude": -79.5950292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3980306, + "longitude": -79.5945262 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3980777, + "longitude": -79.594356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3977276, + "longitude": -79.5938303 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.397894, + "longitude": -79.5937258 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3984067, + "longitude": -79.5946182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3987874, + "longitude": -79.5950412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3997386, + "longitude": -79.595156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4000558, + "longitude": -79.5949582 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4002774, + "longitude": -79.5955945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4000406, + "longitude": -79.596101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4006622, + "longitude": -79.5959975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3994288, + "longitude": -79.5999931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3958813, + "longitude": -79.5997647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3998182, + "longitude": -79.5998703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4002802, + "longitude": -79.5960264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4013031, + "longitude": -79.5960022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4016395, + "longitude": -79.5960022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4019078, + "longitude": -79.5960647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4023602, + "longitude": -79.5958959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4027391, + "longitude": -79.5956784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4027756, + "longitude": -79.5957036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4033825, + "longitude": -79.5952559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4040465, + "longitude": -79.5949906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4041838, + "longitude": -79.5962617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4037493, + "longitude": -79.5964045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4035322, + "longitude": -79.5965603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4034395, + "longitude": -79.5966861 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4033606, + "longitude": -79.5970957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4034272, + "longitude": -79.5977808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4035801, + "longitude": -79.5984068 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4040087, + "longitude": -79.5993857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4039901, + "longitude": -79.5994739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.403941, + "longitude": -79.5995307 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4038745, + "longitude": -79.5995505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4017453, + "longitude": -79.5986354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4015854, + "longitude": -79.5986892 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4010991, + "longitude": -79.599001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4019511, + "longitude": -79.5987647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4022132, + "longitude": -79.5988092 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4019077, + "longitude": -79.5986675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4037721, + "longitude": -79.5995144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4039612, + "longitude": -79.5992294 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4037781, + "longitude": -79.5988624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4034821, + "longitude": -79.5980916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4033735, + "longitude": -79.5969193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4036121, + "longitude": -79.5964887 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4039727, + "longitude": -79.5963194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4025907, + "longitude": -79.5957636 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2509522, + "longitude": -78.9068463 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2564928, + "longitude": -78.9066499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2522424, + "longitude": -78.9059045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2518497, + "longitude": -78.9088819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2520444, + "longitude": -78.9091298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2522834, + "longitude": -78.9089998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2533842, + "longitude": -78.9082938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2540181, + "longitude": -78.9078378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2545637, + "longitude": -78.907286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2549405, + "longitude": -78.9070444 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2557564, + "longitude": -78.9067801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2610046, + "longitude": -78.9054612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2612735, + "longitude": -78.9058359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2615274, + "longitude": -78.9061033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2574751, + "longitude": -78.9064102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2572177, + "longitude": -78.9064648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2585042, + "longitude": -78.9061468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2579468, + "longitude": -78.905636 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2619459, + "longitude": -78.9056804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2566743, + "longitude": -78.9066036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2553309, + "longitude": -78.9013864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2552966, + "longitude": -78.9025088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2546991, + "longitude": -78.9028403 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2547863, + "longitude": -78.9028964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.259973, + "longitude": -78.9036344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2602594, + "longitude": -78.9041242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2604955, + "longitude": -78.9045593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2575823, + "longitude": -78.8992371 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2606591, + "longitude": -78.8963042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2613969, + "longitude": -78.8955854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2615972, + "longitude": -78.8953692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2616057, + "longitude": -78.8954839 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2617334, + "longitude": -78.8954553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2617186, + "longitude": -78.8953371 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2618335, + "longitude": -78.8952904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2621597, + "longitude": -78.8950931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2628924, + "longitude": -78.8945747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.265031, + "longitude": -78.9025504 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2661702, + "longitude": -78.9027601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2647302, + "longitude": -78.9006677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2645887, + "longitude": -78.9002197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2635584, + "longitude": -78.9040512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2649049, + "longitude": -78.9009486 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2661662, + "longitude": -78.9025243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2659299, + "longitude": -78.9027124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2658905, + "longitude": -78.9024936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2648268, + "longitude": -78.8989464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2645709, + "longitude": -78.8998717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2646304, + "longitude": -78.8994308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2647286, + "longitude": -78.8991668 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2642369, + "longitude": -78.9033315 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2679979, + "longitude": -78.8976303 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2684419, + "longitude": -78.8983401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2657106, + "longitude": -78.8979502 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2669045, + "longitude": -78.896904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2649757, + "longitude": -78.8922689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2634803, + "longitude": -78.8940345 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2633844, + "longitude": -78.8941473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2637261, + "longitude": -78.893786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2644413, + "longitude": -78.8929316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2675117, + "longitude": -78.8975998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2670157, + "longitude": -78.8968328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2668584, + "longitude": -78.8967753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2663728, + "longitude": -78.8971878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2713412, + "longitude": -78.8956662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2698143, + "longitude": -78.8945082 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.269933, + "longitude": -78.8939904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2701566, + "longitude": -78.8929305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2702578, + "longitude": -78.8926632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2702944, + "longitude": -78.894702 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2706708, + "longitude": -78.8949515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2708989, + "longitude": -78.8952136 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2698561, + "longitude": -78.8944062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2704826, + "longitude": -78.8948062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2695377, + "longitude": -78.8880259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2679988, + "longitude": -78.8885707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2680963, + "longitude": -78.8885226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2685482, + "longitude": -78.8885458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2687371, + "longitude": -78.8885397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2691699, + "longitude": -78.8883123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2667344, + "longitude": -78.8901672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.26597, + "longitude": -78.891058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2674284, + "longitude": -78.8893228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2677945, + "longitude": -78.8888762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2712574, + "longitude": -78.8914652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.271867, + "longitude": -78.8909357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2734192, + "longitude": -78.8895695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2726997, + "longitude": -78.8878087 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2706041, + "longitude": -78.8921118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2707772, + "longitude": -78.8918961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2734771, + "longitude": -78.8893654 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2731073, + "longitude": -78.8886381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2718602, + "longitude": -78.8858454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2720343, + "longitude": -78.8861069 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2723904, + "longitude": -78.8871527 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2706526, + "longitude": -78.886912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2715298, + "longitude": -78.8861249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2721966, + "longitude": -78.8866053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2725888, + "longitude": -78.8903041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.36307, + "longitude": -78.961201 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.362983, + "longitude": -78.958243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.362083, + "longitude": -78.960343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.362159, + "longitude": -78.960414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363362, + "longitude": -78.961462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363494, + "longitude": -78.961597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363586, + "longitude": -78.961712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363719, + "longitude": -78.961909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363779, + "longitude": -78.962023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363883, + "longitude": -78.962263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363958, + "longitude": -78.962483 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.364243, + "longitude": -78.963578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.362331, + "longitude": -78.959932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.362511, + "longitude": -78.959564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.36266, + "longitude": -78.959199 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3628, + "longitude": -78.958814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363101, + "longitude": -78.957875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3650129, + "longitude": -78.9633773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.364281, + "longitude": -78.9637099 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3668888, + "longitude": -78.9611457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3651643, + "longitude": -78.9621327 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3690751, + "longitude": -78.9643938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3706817, + "longitude": -78.962645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3706312, + "longitude": -78.9627309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3703713, + "longitude": -78.9628945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3693358, + "longitude": -78.9640183 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3702106, + "longitude": -78.9630849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3698657, + "longitude": -78.9633531 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3701274, + "longitude": -78.9631198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3706817, + "longitude": -78.9625587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3689321, + "longitude": -78.9603914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3690086, + "longitude": -78.9605234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3702788, + "longitude": -78.962991 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.369933, + "longitude": -78.9632458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3697648, + "longitude": -78.9635033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.369129, + "longitude": -78.9643162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.365561, + "longitude": -78.955776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.365899, + "longitude": -78.955381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.366107, + "longitude": -78.95516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.36315, + "longitude": -78.957772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.363223, + "longitude": -78.95767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.36331, + "longitude": -78.95758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.364088, + "longitude": -78.956983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.36453, + "longitude": -78.956624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.364743, + "longitude": -78.956454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.36509, + "longitude": -78.956193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.365455, + "longitude": -78.955883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3642754, + "longitude": -78.9568342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3672329, + "longitude": -78.9553703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3678553, + "longitude": -78.9563574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3666777, + "longitude": -78.9559282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3687975, + "longitude": -78.957559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3687302, + "longitude": -78.9573015 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3083908, + "longitude": -78.1003515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3087612, + "longitude": -78.0994932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3086938, + "longitude": -78.0997185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3086096, + "longitude": -78.1000082 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3055915, + "longitude": -78.0991352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3060145, + "longitude": -78.0974185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3070942, + "longitude": -78.098195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3076836, + "longitude": -78.0985598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3087359, + "longitude": -78.0991821 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3086576, + "longitude": -78.0989107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.65516, + "longitude": -78.7101931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6538041, + "longitude": -78.7124756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6537703, + "longitude": -78.7127124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6529086, + "longitude": -78.714077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6534089, + "longitude": -78.7098123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6537516, + "longitude": -78.7098618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6531657, + "longitude": -78.7121612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6554573, + "longitude": -78.710398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6556873, + "longitude": -78.7104095 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6559321, + "longitude": -78.7103675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6561314, + "longitude": -78.7102631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.656255, + "longitude": -78.710104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6564159, + "longitude": -78.7090843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6545808, + "longitude": -78.7084886 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6550037, + "longitude": -78.7084461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6559047, + "longitude": -78.7077772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6559848, + "longitude": -78.7076994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6560346, + "longitude": -78.7076357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6560594, + "longitude": -78.7086903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6564477, + "longitude": -78.7097491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6564717, + "longitude": -78.7096028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6564777, + "longitude": -78.7093578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6564506, + "longitude": -78.7091375 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6583136, + "longitude": -78.7038319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6583869, + "longitude": -78.7038695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6588393, + "longitude": -78.7044864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.65821, + "longitude": -78.7055541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6580199, + "longitude": -78.7054147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6570986, + "longitude": -78.7058625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.656825, + "longitude": -78.7056962 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.656966, + "longitude": -78.7053281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6572562, + "longitude": -78.7054838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6581461, + "longitude": -78.7040151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.65824, + "longitude": -78.7039301 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8132079, + "longitude": -78.7735043 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.813313, + "longitude": -78.7736264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.81336, + "longitude": -78.7736631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.813432, + "longitude": -78.7736877 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8135161, + "longitude": -78.7736353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8135617, + "longitude": -78.7735491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8135905, + "longitude": -78.7733827 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8135818, + "longitude": -78.773273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6621256, + "longitude": -78.5055864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6625717, + "longitude": -78.5055167 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6617758, + "longitude": -78.5050392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6617172, + "longitude": -78.504881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.661713, + "longitude": -78.5047469 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6617528, + "longitude": -78.5046047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6620795, + "longitude": -78.5041434 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6618784, + "longitude": -78.5037357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6620523, + "longitude": -78.5032663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6630157, + "longitude": -78.5051844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6629839, + "longitude": -78.5051229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6668001, + "longitude": -78.4989899 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6668515, + "longitude": -78.4980512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6668561, + "longitude": -78.4977873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6668929, + "longitude": -78.4975564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6668993, + "longitude": -78.4989006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6669389, + "longitude": -78.497382 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6670106, + "longitude": -78.4972089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.667086, + "longitude": -78.4970793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.667189, + "longitude": -78.4969438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6673325, + "longitude": -78.4968013 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6674806, + "longitude": -78.4966823 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6677556, + "longitude": -78.4964961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6681135, + "longitude": -78.4962523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6681723, + "longitude": -78.496224 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6682477, + "longitude": -78.4962004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6684947, + "longitude": -78.496661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6686201, + "longitude": -78.4965557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6686443, + "longitude": -78.4965354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6686624, + "longitude": -78.4965193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6691477, + "longitude": -78.4960902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.667726, + "longitude": -78.4965161 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6695621, + "longitude": -78.4957237 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6699559, + "longitude": -78.4966848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6699787, + "longitude": -78.4966692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6701721, + "longitude": -78.4971409 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6705775, + "longitude": -78.4968811 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6713797, + "longitude": -78.4978475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.81759, + "longitude": -78.7680026 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8174928, + "longitude": -78.7683481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8176829, + "longitude": -78.768586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8182277, + "longitude": -78.7678888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8182974, + "longitude": -78.7679701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8183497, + "longitude": -78.7680107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8183797, + "longitude": -78.7680229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8184209, + "longitude": -78.7680046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8185128, + "longitude": -78.7678948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8185112, + "longitude": -78.76784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8184843, + "longitude": -78.7677749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8174772, + "longitude": -78.7678228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8176978, + "longitude": -78.7678837 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8181849, + "longitude": -78.7674537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.818337, + "longitude": -78.7675859 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8182515, + "longitude": -78.7674761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8182134, + "longitude": -78.7674517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8180141, + "longitude": -78.7674701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8179181, + "longitude": -78.7674609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8176852, + "longitude": -78.7676519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8178901, + "longitude": -78.7676745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8179584, + "longitude": -78.7676449 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8179926, + "longitude": -78.7677022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9172493, + "longitude": -78.2599256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9155724, + "longitude": -78.2593754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9157393, + "longitude": -78.2576588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9170249, + "longitude": -78.2577017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9184848, + "longitude": -78.2588098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9182844, + "longitude": -78.2588957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.918034, + "longitude": -78.2591317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9174163, + "longitude": -78.2600115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9171083, + "longitude": -78.2562641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9167577, + "longitude": -78.2546762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9173328, + "longitude": -78.2499693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9175332, + "longitude": -78.2476089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9177502, + "longitude": -78.246536 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9183011, + "longitude": -78.2466862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9187185, + "longitude": -78.2588098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9187352, + "longitude": -78.2469437 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.919194, + "longitude": -78.247308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9192065, + "longitude": -78.2483648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9192047, + "longitude": -78.2482147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5680975, + "longitude": -77.9232339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5703832, + "longitude": -77.9228229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5684553, + "longitude": -77.9169948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.567579, + "longitude": -77.9169854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5187935, + "longitude": -77.8645813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5185249, + "longitude": -77.864745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.518292, + "longitude": -77.8642058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5184053, + "longitude": -77.8635004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5186613, + "longitude": -77.8623873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5225331, + "longitude": -77.8646296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5215867, + "longitude": -77.8651714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5207032, + "longitude": -77.8652881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5189703, + "longitude": -77.8655107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5189383, + "longitude": -77.8649515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5214901, + "longitude": -77.8604561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5252296, + "longitude": -77.8630793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5188145, + "longitude": -77.8632081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5250522, + "longitude": -77.8580354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5315307, + "longitude": -77.857849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5305844, + "longitude": -77.8597641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5301585, + "longitude": -77.8602442 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5295311, + "longitude": -77.860719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5285334, + "longitude": -77.8612755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5274286, + "longitude": -77.8564435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5270803, + "longitude": -77.8556013 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5281588, + "longitude": -77.8550917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5280078, + "longitude": -77.8546143 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5290863, + "longitude": -77.8545553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5311593, + "longitude": -77.8544158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5326784, + "longitude": -77.8533107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5334925, + "longitude": -77.8541744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4840912, + "longitude": -77.6153282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4843068, + "longitude": -77.6153497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4843573, + "longitude": -77.6152292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4853948, + "longitude": -77.612828 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4854992, + "longitude": -77.6118167 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.484007, + "longitude": -77.6116962 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.483879, + "longitude": -77.6122686 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4805576, + "longitude": -77.6108872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.480443, + "longitude": -77.6109303 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4803655, + "longitude": -77.6110163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4803521, + "longitude": -77.6111755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4804262, + "longitude": -77.6113089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4805441, + "longitude": -77.6114294 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4807159, + "longitude": -77.6113477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4808102, + "longitude": -77.6112229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4808675, + "longitude": -77.6111755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4818579, + "longitude": -77.6116188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4820195, + "longitude": -77.6118038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4840104, + "longitude": -77.6126343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4844011, + "longitude": -77.6131851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4849805, + "longitude": -77.6134304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4852836, + "longitude": -77.6134519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4855565, + "longitude": -77.6133185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4869723, + "longitude": -77.6143591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4871887, + "longitude": -77.6136744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4866344, + "longitude": -77.6138651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4865434, + "longitude": -77.6141706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5480329, + "longitude": -77.716021 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5481074, + "longitude": -77.7167959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5482846, + "longitude": -77.7180118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5483126, + "longitude": -77.7189774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5486855, + "longitude": -77.7190251 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5492076, + "longitude": -77.718584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5513539, + "longitude": -77.7128166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5507296, + "longitude": -77.7126649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5488372, + "longitude": -77.7138576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5485456, + "longitude": -77.7130169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5483032, + "longitude": -77.7128381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5479396, + "longitude": -77.7134222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5485363, + "longitude": -77.7120633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5480981, + "longitude": -77.7120036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5518459, + "longitude": -77.7177495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.552368, + "longitude": -77.7172846 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5523121, + "longitude": -77.7169151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5524519, + "longitude": -77.7167959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5527036, + "longitude": -77.7171058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5550156, + "longitude": -77.7157707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5551927, + "longitude": -77.7153773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5547266, + "longitude": -77.7150435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5545495, + "longitude": -77.7141971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5545122, + "longitude": -77.7136726 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5533469, + "longitude": -77.7144713 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.552396, + "longitude": -77.7148289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5518664, + "longitude": -77.7150539 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5774855, + "longitude": -77.7041021 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5769068, + "longitude": -77.7034892 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5765566, + "longitude": -77.7030091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5764475, + "longitude": -77.7027476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5763616, + "longitude": -77.7023667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5763374, + "longitude": -77.702065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.576349, + "longitude": -77.7018611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5763941, + "longitude": -77.7015768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5764863, + "longitude": -77.7013019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5766069, + "longitude": -77.7010605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5767684, + "longitude": -77.7008311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5769476, + "longitude": -77.7006648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.577086, + "longitude": -77.7005522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5772664, + "longitude": -77.7004664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5774037, + "longitude": -77.7004436 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5776868, + "longitude": -77.7004543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5877971, + "longitude": -77.7158046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5850107, + "longitude": -77.7127066 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5890466, + "longitude": -77.7171671 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5813226, + "longitude": -77.7100056 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5817818, + "longitude": -77.7090615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5780301, + "longitude": -77.6998052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5792804, + "longitude": -77.7055022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5785475, + "longitude": -77.7050623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5784385, + "longitude": -77.7048974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5782959, + "longitude": -77.7047901 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5780978, + "longitude": -77.7046989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5779185, + "longitude": -77.7045634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5778231, + "longitude": -77.7004181 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5779384, + "longitude": -77.7003296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5780128, + "longitude": -77.7001539 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5780453, + "longitude": -77.6999675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5836159, + "longitude": -77.7042332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5794209, + "longitude": -77.7054298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5793559, + "longitude": -77.7052769 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5786157, + "longitude": -77.7053198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5867016, + "longitude": -77.707593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5871613, + "longitude": -77.7068809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5895026, + "longitude": -77.7104737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5899397, + "longitude": -77.7098072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5904324, + "longitude": -77.7114487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5907762, + "longitude": -77.7108559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5878705, + "longitude": -77.7076319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5899481, + "longitude": -77.7061325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5889816, + "longitude": -77.7078331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.589913, + "longitude": -77.7088825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5895687, + "longitude": -77.7094202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5908748, + "longitude": -77.7109471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5894848, + "longitude": -77.7058777 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5940026, + "longitude": -77.7226684 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5951175, + "longitude": -77.720692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5950959, + "longitude": -77.7209464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5929471, + "longitude": -77.7145842 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5947133, + "longitude": -77.7168587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5948055, + "longitude": -77.7166508 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5963359, + "longitude": -77.7180214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5919566, + "longitude": -77.7091098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5920488, + "longitude": -77.7100807 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5954324, + "longitude": -77.7103865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.593814, + "longitude": -77.709775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5941829, + "longitude": -77.7091849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5788542, + "longitude": -77.6987766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.262728, + "longitude": -77.4525499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2636029, + "longitude": -77.4530689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2689921, + "longitude": -77.4518498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2655785, + "longitude": -77.4489633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2666899, + "longitude": -77.4490164 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2690199, + "longitude": -77.444544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2679471, + "longitude": -77.4459216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2703329, + "longitude": -77.4459445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2709407, + "longitude": -77.4494369 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2719668, + "longitude": -77.4476687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3582722, + "longitude": -77.4576194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3586498, + "longitude": -77.4574773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3587901, + "longitude": -77.4563902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3589807, + "longitude": -77.4546473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3592936, + "longitude": -77.4518587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3593799, + "longitude": -77.4506249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.358934, + "longitude": -77.4518036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3594015, + "longitude": -77.4501983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3595921, + "longitude": -77.4488315 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3597504, + "longitude": -77.44785 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3600489, + "longitude": -77.4456117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3599626, + "longitude": -77.4455429 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3599662, + "longitude": -77.4451944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3599086, + "longitude": -77.4448045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3596748, + "longitude": -77.4439147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3596497, + "longitude": -77.4443092 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3595382, + "longitude": -77.4448229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3594806, + "longitude": -77.4450247 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.359495, + "longitude": -77.4462493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3594159, + "longitude": -77.4474464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3593332, + "longitude": -77.4482399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3592073, + "longitude": -77.4492718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3601028, + "longitude": -77.4435524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3600812, + "longitude": -77.4434102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3597755, + "longitude": -77.4433735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3596676, + "longitude": -77.4435524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3935015, + "longitude": -77.4537063 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3898411, + "longitude": -77.4496605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3905062, + "longitude": -77.4486927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3895535, + "longitude": -77.4476607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3909627, + "longitude": -77.4446152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.390934, + "longitude": -77.4441749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3933741, + "longitude": -77.4439797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3937309, + "longitude": -77.4441246 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3921805, + "longitude": -77.4426367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.392389, + "longitude": -77.4429027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3925703, + "longitude": -77.4430971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3930611, + "longitude": -77.4436746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3928823, + "longitude": -77.443508 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4059286, + "longitude": -77.4657185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4036037, + "longitude": -77.464672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3996979, + "longitude": -77.4605123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3969516, + "longitude": -77.4574026 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3967432, + "longitude": -77.4572467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3964843, + "longitude": -77.4573522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3945863, + "longitude": -77.4561321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3950033, + "longitude": -77.4553662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988051, + "longitude": -77.451031 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988405, + "longitude": -77.4511579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988701, + "longitude": -77.4513754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3989322, + "longitude": -77.4515422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3987685, + "longitude": -77.4508609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3987983, + "longitude": -77.450659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3989194, + "longitude": -77.4504596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4028694, + "longitude": -77.4632884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.402504, + "longitude": -77.4627864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4016029, + "longitude": -77.4616544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4009236, + "longitude": -77.4616223 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4032457, + "longitude": -77.4569986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4037705, + "longitude": -77.457602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4044336, + "longitude": -77.457981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4049036, + "longitude": -77.4584997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4055091, + "longitude": -77.4591694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4012331, + "longitude": -77.4540773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.401262, + "longitude": -77.4544857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4017637, + "longitude": -77.4550486 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4021731, + "longitude": -77.4556005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4026027, + "longitude": -77.4562517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3943311, + "longitude": -77.4444235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3952168, + "longitude": -77.4447739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3955058, + "longitude": -77.4450666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3955528, + "longitude": -77.4453535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3975769, + "longitude": -77.4479553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3977347, + "longitude": -77.4485242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3979588, + "longitude": -77.4489813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3982466, + "longitude": -77.4493314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3985503, + "longitude": -77.4496439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3989633, + "longitude": -77.4502109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3956853, + "longitude": -77.4456917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3966274, + "longitude": -77.4467235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3971482, + "longitude": -77.4472965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3973899, + "longitude": -77.4476005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.3988701, + "longitude": -77.4499705 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4082887, + "longitude": -77.4621944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4310929, + "longitude": -77.4728801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4307025, + "longitude": -77.4734155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4308905, + "longitude": -77.4735386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4312058, + "longitude": -77.4727318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4347467, + "longitude": -77.4684188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4346262, + "longitude": -77.4682403 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6036483, + "longitude": -77.5888859 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6030689, + "longitude": -77.5891029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6032249, + "longitude": -77.5867923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6028475, + "longitude": -77.586533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6027247, + "longitude": -77.5865205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6026273, + "longitude": -77.5865371 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6025023, + "longitude": -77.58656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4036938, + "longitude": -77.3185241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4033743, + "longitude": -77.3181692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4038689, + "longitude": -77.3135695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4042147, + "longitude": -77.3138622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4034759, + "longitude": -77.3172247 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.403389, + "longitude": -77.3180324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4034933, + "longitude": -77.3170621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4036147, + "longitude": -77.3159331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4041618, + "longitude": -77.3143358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4976459, + "longitude": -77.3068443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4979773, + "longitude": -77.3083223 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4989351, + "longitude": -77.309143 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4974557, + "longitude": -77.3073588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4974546, + "longitude": -77.307492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4976482, + "longitude": -77.3078658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4982128, + "longitude": -77.3086462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4984315, + "longitude": -77.3084129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4983602, + "longitude": -77.3084889 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4978199, + "longitude": -77.306474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4981011, + "longitude": -77.3058755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4990139, + "longitude": -77.3038794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4988483, + "longitude": -77.3043938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4995413, + "longitude": -77.3100037 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4999454, + "longitude": -77.3102332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5063514, + "longitude": -77.3085597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5079153, + "longitude": -77.3080911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5090294, + "longitude": -77.3073717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5102874, + "longitude": -77.3062933 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5083653, + "longitude": -77.3078614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.503124, + "longitude": -77.3003117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5040119, + "longitude": -77.3006765 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4998263, + "longitude": -77.3031735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5004896, + "longitude": -77.3025941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5011928, + "longitude": -77.3022267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5015822, + "longitude": -77.3016858 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5040727, + "longitude": -77.3008213 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5008192, + "longitude": -77.302393 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5037684, + "longitude": -77.3004968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5036256, + "longitude": -77.3004619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.503082, + "longitude": -77.3003305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5040601, + "longitude": -77.3010145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5036865, + "longitude": -77.3005156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5022361, + "longitude": -77.3010225 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5042385, + "longitude": -77.3012934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5049669, + "longitude": -77.3016984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.504058, + "longitude": -77.3007489 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4997696, + "longitude": -77.3032459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4992533, + "longitude": -77.3040774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5018268, + "longitude": -77.3014168 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4995954, + "longitude": -77.3034927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5002545, + "longitude": -77.3027899 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.4999859, + "longitude": -77.3030233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5031785, + "longitude": -77.300309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5055672, + "longitude": -77.3023447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5099938, + "longitude": -77.3025298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5101365, + "longitude": -77.3035839 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5059534, + "longitude": -77.3021784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5091458, + "longitude": -77.3025593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5122248, + "longitude": -77.3038065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5116476, + "longitude": -77.3037287 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5118491, + "longitude": -77.304182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5118812, + "longitude": -77.3045147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5111853, + "longitude": -77.305404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.5123396, + "longitude": -77.303934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6495857, + "longitude": -77.7853101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6489402, + "longitude": -77.7838671 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6484223, + "longitude": -77.7846236 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6553418, + "longitude": -77.7848075 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6510883, + "longitude": -77.7857864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6501401, + "longitude": -77.7859732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6510361, + "longitude": -77.7905204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6546465, + "longitude": -77.7841051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6544155, + "longitude": -77.7838863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.654134, + "longitude": -77.7835474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6539752, + "longitude": -77.7833594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6538549, + "longitude": -77.7832824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6511029, + "longitude": -77.7844228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6499213, + "longitude": -77.784222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6531858, + "longitude": -77.783516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6576894, + "longitude": -77.7884391 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6581749, + "longitude": -77.7881915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6564306, + "longitude": -77.786971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9693692, + "longitude": -77.8676923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9694195, + "longitude": -77.8673816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.969553, + "longitude": -77.8664374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9692836, + "longitude": -77.8669492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9705848, + "longitude": -77.8661767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9695864, + "longitude": -77.8668666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9700868, + "longitude": -77.868433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9703871, + "longitude": -77.8690982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9697699, + "longitude": -77.8678107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9677662, + "longitude": -77.8601042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9668837, + "longitude": -77.8607941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.974458, + "longitude": -77.880359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.974651, + "longitude": -77.880453 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.974775, + "longitude": -77.880475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.975114, + "longitude": -77.880409 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.976712, + "longitude": -77.879943 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9739405, + "longitude": -77.8766942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9723365, + "longitude": -77.8701249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.975642, + "longitude": -77.871716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9718052, + "longitude": -77.8719091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.971288, + "longitude": -77.8706217 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9738237, + "longitude": -77.8733253 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9728536, + "longitude": -77.87388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9722889, + "longitude": -77.8728104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9733708, + "longitude": -77.8724853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9716383, + "longitude": -77.867682 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.971102, + "longitude": -77.8666273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9731039, + "longitude": -77.869567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9716358, + "longitude": -77.8687302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.606338, + "longitude": -77.5845156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6064034, + "longitude": -77.5844183 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6084808, + "longitude": -77.5829658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.608411, + "longitude": -77.5827955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6083379, + "longitude": -77.5827789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6077031, + "longitude": -77.5832297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.6054588, + "longitude": -77.5846834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.721705, + "longitude": -77.5211245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7164303, + "longitude": -77.5174866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7209061, + "longitude": -77.5205835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7207439, + "longitude": -77.5210823 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7211331, + "longitude": -77.5212486 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7241335, + "longitude": -77.5230028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7243009, + "longitude": -77.524258 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.724552, + "longitude": -77.5243975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7268705, + "longitude": -77.5240649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7274899, + "longitude": -77.524022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7279503, + "longitude": -77.5242044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7220187, + "longitude": -77.5204808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7232714, + "longitude": -77.5212647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7239075, + "longitude": -77.5218548 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7299378, + "longitude": -77.524678 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7286366, + "longitude": -77.5248696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7293899, + "longitude": -77.5250734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7314457, + "longitude": -77.5222046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7327448, + "longitude": -77.5196466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7330587, + "longitude": -77.5177664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7320815, + "longitude": -77.5160524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7326046, + "longitude": -77.5168276 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.732839, + "longitude": -77.5171575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7329624, + "longitude": -77.5173989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7331382, + "longitude": -77.5182706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7331298, + "longitude": -77.5184771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7330545, + "longitude": -77.5189492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7125452, + "longitude": -77.5098419 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7099235, + "longitude": -77.5041139 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7109416, + "longitude": -77.503633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.708925, + "longitude": -77.5068852 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7161899, + "longitude": -77.5132689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.715693, + "longitude": -77.5149604 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7162538, + "longitude": -77.5133989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7158982, + "longitude": -77.5157739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.720183, + "longitude": -77.5068418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7213626, + "longitude": -77.5085547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7167804, + "longitude": -77.5035855 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7172027, + "longitude": -77.5040433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7177524, + "longitude": -77.5052067 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7183065, + "longitude": -77.5057641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7189325, + "longitude": -77.5060852 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7194188, + "longitude": -77.5059805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7197697, + "longitude": -77.5057203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7200122, + "longitude": -77.5057214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7201285, + "longitude": -77.5060689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.720184, + "longitude": -77.5062979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7202684, + "longitude": -77.5067136 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7124579, + "longitude": -77.5026178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7138599, + "longitude": -77.5024554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7154819, + "longitude": -77.5025553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.728057, + "longitude": -77.5117709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7253329, + "longitude": -77.5097964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7262667, + "longitude": -77.5106987 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7232335, + "longitude": -77.5083666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7226037, + "longitude": -77.5076678 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7228726, + "longitude": -77.5079937 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7229385, + "longitude": -77.5081091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7308743, + "longitude": -77.51436 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7300185, + "longitude": -77.5134158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7305939, + "longitude": -77.5139496 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.7303449, + "longitude": -77.5137323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9184228, + "longitude": -77.4648719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9183051, + "longitude": -77.4646444 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9181848, + "longitude": -77.4639619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9183025, + "longitude": -77.4643594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9183626, + "longitude": -77.464783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9183077, + "longitude": -77.4644457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9173234, + "longitude": -77.4603634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.917359, + "longitude": -77.4605872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9173213, + "longitude": -77.4567112 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9172232, + "longitude": -77.4567602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9175619, + "longitude": -77.4566589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9148521, + "longitude": -77.4475793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9148899, + "longitude": -77.4475056 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9171469, + "longitude": -77.4457896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9175443, + "longitude": -77.4453712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9144247, + "longitude": -77.4450565 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.91427, + "longitude": -77.447133 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9148728, + "longitude": -77.4475702 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9174188, + "longitude": -77.4454105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9145301, + "longitude": -77.4448709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9142966, + "longitude": -77.4466631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9147787, + "longitude": -77.4476114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9173012, + "longitude": -77.4455334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.917743, + "longitude": -77.4453373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9145824, + "longitude": -77.4447035 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9180986, + "longitude": -77.4450862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9149214, + "longitude": -77.4461949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9146831, + "longitude": -77.4471297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9168558, + "longitude": -77.4459983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9183771, + "longitude": -77.4457979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9181495, + "longitude": -77.4452474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9147268, + "longitude": -77.4457555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9145778, + "longitude": -77.4454194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.917686, + "longitude": -77.438389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9154923, + "longitude": -77.4408704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166898, + "longitude": -77.4380674 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9169251, + "longitude": -77.4382583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9147837, + "longitude": -77.4417568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9172598, + "longitude": -77.4380491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9162715, + "longitude": -77.4396545 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9145562, + "longitude": -77.4434119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9145484, + "longitude": -77.4423424 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9180076, + "longitude": -77.4383603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9184521, + "longitude": -77.4390035 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9158949, + "longitude": -77.4403579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9178638, + "longitude": -77.4384989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9155341, + "longitude": -77.4407632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166715, + "longitude": -77.4380256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.917265, + "longitude": -77.4382662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9148909, + "longitude": -77.4416182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9170506, + "longitude": -77.4380413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9162741, + "longitude": -77.4394114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.914585, + "longitude": -77.4421856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9177357, + "longitude": -77.4381799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9161146, + "longitude": -77.4400441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9182978, + "longitude": -77.4385956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9180311, + "longitude": -77.4386348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9156021, + "longitude": -77.4406507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166715, + "longitude": -77.4379602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9175291, + "longitude": -77.4383367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9154583, + "longitude": -77.4409331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9168127, + "longitude": -77.4380596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9162558, + "longitude": -77.4383106 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9146634, + "longitude": -77.4419607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.917503, + "longitude": -77.4380988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.916227, + "longitude": -77.4398611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9145405, + "longitude": -77.4427007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9181802, + "longitude": -77.4384989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9182665, + "longitude": -77.4388309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9157224, + "longitude": -77.4405331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166349, + "longitude": -77.4375916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9184225, + "longitude": -77.438697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9162568, + "longitude": -77.4383728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9155214, + "longitude": -77.4407958 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9163667, + "longitude": -77.4351742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9173407, + "longitude": -77.431101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9165864, + "longitude": -77.4355603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9164385, + "longitude": -77.4327243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166578, + "longitude": -77.4358094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9163083, + "longitude": -77.4345299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9164803, + "longitude": -77.4363641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9175059, + "longitude": -77.4309399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9164996, + "longitude": -77.4354567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166632, + "longitude": -77.4325282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9169696, + "longitude": -77.4317438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166755, + "longitude": -77.4357138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9163077, + "longitude": -77.4332309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9165033, + "longitude": -77.4361814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9164229, + "longitude": -77.4353337 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9167735, + "longitude": -77.432185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.917121, + "longitude": -77.4314503 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9166625, + "longitude": -77.435656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9163322, + "longitude": -77.4329694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.91654, + "longitude": -77.4360524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9163434, + "longitude": -77.4350243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9164846, + "longitude": -77.4364776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9179556, + "longitude": -77.4306115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9180769, + "longitude": -77.4305781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9177674, + "longitude": -77.4307287 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9178269, + "longitude": -77.4306722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9294813, + "longitude": -77.5184316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290609, + "longitude": -77.517323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9301779, + "longitude": -77.5184964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9295171, + "longitude": -77.518535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9300691, + "longitude": -77.5185508 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290588, + "longitude": -77.5170134 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9309047, + "longitude": -77.5184774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9329244, + "longitude": -77.5184337 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9336376, + "longitude": -77.5183688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9351364, + "longitude": -77.5182933 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9325897, + "longitude": -77.51844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9335833, + "longitude": -77.518396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9321023, + "longitude": -77.5184462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9339347, + "longitude": -77.5183458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9329683, + "longitude": -77.518396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9338719, + "longitude": -77.518373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.937894, + "longitude": -77.5181875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9409134, + "longitude": -77.5181636 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9430929, + "longitude": -77.5184505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9406187, + "longitude": -77.5181455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9441761, + "longitude": -77.5185771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9442783, + "longitude": -77.5185006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9443174, + "longitude": -77.5184128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9443445, + "longitude": -77.5182223 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9444363, + "longitude": -77.5181258 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9440879, + "longitude": -77.5185844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9419674, + "longitude": -77.5182961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9402796, + "longitude": -77.5181264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9399375, + "longitude": -77.5181171 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9392626, + "longitude": -77.5181325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9442397, + "longitude": -77.5185442 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290144, + "longitude": -77.5114096 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290316, + "longitude": -77.5122526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290279, + "longitude": -77.5117367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9291068, + "longitude": -77.5117764 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290014, + "longitude": -77.511007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9291006, + "longitude": -77.51183 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9289275, + "longitude": -77.4996837 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9287331, + "longitude": -77.493305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9288713, + "longitude": -77.4935147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9288866, + "longitude": -77.4936628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9464013, + "longitude": -77.5187518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9457798, + "longitude": -77.5187935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.950981, + "longitude": -77.5163495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9455775, + "longitude": -77.5187863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9475202, + "longitude": -77.5182919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.950748, + "longitude": -77.5165635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9467933, + "longitude": -77.5186398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9462871, + "longitude": -77.5187752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9504658, + "longitude": -77.5167709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9512102, + "longitude": -77.5161078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9450183, + "longitude": -77.518217 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9454794, + "longitude": -77.5187373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.945421, + "longitude": -77.5186864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9452144, + "longitude": -77.5183457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9451247, + "longitude": -77.5182518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9460165, + "longitude": -77.5187977 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9465474, + "longitude": -77.5187172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9500853, + "longitude": -77.5170019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9454022, + "longitude": -77.5186555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9524701, + "longitude": -77.5136451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9521626, + "longitude": -77.5144835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9519652, + "longitude": -77.5149506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9530586, + "longitude": -77.5122416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.951512, + "longitude": -77.5157252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9517394, + "longitude": -77.5153846 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545605, + "longitude": -77.509485 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545198, + "longitude": -77.5095803 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9528428, + "longitude": -77.5126795 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9546983, + "longitude": -77.5082725 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545209, + "longitude": -77.5087085 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545073, + "longitude": -77.508789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545261, + "longitude": -77.5091256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545636, + "longitude": -77.5093415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9545678, + "longitude": -77.5094113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.954549, + "longitude": -77.5092919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9547993, + "longitude": -77.5079991 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9501532, + "longitude": -77.4922285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9500244, + "longitude": -77.4917449 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9506281, + "longitude": -77.4938349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9500929, + "longitude": -77.4920022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9503084, + "longitude": -77.4927536 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9504354, + "longitude": -77.4931831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9532366, + "longitude": -77.5025731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9523699, + "longitude": -77.499723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9533186, + "longitude": -77.5028543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9249135, + "longitude": -77.4869575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9249782, + "longitude": -77.4848589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9249939, + "longitude": -77.4849321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9248187, + "longitude": -77.48437 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9249965, + "longitude": -77.4850184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.924952, + "longitude": -77.4848197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.924836, + "longitude": -77.4844282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9249381, + "longitude": -77.4847728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9229282, + "longitude": -77.4775119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9254854, + "longitude": -77.4868775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.925543, + "longitude": -77.486925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9255377, + "longitude": -77.4868984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9255482, + "longitude": -77.4869507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9254384, + "longitude": -77.4878298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9264288, + "longitude": -77.4894756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9217869, + "longitude": -77.4733717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9206525, + "longitude": -77.4704511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9197615, + "longitude": -77.4681572 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9200397, + "longitude": -77.4561147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9194481, + "longitude": -77.4512867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9194682, + "longitude": -77.4514206 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.920013, + "longitude": -77.4555288 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9200436, + "longitude": -77.45578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9198511, + "longitude": -77.4558016 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9194364, + "longitude": -77.4506175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193981, + "longitude": -77.4484647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9194263, + "longitude": -77.4486879 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9189628, + "longitude": -77.4471584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9194247, + "longitude": -77.4491514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9190364, + "longitude": -77.4473659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9194163, + "longitude": -77.4494744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193544, + "longitude": -77.4482679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.918905, + "longitude": -77.4389966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9192339, + "longitude": -77.4396885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9185696, + "longitude": -77.4388172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193556, + "longitude": -77.4393878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9190116, + "longitude": -77.4395264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193196, + "longitude": -77.4392715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.919145, + "longitude": -77.4396389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193138, + "longitude": -77.4395205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193739, + "longitude": -77.4393331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193095, + "longitude": -77.439299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9193457, + "longitude": -77.4394193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9192889, + "longitude": -77.4395728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9485354, + "longitude": -77.4867043 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9505806, + "longitude": -77.4779397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9505387, + "longitude": -77.4778749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9510805, + "longitude": -77.4780883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9507833, + "longitude": -77.4769337 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.950814, + "longitude": -77.4789904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9520495, + "longitude": -77.4769191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.951467, + "longitude": -77.4769196 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9594815, + "longitude": -77.4768019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9590799, + "longitude": -77.4768228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9615105, + "longitude": -77.4767789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9583791, + "longitude": -77.4769274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9597325, + "longitude": -77.4768354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9596279, + "longitude": -77.4767977 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9593811, + "longitude": -77.4768249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9631964, + "longitude": -77.4767622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9584816, + "longitude": -77.4769295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.959766, + "longitude": -77.4767956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9596446, + "longitude": -77.4768417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9594376, + "longitude": -77.4768438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9584963, + "longitude": -77.4768207 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9602136, + "longitude": -77.4767956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9583791, + "longitude": -77.4768228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9659596, + "longitude": -77.4770655 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9659303, + "longitude": -77.4769504 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9660789, + "longitude": -77.4770634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9677082, + "longitude": -77.477929 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9666349, + "longitude": -77.4767064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9658718, + "longitude": -77.476986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9675179, + "longitude": -77.4777177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9659973, + "longitude": -77.4767141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9686035, + "longitude": -77.4782762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9659743, + "longitude": -77.477122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9659136, + "longitude": -77.4770948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9658362, + "longitude": -77.4767141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9672271, + "longitude": -77.4770525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.965991, + "longitude": -77.47685 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9679302, + "longitude": -77.4781118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9660219, + "longitude": -77.4770953 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9582994, + "longitude": -77.4471967 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.960851, + "longitude": -77.4472925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9643528, + "longitude": -77.4439649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9643927, + "longitude": -77.446408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9619696, + "longitude": -77.4468382 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9639089, + "longitude": -77.4468218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9639774, + "longitude": -77.4464091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9594462, + "longitude": -77.4382339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9595014, + "longitude": -77.4381218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9600998, + "longitude": -77.4379086 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9591641, + "longitude": -77.4392302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.958909, + "longitude": -77.4396671 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9587142, + "longitude": -77.4399753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9591981, + "longitude": -77.4391609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9589613, + "longitude": -77.4395381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9588089, + "longitude": -77.4398806 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9592274, + "longitude": -77.4382493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9591003, + "longitude": -77.4393342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9587298, + "longitude": -77.4399518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9588697, + "longitude": -77.4397934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9586672, + "longitude": -77.44008 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9579131, + "longitude": -77.4422819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9581026, + "longitude": -77.4414897 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9582994, + "longitude": -77.4422903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9585763, + "longitude": -77.4402615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9630461, + "longitude": -77.4385498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9631116, + "longitude": -77.4395849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9637944, + "longitude": -77.4424998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9582994, + "longitude": -77.4424928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9630905, + "longitude": -77.438101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9635504, + "longitude": -77.4416259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9592197, + "longitude": -77.4390052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9592246, + "longitude": -77.4388484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9592255, + "longitude": -77.4384112 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.959226, + "longitude": -77.4383728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9630528, + "longitude": -77.4390626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.963042, + "longitude": -77.4387985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9630726, + "longitude": -77.4393324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9636661, + "longitude": -77.442071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9645203, + "longitude": -77.4451571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9671059, + "longitude": -77.4452203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9702849, + "longitude": -77.4453739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9701328, + "longitude": -77.4449646 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9693857, + "longitude": -77.4449604 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9688641, + "longitude": -77.4451759 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9687113, + "longitude": -77.4452229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9670351, + "longitude": -77.4452667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.967029, + "longitude": -77.4448672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9670645, + "longitude": -77.4446872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9671016, + "longitude": -77.443739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9676909, + "longitude": -77.4398748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9689612, + "longitude": -77.443293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9682359, + "longitude": -77.4409935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9682015, + "longitude": -77.4410191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9690268, + "longitude": -77.4426467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9690719, + "longitude": -77.4429978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9690018, + "longitude": -77.4432072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.967066, + "longitude": -77.4432209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9671602, + "longitude": -77.4431866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9672342, + "longitude": -77.4432918 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9673593, + "longitude": -77.4433763 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9673947, + "longitude": -77.4433124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9684798, + "longitude": -77.4415729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9683107, + "longitude": -77.4410446 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9683419, + "longitude": -77.4409946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9678466, + "longitude": -77.4402273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9674788, + "longitude": -77.4396131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9671643, + "longitude": -77.4387935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9669701, + "longitude": -77.4378219 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9236598, + "longitude": -77.4303793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9217229, + "longitude": -77.4304693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9213045, + "longitude": -77.4305634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.920746, + "longitude": -77.4305048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.92444, + "longitude": -77.4304442 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.92216, + "longitude": -77.4304233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9214217, + "longitude": -77.4305592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9210702, + "longitude": -77.4305007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9245195, + "longitude": -77.4303689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9187024, + "longitude": -77.4305634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9228922, + "longitude": -77.4304003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9214907, + "longitude": -77.4304797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9212857, + "longitude": -77.4305467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9247873, + "longitude": -77.4303626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9199093, + "longitude": -77.4305341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9299497, + "longitude": -77.4321155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9292638, + "longitude": -77.431889 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9307781, + "longitude": -77.4309588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.928931, + "longitude": -77.4312913 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9305982, + "longitude": -77.4315842 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9300627, + "longitude": -77.4320904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9290042, + "longitude": -77.4314608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.930686, + "longitude": -77.4313708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.93032, + "longitude": -77.4319356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9296778, + "longitude": -77.4321113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9291277, + "longitude": -77.431693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9307446, + "longitude": -77.4311407 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9287762, + "longitude": -77.4309588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9304768, + "longitude": -77.4317934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9286947, + "longitude": -77.4307998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9297869, + "longitude": -77.4321086 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9294607, + "longitude": -77.4320322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9282491, + "longitude": -77.4303982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.930914, + "longitude": -77.4303166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9261344, + "longitude": -77.4303291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9283558, + "longitude": -77.4304463 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9309977, + "longitude": -77.4302727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9307948, + "longitude": -77.4306283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9277806, + "longitude": -77.4303019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9285524, + "longitude": -77.4306283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9316336, + "longitude": -77.4302643 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.92804, + "longitude": -77.4303333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.930822, + "longitude": -77.4304756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9278057, + "longitude": -77.4303417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9272805, + "longitude": -77.4303102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.93219, + "longitude": -77.4302476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9355016, + "longitude": -77.4301694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9354217, + "longitude": -77.4300656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9330664, + "longitude": -77.4302413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9368505, + "longitude": -77.4301365 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9362986, + "longitude": -77.4301338 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9354468, + "longitude": -77.4300635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9342504, + "longitude": -77.430212 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9368473, + "longitude": -77.4300283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9381452, + "longitude": -77.430099 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9363028, + "longitude": -77.4300167 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9354828, + "longitude": -77.4302091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.935451, + "longitude": -77.430189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9353736, + "longitude": -77.4301702 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.933514, + "longitude": -77.4302302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.944182, + "longitude": -77.4299777 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9412682, + "longitude": -77.4299924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.942563, + "longitude": -77.4300154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9402307, + "longitude": -77.4300719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9433411, + "longitude": -77.4300342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9402516, + "longitude": -77.4300175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9487399, + "longitude": -77.4314189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9484094, + "longitude": -77.4310905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9498674, + "longitude": -77.4313374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9493821, + "longitude": -77.4316386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9488947, + "longitude": -77.4314231 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9484826, + "longitude": -77.4311742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9500786, + "longitude": -77.4311094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9483467, + "longitude": -77.4308563 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9495473, + "longitude": -77.4316177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9489763, + "longitude": -77.4314733 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9485558, + "longitude": -77.431193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9503087, + "longitude": -77.4308458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9483969, + "longitude": -77.4309588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9497084, + "longitude": -77.431534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.949152, + "longitude": -77.4315716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9491381, + "longitude": -77.4315638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9507082, + "longitude": -77.4303312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9504489, + "longitude": -77.4306994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9469975, + "longitude": -77.4300698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9482797, + "longitude": -77.4307224 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9480852, + "longitude": -77.4304149 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9508547, + "longitude": -77.4302204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9505702, + "longitude": -77.4305237 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9478321, + "longitude": -77.4300614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9481103, + "longitude": -77.4305216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9510325, + "longitude": -77.4301388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9479011, + "longitude": -77.4300321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9458909, + "longitude": -77.430007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9506539, + "longitude": -77.4303919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9478697, + "longitude": -77.4300342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9466774, + "longitude": -77.4300321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9458868, + "longitude": -77.4299798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9482337, + "longitude": -77.4307433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.95119, + "longitude": -77.4300968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9480203, + "longitude": -77.4302727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9480574, + "longitude": -77.430354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9464004, + "longitude": -77.4300233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9566108, + "longitude": -77.4300084 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.952618, + "longitude": -77.4300466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9518136, + "longitude": -77.4298701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9513608, + "longitude": -77.430094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9568148, + "longitude": -77.4299985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.951865, + "longitude": -77.4298669 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9571465, + "longitude": -77.4299126 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9557269, + "longitude": -77.4300189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.951902, + "longitude": -77.4299462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9516697, + "longitude": -77.4300916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9574771, + "longitude": -77.4298405 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9518833, + "longitude": -77.4300621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9616546, + "longitude": -77.4316911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9618167, + "longitude": -77.4324677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.961036, + "longitude": -77.4366084 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9612703, + "longitude": -77.4311499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9618037, + "longitude": -77.4321748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9614362, + "longitude": -77.4360027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9618612, + "longitude": -77.435621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9612833, + "longitude": -77.4310348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9617252, + "longitude": -77.4319081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9616889, + "longitude": -77.4359685 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.961869, + "longitude": -77.4351163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9617587, + "longitude": -77.4359799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.961817, + "longitude": -77.4358169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9631961, + "longitude": -77.4369628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9635611, + "longitude": -77.4315129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.963169, + "longitude": -77.4327469 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9605087, + "longitude": -77.4373372 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9613795, + "longitude": -77.4361269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9608354, + "longitude": -77.4309298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9606894, + "longitude": -77.4309567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9605184, + "longitude": -77.430895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9632108, + "longitude": -77.4366191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9632056, + "longitude": -77.4367936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9593273, + "longitude": -77.4300255 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9610715, + "longitude": -77.4307289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9589883, + "longitude": -77.4297741 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9610375, + "longitude": -77.4307132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9583295, + "longitude": -77.4295506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9580849, + "longitude": -77.429692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9610173, + "longitude": -77.4306864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9655423, + "longitude": -77.4316545 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9655535, + "longitude": -77.436179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9668036, + "longitude": -77.437285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9661148, + "longitude": -77.4361942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9663983, + "longitude": -77.4362019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9666145, + "longitude": -77.4362078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9667572, + "longitude": -77.4368877 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9667074, + "longitude": -77.4364445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9736708, + "longitude": -77.476698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9725035, + "longitude": -77.4782241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.974862, + "longitude": -77.4752808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9748776, + "longitude": -77.4764266 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.976138, + "longitude": -77.475212 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9762864, + "longitude": -77.4752053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9741915, + "longitude": -77.4764348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9761338, + "longitude": -77.4752703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.976205, + "longitude": -77.475209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.976289, + "longitude": -77.4752704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.983339, + "longitude": -77.474004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9825429, + "longitude": -77.4747971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9780866, + "longitude": -77.4752551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9827422, + "longitude": -77.474632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9780795, + "longitude": -77.4750364 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9808343, + "longitude": -77.4742771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9831639, + "longitude": -77.4741934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.980644, + "longitude": -77.4750009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9808803, + "longitude": -77.4741788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9838631, + "longitude": -77.4734147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9846018, + "longitude": -77.4724865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9860273, + "longitude": -77.4706542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9850541, + "longitude": -77.4719052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9897748, + "longitude": -77.4644221 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9879078, + "longitude": -77.4678209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9900445, + "longitude": -77.4635831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.989897, + "longitude": -77.4641062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9888064, + "longitude": -77.4662653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9873411, + "longitude": -77.4687524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9899523, + "longitude": -77.4638569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9899221, + "longitude": -77.4639606 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9890378, + "longitude": -77.4658468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9874752, + "longitude": -77.4685358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9868425, + "longitude": -77.4695295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.987226, + "longitude": -77.4682849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9870947, + "longitude": -77.4684996 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9871616, + "longitude": -77.4683957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9891337, + "longitude": -77.4655974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9890795, + "longitude": -77.4656819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9892473, + "longitude": -77.4654472 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9775208, + "longitude": -77.4521736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9774391, + "longitude": -77.4507058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.977437, + "longitude": -77.4519333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9774424, + "longitude": -77.4512801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9774537, + "longitude": -77.4521193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9799085, + "longitude": -77.4524242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9796223, + "longitude": -77.4521714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9807201, + "longitude": -77.4530668 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9841004, + "longitude": -77.4549728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9799487, + "longitude": -77.4524928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9803051, + "longitude": -77.4527622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9818915, + "longitude": -77.4537378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9799085, + "longitude": -77.452451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9799704, + "longitude": -77.4524878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9811552, + "longitude": -77.4533462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9788571, + "longitude": -77.4521934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9776194, + "longitude": -77.4522019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9782002, + "longitude": -77.4522293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9754852, + "longitude": -77.4496222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9727796, + "longitude": -77.4484423 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9774339, + "longitude": -77.4499829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9731692, + "longitude": -77.4494098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9731378, + "longitude": -77.4494098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.973372, + "longitude": -77.4496616 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9734523, + "longitude": -77.4496919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9714254, + "longitude": -77.4454535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9713998, + "longitude": -77.4465384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.972009, + "longitude": -77.4465766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9731804, + "longitude": -77.4484342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.973212, + "longitude": -77.4471748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9736003, + "longitude": -77.4496852 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9727946, + "longitude": -77.4467033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9732078, + "longitude": -77.4473432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9759705, + "longitude": -77.4497065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9720513, + "longitude": -77.4467027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9713305, + "longitude": -77.4457993 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9714671, + "longitude": -77.445659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.971145, + "longitude": -77.4453566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.973057, + "longitude": -77.4491915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9749474, + "longitude": -77.4496704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9745845, + "longitude": -77.4496382 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9744261, + "longitude": -77.4496852 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9746565, + "longitude": -77.4496315 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9753821, + "longitude": -77.4496181 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9756897, + "longitude": -77.449649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9766113, + "longitude": -77.4498394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9732959, + "longitude": -77.4494518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9733042, + "longitude": -77.4495457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9881349, + "longitude": -77.4600197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9886821, + "longitude": -77.4602674 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9872229, + "longitude": -77.4575967 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9870757, + "longitude": -77.4573758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.990046, + "longitude": -77.4611493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.987561, + "longitude": -77.4589772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9901347, + "longitude": -77.4629114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9881349, + "longitude": -77.4599528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9883642, + "longitude": -77.4600817 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9871493, + "longitude": -77.4574109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9870506, + "longitude": -77.4573172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9898836, + "longitude": -77.460915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9874488, + "longitude": -77.4584852 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9901748, + "longitude": -77.4615693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9878722, + "longitude": -77.4596432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9882136, + "longitude": -77.4600783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9870506, + "longitude": -77.4572218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9892645, + "longitude": -77.4605803 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9873719, + "longitude": -77.4581087 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9901547, + "longitude": -77.461417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9877149, + "longitude": -77.4593738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9901614, + "longitude": -77.463236 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9859913, + "longitude": -77.456027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9869033, + "longitude": -77.4569357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9857219, + "longitude": -77.4559433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9858089, + "longitude": -77.4559266 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.986664, + "longitude": -77.4566144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9857236, + "longitude": -77.4558881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9857838, + "longitude": -77.4559802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9863678, + "longitude": -77.4563015 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.9853722, + "longitude": -77.4556974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8532972, + "longitude": -77.3736914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8532053, + "longitude": -77.3733669 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8534077, + "longitude": -77.373155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8540812, + "longitude": -77.3738626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8539851, + "longitude": -77.3737339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8536885, + "longitude": -77.3732028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8536676, + "longitude": -77.3730097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8536258, + "longitude": -77.3728488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8534462, + "longitude": -77.3729239 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8535005, + "longitude": -77.3731706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.853037, + "longitude": -77.3740418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8531481, + "longitude": -77.3743621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1413392, + "longitude": -78.1467775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.140935, + "longitude": -78.1461355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1461796, + "longitude": -78.1499078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1457095, + "longitude": -78.1492729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1451478, + "longitude": -78.1496148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1433148, + "longitude": -78.1494561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1415445, + "longitude": -78.147144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1430719, + "longitude": -78.1495863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1430907, + "longitude": -78.1495944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1447855, + "longitude": -78.1490994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1450247, + "longitude": -78.1495017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1443133, + "longitude": -78.1488848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1440616, + "longitude": -78.148925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1431172, + "longitude": -78.1495902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1427843, + "longitude": -78.1491611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1441157, + "longitude": -78.1489089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1439846, + "longitude": -78.1489572 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1446342, + "longitude": -78.1489775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1445754, + "longitude": -78.1489465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1445094, + "longitude": -78.1489158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1443757, + "longitude": -78.1488875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1449623, + "longitude": -78.1493595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1430464, + "longitude": -78.1495661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1439061, + "longitude": -78.1490016 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1447106, + "longitude": -78.1490323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1450962, + "longitude": -78.1496512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1448375, + "longitude": -78.1491503 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1424036, + "longitude": -78.1485415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1431484, + "longitude": -78.1495768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1449249, + "longitude": -78.1492791 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1444407, + "longitude": -78.1488997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1441802, + "longitude": -78.1488955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.144888, + "longitude": -78.1492162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1489668, + "longitude": -78.1538761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1512106, + "longitude": -78.1517011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1488113, + "longitude": -78.1539731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1496479, + "longitude": -78.1563138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1485333, + "longitude": -78.1533517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1479566, + "longitude": -78.1536534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1537116, + "longitude": -78.1539905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1526253, + "longitude": -78.1518245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1519744, + "longitude": -78.1576665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1509889, + "longitude": -78.1553826 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1540916, + "longitude": -78.1537813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1540585, + "longitude": -78.1549896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1530851, + "longitude": -78.1554617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1526404, + "longitude": -78.1517869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1493332, + "longitude": -78.1486517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1522031, + "longitude": -78.1513605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1521766, + "longitude": -78.1513003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1505383, + "longitude": -78.1507949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1499068, + "longitude": -78.1479443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1528583, + "longitude": -78.1512425 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1520539, + "longitude": -78.1508738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1491256, + "longitude": -78.1488998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1498303, + "longitude": -78.1498438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1493494, + "longitude": -78.1492014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1503102, + "longitude": -78.1474468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1488077, + "longitude": -78.1452653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1495489, + "longitude": -78.1483856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1488275, + "longitude": -78.1453022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1497283, + "longitude": -78.1465189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1501497, + "longitude": -78.1471545 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1488325, + "longitude": -78.1453659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1490677, + "longitude": -78.1456941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1498152, + "longitude": -78.1466381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1499813, + "longitude": -78.1468819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1498961, + "longitude": -78.1467528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1500575, + "longitude": -78.1470052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1501772, + "longitude": -78.1472091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1494297, + "longitude": -78.1461245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1496281, + "longitude": -78.1463866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1492465, + "longitude": -78.1459179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1344691, + "longitude": -78.1359834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1344233, + "longitude": -78.1328774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1346964, + "longitude": -78.1334394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1345148, + "longitude": -78.1354872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1348248, + "longitude": -78.1367317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1340301, + "longitude": -78.1321666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1347687, + "longitude": -78.1366271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1342199, + "longitude": -78.1324926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1398386, + "longitude": -78.1443653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1381353, + "longitude": -78.1417704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.140184, + "longitude": -78.144942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.137648, + "longitude": -78.1410742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1365599, + "longitude": -78.1395507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.138322, + "longitude": -78.1345779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1381936, + "longitude": -78.1345177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1380828, + "longitude": -78.1343499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1351816, + "longitude": -78.1346719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1381645, + "longitude": -78.1344882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1392983, + "longitude": -78.1352043 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1375897, + "longitude": -78.1332931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1348935, + "longitude": -78.1368363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1350724, + "longitude": -78.1347388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1372652, + "longitude": -78.1327164 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1358499, + "longitude": -78.1385487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1350974, + "longitude": -78.1372547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1385375, + "longitude": -78.1347116 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.13827, + "longitude": -78.1345538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1404607, + "longitude": -78.1359646 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.135594, + "longitude": -78.1381717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1381286, + "longitude": -78.1344384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1379497, + "longitude": -78.1339529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1351166, + "longitude": -78.1343058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1350183, + "longitude": -78.1347871 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.135397, + "longitude": -78.1378314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1352553, + "longitude": -78.1346284 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1338678, + "longitude": -78.1319225 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1337014, + "longitude": -78.1316865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1333378, + "longitude": -78.1311649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1328983, + "longitude": -78.1306431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1331667, + "longitude": -78.1309542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1345878, + "longitude": -78.1290419 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1337991, + "longitude": -78.1283766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1327261, + "longitude": -78.1304488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.132838, + "longitude": -78.1305751 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1349872, + "longitude": -78.1285675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1367264, + "longitude": -78.1317267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1451643, + "longitude": -78.1404332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1442269, + "longitude": -78.1415795 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1475075, + "longitude": -78.1435304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.144962, + "longitude": -78.1401385 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1465349, + "longitude": -78.1446953 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1434207, + "longitude": -78.1380455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1432524, + "longitude": -78.1377939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.1417109, + "longitude": -78.136788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2321256, + "longitude": -77.7531563 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2317485, + "longitude": -77.752883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.232221, + "longitude": -77.750551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2330837, + "longitude": -77.7513787 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2296284, + "longitude": -77.7514934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2305201, + "longitude": -77.7500848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2311993, + "longitude": -77.7497105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2312154, + "longitude": -77.7494849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2301308, + "longitude": -77.7505178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2312655, + "longitude": -77.7487856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2337129, + "longitude": -77.7490636 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2336922, + "longitude": -77.7492508 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2346737, + "longitude": -77.749502 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.235477, + "longitude": -77.7494967 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2360029, + "longitude": -77.7493042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2371972, + "longitude": -77.7493103 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2368918, + "longitude": -77.7501775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.236347, + "longitude": -77.7497773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2337635, + "longitude": -77.7502867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2351248, + "longitude": -77.7500684 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2566292, + "longitude": -77.654139 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2566117, + "longitude": -77.6577074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2570462, + "longitude": -77.6578129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2578667, + "longitude": -77.6548461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2584926, + "longitude": -77.6548514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2576566, + "longitude": -77.653968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2570269, + "longitude": -77.6539313 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2569359, + "longitude": -77.6541448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.256614, + "longitude": -77.6572532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2566246, + "longitude": -77.6550863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2577074, + "longitude": -77.6554223 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2570925, + "longitude": -77.6576454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2591124, + "longitude": -77.653123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2584785, + "longitude": -77.6529896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2588905, + "longitude": -77.6503862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2590041, + "longitude": -77.6531002 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2592017, + "longitude": -77.6504666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2584034, + "longitude": -77.6518688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2586785, + "longitude": -77.6530317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.260523, + "longitude": -77.6543734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2606472, + "longitude": -77.6538054 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2633004, + "longitude": -77.6544969 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2657009, + "longitude": -77.6546036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2614605, + "longitude": -77.6544151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.261865, + "longitude": -77.6544331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2653256, + "longitude": -77.6545869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2650802, + "longitude": -77.654576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.263375, + "longitude": -77.6545002 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2609111, + "longitude": -77.6527644 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2614691, + "longitude": -77.6527805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2637711, + "longitude": -77.6529751 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2637769, + "longitude": -77.6510726 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2615246, + "longitude": -77.6509745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2608626, + "longitude": -77.6529557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2594095, + "longitude": -77.6506455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2637715, + "longitude": -77.6528327 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2637758, + "longitude": -77.6514328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2637377, + "longitude": -77.6510709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2618542, + "longitude": -77.6509889 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.269836, + "longitude": -77.6538718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2674283, + "longitude": -77.653625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2674402, + "longitude": -77.6546809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2660274, + "longitude": -77.6546181 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2659936, + "longitude": -77.6546166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2690438, + "longitude": -77.6537906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2674548, + "longitude": -77.6531573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2674561, + "longitude": -77.6526105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.2698005, + "longitude": -77.6526241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0679413, + "longitude": -77.5549546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0692754, + "longitude": -77.5522447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.068004, + "longitude": -77.5520187 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0654956, + "longitude": -77.5538922 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0686552, + "longitude": -77.5522448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0687223, + "longitude": -77.5522569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0687358, + "longitude": -77.55216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.066221, + "longitude": -77.5521395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0664246, + "longitude": -77.5521047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0669139, + "longitude": -77.5520564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0677318, + "longitude": -77.5520175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0671258, + "longitude": -77.5520504 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0689787, + "longitude": -77.5522046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0686708, + "longitude": -77.5521412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0659591, + "longitude": -77.5521469 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0658404, + "longitude": -77.552796 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0658113, + "longitude": -77.552914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0657592, + "longitude": -77.5530414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0656696, + "longitude": -77.5532117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0686884, + "longitude": -77.5522534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0714739, + "longitude": -77.5524573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0738748, + "longitude": -77.5528569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.075097, + "longitude": -77.5532532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0751179, + "longitude": -77.553156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0752086, + "longitude": -77.5531735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.074417, + "longitude": -77.5529519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0743616, + "longitude": -77.5531226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0742564, + "longitude": -77.5530532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0741138, + "longitude": -77.5533465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0739714, + "longitude": -77.5532825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0739949, + "longitude": -77.5531983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0730586, + "longitude": -77.5527176 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0738655, + "longitude": -77.5531366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0744001, + "longitude": -77.552973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.070971, + "longitude": -77.552389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0703968, + "longitude": -77.552332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.077829, + "longitude": -77.5555202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0794827, + "longitude": -77.5599683 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0778936, + "longitude": -77.5555118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.079809, + "longitude": -77.5560782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0798995, + "longitude": -77.5554233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0799536, + "longitude": -77.5560871 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.077562, + "longitude": -77.5554554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0786238, + "longitude": -77.5557036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0783465, + "longitude": -77.5555654 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0774259, + "longitude": -77.5553982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0779419, + "longitude": -77.5592923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0822816, + "longitude": -77.5611886 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0776882, + "longitude": -77.5555102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0776987, + "longitude": -77.555468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0778438, + "longitude": -77.5554578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0778999, + "longitude": -77.5554857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0778915, + "longitude": -77.5555305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0783116, + "longitude": -77.5557145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0784458, + "longitude": -77.5556131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0798138, + "longitude": -77.555381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.07973, + "longitude": -77.5560435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0869945, + "longitude": -77.5637954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0875822, + "longitude": -77.562439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0849642, + "longitude": -77.5623538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0851074, + "longitude": -77.5631252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0873705, + "longitude": -77.5631051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0861097, + "longitude": -77.5578887 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0837237, + "longitude": -77.5564606 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0859099, + "longitude": -77.5578981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0856495, + "longitude": -77.5578587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0868691, + "longitude": -77.557778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0835082, + "longitude": -77.5575985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0836639, + "longitude": -77.5574832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.086307, + "longitude": -77.5578378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0870424, + "longitude": -77.5586352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0851317, + "longitude": -77.5575616 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0854222, + "longitude": -77.5577707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0841798, + "longitude": -77.5566696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0848053, + "longitude": -77.5572708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0836386, + "longitude": -77.5576602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0838546, + "longitude": -77.5565169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0840185, + "longitude": -77.5565913 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0843163, + "longitude": -77.5567717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0844531, + "longitude": -77.5569119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.08497, + "longitude": -77.5574047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0849403, + "longitude": -77.5574047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0852625, + "longitude": -77.5576716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0855233, + "longitude": -77.5578178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0880465, + "longitude": -77.5605416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0879825, + "longitude": -77.5603732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0873101, + "longitude": -77.5600728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0857846, + "longitude": -77.5578855 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0860052, + "longitude": -77.5578956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0861838, + "longitude": -77.5578734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0867927, + "longitude": -77.5576937 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0874603, + "longitude": -77.5601399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0831006, + "longitude": -77.5615443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0829985, + "longitude": -77.5615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0767403, + "longitude": -77.5535115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.079369, + "longitude": -77.5548579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0769478, + "longitude": -77.5539016 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0791365, + "longitude": -77.5552186 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0792595, + "longitude": -77.5552697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0778365, + "longitude": -77.553864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0766428, + "longitude": -77.5538801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0777262, + "longitude": -77.5542695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0787867, + "longitude": -77.5550711 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0770405, + "longitude": -77.5535619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0762923, + "longitude": -77.5533122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.079891, + "longitude": -77.5550881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0769397, + "longitude": -77.5539292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0787576, + "longitude": -77.5551904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0777098, + "longitude": -77.5543403 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0768418, + "longitude": -77.5539661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0768646, + "longitude": -77.5538942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0778504, + "longitude": -77.5538179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0772621, + "longitude": -77.553547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0770456, + "longitude": -77.553539 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0776817, + "longitude": -77.5544322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0776609, + "longitude": -77.5545093 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0762883, + "longitude": -77.5533271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 39.0762523, + "longitude": -77.5533237 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6896935, + "longitude": -76.9012638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6902106, + "longitude": -76.9002124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6948123, + "longitude": -76.9072094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6952773, + "longitude": -76.906906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6913052, + "longitude": -76.9024733 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6910078, + "longitude": -76.9030351 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.691649, + "longitude": -76.9035519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6917974, + "longitude": -76.903745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.691961, + "longitude": -76.9035038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6923306, + "longitude": -76.9037526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6921931, + "longitude": -76.903875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7008985, + "longitude": -76.9080734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7005136, + "longitude": -76.9110829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6969582, + "longitude": -76.9101602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7003773, + "longitude": -76.9120851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7004355, + "longitude": -76.9115774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6974833, + "longitude": -76.9115617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7005578, + "longitude": -76.9106713 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6994784, + "longitude": -76.9119039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.697668, + "longitude": -76.9111776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6977384, + "longitude": -76.9095822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6977692, + "longitude": -76.9113536 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6976615, + "longitude": -76.9115451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7018132, + "longitude": -76.9002762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7013107, + "longitude": -76.9041185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.701096, + "longitude": -76.9061228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7015899, + "longitude": -76.9017709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6920073, + "longitude": -76.8963091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6944689, + "longitude": -76.8975437 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6927573, + "longitude": -76.8968262 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6946906, + "longitude": -76.8975885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6930556, + "longitude": -76.8988312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6913379, + "longitude": -76.8978859 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.695864, + "longitude": -76.8979451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6935722, + "longitude": -76.8973799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6932454, + "longitude": -76.8989144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6911582, + "longitude": -76.8981387 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6938163, + "longitude": -76.8973546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7023268, + "longitude": -76.8980799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.697796, + "longitude": -76.8984936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6993549, + "longitude": -76.8935029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7025466, + "longitude": -76.8958526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7018595, + "longitude": -76.8991615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6987416, + "longitude": -76.8985186 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6992383, + "longitude": -76.8943853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7027325, + "longitude": -76.8939697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7032687, + "longitude": -76.8970418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6987988, + "longitude": -76.8970345 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7018927, + "longitude": -76.8985431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6993168, + "longitude": -76.8937993 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.702788, + "longitude": -76.8935344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6991799, + "longitude": -76.894924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.700836, + "longitude": -76.8925656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6996721, + "longitude": -76.8929411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7022623, + "longitude": -76.8927171 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7002549, + "longitude": -76.8916141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7028099, + "longitude": -76.8933326 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6994105, + "longitude": -76.893045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7005731, + "longitude": -76.8928123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7007824, + "longitude": -76.8931707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7028371, + "longitude": -76.8898921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7020462, + "longitude": -76.8895273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7023142, + "longitude": -76.8932493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7020201, + "longitude": -76.889741 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7022162, + "longitude": -76.8932328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6693892, + "longitude": -76.5987333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.674178, + "longitude": -76.6052082 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6749826, + "longitude": -76.6062971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6756624, + "longitude": -76.6069838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6763895, + "longitude": -76.6076812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6769273, + "longitude": -76.6081961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6709468, + "longitude": -76.6008362 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.672556, + "longitude": -76.6030302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6731583, + "longitude": -76.6038402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6817049, + "longitude": -76.6113612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6829009, + "longitude": -76.6106209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6835031, + "longitude": -76.6103526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6772629, + "longitude": -76.6085234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6773747, + "longitude": -76.6086736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.677422, + "longitude": -76.6088023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.677478, + "longitude": -76.6091135 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6775597, + "longitude": -76.6095587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.67762, + "longitude": -76.6097572 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6778136, + "longitude": -76.6096928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6778609, + "longitude": -76.6098538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6778566, + "longitude": -76.6099557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.678347, + "longitude": -76.6100147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.678717, + "longitude": -76.6101273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6796807, + "longitude": -76.6105672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6808853, + "longitude": -76.6111466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6815221, + "longitude": -76.6114738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6842345, + "longitude": -76.6099557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.685069, + "longitude": -76.6095158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6856455, + "longitude": -76.6091188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6863962, + "longitude": -76.6086629 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6873555, + "longitude": -76.6095587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6884438, + "longitude": -76.6088238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6895622, + "longitude": -76.6080674 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6898289, + "longitude": -76.6058626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6880825, + "longitude": -76.6039797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.68628, + "longitude": -76.6020593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6880179, + "longitude": -76.6018179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6888439, + "longitude": -76.600922 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6891493, + "longitude": -76.6003158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6894676, + "longitude": -76.5998116 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6910248, + "longitude": -76.6070803 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6905043, + "longitude": -76.5984812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6750708, + "longitude": -76.5966466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6719902, + "longitude": -76.5977838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6818253, + "longitude": -76.5940931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6799582, + "longitude": -76.5948012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6775404, + "longitude": -76.5957239 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6889127, + "longitude": -76.595858 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.687263, + "longitude": -76.5920224 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6839936, + "longitude": -76.5932562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6908656, + "longitude": -76.5979501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6911065, + "longitude": -76.597521 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6904441, + "longitude": -76.5949138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6915969, + "longitude": -76.5942057 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6918421, + "longitude": -76.5929827 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6938014, + "longitude": -76.5925696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6935949, + "longitude": -76.5921941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.694481, + "longitude": -76.5911534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.693724, + "longitude": -76.5895441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6907129, + "longitude": -76.5907457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.778311, + "longitude": -76.4691593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7783818, + "longitude": -76.4716698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7790016, + "longitude": -76.4719595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7797927, + "longitude": -76.4721902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7821782, + "longitude": -76.4748742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7845692, + "longitude": -76.473515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7780876, + "longitude": -76.4620997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7780976, + "longitude": -76.462415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7779673, + "longitude": -76.4590849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7778813, + "longitude": -76.4561452 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7777147, + "longitude": -76.4556823 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7780294, + "longitude": -76.4606406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7751658, + "longitude": -76.4509283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7750755, + "longitude": -76.4506681 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7752173, + "longitude": -76.4507687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7754043, + "longitude": -76.4510775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7770005, + "longitude": -76.4538117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7756673, + "longitude": -76.4487193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7761798, + "longitude": -76.4519543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7756084, + "longitude": -76.4512804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7759607, + "longitude": -76.4526067 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7776751, + "longitude": -76.4425732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7766954, + "longitude": -76.4454808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7774603, + "longitude": -76.4431526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7836988, + "longitude": -76.461177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7837805, + "longitude": -76.4644815 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7834926, + "longitude": -76.4544286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7836215, + "longitude": -76.4586987 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7869984, + "longitude": -76.4503731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7860103, + "longitude": -76.450534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7833551, + "longitude": -76.451049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7874366, + "longitude": -76.4434101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7873936, + "longitude": -76.4443328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7875655, + "longitude": -76.4456739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7905727, + "longitude": -76.4494075 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7890519, + "longitude": -76.4498474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7894644, + "longitude": -76.4453306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7893355, + "longitude": -76.4460494 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7897995, + "longitude": -76.4474978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7902462, + "longitude": -76.4475729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7789813, + "longitude": -76.4384426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7791274, + "longitude": -76.438507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7800383, + "longitude": -76.4356317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7804421, + "longitude": -76.4358248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7818514, + "longitude": -76.4368011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7839051, + "longitude": -76.4385499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7846183, + "longitude": -76.4391829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7857954, + "longitude": -76.4411785 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0121454, + "longitude": -76.5909033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0122568, + "longitude": -76.5915792 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0127623, + "longitude": -76.5914397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0127194, + "longitude": -76.5912037 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0154009, + "longitude": -76.5905063 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0150325, + "longitude": -76.5901523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0133448, + "longitude": -76.5905707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0123931, + "longitude": -76.5908346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0132391, + "longitude": -76.5906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0198468, + "longitude": -76.5893262 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0219712, + "longitude": -76.5887897 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0241298, + "longitude": -76.5882318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0231691, + "longitude": -76.5880412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0186236, + "longitude": -76.5892293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.018794, + "longitude": -76.5891848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0243995, + "longitude": -76.5877196 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0275132, + "longitude": -76.5873413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0289693, + "longitude": -76.5869658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0268315, + "longitude": -76.5870838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0266289, + "longitude": -76.5875741 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0246338, + "longitude": -76.5880992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0283608, + "longitude": -76.5871227 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0263976, + "longitude": -76.5871972 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0278815, + "longitude": -76.5850775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0276245, + "longitude": -76.5847557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0272905, + "longitude": -76.5845304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.026571, + "longitude": -76.5852599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0268056, + "longitude": -76.585022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1293131, + "longitude": -76.6052869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.127613, + "longitude": -76.6041577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1303845, + "longitude": -76.6064456 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1298434, + "longitude": -76.6058099 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1307694, + "longitude": -76.5994263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.132, + "longitude": -76.600353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1326875, + "longitude": -76.6005528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1333697, + "longitude": -76.600526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1349723, + "longitude": -76.6003878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.11932, + "longitude": -76.5006342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1199723, + "longitude": -76.5020558 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.120122, + "longitude": -76.5021952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1201348, + "longitude": -76.5024125 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1216704, + "longitude": -76.5040942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.121895, + "longitude": -76.5045717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.122111, + "longitude": -76.5066343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1216533, + "longitude": -76.5063017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1218458, + "longitude": -76.5059557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1219827, + "longitude": -76.5050813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1210331, + "longitude": -76.5032628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1204278, + "longitude": -76.5026968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1195852, + "longitude": -76.5013664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1192981, + "longitude": -76.4996253 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1201923, + "longitude": -76.4994651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1205363, + "longitude": -76.4993603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1208629, + "longitude": -76.4991444 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1210542, + "longitude": -76.4989533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1217908, + "longitude": -76.4965663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.122777, + "longitude": -76.4945972 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1190462, + "longitude": -76.4997732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1212163, + "longitude": -76.4987582 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1213589, + "longitude": -76.498498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1219716, + "longitude": -76.4972743 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1227267, + "longitude": -76.495802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1218646, + "longitude": -76.4966644 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1219489, + "longitude": -76.4967579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1219975, + "longitude": -76.4967905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1220494, + "longitude": -76.4967661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1227074, + "longitude": -76.4954285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1228533, + "longitude": -76.4955586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1228495, + "longitude": -76.4956973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1227807, + "longitude": -76.4957897 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1228249, + "longitude": -76.4957404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1235353, + "longitude": -76.5077662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1318485, + "longitude": -76.5071244 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1340321, + "longitude": -76.5087207 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1344855, + "longitude": -76.5077968 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1345794, + "longitude": -76.5077846 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1347156, + "longitude": -76.5076261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1348648, + "longitude": -76.5073278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1319376, + "longitude": -76.5071001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1260414, + "longitude": -76.5026833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1244873, + "longitude": -76.5058807 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.124955, + "longitude": -76.5049183 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1241217, + "longitude": -76.5066048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1296973, + "longitude": -76.5055633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.133098, + "longitude": -76.5033491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1336284, + "longitude": -76.502252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1349489, + "longitude": -76.5009566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1331401, + "longitude": -76.5049035 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1334366, + "longitude": -76.5041914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1332334, + "longitude": -76.5034694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1333689, + "longitude": -76.5037455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1343677, + "longitude": -76.5021104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1328151, + "longitude": -76.505558 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1308905, + "longitude": -76.5063465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.13048, + "longitude": -76.5060515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1304073, + "longitude": -76.5061105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.132753, + "longitude": -76.50568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1351505, + "longitude": -76.5011691 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1234131, + "longitude": -76.493327 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1258987, + "longitude": -76.4883679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1248979, + "longitude": -76.4903474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1254201, + "longitude": -76.4892853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1281642, + "longitude": -76.4838406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.127995, + "longitude": -76.4841813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1272656, + "longitude": -76.4856088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1274472, + "longitude": -76.4852658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1266042, + "longitude": -76.486956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1301513, + "longitude": -76.4849164 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1302642, + "longitude": -76.4846899 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1313227, + "longitude": -76.4825844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1304567, + "longitude": -76.4843117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.130054, + "longitude": -76.4851847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1301869, + "longitude": -76.4849449 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1348423, + "longitude": -76.4762207 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.13424, + "longitude": -76.4774133 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.134266, + "longitude": -76.4774316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1336871, + "longitude": -76.4785664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1329551, + "longitude": -76.4800268 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1326776, + "longitude": -76.480033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1326554, + "longitude": -76.4799344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1329241, + "longitude": -76.4800275 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0638258, + "longitude": -76.3670956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0663551, + "longitude": -76.3694299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0665035, + "longitude": -76.3698912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0667177, + "longitude": -76.3702699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0668825, + "longitude": -76.3705797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0672561, + "longitude": -76.3708895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0675308, + "longitude": -76.3708964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0678054, + "longitude": -76.3708689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0680362, + "longitude": -76.3708689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0681515, + "longitude": -76.3709584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0683548, + "longitude": -76.3711374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0685581, + "longitude": -76.3713714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0687558, + "longitude": -76.3715298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0689536, + "longitude": -76.3716156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0692372, + "longitude": -76.3716749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0696901, + "longitude": -76.3717637 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0699461, + "longitude": -76.3717835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0701194, + "longitude": -76.3718526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0702691, + "longitude": -76.3719957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.070407, + "longitude": -76.3721191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0647282, + "longitude": -76.3656562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0655297, + "longitude": -76.3647586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0640604, + "longitude": -76.3676044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0639883, + "longitude": -76.3670081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0639498, + "longitude": -76.3667692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0639498, + "longitude": -76.3664401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0640398, + "longitude": -76.3661291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0642518, + "longitude": -76.3659646 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0645011, + "longitude": -76.3658144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0651321, + "longitude": -76.3652726 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0653183, + "longitude": -76.3651817 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0654161, + "longitude": -76.3650077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0656843, + "longitude": -76.3645411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0657727, + "longitude": -76.3643315 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0658105, + "longitude": -76.36394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0658957, + "longitude": -76.3631808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0658799, + "longitude": -76.3627893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0658263, + "longitude": -76.3626984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0657222, + "longitude": -76.3626114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0656748, + "longitude": -76.3625758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0642115, + "longitude": -76.3680496 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0644818, + "longitude": -76.3681631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0648389, + "longitude": -76.368232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0652509, + "longitude": -76.3681562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0655695, + "longitude": -76.3679635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0658607, + "longitude": -76.3679497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0661903, + "longitude": -76.3681425 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0663332, + "longitude": -76.3684454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0663606, + "longitude": -76.3689273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0641572, + "longitude": -76.366012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0646193, + "longitude": -76.3657321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0657545, + "longitude": -76.3626384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0639346, + "longitude": -76.3666089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.064095, + "longitude": -76.3660551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0639854, + "longitude": -76.3663173 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0759693, + "longitude": -76.3825739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0755456, + "longitude": -76.3823272 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.075856, + "longitude": -76.3873883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0757662, + "longitude": -76.3866104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0755094, + "longitude": -76.3865568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0769688, + "longitude": -76.3835259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0765751, + "longitude": -76.3833113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0762327, + "longitude": -76.3831182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0758175, + "longitude": -76.3829251 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0751969, + "longitude": -76.3826139 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0750086, + "longitude": -76.3825227 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0746149, + "longitude": -76.3824155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0743409, + "longitude": -76.3823618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740798, + "longitude": -76.3823296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0738915, + "longitude": -76.3823243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0735962, + "longitude": -76.3823404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.073211, + "longitude": -76.382394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0728386, + "longitude": -76.3824798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0725861, + "longitude": -76.3825657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0718799, + "longitude": -76.38469 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0735363, + "longitude": -76.3855376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740156, + "longitude": -76.3857843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0738487, + "longitude": -76.3862778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0741141, + "longitude": -76.386412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0741098, + "longitude": -76.3869269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0743623, + "longitude": -76.3869323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0743623, + "longitude": -76.3865568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0747989, + "longitude": -76.3867714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0749701, + "longitude": -76.3862617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0723112, + "longitude": -76.3833926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0744413, + "longitude": -76.3819195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0732524, + "longitude": -76.3807331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0732537, + "longitude": -76.380608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0739068, + "longitude": -76.3785705 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0730728, + "longitude": -76.3807368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0739919, + "longitude": -76.376834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0750705, + "longitude": -76.3821072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0737675, + "longitude": -76.3811613 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0731586, + "longitude": -76.3819688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740329, + "longitude": -76.3761887 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740182, + "longitude": -76.3811822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740722, + "longitude": -76.381192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0733433, + "longitude": -76.381901 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736878, + "longitude": -76.3816306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0737414, + "longitude": -76.3814607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740098, + "longitude": -76.3811807 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740023, + "longitude": -76.3811793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0739194, + "longitude": -76.3811706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0738435, + "longitude": -76.381165 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0734838, + "longitude": -76.3818359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0735737, + "longitude": -76.3817794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736419, + "longitude": -76.3817073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.073722, + "longitude": -76.3815518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.077112, + "longitude": -76.3831909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0782333, + "longitude": -76.3838131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0789823, + "longitude": -76.3834591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0786816, + "longitude": -76.3826732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0792444, + "longitude": -76.3822934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.077831, + "longitude": -76.38362 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0788742, + "longitude": -76.382582 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0790732, + "longitude": -76.3824479 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0777478, + "longitude": -76.386471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0776493, + "longitude": -76.3857038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0776964, + "longitude": -76.386074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0776065, + "longitude": -76.3855429 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0772599, + "longitude": -76.3842072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801034, + "longitude": -76.3795779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0795719, + "longitude": -76.3819394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0798712, + "longitude": -76.3814369 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800406, + "longitude": -76.3809697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801261, + "longitude": -76.3802324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801255, + "longitude": -76.3796865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801025, + "longitude": -76.3806079 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0799698, + "longitude": -76.3812141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0797238, + "longitude": -76.3816995 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.079422, + "longitude": -76.3821233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801415, + "longitude": -76.3794608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801068, + "longitude": -76.3795072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0805528, + "longitude": -76.3795443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0806147, + "longitude": -76.3790736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800326, + "longitude": -76.3783708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800155, + "longitude": -76.3775286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800027, + "longitude": -76.3770995 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800241, + "longitude": -76.376783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801268, + "longitude": -76.3763753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0802295, + "longitude": -76.3761339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0803964, + "longitude": -76.3758549 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800981, + "longitude": -76.3796837 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0731299, + "longitude": -76.3721064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0705803, + "longitude": -76.3721537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0707929, + "longitude": -76.3721241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0712931, + "longitude": -76.3720698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0715491, + "longitude": -76.3720254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0716752, + "longitude": -76.3719414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0717855, + "longitude": -76.3717094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0718445, + "longitude": -76.3714626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0719154, + "longitude": -76.371275 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0720139, + "longitude": -76.3711418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.072136, + "longitude": -76.3711121 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0723802, + "longitude": -76.3712059 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0725732, + "longitude": -76.3715416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0727662, + "longitude": -76.3717934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0732455, + "longitude": -76.37216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0733718, + "longitude": -76.3720179 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0734124, + "longitude": -76.3716692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0734788, + "longitude": -76.3716075 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0735708, + "longitude": -76.3716638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736842, + "longitude": -76.3719374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0742128, + "longitude": -76.3726562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0806403, + "longitude": -76.3756028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0809528, + "longitude": -76.3753882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.082793, + "longitude": -76.3749001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0834777, + "longitude": -76.3745567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0682319, + "longitude": -76.3574003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0702588, + "longitude": -76.3581041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0658137, + "longitude": -76.3622476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.065088, + "longitude": -76.3611088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0654634, + "longitude": -76.3595073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0663785, + "longitude": -76.3589457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0671811, + "longitude": -76.3579047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0686937, + "longitude": -76.3575118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0656559, + "longitude": -76.3624532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0657001, + "longitude": -76.3623939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0657695, + "longitude": -76.3623306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0657474, + "longitude": -76.3620617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0656054, + "longitude": -76.3617889 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0654982, + "longitude": -76.3616663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0652836, + "longitude": -76.3614014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0654319, + "longitude": -76.361524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0651921, + "longitude": -76.3612748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0651574, + "longitude": -76.3608715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.065353, + "longitude": -76.3597841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0652457, + "longitude": -76.3603891 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.065312, + "longitude": -76.3600648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.065312, + "longitude": -76.3602309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.065211, + "longitude": -76.3606856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0653972, + "longitude": -76.3596101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0656307, + "longitude": -76.359353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.066003, + "longitude": -76.3591909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0662081, + "longitude": -76.3590841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0665741, + "longitude": -76.3588192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0667697, + "longitude": -76.3586373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0669843, + "longitude": -76.3583091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0675612, + "longitude": -76.3576431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0677103, + "longitude": -76.3575497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0679525, + "longitude": -76.357461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0694609, + "longitude": -76.3577733 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0691172, + "longitude": -76.3576964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0700378, + "longitude": -76.3579041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0697739, + "longitude": -76.3578195 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0703775, + "longitude": -76.3579865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.070339, + "longitude": -76.3580884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0702748, + "longitude": -76.3581984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0701892, + "longitude": -76.358126 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0699131, + "longitude": -76.3578819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0694123, + "longitude": -76.3578899 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0693845, + "longitude": -76.3578819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0693438, + "longitude": -76.3577961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0709179, + "longitude": -76.3568627 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.07067, + "longitude": -76.357458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0707146, + "longitude": -76.3573347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0712624, + "longitude": -76.3564094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0715171, + "longitude": -76.3561841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0704695, + "longitude": -76.357839 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0707028, + "longitude": -76.3575198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0715995, + "longitude": -76.3587751 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0709489, + "longitude": -76.3576915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.070874, + "longitude": -76.3575144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0708055, + "longitude": -76.3574259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0708034, + "longitude": -76.3570799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0710581, + "longitude": -76.3566347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0710003, + "longitude": -76.356758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0715674, + "longitude": -76.3587992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0713192, + "longitude": -76.3583835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0716166, + "longitude": -76.3587295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.071469, + "longitude": -76.3584988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0711865, + "longitude": -76.3580804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0710688, + "longitude": -76.3578846 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0717782, + "longitude": -76.3560151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0714426, + "longitude": -76.3584596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0729927, + "longitude": -76.3566481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0730077, + "longitude": -76.3566266 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0729306, + "longitude": -76.3563986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0728493, + "longitude": -76.3562994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0719655, + "longitude": -76.3559158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0735594, + "longitude": -76.3520874 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0741885, + "longitude": -76.3528706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736749, + "longitude": -76.3548822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0725176, + "longitude": -76.355476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0726858, + "longitude": -76.3501274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0728275, + "longitude": -76.3508911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740601, + "longitude": -76.3541258 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0723271, + "longitude": -76.3557254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0724448, + "longitude": -76.3555537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0732217, + "longitude": -76.3551595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0735042, + "longitude": -76.3551836 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736411, + "longitude": -76.3549878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0738359, + "longitude": -76.3550897 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0737545, + "longitude": -76.355248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0737819, + "longitude": -76.3547589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0739103, + "longitude": -76.3545872 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0739771, + "longitude": -76.3544192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0741628, + "longitude": -76.3536645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0742142, + "longitude": -76.3531281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740216, + "longitude": -76.3525863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0738504, + "longitude": -76.3524092 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0731142, + "longitude": -76.3514758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0729216, + "longitude": -76.3512076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0726905, + "longitude": -76.3504459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0721816, + "longitude": -76.35583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.072845, + "longitude": -76.3552641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0725946, + "longitude": -76.3553687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0726524, + "longitude": -76.3557683 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0726289, + "longitude": -76.3558166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0725347, + "longitude": -76.3556288 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0724983, + "longitude": -76.3555618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736454, + "longitude": -76.3552533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0733544, + "longitude": -76.3551514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0727633, + "longitude": -76.3505049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0727419, + "longitude": -76.3506551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0728831, + "longitude": -76.3510413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0740901, + "longitude": -76.3527204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0736563, + "longitude": -76.3521945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.07273, + "longitude": -76.3491626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0750776, + "longitude": -76.3467159 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0767391, + "longitude": -76.3449564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.074388, + "longitude": -76.3474461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0746009, + "longitude": -76.3466904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0743527, + "longitude": -76.3472933 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0743559, + "longitude": -76.3471565 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0743864, + "longitude": -76.3469855 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0744421, + "longitude": -76.3468594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0746898, + "longitude": -76.3466495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.074976, + "longitude": -76.3466589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0748888, + "longitude": -76.3466368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0766518, + "longitude": -76.3448243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0768905, + "longitude": -76.3445688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0769081, + "longitude": -76.3442617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0768856, + "longitude": -76.3444273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0769675, + "longitude": -76.3440954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0747818, + "longitude": -76.3466328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0745239, + "longitude": -76.3467568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0771408, + "longitude": -76.343858 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0783718, + "longitude": -76.3429997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0776721, + "longitude": -76.3437427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0773693, + "longitude": -76.3437346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0772537, + "longitude": -76.3437755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0774768, + "longitude": -76.3437172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0775731, + "longitude": -76.3437253 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0770509, + "longitude": -76.3439506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0813532, + "longitude": -76.3410383 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0811392, + "longitude": -76.3406985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0802742, + "longitude": -76.340569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0788977, + "longitude": -76.3408332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0823995, + "longitude": -76.340003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0780067, + "longitude": -76.3423312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.078226, + "longitude": -76.3426164 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0782046, + "longitude": -76.3419778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0780356, + "longitude": -76.3421555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0780051, + "longitude": -76.3422152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0789335, + "longitude": -76.3408023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0790223, + "longitude": -76.3408298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0798653, + "longitude": -76.3407263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0793797, + "longitude": -76.3409264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0791818, + "longitude": -76.3409049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0792973, + "longitude": -76.3409391 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0795627, + "longitude": -76.3408707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0800612, + "longitude": -76.3408291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0802035, + "longitude": -76.3408238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0802217, + "longitude": -76.3406602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0804678, + "longitude": -76.3404644 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0805502, + "longitude": -76.340518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0806422, + "longitude": -76.3405408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.080716, + "longitude": -76.3404724 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0808792, + "longitude": -76.3404296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0810351, + "longitude": -76.3405047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0817394, + "longitude": -76.3405354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0815885, + "longitude": -76.3408613 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0814569, + "longitude": -76.3410182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.081256, + "longitude": -76.3409001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0821342, + "longitude": -76.3402243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0819887, + "longitude": -76.3403182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0822754, + "longitude": -76.3401505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0831492, + "longitude": -76.3400003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0829532, + "longitude": -76.3400065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0834798, + "longitude": -76.3400815 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0827066, + "longitude": -76.3400111 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0825044, + "longitude": -76.3400392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0783058, + "longitude": -76.34149 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0834461, + "longitude": -76.3401727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0834226, + "longitude": -76.3401834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0833702, + "longitude": -76.3401318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0832894, + "longitude": -76.3400473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0823482, + "longitude": -76.3400647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0818239, + "longitude": -76.3404053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0812868, + "longitude": -76.340982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0805802, + "longitude": -76.3406132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0803694, + "longitude": -76.3404885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0801565, + "longitude": -76.3408506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0780955, + "longitude": -76.3423815 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0780623, + "longitude": -76.3423768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.078072, + "longitude": -76.342124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0781388, + "longitude": -76.3419919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0780982, + "longitude": -76.3420509 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0894602, + "longitude": -76.3771477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0894132, + "longitude": -76.37777 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0893532, + "longitude": -76.3787276 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0879925, + "longitude": -76.3775608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0877507, + "longitude": -76.3773489 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0881743, + "longitude": -76.3765684 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0878277, + "longitude": -76.3762385 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0863492, + "longitude": -76.3761017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0858913, + "longitude": -76.3757208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0963323, + "longitude": -76.3827965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0953011, + "longitude": -76.3803288 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0898967, + "longitude": -76.3743851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0894987, + "longitude": -76.3744226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0895758, + "longitude": -76.3747016 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0895886, + "longitude": -76.3748786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0867557, + "longitude": -76.3753292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0841111, + "longitude": -76.3741812 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.08483, + "longitude": -76.3748142 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0852515, + "longitude": -76.3751924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0937539, + "longitude": -76.3740632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.091557, + "longitude": -76.374208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0928664, + "longitude": -76.3740686 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1012506, + "longitude": -76.3822439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0990257, + "longitude": -76.3825122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0970853, + "longitude": -76.3826865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1026197, + "longitude": -76.3777593 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1014559, + "longitude": -76.377829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1013361, + "longitude": -76.3802323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1012891, + "longitude": -76.3797334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1012334, + "longitude": -76.3779631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1058744, + "longitude": -76.3775635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1069288, + "longitude": -76.3775219 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042914, + "longitude": -76.3776493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063569, + "longitude": -76.3759516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063187, + "longitude": -76.3761516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062635, + "longitude": -76.3762672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106255, + "longitude": -76.3763201 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062666, + "longitude": -76.3763656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062961, + "longitude": -76.3764041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062858, + "longitude": -76.3764683 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063146, + "longitude": -76.3765097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063865, + "longitude": -76.3767062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063681, + "longitude": -76.3768185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1064501, + "longitude": -76.3768324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1064833, + "longitude": -76.3767773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065477, + "longitude": -76.3767693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066241, + "longitude": -76.3767907 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067254, + "longitude": -76.3768609 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106873, + "longitude": -76.3770408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1069449, + "longitude": -76.3772552 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1069538, + "longitude": -76.3774368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.109717, + "longitude": -76.3693138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1096777, + "longitude": -76.3694154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1095993, + "longitude": -76.369515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1095283, + "longitude": -76.3698424 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1095111, + "longitude": -76.3698747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1094022, + "longitude": -76.3699649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1093387, + "longitude": -76.3699919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1092873, + "longitude": -76.3699911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1091763, + "longitude": -76.3700537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1090243, + "longitude": -76.3700578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089404, + "longitude": -76.3701192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088677, + "longitude": -76.3701287 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1087743, + "longitude": -76.3702172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1086964, + "longitude": -76.3703511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108665, + "longitude": -76.370314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1085592, + "longitude": -76.3703295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1085037, + "longitude": -76.3703704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1084732, + "longitude": -76.3704388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108453, + "longitude": -76.3704198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1084161, + "longitude": -76.3704474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082998, + "longitude": -76.3704819 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.10822, + "longitude": -76.3704831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1081077, + "longitude": -76.3704308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080851, + "longitude": -76.3703936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080373, + "longitude": -76.3701443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080578, + "longitude": -76.3700203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080472, + "longitude": -76.3699759 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079439, + "longitude": -76.3699219 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1078258, + "longitude": -76.3699865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077712, + "longitude": -76.3699604 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077273, + "longitude": -76.3698742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077182, + "longitude": -76.3697582 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1076201, + "longitude": -76.3697289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1075788, + "longitude": -76.3696716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1075365, + "longitude": -76.3695454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1075522, + "longitude": -76.3696556 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1075998, + "longitude": -76.3697334 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1076246, + "longitude": -76.3697564 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1076927, + "longitude": -76.369763 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077025, + "longitude": -76.3697816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077094, + "longitude": -76.3699216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077524, + "longitude": -76.3699938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1078125, + "longitude": -76.3700308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1078499, + "longitude": -76.3700317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079785, + "longitude": -76.3699789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080208, + "longitude": -76.3700212 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079867, + "longitude": -76.3701348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080181, + "longitude": -76.3702559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080202, + "longitude": -76.3703771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079341, + "longitude": -76.3703917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079109, + "longitude": -76.3704619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077667, + "longitude": -76.3705601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077159, + "longitude": -76.3706722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.107713, + "longitude": -76.3707841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.107741, + "longitude": -76.3709129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077204, + "longitude": -76.3710132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077307, + "longitude": -76.3710825 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077635, + "longitude": -76.3709271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077318, + "longitude": -76.3707761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077459, + "longitude": -76.3706271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077642, + "longitude": -76.3705954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079391, + "longitude": -76.3704798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079789, + "longitude": -76.3704132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082111, + "longitude": -76.3705586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1083755, + "longitude": -76.370594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1084051, + "longitude": -76.3706422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1084275, + "longitude": -76.3707709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1085193, + "longitude": -76.3709657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1085577, + "longitude": -76.370975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088017, + "longitude": -76.3709463 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089032, + "longitude": -76.3708786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089316, + "longitude": -76.3709189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089322, + "longitude": -76.3709915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088349, + "longitude": -76.3714655 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088791, + "longitude": -76.3718514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089296, + "longitude": -76.3720395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089198, + "longitude": -76.3721361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088797, + "longitude": -76.3722037 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088412, + "longitude": -76.3722356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108594, + "longitude": -76.3723781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1084751, + "longitude": -76.3724744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1083849, + "longitude": -76.3724841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1083515, + "longitude": -76.3725172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080646, + "longitude": -76.3726108 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079219, + "longitude": -76.3726916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1078166, + "longitude": -76.3726594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1076217, + "longitude": -76.3727162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1075451, + "longitude": -76.3727598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1074704, + "longitude": -76.3727541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1072894, + "longitude": -76.372849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1072207, + "longitude": -76.3729177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1071129, + "longitude": -76.3729512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106993, + "longitude": -76.3730313 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1069428, + "longitude": -76.3730341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106894, + "longitude": -76.3729399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1068262, + "longitude": -76.3728766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067537, + "longitude": -76.3728646 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067017, + "longitude": -76.3728956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066638, + "longitude": -76.3726771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066796, + "longitude": -76.3726475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067557, + "longitude": -76.3725998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067108, + "longitude": -76.3725934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067275, + "longitude": -76.3725555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106639, + "longitude": -76.3726228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106592, + "longitude": -76.3726118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065156, + "longitude": -76.3725525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063858, + "longitude": -76.3723377 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063888, + "longitude": -76.3723057 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1064708, + "longitude": -76.3722414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065287, + "longitude": -76.3720801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065792, + "longitude": -76.3720547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066049, + "longitude": -76.3720172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066077, + "longitude": -76.3719086 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065616, + "longitude": -76.3717687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065179, + "longitude": -76.371701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063514, + "longitude": -76.371558 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062751, + "longitude": -76.3714153 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062757, + "longitude": -76.3713478 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063455, + "longitude": -76.3711544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063088, + "longitude": -76.3709238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062338, + "longitude": -76.3708234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062017, + "longitude": -76.3707321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1061897, + "longitude": -76.3706245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1061391, + "longitude": -76.3705328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1060748, + "longitude": -76.3705276 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1059245, + "longitude": -76.3704514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1059315, + "longitude": -76.3704715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1061427, + "longitude": -76.3706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1061881, + "longitude": -76.370826 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062754, + "longitude": -76.3709512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062705, + "longitude": -76.37104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063054, + "longitude": -76.3711917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062407, + "longitude": -76.3713279 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062447, + "longitude": -76.3714345 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062669, + "longitude": -76.3714971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106341, + "longitude": -76.3715991 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065029, + "longitude": -76.3717712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065648, + "longitude": -76.3718979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065687, + "longitude": -76.3719414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065481, + "longitude": -76.3720028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1064724, + "longitude": -76.3720652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1064387, + "longitude": -76.3721795 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063342, + "longitude": -76.3722538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063203, + "longitude": -76.3723167 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063277, + "longitude": -76.3723633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106472, + "longitude": -76.3725868 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065968, + "longitude": -76.3727208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066166, + "longitude": -76.3727883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066256, + "longitude": -76.3729071 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106654, + "longitude": -76.3729587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067236, + "longitude": -76.3730187 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1067311, + "longitude": -76.3730855 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065882, + "longitude": -76.3732679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065995, + "longitude": -76.3733361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065804, + "longitude": -76.3734361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065592, + "longitude": -76.3734542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065667, + "longitude": -76.3735355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065455, + "longitude": -76.3736131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.10655, + "longitude": -76.3736758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065113, + "longitude": -76.3737402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065153, + "longitude": -76.3738001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.10655, + "longitude": -76.3738187 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106617, + "longitude": -76.3740591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1066087, + "longitude": -76.3742088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065563, + "longitude": -76.3743985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065062, + "longitude": -76.3744578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065102, + "longitude": -76.3745247 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1064906, + "longitude": -76.3745792 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065122, + "longitude": -76.3747696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065622, + "longitude": -76.3749456 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065673, + "longitude": -76.3750441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065491, + "longitude": -76.37515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065468, + "longitude": -76.3753012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104139, + "longitude": -76.364767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041573, + "longitude": -76.364767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042677, + "longitude": -76.3648205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104391, + "longitude": -76.3649291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1046486, + "longitude": -76.3650743 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1048502, + "longitude": -76.3651152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1049704, + "longitude": -76.3650998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1050984, + "longitude": -76.3650376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.105173, + "longitude": -76.3649638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1052542, + "longitude": -76.3648271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1053243, + "longitude": -76.3647651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1056236, + "longitude": -76.3647115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1057095, + "longitude": -76.3646751 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1057587, + "longitude": -76.3646316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1059761, + "longitude": -76.3646954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1061185, + "longitude": -76.3647951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1062552, + "longitude": -76.3648554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1063771, + "longitude": -76.3648396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065024, + "longitude": -76.364869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1065935, + "longitude": -76.3648332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.106678, + "longitude": -76.3647541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1068029, + "longitude": -76.364783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1070787, + "longitude": -76.364707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1071478, + "longitude": -76.3647075 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1071722, + "longitude": -76.3647246 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1072406, + "longitude": -76.3648426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1073035, + "longitude": -76.3648969 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1073477, + "longitude": -76.3651348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.107395, + "longitude": -76.365245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1074437, + "longitude": -76.3652964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1075843, + "longitude": -76.3655363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1077158, + "longitude": -76.3656418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1079971, + "longitude": -76.365657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1081626, + "longitude": -76.3656034 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082295, + "longitude": -76.3656077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082596, + "longitude": -76.3655769 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082705, + "longitude": -76.3655216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082529, + "longitude": -76.3652431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1082284, + "longitude": -76.3651468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108179, + "longitude": -76.3650749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1081377, + "longitude": -76.3650645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108113, + "longitude": -76.3650738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080899, + "longitude": -76.3651856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080765, + "longitude": -76.3651865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108043, + "longitude": -76.3651278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1080794, + "longitude": -76.3650615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1081522, + "longitude": -76.3649963 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.108247, + "longitude": -76.364974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1083972, + "longitude": -76.3648443 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1087686, + "longitude": -76.3647481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1088562, + "longitude": -76.3647846 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1089043, + "longitude": -76.3648406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1090081, + "longitude": -76.3650039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1092516, + "longitude": -76.365324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1093272, + "longitude": -76.3654747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1093669, + "longitude": -76.3656421 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1093759, + "longitude": -76.3658888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1093623, + "longitude": -76.3662272 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1094072, + "longitude": -76.3665672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1094213, + "longitude": -76.366617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1096295, + "longitude": -76.3669658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1097215, + "longitude": -76.3670374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0960337, + "longitude": -76.3516864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0955524, + "longitude": -76.3507851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0963055, + "longitude": -76.35185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0954133, + "longitude": -76.3504633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0954304, + "longitude": -76.3494467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0953962, + "longitude": -76.349723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0953235, + "longitude": -76.3497122 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0952785, + "longitude": -76.3497659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0951117, + "longitude": -76.3497257 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0950988, + "longitude": -76.34979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0951117, + "longitude": -76.3498464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0953513, + "longitude": -76.3499644 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0959332, + "longitude": -76.3515174 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0958241, + "longitude": -76.351402 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0957963, + "longitude": -76.3514235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0957578, + "longitude": -76.3514047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0957856, + "longitude": -76.3512062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0957535, + "longitude": -76.3513189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0956914, + "longitude": -76.3510024 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0961172, + "longitude": -76.3516971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0959952, + "longitude": -76.3518151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0962391, + "longitude": -76.3518205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0963375, + "longitude": -76.3519599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0964894, + "longitude": -76.3520645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0966092, + "longitude": -76.3521316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0960147, + "longitude": -76.35175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0885076, + "longitude": -76.3385171 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0870772, + "longitude": -76.3382676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0861426, + "longitude": -76.3390036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0899422, + "longitude": -76.3373731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0843901, + "longitude": -76.3401298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0835633, + "longitude": -76.3400345 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0842322, + "longitude": -76.3401767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0839906, + "longitude": -76.3402751 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0838939, + "longitude": -76.3401922 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0857007, + "longitude": -76.3395833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0849957, + "longitude": -76.3399783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0858831, + "longitude": -76.33944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0861212, + "longitude": -76.3390553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0860089, + "longitude": -76.3393583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0861945, + "longitude": -76.3389477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0864029, + "longitude": -76.3387011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0867894, + "longitude": -76.3383682 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.087181, + "longitude": -76.3382918 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0873864, + "longitude": -76.3384165 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0877619, + "longitude": -76.3385801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0882337, + "longitude": -76.3385318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0879502, + "longitude": -76.3386042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.088836, + "longitude": -76.3384447 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0891858, + "longitude": -76.3381027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0899903, + "longitude": -76.3369198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0899796, + "longitude": -76.3371988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0894522, + "longitude": -76.3378774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0897196, + "longitude": -76.337695 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0893099, + "longitude": -76.3379726 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0900513, + "longitude": -76.3367119 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0900213, + "longitude": -76.3367535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0898812, + "longitude": -76.3374831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0890253, + "longitude": -76.3382126 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0887226, + "longitude": -76.3384742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0880946, + "longitude": -76.3385479 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0878047, + "longitude": -76.3386069 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0876421, + "longitude": -76.3385278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0866022, + "longitude": -76.3384809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0860571, + "longitude": -76.3392986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0851521, + "longitude": -76.339921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0852856, + "longitude": -76.339847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0853426, + "longitude": -76.3398241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0854176, + "longitude": -76.3398141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0854631, + "longitude": -76.3398003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0855113, + "longitude": -76.3397614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0839404, + "longitude": -76.3402505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0838233, + "longitude": -76.3401452 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0837601, + "longitude": -76.3400929 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0836334, + "longitude": -76.3400412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0859609, + "longitude": -76.3393949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0860874, + "longitude": -76.3392601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0861078, + "longitude": -76.3391352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0861004, + "longitude": -76.3392012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.086255, + "longitude": -76.338908 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0863508, + "longitude": -76.3387997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0863152, + "longitude": -76.3388658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.084706, + "longitude": -76.3400698 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0844884, + "longitude": -76.3401196 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0856076, + "longitude": -76.3396708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0845406, + "longitude": -76.3401077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0953983, + "longitude": -76.3490524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0925957, + "longitude": -76.3461342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.092279, + "longitude": -76.346102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918832, + "longitude": -76.3456031 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916906, + "longitude": -76.3445731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918575, + "longitude": -76.3433635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0930556, + "longitude": -76.3467109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0932394, + "longitude": -76.3469353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0940419, + "longitude": -76.3477194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0945083, + "longitude": -76.3480681 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917848, + "longitude": -76.3429745 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918212, + "longitude": -76.3431462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.091849, + "longitude": -76.3434654 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917655, + "longitude": -76.3438033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917399, + "longitude": -76.3439804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917655, + "longitude": -76.3441949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917548, + "longitude": -76.3443693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916714, + "longitude": -76.3448789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916842, + "longitude": -76.3449513 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916543, + "longitude": -76.3449808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0915494, + "longitude": -76.344946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0914253, + "longitude": -76.3448306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0913761, + "longitude": -76.344903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0913868, + "longitude": -76.3449567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0915152, + "longitude": -76.3449781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0915986, + "longitude": -76.345005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916714, + "longitude": -76.3450532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917249, + "longitude": -76.345131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917356, + "longitude": -76.345182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916457, + "longitude": -76.3451203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0915366, + "longitude": -76.3451203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0915259, + "longitude": -76.3451632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916115, + "longitude": -76.3451927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916778, + "longitude": -76.3452517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917976, + "longitude": -76.3454851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918811, + "longitude": -76.3457614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918768, + "longitude": -76.3458069 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920265, + "longitude": -76.3460242 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920972, + "longitude": -76.3460913 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.092172, + "longitude": -76.3461154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0924138, + "longitude": -76.3462146 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0923389, + "longitude": -76.34622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0923047, + "longitude": -76.346153 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0925144, + "longitude": -76.3461395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0929144, + "longitude": -76.3464587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0927219, + "longitude": -76.3463166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0930685, + "longitude": -76.3468235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0930257, + "longitude": -76.3469308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0929209, + "longitude": -76.3470005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0928759, + "longitude": -76.3470461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0929337, + "longitude": -76.3470971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0929915, + "longitude": -76.3471185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0930171, + "longitude": -76.3470649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0930642, + "longitude": -76.3470381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0932011, + "longitude": -76.3470676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0932439, + "longitude": -76.3470274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0935028, + "longitude": -76.3473036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0933659, + "longitude": -76.347132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0943201, + "longitude": -76.3479232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0944078, + "longitude": -76.348009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0952486, + "longitude": -76.3489961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0950796, + "longitude": -76.3488834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0949255, + "longitude": -76.3487037 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0948678, + "longitude": -76.3485321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0947266, + "longitude": -76.3482799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0954668, + "longitude": -76.3491543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920325, + "longitude": -76.3380826 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0906011, + "longitude": -76.3366932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0901219, + "longitude": -76.3366771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919067, + "longitude": -76.3417085 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0924002, + "longitude": -76.3406662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919424, + "longitude": -76.3394243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918431, + "longitude": -76.3382033 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919416, + "longitude": -76.3378036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917212, + "longitude": -76.337876 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0911264, + "longitude": -76.3370687 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918367, + "longitude": -76.3386431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918545, + "longitude": -76.3389006 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918587, + "longitude": -76.3389842 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918549, + "longitude": -76.3390299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918457, + "longitude": -76.3390649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918834, + "longitude": -76.3391958 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918977, + "longitude": -76.3392301 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919174, + "longitude": -76.339308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920071, + "longitude": -76.3397053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920878, + "longitude": -76.3398354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0921766, + "longitude": -76.3400191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0922226, + "longitude": -76.3400848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0922686, + "longitude": -76.3402739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0924286, + "longitude": -76.340866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.092358, + "longitude": -76.341094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0923082, + "longitude": -76.3412114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.092197, + "longitude": -76.3413367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920822, + "longitude": -76.3413625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919987, + "longitude": -76.3414645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919752, + "longitude": -76.3415878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919795, + "longitude": -76.3416415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917655, + "longitude": -76.3422128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918147, + "longitude": -76.3419499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917334, + "longitude": -76.3425776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0917313, + "longitude": -76.3427465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0923949, + "longitude": -76.3409981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0924291, + "longitude": -76.3407822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0923547, + "longitude": -76.3405093 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919611, + "longitude": -76.3395967 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918228, + "longitude": -76.3383172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0920164, + "longitude": -76.3381241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0919736, + "longitude": -76.337813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0916666, + "longitude": -76.3378412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0914495, + "longitude": -76.337471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.090921, + "longitude": -76.3369305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.090753, + "longitude": -76.3367669 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0905027, + "longitude": -76.3366757 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0903636, + "longitude": -76.3367455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0902738, + "longitude": -76.3367683 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.090201, + "longitude": -76.3367361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918647, + "longitude": -76.339172 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918514, + "longitude": -76.3391429 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918195, + "longitude": -76.3390983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918379, + "longitude": -76.3391191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0918471, + "longitude": -76.3391353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0968403, + "longitude": -76.3521101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0999185, + "longitude": -76.3521259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995059, + "longitude": -76.3532554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0993391, + "longitude": -76.3542705 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1016334, + "longitude": -76.3543417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1031946, + "longitude": -76.3539441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0976918, + "longitude": -76.3523462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0985946, + "longitude": -76.3522711 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0990438, + "longitude": -76.3521665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0980469, + "longitude": -76.3523569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0993412, + "longitude": -76.3520592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995128, + "longitude": -76.352011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0996813, + "longitude": -76.352078 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0997605, + "longitude": -76.3520699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.099953, + "longitude": -76.3520163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0997669, + "longitude": -76.3522523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995359, + "longitude": -76.3535988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995701, + "longitude": -76.3528263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995893, + "longitude": -76.3530489 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0993769, + "longitude": -76.3538129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0992364, + "longitude": -76.3542559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0991765, + "longitude": -76.3538268 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995337, + "longitude": -76.3545 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0997091, + "longitude": -76.3546931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1005285, + "longitude": -76.3549506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0999124, + "longitude": -76.3547468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1003253, + "longitude": -76.3548353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1004493, + "longitude": -76.3556292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1015735, + "longitude": -76.3546287 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1010676, + "longitude": -76.3549318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0974201, + "longitude": -76.3522925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0967462, + "longitude": -76.3521772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0970521, + "longitude": -76.3522201 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995893, + "longitude": -76.3526305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0996214, + "longitude": -76.3524561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0996279, + "longitude": -76.3523354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995701, + "longitude": -76.3519948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0998204, + "longitude": -76.3520619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0998439, + "longitude": -76.352137 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0995316, + "longitude": -76.3531213 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0989903, + "longitude": -76.3539796 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0988256, + "longitude": -76.3540869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0989005, + "longitude": -76.3541433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.098939, + "longitude": -76.3542023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0989668, + "longitude": -76.3543444 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0990395, + "longitude": -76.3543712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.099093, + "longitude": -76.3543739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.0991401, + "longitude": -76.3542881 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1005071, + "longitude": -76.355597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1005285, + "longitude": -76.3552832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1004729, + "longitude": -76.3552537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1004493, + "longitude": -76.3550284 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.100398, + "longitude": -76.3549077 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1011521, + "longitude": -76.3547923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1008152, + "longitude": -76.3549613 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1015393, + "longitude": -76.3544088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1011007, + "longitude": -76.3548299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1015265, + "longitude": -76.3548514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1015928, + "longitude": -76.3548782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.101642, + "longitude": -76.3548514 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1017404, + "longitude": -76.3548782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1017126, + "longitude": -76.3549104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1016377, + "longitude": -76.3549238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1015457, + "longitude": -76.3549506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1014815, + "longitude": -76.3549882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1014302, + "longitude": -76.3550311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1014345, + "longitude": -76.3551249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.101396, + "longitude": -76.3550981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1013831, + "longitude": -76.3549747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.101259, + "longitude": -76.3549372 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1012184, + "longitude": -76.354854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1015222, + "longitude": -76.3545107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1025105, + "longitude": -76.3541325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1020827, + "longitude": -76.3542398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1026346, + "longitude": -76.3541298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1028014, + "longitude": -76.354103 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.103056, + "longitude": -76.354036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1044134, + "longitude": -76.3574272 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041641, + "longitude": -76.3563614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.10429, + "longitude": -76.3593708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.103467, + "longitude": -76.3621367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042466, + "longitude": -76.3582693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039651, + "longitude": -76.3560214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039844, + "longitude": -76.3562515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.103963, + "longitude": -76.3561442 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104055, + "longitude": -76.3563293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1043078, + "longitude": -76.3568661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1043459, + "longitude": -76.35715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104224, + "longitude": -76.3565948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042561, + "longitude": -76.3579279 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1043224, + "longitude": -76.3576677 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042133, + "longitude": -76.3590624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041812, + "longitude": -76.3586655 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042026, + "longitude": -76.3584536 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1043053, + "longitude": -76.3599529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104186, + "longitude": -76.3603325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042026, + "longitude": -76.360138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042671, + "longitude": -76.3592076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041472, + "longitude": -76.3603893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041823, + "longitude": -76.3603511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041577, + "longitude": -76.3603605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041578, + "longitude": -76.3604316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041894, + "longitude": -76.3605102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041833, + "longitude": -76.3606481 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104211, + "longitude": -76.3607218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042241, + "longitude": -76.3609264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042448, + "longitude": -76.360973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042246, + "longitude": -76.3610132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042354, + "longitude": -76.3610996 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104288, + "longitude": -76.3611969 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1043424, + "longitude": -76.3613734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104459, + "longitude": -76.361544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1044727, + "longitude": -76.3616002 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1044671, + "longitude": -76.3616783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1044317, + "longitude": -76.3618168 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1043132, + "longitude": -76.3618781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042899, + "longitude": -76.3617856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1042341, + "longitude": -76.3617518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104166, + "longitude": -76.3616602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039196, + "longitude": -76.3614683 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1038594, + "longitude": -76.3614415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1038196, + "longitude": -76.3614484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.103755, + "longitude": -76.3614814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1036983, + "longitude": -76.3615333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1036705, + "longitude": -76.3615938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1036472, + "longitude": -76.3615983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1036555, + "longitude": -76.3616777 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1036363, + "longitude": -76.3617782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1035582, + "longitude": -76.3618573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1034684, + "longitude": -76.3620343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041149, + "longitude": -76.3533359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040335, + "longitude": -76.353378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040849, + "longitude": -76.3534432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039692, + "longitude": -76.3547643 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040144, + "longitude": -76.3537946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1041898, + "longitude": -76.355141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.104194, + "longitude": -76.3551813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1034885, + "longitude": -76.3538042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039716, + "longitude": -76.3535156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1037448, + "longitude": -76.3536766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1033598, + "longitude": -76.3539072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039523, + "longitude": -76.3541406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039181, + "longitude": -76.3544839 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040037, + "longitude": -76.3549667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040914, + "longitude": -76.3551062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1039309, + "longitude": -76.3557579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040229, + "longitude": -76.3554575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1040935, + "longitude": -76.3553047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1098209, + "longitude": -76.3692054 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1098475, + "longitude": -76.3670661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1101469, + "longitude": -76.3672083 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1107803, + "longitude": -76.3673856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1109717, + "longitude": -76.3675158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1110013, + "longitude": -76.3675583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1109073, + "longitude": -76.3676081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1106285, + "longitude": -76.3678267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1104117, + "longitude": -76.3680308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1103803, + "longitude": -76.3681319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1102469, + "longitude": -76.3684041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1100577, + "longitude": -76.3688624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2405751, + "longitude": -76.7201116 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2404171, + "longitude": -76.7198621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2402334, + "longitude": -76.7195671 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2402163, + "longitude": -76.7195376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2397957, + "longitude": -76.7190816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2393708, + "longitude": -76.718623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2393473, + "longitude": -76.7185961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2390761, + "longitude": -76.718395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2386479, + "longitude": -76.7180838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2379561, + "longitude": -76.717188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2373368, + "longitude": -76.7164048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2369225, + "longitude": -76.7158737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2367731, + "longitude": -76.7155679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2366791, + "longitude": -76.715128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2366279, + "longitude": -76.7149886 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2356114, + "longitude": -76.7134329 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2355729, + "longitude": -76.7114588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2360641, + "longitude": -76.7113515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2361709, + "longitude": -76.7109438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2366193, + "longitude": -76.7107936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2372001, + "longitude": -76.7100104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2382422, + "longitude": -76.709946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2382849, + "longitude": -76.7102679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2382678, + "longitude": -76.7109492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2382849, + "longitude": -76.7113515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2382892, + "longitude": -76.7116948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2383063, + "longitude": -76.7118289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2383789, + "longitude": -76.7119255 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2385668, + "longitude": -76.7124619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2386821, + "longitude": -76.7125907 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2388914, + "longitude": -76.7130306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2397669, + "longitude": -76.7148759 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.240369, + "longitude": -76.7144843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2382778, + "longitude": -76.7115398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2378322, + "longitude": -76.7091682 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1372763, + "longitude": -76.611916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1367375, + "longitude": -76.6127542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1371608, + "longitude": -76.6134046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.137364, + "longitude": -76.6145781 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1376826, + "longitude": -76.6153975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1377307, + "longitude": -76.6156952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1374239, + "longitude": -76.6161619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1379392, + "longitude": -76.6167788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1377232, + "longitude": -76.6171932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1370561, + "longitude": -76.6167319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1365258, + "longitude": -76.6161257 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.141512, + "longitude": -76.6054505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1415334, + "longitude": -76.6062445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1395193, + "longitude": -76.6091788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1392456, + "longitude": -76.608932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1386255, + "longitude": -76.6096026 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1374164, + "longitude": -76.6111904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1361505, + "longitude": -76.6003744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1368433, + "longitude": -76.6006628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1389965, + "longitude": -76.6021045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1402409, + "longitude": -76.6036427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1409134, + "longitude": -76.6042368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1407787, + "longitude": -76.6044594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1409262, + "longitude": -76.6045815 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.243778, + "longitude": -76.7232471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2441623, + "longitude": -76.7240732 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2445104, + "longitude": -76.7248162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2446257, + "longitude": -76.7250522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2439958, + "longitude": -76.7254948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2434214, + "longitude": -76.725873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2427531, + "longitude": -76.7263477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2425075, + "longitude": -76.7265113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2422406, + "longitude": -76.725645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2418071, + "longitude": -76.7241725 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2442605, + "longitude": -76.7214205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2439531, + "longitude": -76.7216297 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2438506, + "longitude": -76.7217209 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2432484, + "longitude": -76.7221152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2434406, + "longitude": -76.7225363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2414399, + "longitude": -76.722936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2413502, + "longitude": -76.722649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.240921, + "longitude": -76.7212569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2413897, + "longitude": -76.7166784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2424189, + "longitude": -76.7167427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2433114, + "longitude": -76.7186739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2430637, + "longitude": -76.7188778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2436958, + "longitude": -76.7202135 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2429442, + "longitude": -76.7186096 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.243083, + "longitude": -76.7185049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2431983, + "longitude": -76.718749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3034906, + "longitude": -76.6470594 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3050635, + "longitude": -76.6473012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.304387, + "longitude": -76.647192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3082194, + "longitude": -76.6417271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3097896, + "longitude": -76.640107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3116584, + "longitude": -76.6382188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3082023, + "longitude": -76.6440445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3130151, + "longitude": -76.6392058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3124946, + "longitude": -76.6374034 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3138002, + "longitude": -76.6360408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3157798, + "longitude": -76.6339916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3176228, + "longitude": -76.6343886 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3152849, + "longitude": -76.6368455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3192184, + "longitude": -76.6305155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3200631, + "longitude": -76.6318673 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.137038, + "longitude": -76.5026272 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1371062, + "longitude": -76.5025945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1371942, + "longitude": -76.5027505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1371994, + "longitude": -76.502666 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1406031, + "longitude": -76.5054348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1416142, + "longitude": -76.5033696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1363496, + "longitude": -76.5021158 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1369449, + "longitude": -76.5025794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1430142, + "longitude": -76.5006376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1448022, + "longitude": -76.4973932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1444781, + "longitude": -76.4954377 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1445591, + "longitude": -76.496076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1445332, + "longitude": -76.4944904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1447244, + "longitude": -76.4970395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1444976, + "longitude": -76.4957833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1424329, + "longitude": -76.4883336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1417145, + "longitude": -76.4873304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.139602, + "longitude": -76.4824005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1400724, + "longitude": -76.4848091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.140577, + "longitude": -76.4856084 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1398415, + "longitude": -76.4836075 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.143177, + "longitude": -76.4884516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1438441, + "longitude": -76.4904847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.143797, + "longitude": -76.4913805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1442638, + "longitude": -76.4911971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1448605, + "longitude": -76.4909535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1447601, + "longitude": -76.4918845 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1446402, + "longitude": -76.4931895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1447179, + "longitude": -76.4923357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1439039, + "longitude": -76.4894494 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1448917, + "longitude": -76.4905973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1449473, + "longitude": -76.4900716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1442631, + "longitude": -76.4899965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1443272, + "longitude": -76.4894869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1439937, + "longitude": -76.4885964 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1391872, + "longitude": -76.4804157 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1399313, + "longitude": -76.4792355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.138627, + "longitude": -76.4793803 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1399655, + "longitude": -76.4801957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1393882, + "longitude": -76.4778783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1388708, + "longitude": -76.4774599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1408293, + "longitude": -76.4746436 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1387853, + "longitude": -76.4677396 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1401879, + "longitude": -76.4687588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1408507, + "longitude": -76.4687534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1416547, + "longitude": -76.4734634 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1419754, + "longitude": -76.4713766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1384431, + "longitude": -76.4689573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1362408, + "longitude": -76.4734366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1426638, + "longitude": -76.4700409 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1427023, + "longitude": -76.4719238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6537927, + "longitude": -76.3317631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6550838, + "longitude": -76.3316129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6564911, + "longitude": -76.3314681 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6565212, + "longitude": -76.3253043 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6553463, + "longitude": -76.3263879 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6540423, + "longitude": -76.327611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6530439, + "longitude": -76.3285176 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.658135, + "longitude": -76.3313018 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6639476, + "longitude": -76.3285439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6578424, + "longitude": -76.3240544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6625841, + "longitude": -76.327292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.663591, + "longitude": -76.3289604 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6639127, + "longitude": -76.3286358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.663712, + "longitude": -76.3185935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6620854, + "longitude": -76.3201277 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.661285, + "longitude": -76.3208519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6601533, + "longitude": -76.3219301 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6591592, + "longitude": -76.3228313 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6663928, + "longitude": -76.3263128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.667305, + "longitude": -76.3254867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6667671, + "longitude": -76.3245909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6676621, + "longitude": -76.3237916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6700803, + "longitude": -76.3215546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6705789, + "longitude": -76.3223755 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6652267, + "longitude": -76.3171665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6645425, + "longitude": -76.3178102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6702094, + "longitude": -76.3125263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6684797, + "longitude": -76.3141356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6682258, + "longitude": -76.3143663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6671071, + "longitude": -76.3154392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6660485, + "longitude": -76.3163994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.674149, + "longitude": -76.319055 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6709317, + "longitude": -76.3112095 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6761765, + "longitude": -76.3135672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.674932, + "longitude": -76.3115662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.670921, + "longitude": -76.3102546 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6709264, + "longitude": -76.311878 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6776608, + "longitude": -76.3156647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6709059, + "longitude": -76.3097423 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.673851, + "longitude": -76.3097182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6699195, + "longitude": -76.161775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6693, + "longitude": -76.1621235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6688197, + "longitude": -76.1591435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6688918, + "longitude": -76.1590176 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6675702, + "longitude": -76.1562163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6765992, + "longitude": -76.1612589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.671445, + "longitude": -76.1607433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6715975, + "longitude": -76.1613255 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6757961, + "longitude": -76.1593316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6835947, + "longitude": -76.1616979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6791452, + "longitude": -76.1623431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6792361, + "longitude": -76.1628064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6831726, + "longitude": -76.1617435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6811785, + "longitude": -76.1622776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6854865, + "longitude": -76.1602189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.684092, + "longitude": -76.1615446 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6883862, + "longitude": -76.1634903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.687321, + "longitude": -76.1603664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6848903, + "longitude": -76.1607906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6841789, + "longitude": -76.1617768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6862946, + "longitude": -76.1577252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6867196, + "longitude": -76.1590243 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6657974, + "longitude": -76.1524914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6680057, + "longitude": -76.1508458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6685426, + "longitude": -76.1505317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6711372, + "longitude": -76.1492104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6726612, + "longitude": -76.1484466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6748078, + "longitude": -76.1473525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6760033, + "longitude": -76.1467645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6769326, + "longitude": -76.1462773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6781287, + "longitude": -76.1452965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6785202, + "longitude": -76.1448191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6789031, + "longitude": -76.1442397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6796044, + "longitude": -76.1432473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6798926, + "longitude": -76.1429684 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6807143, + "longitude": -76.1421261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6819189, + "longitude": -76.1408816 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6775092, + "longitude": -76.1458942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6793398, + "longitude": -76.1435343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6872103, + "longitude": -76.1471902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6873694, + "longitude": -76.149867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6889663, + "longitude": -76.151357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6877033, + "longitude": -76.1498234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6845345, + "longitude": -76.1381994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6860273, + "longitude": -76.1366705 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6880319, + "longitude": -76.1346106 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6895117, + "longitude": -76.1330925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6915976, + "longitude": -76.1585144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6912902, + "longitude": -76.1542417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6910043, + "longitude": -76.1468737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6955768, + "longitude": -76.1410908 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6945789, + "longitude": -76.1414502 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6929314, + "longitude": -76.1420618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6919937, + "longitude": -76.1424105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6916195, + "longitude": -76.1425553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6914775, + "longitude": -76.1425875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6906817, + "longitude": -76.1426626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6992629, + "longitude": -76.1397336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6972285, + "longitude": -76.1404793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6917743, + "longitude": -76.130775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6939423, + "longitude": -76.1285488 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7028585, + "longitude": -76.138414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7011726, + "longitude": -76.1390362 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7099762, + "longitude": -76.1358176 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7092666, + "longitude": -76.1360643 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7080926, + "longitude": -76.1364935 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7057788, + "longitude": -76.1373411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7079893, + "longitude": -76.126918 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7079764, + "longitude": -76.1270468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7078947, + "longitude": -76.1271916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7078861, + "longitude": -76.1273257 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7086172, + "longitude": -76.1307482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.708957, + "longitude": -76.1322771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7100364, + "longitude": -76.1354367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7101224, + "longitude": -76.1356942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7101052, + "longitude": -76.1357747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7100579, + "longitude": -76.1357908 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6960026, + "longitude": -76.1264299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6964714, + "longitude": -76.1259417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.696622, + "longitude": -76.1257325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6967338, + "longitude": -76.1255501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6967237, + "longitude": -76.1219971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6934298, + "longitude": -76.1165355 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6937715, + "longitude": -76.1146997 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6951241, + "longitude": -76.1196364 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6939543, + "longitude": -76.1179519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.693606, + "longitude": -76.1172866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6934544, + "longitude": -76.1158966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6935441, + "longitude": -76.1152874 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6970521, + "longitude": -76.1248688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6971984, + "longitude": -76.1241178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6971166, + "longitude": -76.1229859 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6971962, + "longitude": -76.1235411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6969464, + "longitude": -76.1224912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6964187, + "longitude": -76.1103319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6954951, + "longitude": -76.1118345 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6970656, + "longitude": -76.1093748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6985505, + "longitude": -76.1073577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7012907, + "longitude": -76.1057835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6989085, + "longitude": -76.1069125 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7017951, + "longitude": -76.1055314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7010768, + "longitude": -76.1055261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7005091, + "longitude": -76.105632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7032338, + "longitude": -76.1058131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7021613, + "longitude": -76.1055981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7014408, + "longitude": -76.1055066 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7007887, + "longitude": -76.105567 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6994824, + "longitude": -76.1064365 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7000447, + "longitude": -76.1060966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7006699, + "longitude": -76.1058891 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7019122, + "longitude": -76.1058204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7064497, + "longitude": -76.1204324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7066647, + "longitude": -76.1215 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7075163, + "longitude": -76.1255072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7098988, + "longitude": -76.1207811 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7070862, + "longitude": -76.1229322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7097314, + "longitude": -76.1205649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7097729, + "longitude": -76.1209017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7096421, + "longitude": -76.1201244 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7055294, + "longitude": -76.116554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7056369, + "longitude": -76.1169241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7078431, + "longitude": -76.1135499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7093827, + "longitude": -76.1187212 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7095634, + "longitude": -76.1193005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7058992, + "longitude": -76.1175724 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7049864, + "longitude": -76.1143722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048481, + "longitude": -76.113742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7050951, + "longitude": -76.1144214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.704955, + "longitude": -76.1138208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7055616, + "longitude": -76.1163879 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7091655, + "longitude": -76.1185239 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7105009, + "longitude": -76.1203734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7132101, + "longitude": -76.1182169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7157645, + "longitude": -76.1161999 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7067164, + "longitude": -76.107708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7066539, + "longitude": -76.1082123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7066475, + "longitude": -76.1090009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7067594, + "longitude": -76.1098055 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048845, + "longitude": -76.1105727 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7065099, + "longitude": -76.1099235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7068153, + "longitude": -76.107244 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7065343, + "longitude": -76.1080058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7066273, + "longitude": -76.1074398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7047834, + "longitude": -76.110291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.704787, + "longitude": -76.1122118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7047961, + "longitude": -76.1130626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048751, + "longitude": -76.1127595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7049065, + "longitude": -76.1132794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7093312, + "longitude": -76.1040549 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7093139, + "longitude": -76.1041192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7088667, + "longitude": -76.1043338 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7085377, + "longitude": -76.1045484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7080022, + "longitude": -76.1050285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7073765, + "longitude": -76.1058734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7069271, + "longitude": -76.1068497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048864, + "longitude": -76.1064233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7067464, + "longitude": -76.1067907 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7069056, + "longitude": -76.1065011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048671, + "longitude": -76.1061363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7041359, + "longitude": -76.1027299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.704953, + "longitude": -76.1028988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7049897, + "longitude": -76.1019145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7051745, + "longitude": -76.1010186 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7092817, + "longitude": -76.103961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7081034, + "longitude": -76.104653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7073831, + "longitude": -76.1055274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7048046, + "longitude": -76.1063938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7047832, + "longitude": -76.1061175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7042477, + "longitude": -76.103603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7075668, + "longitude": -76.1055757 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7077759, + "longitude": -76.1052981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7082409, + "longitude": -76.1047965 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7085689, + "longitude": -76.1043057 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7092682, + "longitude": -76.1039309 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7076948, + "longitude": -76.1050916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7071088, + "longitude": -76.106029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7068411, + "longitude": -76.1065306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.705667, + "longitude": -76.1062865 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7043528, + "longitude": -76.1036783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7091252, + "longitude": -76.1007856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7086949, + "longitude": -76.1004381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7096991, + "longitude": -76.1012535 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7071432, + "longitude": -76.1063052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7067677, + "longitude": -76.1068685 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7056713, + "longitude": -76.1065681 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7045284, + "longitude": -76.1048844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7046848, + "longitude": -76.1055948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7156613, + "longitude": -76.1012064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7115631, + "longitude": -76.1030088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7104837, + "longitude": -76.1019574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.711475, + "longitude": -76.102931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7104514, + "longitude": -76.1035211 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7103686, + "longitude": -76.1034299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7028542, + "longitude": -76.0979314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7034477, + "longitude": -76.0987152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7030671, + "longitude": -76.0982737 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7056691, + "longitude": -76.0999377 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7053573, + "longitude": -76.0991465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7036714, + "longitude": -76.0986716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7040348, + "longitude": -76.0982559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7061465, + "longitude": -76.0989184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7073722, + "longitude": -76.099487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7082345, + "longitude": -76.1000906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7035725, + "longitude": -76.0985576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7052036, + "longitude": -76.098626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.707126, + "longitude": -76.0993704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6769007, + "longitude": -76.0247366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6809021, + "longitude": -76.0414298 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6781656, + "longitude": -76.0353367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6788583, + "longitude": -76.0350738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6793315, + "longitude": -76.0376032 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6808868, + "longitude": -76.0365638 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6809782, + "longitude": -76.0391434 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6800021, + "longitude": -76.0411386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6810025, + "longitude": -76.0404663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6804478, + "longitude": -76.0411984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6776536, + "longitude": -76.0283254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6776709, + "longitude": -76.0295431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6777698, + "longitude": -76.031764 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6778602, + "longitude": -76.0321234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.68079, + "longitude": -76.0344945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6814783, + "longitude": -76.0343175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.681431, + "longitude": -76.0336415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6814224, + "longitude": -76.0329603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.681474, + "longitude": -76.0322575 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6814697, + "longitude": -76.0319786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6813578, + "longitude": -76.0312222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6811212, + "longitude": -76.0297416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6809061, + "longitude": -76.0283415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.68042, + "longitude": -76.0284649 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6798435, + "longitude": -76.0254232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6792842, + "longitude": -76.0256137 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6788368, + "longitude": -76.0248305 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6785958, + "longitude": -76.0239936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6778343, + "longitude": -76.0243182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6791143, + "longitude": -76.0247607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.6800059, + "longitude": -76.0262802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8822599, + "longitude": -76.2119482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8826687, + "longitude": -76.2119767 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8831394, + "longitude": -76.2119946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.884361, + "longitude": -76.2120362 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8848825, + "longitude": -76.2120699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8819952, + "longitude": -76.211842 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8820879, + "longitude": -76.2118949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8821717, + "longitude": -76.2119269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813067, + "longitude": -76.208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8814782, + "longitude": -76.2072688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813902, + "longitude": -76.2075779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.88159, + "longitude": -76.2069573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813676, + "longitude": -76.2076982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813341, + "longitude": -76.2085663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813334, + "longitude": -76.2082659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813772, + "longitude": -76.2089838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.881424, + "longitude": -76.2094174 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8818675, + "longitude": -76.2062601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8814639, + "longitude": -76.2097869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8814977, + "longitude": -76.2101155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8815251, + "longitude": -76.2103805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8815629, + "longitude": -76.2107188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8815973, + "longitude": -76.2110414 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8816411, + "longitude": -76.2113039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8817001, + "longitude": -76.2114746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.881768, + "longitude": -76.2116032 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8818351, + "longitude": -76.2116946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8819168, + "longitude": -76.211782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8866551, + "longitude": -76.2103572 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8813665, + "longitude": -76.2077036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8820095, + "longitude": -76.2059278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8886815, + "longitude": -76.208322 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8902082, + "longitude": -76.2090621 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8908346, + "longitude": -76.20973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8925692, + "longitude": -76.2102729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8932259, + "longitude": -76.2102905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8915384, + "longitude": -76.2102739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8917837, + "longitude": -76.2103401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8921828, + "longitude": -76.2103507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8913274, + "longitude": -76.2101643 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8910613, + "longitude": -76.2099608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8890792, + "longitude": -76.2079433 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8892781, + "longitude": -76.2082599 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.889392, + "longitude": -76.2082837 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8895389, + "longitude": -76.2083833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8896682, + "longitude": -76.2085058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8920088, + "longitude": -76.210356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8928806, + "longitude": -76.2102375 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.887787, + "longitude": -76.2092202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8878943, + "longitude": -76.2091867 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.888638, + "longitude": -76.2084714 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8891246, + "longitude": -76.2080222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8870008, + "longitude": -76.2100064 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8893375, + "longitude": -76.208269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8894429, + "longitude": -76.2083089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8953109, + "longitude": -76.2128912 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8962483, + "longitude": -76.2131098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8965432, + "longitude": -76.2131299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8975042, + "longitude": -76.2131151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8949159, + "longitude": -76.2121721 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8955844, + "longitude": -76.2129394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.897132, + "longitude": -76.2131822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973948, + "longitude": -76.2131607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8978538, + "longitude": -76.2120114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8977959, + "longitude": -76.2124526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8976382, + "longitude": -76.2129569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8977272, + "longitude": -76.2127691 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8951565, + "longitude": -76.2126392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8938075, + "longitude": -76.2105949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8942873, + "longitude": -76.2111789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8980372, + "longitude": -76.2117378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8984211, + "longitude": -76.2116493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8995183, + "longitude": -76.2097946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8935401, + "longitude": -76.2104127 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8940496, + "longitude": -76.2108267 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8985082, + "longitude": -76.2113539 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8989881, + "longitude": -76.2111011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8987061, + "longitude": -76.2111749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8998174, + "longitude": -76.2103008 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8992867, + "longitude": -76.21091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8996207, + "longitude": -76.210813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8997963, + "longitude": -76.2105731 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8999312, + "longitude": -76.2095202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8997101, + "longitude": -76.2096482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8996792, + "longitude": -76.2100162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8830492, + "longitude": -76.2034952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8838326, + "longitude": -76.20121 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8846167, + "longitude": -76.1994847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8835695, + "longitude": -76.2021943 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8834901, + "longitude": -76.2024394 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.885766, + "longitude": -76.1970792 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8855264, + "longitude": -76.1974629 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8852842, + "longitude": -76.1979184 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8860263, + "longitude": -76.1966623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8864779, + "longitude": -76.1960333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8868865, + "longitude": -76.1956658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8862687, + "longitude": -76.1962908 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8926411, + "longitude": -76.1941038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8886308, + "longitude": -76.1947921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8894121, + "longitude": -76.1946541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8933882, + "longitude": -76.1936445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8908799, + "longitude": -76.1944716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8891148, + "longitude": -76.1946983 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8874116, + "longitude": -76.1953044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8877166, + "longitude": -76.1951231 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8882118, + "longitude": -76.1949065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8910313, + "longitude": -76.1944441 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8915688, + "longitude": -76.1942245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8911962, + "longitude": -76.1943884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8913594, + "longitude": -76.194302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8875812, + "longitude": -76.1951958 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8872614, + "longitude": -76.1953934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8999593, + "longitude": -76.2042696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8981416, + "longitude": -76.1941776 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8993667, + "longitude": -76.1940667 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.896557, + "longitude": -76.1921829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8967789, + "longitude": -76.1923415 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8972719, + "longitude": -76.1928106 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.897354, + "longitude": -76.1930118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.89733, + "longitude": -76.1931592 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973495, + "longitude": -76.1933675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973984, + "longitude": -76.193513 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8974978, + "longitude": -76.1935779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8976762, + "longitude": -76.1935927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8977774, + "longitude": -76.1936496 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.897827, + "longitude": -76.1937045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8989762, + "longitude": -76.1941616 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973334, + "longitude": -76.1932843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973277, + "longitude": -76.1932281 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973346, + "longitude": -76.1929011 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.897319, + "longitude": -76.1928676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8972988, + "longitude": -76.1928404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973557, + "longitude": -76.1929824 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8973511, + "longitude": -76.1929492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8945098, + "longitude": -76.1929124 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8950235, + "longitude": -76.1925391 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8948296, + "longitude": -76.1927066 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8960446, + "longitude": -76.1916571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8961125, + "longitude": -76.1919924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.901568, + "longitude": -76.2073951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9009308, + "longitude": -76.2091733 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9011425, + "longitude": -76.2092434 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9018585, + "longitude": -76.2086005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9000838, + "longitude": -76.2096639 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.900526, + "longitude": -76.2098664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9009089, + "longitude": -76.209595 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9008949, + "longitude": -76.2056529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9011388, + "longitude": -76.2067868 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9009437, + "longitude": -76.2061129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9005636, + "longitude": -76.2015735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9007292, + "longitude": -76.2051232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9006701, + "longitude": -76.2035553 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9005438, + "longitude": -76.2000476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9005989, + "longitude": -76.2049421 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9001646, + "longitude": -76.2045838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9007741, + "longitude": -76.2027644 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9007474, + "longitude": -76.2033516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9007846, + "longitude": -76.2029324 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.900115, + "longitude": -76.2045079 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9005253, + "longitude": -76.1986102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9013584, + "longitude": -76.1978186 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.905523, + "longitude": -76.1935151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9056791, + "longitude": -76.1923457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9056602, + "longitude": -76.193161 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9057117, + "longitude": -76.192807 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9019331, + "longitude": -76.1972689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.905167, + "longitude": -76.1941214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9052788, + "longitude": -76.1938701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9017901, + "longitude": -76.1970364 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9024434, + "longitude": -76.1959932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9024176, + "longitude": -76.1958154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9025432, + "longitude": -76.1954832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9026801, + "longitude": -76.1952525 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9037667, + "longitude": -76.1941868 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9030164, + "longitude": -76.1949216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9047928, + "longitude": -76.1941804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.903875, + "longitude": -76.1941761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9046109, + "longitude": -76.1941775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9049273, + "longitude": -76.1941647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9050131, + "longitude": -76.1941566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9063695, + "longitude": -76.1915921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9061381, + "longitude": -76.1919233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062693, + "longitude": -76.1899389 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062912, + "longitude": -76.1902936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.906347, + "longitude": -76.1870039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.906433, + "longitude": -76.1906325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9060953, + "longitude": -76.1876051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062296, + "longitude": -76.1900851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062237, + "longitude": -76.1900516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062258, + "longitude": -76.19001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062398, + "longitude": -76.1899744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9064444, + "longitude": -76.1914233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9064932, + "longitude": -76.1912017 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9065005, + "longitude": -76.1909944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9064846, + "longitude": -76.1908053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9062301, + "longitude": -76.1918278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9063008, + "longitude": -76.1917329 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9070733, + "longitude": -76.1868189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9075989, + "longitude": -76.1870758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9078127, + "longitude": -76.1873554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9079994, + "longitude": -76.1882188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9079219, + "longitude": -76.18775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9077609, + "longitude": -76.1872579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9077054, + "longitude": -76.1871838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9076563, + "longitude": -76.1871301 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9072969, + "longitude": -76.1869584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9068003, + "longitude": -76.1865707 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9067827, + "longitude": -76.1894015 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7185509, + "longitude": -76.1139898 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7213201, + "longitude": -76.1118333 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7213631, + "longitude": -76.1112003 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7181983, + "longitude": -76.1078421 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7177425, + "longitude": -76.1052672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7876637, + "longitude": -76.0520344 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7853846, + "longitude": -76.0500125 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7900864, + "longitude": -76.0523321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7918824, + "longitude": -76.0523992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7918738, + "longitude": -76.0526245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7941935, + "longitude": -76.0526889 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7950441, + "longitude": -76.0525494 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.790282, + "longitude": -76.0523351 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.789236, + "longitude": -76.0523455 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7858842, + "longitude": -76.0462352 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7860741, + "longitude": -76.0386448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7863061, + "longitude": -76.0412734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7874231, + "longitude": -76.0413914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7862803, + "longitude": -76.0390954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7879128, + "longitude": -76.0381191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7897039, + "longitude": -76.0367479 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7903547, + "longitude": -76.0361753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7930596, + "longitude": -76.0338972 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7933493, + "longitude": -76.0333373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7940354, + "longitude": -76.0280462 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7941666, + "longitude": -76.0271511 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7950484, + "longitude": -76.0239378 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7944969, + "longitude": -76.0248132 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.794676, + "longitude": -76.0243835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7940506, + "longitude": -76.0279426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7978878, + "longitude": -76.0630422 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7981713, + "longitude": -76.0611432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7983088, + "longitude": -76.0616152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8011524, + "longitude": -76.0632138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7979909, + "longitude": -76.0624521 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.802581, + "longitude": -76.0611039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7960579, + "longitude": -76.0589652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7979737, + "longitude": -76.0585468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7981198, + "longitude": -76.0584717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7981627, + "longitude": -76.0598021 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7980253, + "longitude": -76.0593729 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7958774, + "longitude": -76.0578387 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.802563, + "longitude": -76.0606464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8026042, + "longitude": -76.0605902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029883, + "longitude": -76.0605613 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.803096, + "longitude": -76.0602576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8032795, + "longitude": -76.0600795 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8033946, + "longitude": -76.059956 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.811826, + "longitude": -76.0504789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8121494, + "longitude": -76.0503235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.81227, + "longitude": -76.0502474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.812663, + "longitude": -76.0500994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8128945, + "longitude": -76.0500381 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8129864, + "longitude": -76.0500189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8132249, + "longitude": -76.0499813 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8135951, + "longitude": -76.0499578 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8137594, + "longitude": -76.0499468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8140932, + "longitude": -76.0499652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8144605, + "longitude": -76.0500613 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8163772, + "longitude": -76.0504235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8177862, + "longitude": -76.0506829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8180303, + "longitude": -76.0507028 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7966762, + "longitude": -76.0220556 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7952308, + "longitude": -76.0236834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7964432, + "longitude": -76.0222043 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7952567, + "longitude": -76.0236518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7981893, + "longitude": -76.0201934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7982219, + "longitude": -76.0201515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7982531, + "longitude": -76.0201035 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7982935, + "longitude": -76.0200363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7983639, + "longitude": -76.0199138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7987808, + "longitude": -76.0189526 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7987964, + "longitude": -76.0189142 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7988095, + "longitude": -76.0188782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7988476, + "longitude": -76.0187681 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7989534, + "longitude": -76.0184467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7991663, + "longitude": -76.0176418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7993196, + "longitude": -76.0167278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8001788, + "longitude": -76.0120182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8010526, + "longitude": -76.0122722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8010652, + "longitude": -76.0123665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8011541, + "longitude": -76.0123886 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8011788, + "longitude": -76.0124055 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8012403, + "longitude": -76.0124175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8016605, + "longitude": -76.0125417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7998331, + "longitude": -76.0090814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7999984, + "longitude": -76.01009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8000994, + "longitude": -76.0106934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8001316, + "longitude": -76.0109295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8001466, + "longitude": -76.0112809 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8001509, + "longitude": -76.0115786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8001402, + "longitude": -76.0117207 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8002111, + "longitude": -76.0117717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.800922, + "longitude": -76.011989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8015641, + "longitude": -76.0121097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8020195, + "longitude": -76.0126388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8022404, + "longitude": -76.0127801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025918, + "longitude": -76.013047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.80293, + "longitude": -76.0133739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029608, + "longitude": -76.0108669 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029653, + "longitude": -76.0115756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029671, + "longitude": -76.0116065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029699, + "longitude": -76.01164 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.803035, + "longitude": -76.012271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029161, + "longitude": -76.0108262 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8032181, + "longitude": -76.0129331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8032422, + "longitude": -76.0138951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8033001, + "longitude": -76.0140039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8033098, + "longitude": -76.0131497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8033181, + "longitude": -76.0140148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8033322, + "longitude": -76.0140081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8034066, + "longitude": -76.0141191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8035427, + "longitude": -76.0137135 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8035797, + "longitude": -76.013672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8036119, + "longitude": -76.0136438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8036463, + "longitude": -76.0138606 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029118, + "longitude": -76.010279 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029118, + "longitude": -76.008895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8017875, + "longitude": -76.0122008 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8021376, + "longitude": -76.0123162 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025563, + "longitude": -76.01263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.802668, + "longitude": -76.0125576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8026358, + "longitude": -76.0122438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025585, + "longitude": -76.0110743 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025778, + "longitude": -76.0101516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8002776, + "longitude": -76.0046612 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7998975, + "longitude": -76.0050715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7997257, + "longitude": -76.0058547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.799599, + "longitude": -76.0065763 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.799571, + "longitude": -76.0070778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7996033, + "longitude": -76.0076143 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.7996763, + "longitude": -76.0081373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8016307, + "longitude": -76.0051171 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8011969, + "longitude": -76.0050125 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8007201, + "longitude": -76.0049401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8040888, + "longitude": -76.0051204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8028602, + "longitude": -76.0083747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8073749, + "longitude": -76.0051042 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8028731, + "longitude": -76.0061163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8029376, + "longitude": -76.005848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8031094, + "longitude": -76.0055584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8033284, + "longitude": -76.0053438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8035775, + "longitude": -76.0051721 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8038095, + "longitude": -76.0051185 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025198, + "longitude": -76.0085772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025069, + "longitude": -76.0083465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8025177, + "longitude": -76.0070161 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8024962, + "longitude": -76.0056053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8023824, + "longitude": -76.0053076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8021225, + "longitude": -76.0051735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8071763, + "longitude": -76.0051052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8028837, + "longitude": -76.0070613 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8167234, + "longitude": -76.0087027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.817481, + "longitude": -76.0087939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8103063, + "longitude": -76.0050408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8103152, + "longitude": -76.0056312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8104699, + "longitude": -76.0050538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8104784, + "longitude": -76.0056295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8110074, + "longitude": -76.0051313 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8110626, + "longitude": -76.0051411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8115487, + "longitude": -76.0052736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8133393, + "longitude": -76.0061289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8133422, + "longitude": -76.0059421 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8134277, + "longitude": -76.0061374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8134296, + "longitude": -76.0059752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8083596, + "longitude": -76.0050829 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8089887, + "longitude": -76.0050693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8095514, + "longitude": -76.0050571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8133828, + "longitude": -76.0061331 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8103936, + "longitude": -76.0056304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8190429, + "longitude": -76.0083311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8192158, + "longitude": -76.0081395 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8166337, + "longitude": -76.0074354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.81669, + "longitude": -76.0071972 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8167501, + "longitude": -76.0074787 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8174719, + "longitude": -76.0077548 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8174872, + "longitude": -76.0075027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8189999, + "longitude": -76.0080676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8190095, + "longitude": -76.0081911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8190109, + "longitude": -76.0081549 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8190115, + "longitude": -76.0082252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8190189, + "longitude": -76.0082608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8192164, + "longitude": -76.0083054 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8190817, + "longitude": -76.0083254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8220206, + "longitude": -76.0514631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.822047, + "longitude": -76.0514648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8223962, + "longitude": -76.0514218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8233546, + "longitude": -76.0516126 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8262876, + "longitude": -76.0521356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8267288, + "longitude": -76.052191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8272617, + "longitude": -76.0522368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8275705, + "longitude": -76.0522482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8278504, + "longitude": -76.0522349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8281202, + "longitude": -76.0519992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8283933, + "longitude": -76.0522259 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8288317, + "longitude": -76.0521915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8298675, + "longitude": -76.0520691 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8300209, + "longitude": -76.0520452 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8301712, + "longitude": -76.0520147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8304242, + "longitude": -76.0490464 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8307376, + "longitude": -76.0520934 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8309265, + "longitude": -76.0496633 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8307419, + "longitude": -76.0518466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8309909, + "longitude": -76.0508274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8308486, + "longitude": -76.0493202 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8304242, + "longitude": -76.0487675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8305916, + "longitude": -76.0470723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8305444, + "longitude": -76.0477697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8307548, + "longitude": -76.0458009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.830656, + "longitude": -76.0463374 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8306389, + "longitude": -76.0474264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8327428, + "longitude": -76.0461711 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8329059, + "longitude": -76.0461818 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8364208, + "longitude": -76.046719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8364894, + "longitude": -76.0461639 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8365562, + "longitude": -76.0457518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8352854, + "longitude": -76.046537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8346341, + "longitude": -76.0464304 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8353419, + "longitude": -76.0457949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8353402, + "longitude": -76.0459597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8353407, + "longitude": -76.0459113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8370533, + "longitude": -76.0418584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8353434, + "longitude": -76.0457273 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8374696, + "longitude": -76.0386896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8375049, + "longitude": -76.0386969 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8375116, + "longitude": -76.0383888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8373458, + "longitude": -76.0397276 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381271, + "longitude": -76.0284332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381557, + "longitude": -76.0286319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381799, + "longitude": -76.0288384 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382064, + "longitude": -76.0290924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.838224, + "longitude": -76.029316 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382494, + "longitude": -76.0296712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382526, + "longitude": -76.0301261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382563, + "longitude": -76.030094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382568, + "longitude": -76.0300645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380591, + "longitude": -76.0334977 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380883, + "longitude": -76.033286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381, + "longitude": -76.0335617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381395, + "longitude": -76.0332346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381771, + "longitude": -76.0329148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382177, + "longitude": -76.0309074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382269, + "longitude": -76.0323103 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8377578, + "longitude": -76.0303286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381475, + "longitude": -76.0308784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382, + "longitude": -76.0304506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8376741, + "longitude": -76.0307014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382936, + "longitude": -76.0310541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381507, + "longitude": -76.0304788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8377151, + "longitude": -76.030519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8369055, + "longitude": -76.0245876 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8361572, + "longitude": -76.0220603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8362541, + "longitude": -76.0218748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8365457, + "longitude": -76.0237263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8367744, + "longitude": -76.024177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8369162, + "longitude": -76.0218314 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8373644, + "longitude": -76.0257026 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8374717, + "longitude": -76.0259639 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8375436, + "longitude": -76.0261554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8376099, + "longitude": -76.0263376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8376883, + "longitude": -76.026569 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8377581, + "longitude": -76.0267955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378304, + "longitude": -76.0270417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378753, + "longitude": -76.0272023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379512, + "longitude": -76.0275128 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380074, + "longitude": -76.0277676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380505, + "longitude": -76.0279891 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380915, + "longitude": -76.0282103 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8275836, + "longitude": -76.0117875 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8276434, + "longitude": -76.010562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8277392, + "longitude": -76.0118717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8277396, + "longitude": -76.0107482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8278348, + "longitude": -76.0116501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8278539, + "longitude": -76.0115911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8279012, + "longitude": -76.0113954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8279199, + "longitude": -76.0107949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8254416, + "longitude": -76.0099432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8254515, + "longitude": -76.0099318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8276913, + "longitude": -76.0118458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8284973, + "longitude": -76.0107688 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8280831, + "longitude": -76.0108723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8281141, + "longitude": -76.0108522 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8284606, + "longitude": -76.0109475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8297521, + "longitude": -76.0110734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8303979, + "longitude": -76.0112753 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8307498, + "longitude": -76.01141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8314375, + "longitude": -76.0116105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8319748, + "longitude": -76.0117834 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8327038, + "longitude": -76.0120296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8333726, + "longitude": -76.0122258 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8335742, + "longitude": -76.0122913 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.833717, + "longitude": -76.0123446 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8338508, + "longitude": -76.0123726 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8339581, + "longitude": -76.0124041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8343602, + "longitude": -76.0125661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378246, + "longitude": -76.0211897 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378044, + "longitude": -76.0193981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381581, + "longitude": -76.0193399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381537, + "longitude": -76.0182873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379306, + "longitude": -76.0172896 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8369007, + "longitude": -76.0213192 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378933, + "longitude": -76.0155317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379196, + "longitude": -76.0158831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379311, + "longitude": -76.0163975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379366, + "longitude": -76.0173893 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379444, + "longitude": -76.0174873 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379598, + "longitude": -76.0175999 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379731, + "longitude": -76.0176885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8379896, + "longitude": -76.0177831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380124, + "longitude": -76.0178752 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380418, + "longitude": -76.0179801 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8380718, + "longitude": -76.0180771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8381941, + "longitude": -76.0185523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382488, + "longitude": -76.01855 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8382287, + "longitude": -76.0193383 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378623, + "longitude": -76.0147233 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8374144, + "longitude": -76.0137773 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8366585, + "longitude": -76.0133532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8355886, + "longitude": -76.013027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8376974, + "longitude": -76.0141356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.834942, + "longitude": -76.0127637 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8351143, + "longitude": -76.012837 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8370848, + "longitude": -76.0135541 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8372334, + "longitude": -76.013641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8373253, + "longitude": -76.0137005 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8375179, + "longitude": -76.0138768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8375833, + "longitude": -76.0139491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8376437, + "longitude": -76.0140356 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8377422, + "longitude": -76.0142326 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8377823, + "longitude": -76.0143327 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378134, + "longitude": -76.0144399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.8378806, + "longitude": -76.0149139 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.936902, + "longitude": -76.3124205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9374283, + "longitude": -76.3131138 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9369181, + "longitude": -76.3102318 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9385058, + "longitude": -76.3163141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9385733, + "longitude": -76.3163221 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9387095, + "longitude": -76.3163302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9388435, + "longitude": -76.3163261 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9389871, + "longitude": -76.316302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9391136, + "longitude": -76.3162725 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9392776, + "longitude": -76.3162081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9384895, + "longitude": -76.3163094 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9384863, + "longitude": -76.3161528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9384788, + "longitude": -76.3159778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9383282, + "longitude": -76.3151363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9383132, + "longitude": -76.3150625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9382687, + "longitude": -76.3149317 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9382162, + "longitude": -76.3147849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9381653, + "longitude": -76.3147232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9381133, + "longitude": -76.3146756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.938049, + "longitude": -76.3146347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9379702, + "longitude": -76.3146038 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9379032, + "longitude": -76.3145871 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9375211, + "longitude": -76.3145341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9374846, + "longitude": -76.3144691 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9374503, + "longitude": -76.3144074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9374107, + "longitude": -76.3143571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9373555, + "longitude": -76.3142994 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9395209, + "longitude": -76.3160566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9396774, + "longitude": -76.3159198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9401908, + "longitude": -76.3151647 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9402444, + "longitude": -76.3150789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9403516, + "longitude": -76.3149475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9403621, + "longitude": -76.3135775 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9404288, + "longitude": -76.3148791 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9404414, + "longitude": -76.3130022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9405028, + "longitude": -76.3148295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9405312, + "longitude": -76.3139349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9405754, + "longitude": -76.3120487 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9406295, + "longitude": -76.3120587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9406384, + "longitude": -76.314757 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9406796, + "longitude": -76.314226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408251, + "longitude": -76.3120862 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9409026, + "longitude": -76.3146062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9412903, + "longitude": -76.3121278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9412938, + "longitude": -76.3120736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.941297, + "longitude": -76.3120232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9416277, + "longitude": -76.312044 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9416288, + "longitude": -76.3120178 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9416888, + "longitude": -76.3119561 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9369481, + "longitude": -76.3060985 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9393347, + "longitude": -76.3035709 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9346319, + "longitude": -76.2974722 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9346881, + "longitude": -76.2976008 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9355556, + "longitude": -76.2989974 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9354388, + "longitude": -76.2988217 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9351962, + "longitude": -76.2992325 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9363135, + "longitude": -76.3001708 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9363382, + "longitude": -76.300148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9361273, + "longitude": -76.3020591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9351633, + "longitude": -76.2992696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9352287, + "longitude": -76.2991959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9360659, + "longitude": -76.300431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9361377, + "longitude": -76.3003573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9388807, + "longitude": -76.3032758 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.939167, + "longitude": -76.297199 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9391574, + "longitude": -76.2987339 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9389081, + "longitude": -76.299037 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9389098, + "longitude": -76.2998866 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9391703, + "longitude": -76.3026241 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.939115, + "longitude": -76.3027109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9307016, + "longitude": -76.2910697 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9312446, + "longitude": -76.2904955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9306302, + "longitude": -76.291144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9307371, + "longitude": -76.2912413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9308238, + "longitude": -76.2913421 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9310323, + "longitude": -76.2915225 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311657, + "longitude": -76.2916435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.93126, + "longitude": -76.2917571 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.930644, + "longitude": -76.2911703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9306693, + "longitude": -76.291145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9302991, + "longitude": -76.2861197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9305847, + "longitude": -76.2885802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9306547, + "longitude": -76.2888828 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.930733, + "longitude": -76.2889943 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9307351, + "longitude": -76.2887945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9308134, + "longitude": -76.288906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9309659, + "longitude": -76.2891234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311233, + "longitude": -76.2864848 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311339, + "longitude": -76.2861628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311716, + "longitude": -76.2864169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311891, + "longitude": -76.2863921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9312057, + "longitude": -76.2863747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9312183, + "longitude": -76.2863664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9312328, + "longitude": -76.286359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9312527, + "longitude": -76.286354 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9312719, + "longitude": -76.2863598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313023, + "longitude": -76.2863772 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313208, + "longitude": -76.2863962 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313305, + "longitude": -76.2864169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9323837, + "longitude": -76.2840495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.932388, + "longitude": -76.2848662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9320613, + "longitude": -76.2854076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9320613, + "longitude": -76.2851686 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317949, + "longitude": -76.285177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317949, + "longitude": -76.2851853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317638, + "longitude": -76.2852234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317638, + "longitude": -76.2851853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.931728, + "longitude": -76.2852234 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9315055, + "longitude": -76.2851518 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9315054, + "longitude": -76.2853349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314603, + "longitude": -76.2853349 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.931728, + "longitude": -76.285152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314602, + "longitude": -76.2857431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314644, + "longitude": -76.2857431 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314633, + "longitude": -76.2858639 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314719, + "longitude": -76.285864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314666, + "longitude": -76.2865452 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313305, + "longitude": -76.2865446 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311716, + "longitude": -76.2867303 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311069, + "longitude": -76.2867283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9311048, + "longitude": -76.2864838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9301196, + "longitude": -76.2858117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9298719, + "longitude": -76.2859156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.929873, + "longitude": -76.2877603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9301801, + "longitude": -76.2878924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.930082, + "longitude": -76.2882552 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9306123, + "longitude": -76.2884856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9306378, + "longitude": -76.2885219 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.931018, + "longitude": -76.2890661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9310308, + "longitude": -76.2890853 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9341451, + "longitude": -76.2962898 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9339736, + "longitude": -76.29588 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.93367, + "longitude": -76.295269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9337548, + "longitude": -76.2954039 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9338394, + "longitude": -76.2955605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9338002, + "longitude": -76.2954832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9339685, + "longitude": -76.2962222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9339194, + "longitude": -76.2960979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9330815, + "longitude": -76.2854163 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9333024, + "longitude": -76.2848756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9334278, + "longitude": -76.2850204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9334276, + "longitude": -76.285458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9330813, + "longitude": -76.2854603 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397372, + "longitude": -76.3038277 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9401536, + "longitude": -76.3041254 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9407496, + "longitude": -76.3048074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408077, + "longitude": -76.3076143 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408267, + "longitude": -76.3046156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408474, + "longitude": -76.3085584 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408482, + "longitude": -76.3048516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408506, + "longitude": -76.3068217 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408763, + "longitude": -76.3078718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408806, + "longitude": -76.3066782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408806, + "longitude": -76.3079147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9409181, + "longitude": -76.3059607 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9409535, + "longitude": -76.3053827 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9409556, + "longitude": -76.3085692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9410599, + "longitude": -76.305205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.941106, + "longitude": -76.3051232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.941158, + "longitude": -76.3051789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9411746, + "longitude": -76.305148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.941744, + "longitude": -76.3097795 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9417944, + "longitude": -76.3086342 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.941818, + "longitude": -76.3097903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9396182, + "longitude": -76.3009418 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9396664, + "longitude": -76.3011962 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.939708, + "longitude": -76.301239 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397146, + "longitude": -76.301123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397271, + "longitude": -76.3012098 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9398002, + "longitude": -76.3012851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9398363, + "longitude": -76.3006024 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.940126, + "longitude": -76.2972023 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9399066, + "longitude": -76.3004766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397478, + "longitude": -76.3010721 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9396338, + "longitude": -76.3013611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9395254, + "longitude": -76.3019248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9395127, + "longitude": -76.3019049 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9395706, + "longitude": -76.3019954 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9499121, + "longitude": -76.3068445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9496196, + "longitude": -76.305719 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9494063, + "longitude": -76.3041057 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9524135, + "longitude": -76.3080945 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9495618, + "longitude": -76.3060537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9502798, + "longitude": -76.3079869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9515423, + "longitude": -76.3083141 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9497057, + "longitude": -76.3041662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.949517, + "longitude": -76.3068115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.950298, + "longitude": -76.3076663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9496903, + "longitude": -76.3044088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.950895, + "longitude": -76.3080311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9524115, + "longitude": -76.3081169 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9498682, + "longitude": -76.3076167 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9495556, + "longitude": -76.306143 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9494363, + "longitude": -76.3041473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9513226, + "longitude": -76.3081907 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9511061, + "longitude": -76.3081022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9517331, + "longitude": -76.3080579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9514254, + "longitude": -76.3082434 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9497338, + "longitude": -76.3068283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9496011, + "longitude": -76.3068191 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9497259, + "longitude": -76.3069653 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9495933, + "longitude": -76.3069533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9495917, + "longitude": -76.3060074 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9504398, + "longitude": -76.302421 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9509046, + "longitude": -76.3024923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9518049, + "longitude": -76.3025742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9509099, + "longitude": -76.3024217 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9519196, + "longitude": -76.300482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9504309, + "longitude": -76.3025205 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9502251, + "longitude": -76.3026332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9507857, + "longitude": -76.3024105 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9507835, + "longitude": -76.3024494 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9494921, + "longitude": -76.3025661 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9514935, + "longitude": -76.3025459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9518408, + "longitude": -76.3019189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9430011, + "longitude": -76.2960598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9430011, + "longitude": -76.2951747 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9430011, + "longitude": -76.2927312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9420702, + "longitude": -76.2960538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9427685, + "longitude": -76.2960591 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9422658, + "longitude": -76.2960524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9427746, + "longitude": -76.2961554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9422626, + "longitude": -76.2961583 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9401269, + "longitude": -76.2966076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9400663, + "longitude": -76.2964902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.940315, + "longitude": -76.2963041 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9403531, + "longitude": -76.2963839 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9406712, + "longitude": -76.2961321 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408799, + "longitude": -76.2960497 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9414647, + "longitude": -76.2960543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9414643, + "longitude": -76.2959826 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9417958, + "longitude": -76.2959799 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9420713, + "longitude": -76.2959779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9431837, + "longitude": -76.2889905 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9422869, + "longitude": -76.2862031 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9435195, + "longitude": -76.2887754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9413333, + "longitude": -76.2847791 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9420686, + "longitude": -76.2857353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9410611, + "longitude": -76.2848139 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9432241, + "longitude": -76.2881251 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9423894, + "longitude": -76.2864196 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9429283, + "longitude": -76.2875283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9421201, + "longitude": -76.2856749 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9420912, + "longitude": -76.2857048 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9430008, + "longitude": -76.2891147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9457241, + "longitude": -76.2847368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9465532, + "longitude": -76.2874302 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.948005, + "longitude": -76.2867426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9460391, + "longitude": -76.2851863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.946864, + "longitude": -76.2862368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9467043, + "longitude": -76.285703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.946118, + "longitude": -76.2854509 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9461105, + "longitude": -76.2854885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9460655, + "longitude": -76.2854898 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9460098, + "longitude": -76.2848494 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9551465, + "longitude": -76.3079734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9558302, + "longitude": -76.3075429 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.954197, + "longitude": -76.3045107 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9544907, + "longitude": -76.3045365 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9528766, + "longitude": -76.3078152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.953422, + "longitude": -76.3078451 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9534606, + "longitude": -76.307847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9535012, + "longitude": -76.307849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9551429, + "longitude": -76.3079838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9553896, + "longitude": -76.3002786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9562373, + "longitude": -76.3003658 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9542579, + "longitude": -76.3033631 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9551143, + "longitude": -76.3015911 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.954559, + "longitude": -76.3033874 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9551902, + "longitude": -76.3002622 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9545584, + "longitude": -76.3033976 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9547874, + "longitude": -76.303406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9550092, + "longitude": -76.3034248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9550318, + "longitude": -76.3030811 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9527843, + "longitude": -76.3009183 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9537939, + "longitude": -76.3030439 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9526644, + "longitude": -76.3029523 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9539901, + "longitude": -76.3033426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9537833, + "longitude": -76.3033238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9528261, + "longitude": -76.3029662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9541513, + "longitude": -76.3033549 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313552, + "longitude": -76.2793662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9320413, + "longitude": -76.2780841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9315186, + "longitude": -76.2803239 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313245, + "longitude": -76.2795635 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317405, + "longitude": -76.280576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9316993, + "longitude": -76.2787895 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314253, + "longitude": -76.2801496 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9316654, + "longitude": -76.2805278 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317437, + "longitude": -76.2780226 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9314238, + "longitude": -76.2791543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.931599, + "longitude": -76.280454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9315046, + "longitude": -76.2790096 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9315943, + "longitude": -76.2788928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313406, + "longitude": -76.2798626 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317426, + "longitude": -76.2832971 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313756, + "longitude": -76.2800166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9313224, + "longitude": -76.2796882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9317412, + "longitude": -76.2787573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.934806, + "longitude": -76.2791771 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9333335, + "longitude": -76.279357 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9329064, + "longitude": -76.2785615 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9347792, + "longitude": -76.2791543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.934727, + "longitude": -76.279424 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.935298, + "longitude": -76.2775798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9335657, + "longitude": -76.2794198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9372869, + "longitude": -76.274474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.936708, + "longitude": -76.2740851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9358247, + "longitude": -76.2740274 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9371818, + "longitude": -76.274411 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9371539, + "longitude": -76.2743882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.935025, + "longitude": -76.2744311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9368677, + "longitude": -76.2741642 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9376095, + "longitude": -76.2747208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9367945, + "longitude": -76.2741144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9374187, + "longitude": -76.2745585 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9349082, + "longitude": -76.2744566 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9350508, + "longitude": -76.2772689 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9350508, + "longitude": -76.2761786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9349232, + "longitude": -76.2755509 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9359079, + "longitude": -76.2740328 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397101, + "longitude": -76.2831883 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9398037, + "longitude": -76.2816248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.939902, + "longitude": -76.2803009 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9408024, + "longitude": -76.2835021 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.940031, + "longitude": -76.2781165 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397401, + "longitude": -76.2826961 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9400284, + "longitude": -76.2786554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397512, + "longitude": -76.2773118 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9398595, + "longitude": -76.2773306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.939808, + "longitude": -76.2773198 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.939659, + "longitude": -76.2766855 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9395229, + "longitude": -76.2765675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9397798, + "longitude": -76.2771641 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9469764, + "longitude": -76.280992 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9496394, + "longitude": -76.2806982 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9463002, + "longitude": -76.2826287 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9471593, + "longitude": -76.2797292 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9474833, + "longitude": -76.2785368 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9476657, + "longitude": -76.2780802 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9476143, + "longitude": -76.2780547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.946879, + "longitude": -76.2807611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9470248, + "longitude": -76.280814 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9468072, + "longitude": -76.2816147 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9465323, + "longitude": -76.2817796 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9484555, + "longitude": -76.2760224 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9487066, + "longitude": -76.2750999 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9506263, + "longitude": -76.2771738 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9507995, + "longitude": -76.2758932 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9485227, + "longitude": -76.2749332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9481766, + "longitude": -76.2765854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9478871, + "longitude": -76.2772537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.948255, + "longitude": -76.2759154 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9504763, + "longitude": -76.2771117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.950597, + "longitude": -76.2771629 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9507682, + "longitude": -76.2760036 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9504716, + "longitude": -76.2770784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9507937, + "longitude": -76.2757129 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9507899, + "longitude": -76.275925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9508467, + "longitude": -76.2757353 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9485639, + "longitude": -76.2747703 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9485087, + "longitude": -76.2749889 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9487128, + "longitude": -76.2750761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9484481, + "longitude": -76.2760551 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9484015, + "longitude": -76.2760283 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9483581, + "longitude": -76.27597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9483195, + "longitude": -76.2759029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9482723, + "longitude": -76.27586 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9481979, + "longitude": -76.2760984 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9480773, + "longitude": -76.2765399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9482307, + "longitude": -76.2766102 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9482094, + "longitude": -76.2766936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9482327, + "longitude": -76.2767029 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9481143, + "longitude": -76.2771669 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9480982, + "longitude": -76.2772252 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 36.9479149, + "longitude": -76.2771501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1506491, + "longitude": -75.9580012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1506921, + "longitude": -75.9587835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1587863, + "longitude": -75.9580484 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.1587755, + "longitude": -75.9573471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2226829, + "longitude": -76.0117465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2224968, + "longitude": -76.0118562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2204844, + "longitude": -76.0054547 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2206135, + "longitude": -76.0054237 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2273914, + "longitude": -75.9826645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2266131, + "longitude": -75.9722742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2271636, + "longitude": -75.9721598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2279381, + "longitude": -75.9825214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2877295, + "longitude": -76.0029712 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2873766, + "longitude": -76.0028901 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2883592, + "longitude": -75.9964909 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2890231, + "longitude": -75.9969392 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2888334, + "longitude": -75.9975448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.2884996, + "longitude": -75.9978022 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3009434, + "longitude": -75.9359373 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3009371, + "longitude": -75.9356366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3057669, + "longitude": -75.9354778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3057849, + "longitude": -75.935784 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5022935, + "longitude": -77.1301067 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5023784, + "longitude": -77.130957 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5025632, + "longitude": -77.1328501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5024748, + "longitude": -77.1319408 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5024056, + "longitude": -77.131262 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5007709, + "longitude": -77.1276735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5009766, + "longitude": -77.1282031 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.500268, + "longitude": -77.126282 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5004964, + "longitude": -77.1269046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4999302, + "longitude": -77.1244397 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5018231, + "longitude": -77.1277739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5019052, + "longitude": -77.1276236 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5019564, + "longitude": -77.1274432 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.502026, + "longitude": -77.1273774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.502109, + "longitude": -77.1273555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5021921, + "longitude": -77.1273823 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5022203, + "longitude": -77.1275387 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5027837, + "longitude": -77.1288973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5022072, + "longitude": -77.1292101 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5027319, + "longitude": -77.1272573 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5029054, + "longitude": -77.1277515 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5013998, + "longitude": -77.1280123 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5003985, + "longitude": -77.1225543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4996059, + "longitude": -77.1227555 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4996421, + "longitude": -77.1167448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4999082, + "longitude": -77.1190891 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5022969, + "longitude": -77.1182976 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5027163, + "longitude": -77.1184939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5024413, + "longitude": -77.1184986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.499903, + "longitude": -77.1158811 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5004439, + "longitude": -77.1148065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5011783, + "longitude": -77.1152632 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5014949, + "longitude": -77.1153723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5018569, + "longitude": -77.1160655 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.501706, + "longitude": -77.1156382 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5033706, + "longitude": -77.1333906 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5039841, + "longitude": -77.1336973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5043656, + "longitude": -77.1298841 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5043987, + "longitude": -77.1309004 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5044223, + "longitude": -77.1325938 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5044485, + "longitude": -77.1336926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.504237, + "longitude": -77.133715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5036555, + "longitude": -77.1335694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5030069, + "longitude": -77.1287832 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5039212, + "longitude": -77.1228459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5039349, + "longitude": -77.1231903 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5040168, + "longitude": -77.1235552 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.504229, + "longitude": -77.1264485 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5041561, + "longitude": -77.1241061 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5043774, + "longitude": -77.1248189 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5043611, + "longitude": -77.1290466 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5045686, + "longitude": -77.1253388 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5047488, + "longitude": -77.1255901 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5048854, + "longitude": -77.1257072 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5050575, + "longitude": -77.1258208 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5052568, + "longitude": -77.1258728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5042323, + "longitude": -77.1268989 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.503547, + "longitude": -77.1223739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5035907, + "longitude": -77.12057 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5038194, + "longitude": -77.1194127 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5039868, + "longitude": -77.12245 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5035371, + "longitude": -77.1184699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5030941, + "longitude": -77.1185505 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5044316, + "longitude": -77.1181014 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.503946, + "longitude": -77.1194427 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5040855, + "longitude": -77.1187652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.504623, + "longitude": -77.1189338 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5049243, + "longitude": -77.1183051 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5050587, + "longitude": -77.1178536 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5182552, + "longitude": -76.7794385 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5204337, + "longitude": -76.7793097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5210634, + "longitude": -76.7792024 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.522595, + "longitude": -76.7793097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5226291, + "longitude": -76.7783012 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5194636, + "longitude": -76.7754473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5187318, + "longitude": -76.7754902 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5184935, + "longitude": -76.7752113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5223057, + "longitude": -76.7742672 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.522561, + "longitude": -76.7745676 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5188849, + "longitude": -76.7710914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5188509, + "longitude": -76.772293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5206039, + "longitude": -76.7735805 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5209783, + "longitude": -76.7740097 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5209783, + "longitude": -76.7743744 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5205698, + "longitude": -76.7748894 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5197529, + "longitude": -76.7748894 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.519021, + "longitude": -76.7691516 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5227992, + "longitude": -76.7745461 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5232417, + "longitude": -76.7739238 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.523514, + "longitude": -76.7743315 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5240586, + "longitude": -76.7737736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5241947, + "longitude": -76.7723145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5194309, + "longitude": -76.7616529 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.526914, + "longitude": -76.7630114 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5268977, + "longitude": -76.7632341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5273306, + "longitude": -76.7676457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5269102, + "longitude": -76.7674113 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5200805, + "longitude": -76.7496177 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5200185, + "longitude": -76.7508166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5197405, + "longitude": -76.7551845 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.525403, + "longitude": -76.7500844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5278667, + "longitude": -76.7500166 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5253773, + "longitude": -76.7512504 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.403896, + "longitude": -76.3917204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4036318, + "longitude": -76.3915542 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4061375, + "longitude": -76.384559 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4063889, + "longitude": -76.3846931 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6001903, + "longitude": -76.4516398 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6000098, + "longitude": -76.4517739 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.599598, + "longitude": -76.4495471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5985704, + "longitude": -76.4499047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5984646, + "longitude": -76.4464762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.598491, + "longitude": -76.4456608 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5986648, + "longitude": -76.4449885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5994242, + "longitude": -76.4450791 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.5996206, + "longitude": -76.4457562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6055823, + "longitude": -76.4488073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6036181, + "longitude": -76.4488498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.60338, + "longitude": -76.4489973 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6016504, + "longitude": -76.4500293 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6055502, + "longitude": -76.4456884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6014491, + "longitude": -76.4458993 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6022732, + "longitude": -76.4453473 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6030038, + "longitude": -76.4453554 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6030737, + "longitude": -76.4442888 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6049797, + "longitude": -76.4441925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6050369, + "longitude": -76.4456761 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.718653, + "longitude": -76.3637144 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7182533, + "longitude": -76.3638467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7166865, + "longitude": -76.3567109 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7172384, + "longitude": -76.3568312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.717454, + "longitude": -76.3573926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7170734, + "longitude": -76.357978 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7182089, + "longitude": -76.3615948 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7151513, + "longitude": -76.3554679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7151322, + "longitude": -76.3547863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.715608, + "longitude": -76.3545537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.819872, + "longitude": -77.1103347 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8195901, + "longitude": -77.1116659 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8181932, + "longitude": -77.1116058 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8181362, + "longitude": -77.1111367 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8190009, + "longitude": -77.1113692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8191941, + "longitude": -77.1100701 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8252659, + "longitude": -77.1135224 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8251487, + "longitude": -77.1139996 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8564953, + "longitude": -76.9069491 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8564491, + "longitude": -76.9049256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8564406, + "longitude": -76.9038312 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8555342, + "longitude": -76.8936818 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8549243, + "longitude": -76.893435 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8549921, + "longitude": -76.8930917 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8548057, + "longitude": -76.8919651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8548481, + "longitude": -76.8910746 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8550853, + "longitude": -76.8901949 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8550937, + "longitude": -76.8894975 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8552377, + "longitude": -76.888253 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8553648, + "longitude": -76.8879847 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8554665, + "longitude": -76.8875019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8556867, + "longitude": -76.886944 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8632595, + "longitude": -76.9066923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8625862, + "longitude": -76.9068742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8622809, + "longitude": -76.9068742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8612305, + "longitude": -76.9071358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8600543, + "longitude": -76.907386 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8593091, + "longitude": -76.9072495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8591385, + "longitude": -76.9073291 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8588706, + "longitude": -76.9075279 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8584947, + "longitude": -76.9078126 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8578026, + "longitude": -76.9083617 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.857501, + "longitude": -76.9081648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.857364, + "longitude": -76.9006448 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8640047, + "longitude": -76.9029736 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8647257, + "longitude": -76.9051981 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8649204, + "longitude": -76.9062715 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8642202, + "longitude": -76.9064762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8588209, + "longitude": -76.8955486 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8630094, + "longitude": -76.8936197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8628216, + "longitude": -76.8938915 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.862008, + "longitude": -76.8942539 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8618471, + "longitude": -76.8945257 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8618113, + "longitude": -76.8952844 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8616146, + "longitude": -76.8956921 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8615699, + "longitude": -76.8965188 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8617666, + "longitude": -76.8965528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8620885, + "longitude": -76.8964962 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8630273, + "longitude": -76.8969152 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8634121, + "longitude": -76.8971966 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8631967, + "longitude": -76.899562 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8633313, + "longitude": -76.8884216 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8630273, + "longitude": -76.889135 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.863072, + "longitude": -76.8899391 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8621243, + "longitude": -76.8915925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8621332, + "longitude": -76.8923286 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8639688, + "longitude": -76.8972193 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8642112, + "longitude": -76.897117 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8643818, + "longitude": -76.8972534 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8645882, + "longitude": -76.8977311 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8646511, + "longitude": -76.8986181 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8647768, + "longitude": -76.8990616 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8643638, + "longitude": -76.8991412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8640855, + "longitude": -76.8990047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8636815, + "longitude": -76.8990616 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.863519, + "longitude": -76.8874589 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8558053, + "longitude": -76.886472 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8560849, + "longitude": -76.8859463 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8564745, + "longitude": -76.8856995 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8566863, + "longitude": -76.8851416 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8567456, + "longitude": -76.8848197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8569235, + "longitude": -76.884412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8569235, + "longitude": -76.8840151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8571945, + "longitude": -76.8836503 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8573978, + "longitude": -76.8832533 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8578044, + "longitude": -76.8828027 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.858372, + "longitude": -76.8819766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8584143, + "longitude": -76.8817406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8583974, + "longitude": -76.8810754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8586685, + "longitude": -76.8803995 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8607692, + "longitude": -76.881923 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8620482, + "longitude": -76.8819766 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8638185, + "longitude": -76.883779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8637338, + "longitude": -76.8841438 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8639879, + "longitude": -76.8848197 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8640143, + "longitude": -76.8852269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8637677, + "longitude": -76.8859742 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8635036, + "longitude": -76.8865765 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3675921, + "longitude": -75.9472754 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3673382, + "longitude": -75.9467843 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3730946, + "longitude": -75.9420779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.37325, + "longitude": -75.9421256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3733295, + "longitude": -75.9422543 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.373322, + "longitude": -75.942445 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3857118, + "longitude": -75.8973065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3855583, + "longitude": -75.8972869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3863265, + "longitude": -75.8877656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3864834, + "longitude": -75.8877857 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3864179, + "longitude": -75.888596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3863768, + "longitude": -75.8890815 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3867315, + "longitude": -75.8891269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.3867707, + "longitude": -75.8886412 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4543003, + "longitude": -75.8821979 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4540461, + "longitude": -75.8817556 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4541781, + "longitude": -75.8821341 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.454061, + "longitude": -75.8819705 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.460827, + "longitude": -75.8797768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.46041, + "longitude": -75.8802155 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4587758, + "longitude": -75.8776366 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4606746, + "longitude": -75.8779652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4604602, + "longitude": -75.8781798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4609729, + "longitude": -75.8789925 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4605788, + "longitude": -75.8793871 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4585922, + "longitude": -75.8771846 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4579237, + "longitude": -75.8761256 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4582306, + "longitude": -75.8758182 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4588682, + "longitude": -75.8768284 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4601879, + "longitude": -75.8755066 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4604222, + "longitude": -75.8758779 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.4597698, + "longitude": -75.8765313 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6115276, + "longitude": -75.8029468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6100185, + "longitude": -75.8019218 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6109347, + "longitude": -75.8004821 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6121126, + "longitude": -75.8016083 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6115918, + "longitude": -75.8024579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6116211, + "longitude": -75.8025557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6115982, + "longitude": -75.8028025 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6163309, + "longitude": -75.7997284 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6164768, + "longitude": -75.7998673 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6355383, + "longitude": -75.7666235 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6359221, + "longitude": -75.767901 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.636384, + "longitude": -75.768062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6386689, + "longitude": -75.7668596 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6401102, + "longitude": -75.7677376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6401628, + "longitude": -75.7687717 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6400564, + "longitude": -75.762828 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6369829, + "longitude": -75.7634768 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6396001, + "longitude": -75.7630815 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6398473, + "longitude": -75.7629306 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6348831, + "longitude": -75.7646289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6374124, + "longitude": -75.7637789 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6351585, + "longitude": -75.7637527 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6354803, + "longitude": -75.7631403 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6356028, + "longitude": -75.7630955 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6361702, + "longitude": -75.7625406 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6414555, + "longitude": -75.7695696 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6406295, + "longitude": -75.7689537 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.64427, + "longitude": -75.763856 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6429542, + "longitude": -75.7660663 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6412983, + "longitude": -75.7611678 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6458477, + "longitude": -75.7630045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6418025, + "longitude": -75.7607748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6415783, + "longitude": -75.7619998 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6436811, + "longitude": -75.7645835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6439756, + "longitude": -75.7641326 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6447598, + "longitude": -75.7636045 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6467255, + "longitude": -75.7626068 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6479253, + "longitude": -75.7619864 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6489627, + "longitude": -75.762774 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6497152, + "longitude": -75.7623916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6510833, + "longitude": -75.7602572 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6508286, + "longitude": -75.7643648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6524739, + "longitude": -75.7628532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6550313, + "longitude": -75.7605296 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.647098, + "longitude": -75.7578364 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6445101, + "longitude": -75.7594808 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6444623, + "longitude": -75.7592879 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6532522, + "longitude": -75.7557289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6498174, + "longitude": -75.7563512 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6500974, + "longitude": -75.7571204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.650599, + "longitude": -75.7570818 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6525605, + "longitude": -75.7560266 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6590941, + "longitude": -75.7572121 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6551438, + "longitude": -75.7545963 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6556753, + "longitude": -75.754343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6539044, + "longitude": -75.7586959 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.656378, + "longitude": -75.7563787 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6577744, + "longitude": -75.755343 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6721934, + "longitude": -75.7140748 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6719821, + "longitude": -75.7138602 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6715556, + "longitude": -75.7144419 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.671967, + "longitude": -75.7149092 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7028926, + "longitude": -75.723557 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.703082, + "longitude": -75.7233614 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7065473, + "longitude": -75.7290678 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7065322, + "longitude": -75.729299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7064926, + "longitude": -75.7294206 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7233376, + "longitude": -75.7878156 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7235222, + "longitude": -75.7878756 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7242819, + "longitude": -75.7841358 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.7240967, + "longitude": -75.7840757 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6777905, + "longitude": -75.7067363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.6776055, + "longitude": -75.7065264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8256749, + "longitude": -76.2751207 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8254688, + "longitude": -76.2743835 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8316945, + "longitude": -76.2715199 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8314706, + "longitude": -76.27076 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8099982, + "longitude": -75.6158884 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8097585, + "longitude": -75.6165088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8117457, + "longitude": -75.6179788 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8121825, + "longitude": -75.6172977 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8074515, + "longitude": -75.6130831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.8080269, + "longitude": -75.612665 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9348498, + "longitude": -75.612673 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9343126, + "longitude": -75.6128483 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9332887, + "longitude": -75.6075952 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9337807, + "longitude": -75.6074434 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9931027, + "longitude": -75.594104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9886984, + "longitude": -75.5920598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9891766, + "longitude": -75.5916827 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9893889, + "longitude": -75.5921704 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9923742, + "longitude": -75.5936476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9924591, + "longitude": -75.5931797 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9927519, + "longitude": -75.5931769 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9928971, + "longitude": -75.5935228 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9931272, + "longitude": -75.5939509 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 37.9925161, + "longitude": -75.5929798 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2075723, + "longitude": -76.9999474 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2078495, + "longitude": -76.9992899 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2114791, + "longitude": -77.0024936 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.2111987, + "longitude": -77.0030149 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8393001, + "longitude": -77.0376735 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8392843, + "longitude": -77.0392657 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8393051, + "longitude": -77.0398504 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8393093, + "longitude": -77.0401401 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8394305, + "longitude": -77.0405692 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8394765, + "longitude": -77.0407248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8395266, + "longitude": -77.0410574 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8395122, + "longitude": -77.0416289 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8397272, + "longitude": -77.0427794 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8397731, + "longitude": -77.0429456 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8398859, + "longitude": -77.0430851 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8397587, + "longitude": -77.0355295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8395749, + "longitude": -77.0362806 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8394213, + "longitude": -77.0370458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8395487, + "longitude": -77.036492 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.840165, + "longitude": -77.0443782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.840281, + "longitude": -77.0447363 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.84073, + "longitude": -77.0451826 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8410642, + "longitude": -77.0457405 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8412817, + "longitude": -77.0465091 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8413298, + "longitude": -77.0471958 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8413152, + "longitude": -77.0476263 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.841574, + "longitude": -77.0477361 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8418038, + "longitude": -77.0479507 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8419458, + "longitude": -77.0480365 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8426478, + "longitude": -77.0483476 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8431909, + "longitude": -77.0485568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8435335, + "longitude": -77.048648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8440683, + "longitude": -77.0487499 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8446987, + "longitude": -77.048831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8454863, + "longitude": -77.0488605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8457453, + "longitude": -77.0487988 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.845973, + "longitude": -77.048662 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8463177, + "longitude": -77.0486459 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8464681, + "longitude": -77.0485145 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8413245, + "longitude": -77.0469073 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8413053, + "longitude": -77.0466618 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8411848, + "longitude": -77.0460577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8405147, + "longitude": -77.044942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8402365, + "longitude": -77.0446939 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8402257, + "longitude": -77.0445194 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8401628, + "longitude": -77.0442762 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8402073, + "longitude": -77.04413 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8465235, + "longitude": -77.048544 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8471094, + "longitude": -77.0479619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8475143, + "longitude": -77.047244 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8481617, + "longitude": -77.0476248 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8487903, + "longitude": -77.0474417 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8500903, + "longitude": -77.0474013 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8507023, + "longitude": -77.0474818 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8509697, + "longitude": -77.0472619 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8514632, + "longitude": -77.047087 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8523191, + "longitude": -77.04694 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8490799, + "longitude": -77.0477332 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8493229, + "longitude": -77.0477111 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8498552, + "longitude": -77.0473257 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8502929, + "longitude": -77.047404 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8504976, + "longitude": -77.0474577 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8466843, + "longitude": -77.0484501 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8469089, + "longitude": -77.0482288 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8493467, + "longitude": -77.0476645 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8477187, + "longitude": -77.0473822 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8482669, + "longitude": -77.0476111 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8479967, + "longitude": -77.0475605 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8473193, + "longitude": -77.0476625 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8489952, + "longitude": -77.0475221 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8486394, + "longitude": -77.0474587 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8488988, + "longitude": -77.047458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8498145, + "longitude": -77.0473741 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8497118, + "longitude": -77.0474611 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.849493, + "longitude": -77.0475706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8507452, + "longitude": -77.0474465 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8516368, + "longitude": -77.0470572 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8521371, + "longitude": -77.0469713 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8527238, + "longitude": -77.0467521 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8532089, + "longitude": -77.0465269 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.855281, + "longitude": -77.0461568 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8562799, + "longitude": -77.0461482 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8571404, + "longitude": -77.046336 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8577629, + "longitude": -77.0463628 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8586145, + "longitude": -77.0460951 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.859275, + "longitude": -77.0459175 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8594505, + "longitude": -77.0458532 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8545892, + "longitude": -77.0462804 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8596552, + "longitude": -77.0456869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8598879, + "longitude": -77.0454471 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8603244, + "longitude": -77.0452995 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8604769, + "longitude": -77.0451869 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8608737, + "longitude": -77.0451279 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8612768, + "longitude": -77.0448623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8618052, + "longitude": -77.0445137 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8621109, + "longitude": -77.044229 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8401157, + "longitude": -77.0432246 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8404542, + "longitude": -77.0433319 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8405503, + "longitude": -77.043301 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8405681, + "longitude": -77.0433104 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8405942, + "longitude": -77.043348 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8405077, + "longitude": -77.043493 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8403163, + "longitude": -77.0437449 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8402536, + "longitude": -77.043863 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8402319, + "longitude": -77.0439838 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8405739, + "longitude": -77.0434165 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8462012, + "longitude": -77.0327264 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8457981, + "longitude": -77.0328284 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8450293, + "longitude": -77.0330054 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8446324, + "longitude": -77.0331019 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8442814, + "longitude": -77.0332173 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8439367, + "longitude": -77.0333675 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8438281, + "longitude": -77.0334131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8433121, + "longitude": -77.0336706 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.84284, + "longitude": -77.0339173 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.842723, + "longitude": -77.0339629 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8426708, + "longitude": -77.0339683 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8420273, + "longitude": -77.0340219 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8416638, + "longitude": -77.034089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8412105, + "longitude": -77.0342285 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8410935, + "longitude": -77.0342928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.841035, + "longitude": -77.0342928 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8410015, + "longitude": -77.0343089 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8409556, + "longitude": -77.0343519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8409096, + "longitude": -77.0344538 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8408637, + "longitude": -77.0345718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.840801, + "longitude": -77.0345986 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8402411, + "longitude": -77.0345718 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8401492, + "longitude": -77.0345664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8401074, + "longitude": -77.0345879 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8400355, + "longitude": -77.034664 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8527332, + "longitude": -77.0324528 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8523029, + "longitude": -77.0322946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8522423, + "longitude": -77.0322919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8520669, + "longitude": -77.0323053 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8515363, + "longitude": -77.0322249 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8514611, + "longitude": -77.0322222 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8511178, + "longitude": -77.0322364 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8505636, + "longitude": -77.0316916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8498477, + "longitude": -77.0310519 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8496777, + "longitude": -77.0312288 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8490956, + "longitude": -77.0322926 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8489023, + "longitude": -77.0322946 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8487435, + "longitude": -77.032308 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8482108, + "longitude": -77.0322919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8481544, + "longitude": -77.0322919 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8481085, + "longitude": -77.0323 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8480291, + "longitude": -77.0323295 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8479769, + "longitude": -77.0323563 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8479121, + "longitude": -77.032359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8476969, + "longitude": -77.0323777 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8474985, + "longitude": -77.032426 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8472102, + "longitude": -77.032477 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8586631, + "longitude": -77.0348346 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8578777, + "longitude": -77.0344457 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8567749, + "longitude": -77.0338449 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8556575, + "longitude": -77.0332387 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8550893, + "longitude": -77.0329115 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8550329, + "longitude": -77.032882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.854987, + "longitude": -77.0328579 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8549431, + "longitude": -77.0328498 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8548867, + "longitude": -77.0328686 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.854847, + "longitude": -77.0328793 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8547551, + "longitude": -77.032882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8544982, + "longitude": -77.0328069 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8541724, + "longitude": -77.0326942 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.854093, + "longitude": -77.0326782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8540387, + "longitude": -77.0326782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8539698, + "longitude": -77.0326782 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8538862, + "longitude": -77.0326728 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633966, + "longitude": -77.0428131 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632976, + "longitude": -77.042656 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.863331, + "longitude": -77.042597 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633936, + "longitude": -77.0425648 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8634459, + "longitude": -77.042495 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8634417, + "longitude": -77.0424146 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8634145, + "longitude": -77.0422831 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.863354, + "longitude": -77.0420927 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633059, + "longitude": -77.0419854 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632621, + "longitude": -77.0418299 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632057, + "longitude": -77.0416904 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8629655, + "longitude": -77.0413524 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8628736, + "longitude": -77.0412693 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8628256, + "longitude": -77.0411673 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8627358, + "longitude": -77.041052 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8626042, + "longitude": -77.0408723 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8625395, + "longitude": -77.0407623 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8623912, + "longitude": -77.0404485 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8623661, + "longitude": -77.0403734 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8623661, + "longitude": -77.0403359 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8623682, + "longitude": -77.0402876 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8623891, + "longitude": -77.0402232 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8624288, + "longitude": -77.0401454 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8625979, + "longitude": -77.0399148 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8626689, + "longitude": -77.039845 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8627379, + "longitude": -77.0397941 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8628089, + "longitude": -77.0397833 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8629864, + "longitude": -77.0397914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8630825, + "longitude": -77.0397914 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8631827, + "longitude": -77.039786 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8631994, + "longitude": -77.039778 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.863214, + "longitude": -77.0397458 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632809, + "longitude": -77.0395151 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632997, + "longitude": -77.0392576 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633143, + "longitude": -77.0389062 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633352, + "longitude": -77.0385468 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633519, + "longitude": -77.0383081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633414, + "longitude": -77.0382652 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633206, + "longitude": -77.0382008 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632976, + "longitude": -77.0381472 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.86326, + "longitude": -77.0380882 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632412, + "longitude": -77.038056 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8632161, + "longitude": -77.0380399 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8630261, + "longitude": -77.0380157 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8627358, + "longitude": -77.0379702 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8625332, + "longitude": -77.0379272 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8622679, + "longitude": -77.0378924 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8618523, + "longitude": -77.0378065 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8616894, + "longitude": -77.0377475 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8615453, + "longitude": -77.0377046 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8614576, + "longitude": -77.0376671 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8614033, + "longitude": -77.037651 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8613469, + "longitude": -77.0376483 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8613051, + "longitude": -77.0376376 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8612613, + "longitude": -77.0376081 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8626866, + "longitude": -77.0436929 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8633215, + "longitude": -77.0429204 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8612007, + "longitude": -77.0375598 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611443, + "longitude": -77.0374874 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611151, + "longitude": -77.0374203 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611151, + "longitude": -77.0373506 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611297, + "longitude": -77.0371467 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611422, + "longitude": -77.0370716 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611318, + "longitude": -77.0369885 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611297, + "longitude": -77.0369214 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8611109, + "longitude": -77.036849 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8610984, + "longitude": -77.0368088 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8610837, + "longitude": -77.03679 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8610691, + "longitude": -77.0368007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8610441, + "longitude": -77.0368329 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8610211, + "longitude": -77.0368517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8609918, + "longitude": -77.0368624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8609584, + "longitude": -77.0368624 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8609208, + "longitude": -77.0368517 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8608477, + "longitude": -77.0368007 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8606807, + "longitude": -77.036629 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8605553, + "longitude": -77.0364601 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8604864, + "longitude": -77.0363823 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8601857, + "longitude": -77.036047 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8599893, + "longitude": -77.0358271 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8597408, + "longitude": -77.0354301 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": 38.8597032, + "longitude": -77.0353791 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": -34.6955228, + "longitude": 138.5799916 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": -34.694944, + "longitude": 138.5786699 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": -34.6893736, + "longitude": 138.5822783 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": -34.6899525, + "longitude": 138.5836001 + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + }, + { + "name": null, + "alt_name": null, + "icao": null, + "iata": null, + "faa": null, + "elevation": null, + "location": { + "latitude": null, + "longitude": null + }, + "state": null, + "type": null + } +] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index aa24d11..0d99e4e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,19 +6,19 @@ x-env_file: &env name: aviation services: - db: - image: postgis/postgis:latest - container_name: aviation-db + postgres: + image: postgis/postgis:17-3.5 + container_name: aviation-postgres env_file: *env environment: - POSTGRES_USER: ${DATABASE_USER} - POSTGRES_PASSWORD: ${DATABASE_PASSWORD} - POSTGRES_DB: ${DATABASE_NAME} + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + POSTGRES_DB: ${POSTGRES_NAME} volumes: - - db:/var/lib/postgresql/data - - db_logs:/var/log + - postgres:/var/lib/postgresql/data + - postgres_logs:/var/log ports: - - "${DATABASE_PORT:-5432}:5432" + - "${POSTGRES_PORT:-5432}:5432" networks: - backend profiles: @@ -26,7 +26,7 @@ services: restart: unless-stopped redis: - image: redis:latest + image: redis:8.0-M03 # Replace with valkey? container_name: aviation-redis volumes: - redis:/data @@ -39,7 +39,7 @@ services: restart: unless-stopped minio: - image: minio/minio + image: minio/minio:RELEASE.2025-02-28T09-55-16Z container_name: aviation-minio environment: MINIO_ROOT_USER: ${MINIO_ROOT_USER} @@ -64,7 +64,7 @@ services: build: context: api depends_on: - - db + - postgres - redis - minio networks: @@ -96,8 +96,8 @@ services: restart: unless-stopped volumes: - db: - db_logs: + postgres: + postgres_logs: redis: minio: diff --git a/ui/.eslintrc.json b/ui-old/.eslintrc.json similarity index 100% rename from ui/.eslintrc.json rename to ui-old/.eslintrc.json diff --git a/ui/.nvmrc b/ui-old/.nvmrc similarity index 100% rename from ui/.nvmrc rename to ui-old/.nvmrc diff --git a/ui-old/.prettierrc.json b/ui-old/.prettierrc.json new file mode 100644 index 0000000..2396656 --- /dev/null +++ b/ui-old/.prettierrc.json @@ -0,0 +1,8 @@ +{ + "trailingComma": "none", + "tabWidth": 2, + "semi": true, + "singleQuote": true, + "jsxSingleQuote": true, + "printWidth": 120 +} \ No newline at end of file diff --git a/ui-old/Dockerfile b/ui-old/Dockerfile new file mode 100644 index 0000000..444537f --- /dev/null +++ b/ui-old/Dockerfile @@ -0,0 +1,39 @@ +# Base +FROM node:21-alpine AS base + +# Dependencies +FROM base as deps +RUN apk add --no-cache libc6-compat +WORKDIR /app +COPY package.json package-lock.json ./ +RUN npm ci + +# Dev +FROM base AS dev +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +# Builder +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . +RUN npm run build + +# Runner +FROM base AS runner +WORKDIR /app +RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs +COPY --from=builder /app/next.config.js ./ +COPY --from=builder /app/public ./public +COPY --from=builder /app/package.json ./package.json +COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ +COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static + +USER nextjs +EXPOSE 3000 +ENV PORT 3000 +ENV NEXT_TELEMETRY_DISABLED 1 + +CMD ["node", "server.js"] diff --git a/ui/Makefile b/ui-old/Makefile similarity index 100% rename from ui/Makefile rename to ui-old/Makefile diff --git a/ui/next-env.d.ts b/ui-old/next-env.d.ts similarity index 100% rename from ui/next-env.d.ts rename to ui-old/next-env.d.ts diff --git a/ui/next.config.js b/ui-old/next.config.js similarity index 100% rename from ui/next.config.js rename to ui-old/next.config.js diff --git a/ui-old/package-lock.json b/ui-old/package-lock.json new file mode 100644 index 0000000..bddc514 --- /dev/null +++ b/ui-old/package-lock.json @@ -0,0 +1,5445 @@ +{ + "name": "aviation-weather", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "aviation-weather", + "version": "0.1.0", + "dependencies": { + "@mantine/core": "^7.3.2", + "@mantine/form": "^7.3.2", + "@mantine/hooks": "^7.3.2", + "@mantine/modals": "^7.3.2", + "@mantine/notifications": "^7.3.2", + "js-cookie": "^3.0.5", + "leaflet": "^1.9.4", + "next": "^14.0.4", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-icons": "^4.11.0", + "react-leaflet": "^4.2.1", + "recharts": "^2.10.3", + "recoil": "^0.7.7" + }, + "devDependencies": { + "@types/js-cookie": "^3.0.6", + "@types/leaflet": "^1.9.8", + "@types/node": "20.10.5", + "@types/react": "18.2.45", + "@types/react-dom": "18.2.18", + "@typescript-eslint/eslint-plugin": "^6.15.0", + "@typescript-eslint/parser": "^6.15.0", + "autoprefixer": "^10.4.16", + "eslint": "8.56.0", + "eslint-config-next": "14.0.4", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.1.0", + "postcss": "^8.4.32", + "postcss-import": "^15.1.0", + "postcss-preset-mantine": "^1.12.1", + "postcss-simple-vars": "^7.0.1", + "prettier": "^3.1.1", + "typescript": "5.3.3" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz", + "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==", + "dependencies": { + "@floating-ui/utils": "^0.1.3" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz", + "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==", + "dependencies": { + "@floating-ui/core": "^1.4.2", + "@floating-ui/utils": "^0.1.3" + } + }, + "node_modules/@floating-ui/react": { + "version": "0.24.8", + "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.24.8.tgz", + "integrity": "sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA==", + "dependencies": { + "@floating-ui/react-dom": "^2.0.1", + "aria-hidden": "^1.2.3", + "tabbable": "^6.0.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.4.tgz", + "integrity": "sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==", + "dependencies": { + "@floating-ui/dom": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz", + "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "dev": true + }, + "node_modules/@mantine/core": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@mantine/core/-/core-7.3.2.tgz", + "integrity": "sha512-CwAuQogVLcLR7O9e1eOgi3gtk4XX6cnaqevAxzJJpIOIyCnHiQ3cEGINVXyUUjUUipBlvK3sqz3NPGJ2ekLFDQ==", + "dependencies": { + "@floating-ui/react": "^0.24.8", + "clsx": "2.0.0", + "react-number-format": "^5.3.1", + "react-remove-scroll": "^2.5.7", + "react-textarea-autosize": "8.5.3", + "type-fest": "^3.13.1" + }, + "peerDependencies": { + "@mantine/hooks": "7.3.2", + "react": "^18.2.0", + "react-dom": "^18.2.0" + } + }, + "node_modules/@mantine/form": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@mantine/form/-/form-7.3.2.tgz", + "integrity": "sha512-/qa1KQKVC46XWgIU190r3XM3Xld8Lsvz4L/an//TO67RnAGEdC5OCvr2JCb+fprZZi3YdxaKOkVNvP20W23qkg==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "klona": "^2.0.6" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/@mantine/hooks": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-7.3.2.tgz", + "integrity": "sha512-xgumuuI3PBWXff5N02HCI7PEy25mDEdyXDQklUYK93J6FKwpcosyZnGVitoUrV1gLtYYa9ZudeAWdhHuh/CpOg==", + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/@mantine/modals": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@mantine/modals/-/modals-7.3.2.tgz", + "integrity": "sha512-vhpcp0Yqgm+K/vorDbuweTjzDO4pJaG2POc00cSTV3zJdsbeMAzVClovTuseJT+UO2lUdUP3RG1cInaZqSclhA==", + "peerDependencies": { + "@mantine/core": "7.3.2", + "@mantine/hooks": "7.3.2", + "react": "^18.2.0", + "react-dom": "^18.2.0" + } + }, + "node_modules/@mantine/notifications": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@mantine/notifications/-/notifications-7.3.2.tgz", + "integrity": "sha512-XOzgm4pm4XszavVN0QUjN+IP0xiG2IochxJSz/FduTI0r3u1WxdpvDYlOvEJpHhtWvyqI8W8rx6cPJaD2HdAwQ==", + "dependencies": { + "@mantine/store": "7.3.2", + "react-transition-group": "4.4.5" + }, + "peerDependencies": { + "@mantine/core": "7.3.2", + "@mantine/hooks": "7.3.2", + "react": "^18.2.0", + "react-dom": "^18.2.0" + } + }, + "node_modules/@mantine/notifications/node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/@mantine/notifications/node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/@mantine/store": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@mantine/store/-/store-7.3.2.tgz", + "integrity": "sha512-M1eWHzTRCeCFvrpFhXKIM9zblrlIT5/XrMue/fP2HrkA43dpkgq+ArnZkN3LhG9lWR/EKbRwQWDhDIvdLtfD7w==", + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/@next/env": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.4.tgz", + "integrity": "sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.0.4.tgz", + "integrity": "sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==", + "dev": true, + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.4.tgz", + "integrity": "sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.4.tgz", + "integrity": "sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.4.tgz", + "integrity": "sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.4.tgz", + "integrity": "sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.4.tgz", + "integrity": "sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.4.tgz", + "integrity": "sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.4.tgz", + "integrity": "sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.4.tgz", + "integrity": "sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.4.tgz", + "integrity": "sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/utils": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", + "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.3.0", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@react-leaflet/core": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", + "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz", + "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==", + "dev": true + }, + "node_modules/@swc/helpers": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.0.2.tgz", + "integrity": "sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA==" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.5.tgz", + "integrity": "sha512-dfEWpZJ1Pdg8meLlICX1M3WBIpxnaH2eQV2eY43Y5ysRJOTAV9f3/R++lgJKFstfrEOE2zdJ0sv5qwr2Bkic6Q==", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" + }, + "node_modules/@types/geojson": { + "version": "7946.0.13", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.13.tgz", + "integrity": "sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==", + "dev": true + }, + "node_modules/@types/js-cookie": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-3.0.6.tgz", + "integrity": "sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/leaflet": { + "version": "1.9.8", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.8.tgz", + "integrity": "sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg==", + "dev": true, + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/node": { + "version": "20.10.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", + "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.10", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", + "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==", + "devOptional": true + }, + "node_modules/@types/react": { + "version": "18.2.45", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.45.tgz", + "integrity": "sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==", + "devOptional": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.18", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", + "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", + "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==", + "devOptional": true + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.15.0.tgz", + "integrity": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.15.0", + "@typescript-eslint/type-utils": "6.15.0", + "@typescript-eslint/utils": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.15.0.tgz", + "integrity": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.15.0", + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/typescript-estree": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.15.0.tgz", + "integrity": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.15.0.tgz", + "integrity": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.15.0", + "@typescript-eslint/utils": "6.15.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.15.0.tgz", + "integrity": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.15.0.tgz", + "integrity": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.15.0.tgz", + "integrity": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.15.0", + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/typescript-estree": "6.15.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.15.0.tgz", + "integrity": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.15.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/aria-hidden": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz", + "integrity": "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dev": true, + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "dev": true, + "dependencies": { + "run-applescript": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001563", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", + "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/clsx": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", + "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "dev": true, + "dependencies": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dev": true, + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.587", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.587.tgz", + "integrity": "sha512-RyJX0q/zOkAoefZhB9XHghGeATVP0Q3mwA253XD/zj2OeXc+JZB9pCaEv6R578JUYaWM9PRhye0kXvd/V1cQ3Q==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dev": true, + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.0.4.tgz", + "integrity": "sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==", + "dev": true, + "dependencies": { + "@next/eslint-plugin-next": "14.0.4", + "@rushstack/eslint-patch": "^1.3.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", + "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.0.tgz", + "integrity": "sha512-hQc+2zbnMeXcIkg+pKZtVa+3Yqx4WY7SMkn1PLZ4VbBEU7jJIpVn9347P8BBhTbz6ne85aXvQf30kvexcqBeWw==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.5" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "node_modules/fast-equals": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", + "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globals/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/hamt_plus": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", + "integrity": "sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==" + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-wsl/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/js-cookie": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", + "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", + "engines": { + "node": ">=14" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/next": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/next/-/next-14.0.4.tgz", + "integrity": "sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==", + "dependencies": { + "@next/env": "14.0.4", + "@swc/helpers": "0.5.2", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "graceful-fs": "^4.2.11", + "postcss": "8.4.31", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=18.17.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "14.0.4", + "@next/swc-darwin-x64": "14.0.4", + "@next/swc-linux-arm64-gnu": "14.0.4", + "@next/swc-linux-arm64-musl": "14.0.4", + "@next/swc-linux-x64-gnu": "14.0.4", + "@next/swc-linux-x64-musl": "14.0.4", + "@next/swc-win32-arm64-msvc": "14.0.4", + "@next/swc-win32-ia32-msvc": "14.0.4", + "@next/swc-win32-x64-msvc": "14.0.4" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "dev": true, + "dependencies": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-mixins": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-9.0.4.tgz", + "integrity": "sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.11", + "postcss-js": "^4.0.0", + "postcss-simple-vars": "^7.0.0", + "sugarss": "^4.0.1" + }, + "engines": { + "node": ">=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-preset-mantine": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/postcss-preset-mantine/-/postcss-preset-mantine-1.12.1.tgz", + "integrity": "sha512-N1biscmlvJHYPWN6znrlFre80wh9baAaMETfERn8acQJykioGYmHIJLpQSwUSxqq/PG8QbayUyOnHgBV/tsZyA==", + "dev": true, + "dependencies": { + "postcss-mixins": "^9.0.4", + "postcss-nested": "^6.0.1" + }, + "peerDependencies": { + "postcss": ">=8.0.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-simple-vars": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz", + "integrity": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==", + "dev": true, + "engines": { + "node": ">=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.1" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-icons": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.12.0.tgz", + "integrity": "sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-leaflet": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", + "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", + "dependencies": { + "@react-leaflet/core": "^2.1.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-number-format": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/react-number-format/-/react-number-format-5.3.1.tgz", + "integrity": "sha512-qpYcQLauIeEhCZUZY9jXZnnroOtdy3jYaS1zQ3M1Sr6r/KMOBEIGNIb7eKT19g2N1wbYgFgvDzs19hw5TrB8XQ==", + "dependencies": { + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-remove-scroll": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz", + "integrity": "sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==", + "dependencies": { + "react-remove-scroll-bar": "^2.3.4", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-remove-scroll-bar": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz", + "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==", + "dependencies": { + "react-style-singleton": "^2.2.1", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-smooth": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-2.0.5.tgz", + "integrity": "sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA==", + "dependencies": { + "fast-equals": "^5.0.0", + "react-transition-group": "2.9.0" + }, + "peerDependencies": { + "prop-types": "^15.6.0", + "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-style-singleton": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", + "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", + "dependencies": { + "get-nonce": "^1.0.0", + "invariant": "^2.2.4", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-textarea-autosize": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", + "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "use-composed-ref": "^1.3.0", + "use-latest": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "dependencies": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0", + "react-dom": ">=15.0.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/recharts": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.10.3.tgz", + "integrity": "sha512-G4J96fKTZdfFQd6aQnZjo2nVNdXhp+uuLb00+cBTGLo85pChvm1+E67K3wBOHDE/77spcYb2Cy9gYWVqiZvQCg==", + "dependencies": { + "clsx": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.19", + "react-is": "^16.10.2", + "react-smooth": "^2.0.5", + "recharts-scale": "^0.4.4", + "tiny-invariant": "^1.3.1", + "victory-vendor": "^36.6.8" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "prop-types": "^15.6.0", + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", + "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/recoil": { + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.7.tgz", + "integrity": "sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==", + "dependencies": { + "hamt_plus": "1.0.2" + }, + "peerDependencies": { + "react": ">=16.13.1" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/run-applescript/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/run-applescript/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/run-applescript/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-applescript/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sugarss": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz", + "integrity": "sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==", + "dev": true, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dev": true, + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" + }, + "node_modules/titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-callback-ref": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz", + "integrity": "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-composed-ref": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", + "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-latest": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", + "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", + "dependencies": { + "use-isomorphic-layout-effect": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-sidecar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", + "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", + "dependencies": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/victory-vendor": { + "version": "36.6.12", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.6.12.tgz", + "integrity": "sha512-pJrTkNHln+D83vDCCSUf0ZfxBvIaVrFHmrBOsnnLAbdqfudRACAj51He2zU94/IWq9464oTADcPVkmWAfNMwgA==", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ui-old/package.json b/ui-old/package.json new file mode 100644 index 0000000..9655812 --- /dev/null +++ b/ui-old/package.json @@ -0,0 +1,47 @@ +{ + "name": "aviation-weather", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@mantine/core": "^7.3.2", + "@mantine/form": "^7.3.2", + "@mantine/hooks": "^7.3.2", + "@mantine/modals": "^7.3.2", + "@mantine/notifications": "^7.3.2", + "js-cookie": "^3.0.5", + "leaflet": "^1.9.4", + "next": "^14.0.4", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-icons": "^4.11.0", + "react-leaflet": "^4.2.1", + "recharts": "^2.10.3", + "recoil": "^0.7.7" + }, + "devDependencies": { + "@types/js-cookie": "^3.0.6", + "@types/leaflet": "^1.9.8", + "@types/node": "20.10.5", + "@types/react": "18.2.45", + "@types/react-dom": "18.2.18", + "@typescript-eslint/eslint-plugin": "^6.15.0", + "@typescript-eslint/parser": "^6.15.0", + "autoprefixer": "^10.4.16", + "eslint": "8.56.0", + "eslint-config-next": "14.0.4", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.1.0", + "postcss": "^8.4.32", + "postcss-import": "^15.1.0", + "postcss-preset-mantine": "^1.12.1", + "postcss-simple-vars": "^7.0.1", + "prettier": "^3.1.1", + "typescript": "5.3.3" + } +} diff --git a/ui/postcss.config.js b/ui-old/postcss.config.js similarity index 100% rename from ui/postcss.config.js rename to ui-old/postcss.config.js diff --git a/ui/public/favicon.ico b/ui-old/public/favicon.ico similarity index 100% rename from ui/public/favicon.ico rename to ui-old/public/favicon.ico diff --git a/ui/public/icons/ifr.svg b/ui-old/public/icons/ifr.svg similarity index 100% rename from ui/public/icons/ifr.svg rename to ui-old/public/icons/ifr.svg diff --git a/ui/public/icons/lifr.svg b/ui-old/public/icons/lifr.svg similarity index 100% rename from ui/public/icons/lifr.svg rename to ui-old/public/icons/lifr.svg diff --git a/ui/public/icons/mvfr.svg b/ui-old/public/icons/mvfr.svg similarity index 100% rename from ui/public/icons/mvfr.svg rename to ui-old/public/icons/mvfr.svg diff --git a/ui/public/icons/nometar.svg b/ui-old/public/icons/nometar.svg similarity index 100% rename from ui/public/icons/nometar.svg rename to ui-old/public/icons/nometar.svg diff --git a/ui/public/icons/unkn.svg b/ui-old/public/icons/unkn.svg similarity index 100% rename from ui/public/icons/unkn.svg rename to ui-old/public/icons/unkn.svg diff --git a/ui/public/icons/VFR.svg b/ui-old/public/icons/vfr.svg similarity index 100% rename from ui/public/icons/VFR.svg rename to ui-old/public/icons/vfr.svg diff --git a/ui/public/layers-2x.png b/ui-old/public/layers-2x.png similarity index 100% rename from ui/public/layers-2x.png rename to ui-old/public/layers-2x.png diff --git a/ui/public/layers.png b/ui-old/public/layers.png similarity index 100% rename from ui/public/layers.png rename to ui-old/public/layers.png diff --git a/ui/public/marker-icon-2x.png b/ui-old/public/marker-icon-2x.png similarity index 100% rename from ui/public/marker-icon-2x.png rename to ui-old/public/marker-icon-2x.png diff --git a/ui/public/marker-icon.png b/ui-old/public/marker-icon.png similarity index 100% rename from ui/public/marker-icon.png rename to ui-old/public/marker-icon.png diff --git a/ui/public/marker-shadow.png b/ui-old/public/marker-shadow.png similarity index 100% rename from ui/public/marker-shadow.png rename to ui-old/public/marker-shadow.png diff --git a/ui/public/vercel.svg b/ui-old/public/vercel.svg similarity index 100% rename from ui/public/vercel.svg rename to ui-old/public/vercel.svg diff --git a/ui/src/api/airport.ts b/ui-old/src/api/airport.ts similarity index 100% rename from ui/src/api/airport.ts rename to ui-old/src/api/airport.ts diff --git a/ui/src/api/airport.types.ts b/ui-old/src/api/airport.types.ts similarity index 100% rename from ui/src/api/airport.types.ts rename to ui-old/src/api/airport.types.ts diff --git a/ui/src/api/auth.ts b/ui-old/src/api/auth.ts similarity index 100% rename from ui/src/api/auth.ts rename to ui-old/src/api/auth.ts diff --git a/ui/src/api/auth.types.ts b/ui-old/src/api/auth.types.ts similarity index 100% rename from ui/src/api/auth.types.ts rename to ui-old/src/api/auth.types.ts diff --git a/ui/src/api/index.ts b/ui-old/src/api/index.ts similarity index 100% rename from ui/src/api/index.ts rename to ui-old/src/api/index.ts diff --git a/ui/src/api/metar.ts b/ui-old/src/api/metar.ts similarity index 100% rename from ui/src/api/metar.ts rename to ui-old/src/api/metar.ts diff --git a/ui/src/api/metar.types.ts b/ui-old/src/api/metar.types.ts similarity index 100% rename from ui/src/api/metar.types.ts rename to ui-old/src/api/metar.types.ts diff --git a/ui/src/api/users.ts b/ui-old/src/api/users.ts similarity index 100% rename from ui/src/api/users.ts rename to ui-old/src/api/users.ts diff --git a/ui/src/app/admin/page.tsx b/ui-old/src/app/admin/page.tsx similarity index 100% rename from ui/src/app/admin/page.tsx rename to ui-old/src/app/admin/page.tsx diff --git a/ui/src/app/airport/[icao]/page.tsx b/ui-old/src/app/airport/[icao]/page.tsx similarity index 100% rename from ui/src/app/airport/[icao]/page.tsx rename to ui-old/src/app/airport/[icao]/page.tsx diff --git a/ui/src/app/layout.tsx b/ui-old/src/app/layout.tsx similarity index 87% rename from ui/src/app/layout.tsx rename to ui-old/src/app/layout.tsx index 82dd4c9..58cc191 100644 --- a/ui/src/app/layout.tsx +++ b/ui-old/src/app/layout.tsx @@ -24,10 +24,8 @@ export default function RootLayout({ children }: { children: React.ReactNode }) - }> - - {children} - + }> + {children} diff --git a/ui/src/app/page.tsx b/ui-old/src/app/page.tsx similarity index 100% rename from ui/src/app/page.tsx rename to ui-old/src/app/page.tsx diff --git a/ui/src/app/profile/page.tsx b/ui-old/src/app/profile/page.tsx similarity index 100% rename from ui/src/app/profile/page.tsx rename to ui-old/src/app/profile/page.tsx diff --git a/ui/src/app/profile/profile.module.css b/ui-old/src/app/profile/profile.module.css similarity index 100% rename from ui/src/app/profile/profile.module.css rename to ui-old/src/app/profile/profile.module.css diff --git a/ui/src/app/recoil-root-wrapper.tsx b/ui-old/src/app/recoil-root-wrapper.tsx similarity index 100% rename from ui/src/app/recoil-root-wrapper.tsx rename to ui-old/src/app/recoil-root-wrapper.tsx diff --git a/ui/src/components/Admin/AirportForm.tsx b/ui-old/src/components/Admin/AirportForm.tsx similarity index 100% rename from ui/src/components/Admin/AirportForm.tsx rename to ui-old/src/components/Admin/AirportForm.tsx diff --git a/ui/src/components/Admin/AirportTablePanel.tsx b/ui-old/src/components/Admin/AirportTablePanel.tsx similarity index 100% rename from ui/src/components/Admin/AirportTablePanel.tsx rename to ui-old/src/components/Admin/AirportTablePanel.tsx diff --git a/ui/src/components/Header/HeaderModal.tsx b/ui-old/src/components/Header/HeaderModal.tsx similarity index 100% rename from ui/src/components/Header/HeaderModal.tsx rename to ui-old/src/components/Header/HeaderModal.tsx diff --git a/ui/src/components/Header/UserMenu.tsx b/ui-old/src/components/Header/UserMenu.tsx similarity index 100% rename from ui/src/components/Header/UserMenu.tsx rename to ui-old/src/components/Header/UserMenu.tsx diff --git a/ui-old/src/components/Header/index.tsx b/ui-old/src/components/Header/index.tsx new file mode 100644 index 0000000..8654ae8 --- /dev/null +++ b/ui-old/src/components/Header/index.tsx @@ -0,0 +1,111 @@ +'use client'; + +import Link from 'next/link'; +import { useState } from 'react'; +import { getAirport, getAirports } from '@/api/airport'; +import { Autocomplete, Button, Group, UnstyledButton } from '@mantine/core'; +import { SetterOrUpdater, useRecoilState } from 'recoil'; +import { useToggle } from '@mantine/hooks'; +import { HeaderModal } from './HeaderModal'; +import { coordinatesState } from '@/state/map'; +import { User } from '@/api/auth.types'; +import { usePathname, useRouter } from 'next/navigation'; +import { FaMoon } from "react-icons/fa6"; +import { FaSun } from "react-icons/fa6"; +import UserMenu from './UserMenu'; +import './styles.css'; + +interface HeaderProps { + user: User | undefined; + profilePicture: File | undefined; + setProfilePicture: SetterOrUpdater; + login: ({ email, password }: { email: string, password: string }) => Promise; + logout: () => Promise; + register: ({ firstName, lastName, email, password }: { firstName: string, lastName: string, email: string, password: string }) => Promise; +} + +export default function Header({ user, profilePicture, setProfilePicture, login, logout, register }: HeaderProps) { + const [searchValue, setSearchValue] = useState(''); + const [airports, setAirports] = useState<{ key: string; value: string; label: string }[]>([]); + const [modalType, toggle] = useToggle([undefined, 'login', 'register', 'reset']); + const [_, setCoordinates] = useRecoilState(coordinatesState); + const pathname = usePathname(); + const router = useRouter(); + + async function onChange(value: string) { + setSearchValue(value); + const airportData = await getAirports({ icaos: [value], name: value }); + setAirports( + airportData.data.map((airport) => ({ + key: airport.icao, + value: airport.icao, + label: `${airport.icao} - ${airport.name}` + })) + ); + } + + async function onClick(value: string) { + setSearchValue(''); + // Get current path + if (pathname == '/') { + const airport = await getAirport({ icao: value }); + if (airport) { + setCoordinates({ lat: airport.data.latitude, lon: airport.data.longitude }); + } + } else { + router.push(`/airport/${value}`) + } + } + + return ( + <> + + + + ); +} diff --git a/ui/src/components/Header/styles.css b/ui-old/src/components/Header/styles.css similarity index 100% rename from ui/src/components/Header/styles.css rename to ui-old/src/components/Header/styles.css diff --git a/ui/src/components/Loader.tsx b/ui-old/src/components/Loader.tsx similarity index 100% rename from ui/src/components/Loader.tsx rename to ui-old/src/components/Loader.tsx diff --git a/ui/src/components/Metars/MapTiles.tsx b/ui-old/src/components/Metars/MapTiles.tsx similarity index 100% rename from ui/src/components/Metars/MapTiles.tsx rename to ui-old/src/components/Metars/MapTiles.tsx diff --git a/ui/src/components/Metars/MetarMap.tsx b/ui-old/src/components/Metars/MetarMap.tsx similarity index 100% rename from ui/src/components/Metars/MetarMap.tsx rename to ui-old/src/components/Metars/MetarMap.tsx diff --git a/ui/src/components/Metars/MetarModal.tsx b/ui-old/src/components/Metars/MetarModal.tsx similarity index 100% rename from ui/src/components/Metars/MetarModal.tsx rename to ui-old/src/components/Metars/MetarModal.tsx diff --git a/ui/src/components/Metars/SkyConditions.tsx b/ui-old/src/components/Metars/SkyConditions.tsx similarity index 100% rename from ui/src/components/Metars/SkyConditions.tsx rename to ui-old/src/components/Metars/SkyConditions.tsx diff --git a/ui/src/components/Metars/index.tsx b/ui-old/src/components/Metars/index.tsx similarity index 100% rename from ui/src/components/Metars/index.tsx rename to ui-old/src/components/Metars/index.tsx diff --git a/ui/src/components/Metars/metars.css b/ui-old/src/components/Metars/metars.css similarity index 100% rename from ui/src/components/Metars/metars.css rename to ui-old/src/components/Metars/metars.css diff --git a/ui/src/components/Sidebar/Sidebar.css b/ui-old/src/components/Sidebar/Sidebar.css similarity index 100% rename from ui/src/components/Sidebar/Sidebar.css rename to ui-old/src/components/Sidebar/Sidebar.css diff --git a/ui/src/components/Sidebar/index.tsx b/ui-old/src/components/Sidebar/index.tsx similarity index 100% rename from ui/src/components/Sidebar/index.tsx rename to ui-old/src/components/Sidebar/index.tsx diff --git a/ui/src/js/theme.ts b/ui-old/src/js/theme.ts similarity index 100% rename from ui/src/js/theme.ts rename to ui-old/src/js/theme.ts diff --git a/ui/src/state/auth.ts b/ui-old/src/state/auth.ts similarity index 100% rename from ui/src/state/auth.ts rename to ui-old/src/state/auth.ts diff --git a/ui/src/state/map.ts b/ui-old/src/state/map.ts similarity index 100% rename from ui/src/state/map.ts rename to ui-old/src/state/map.ts diff --git a/ui/src/state/user.ts b/ui-old/src/state/user.ts similarity index 100% rename from ui/src/state/user.ts rename to ui-old/src/state/user.ts diff --git a/ui/styles/globals.css b/ui-old/styles/globals.css similarity index 100% rename from ui/styles/globals.css rename to ui-old/styles/globals.css diff --git a/ui-old/styles/leaflet.css b/ui-old/styles/leaflet.css new file mode 100644 index 0000000..31c64fb --- /dev/null +++ b/ui-old/styles/leaflet.css @@ -0,0 +1,623 @@ +/* required styles */ + +.leaflet-pane, +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-tile-container, +.leaflet-map-pane svg, +.leaflet-map-pane canvas, +.leaflet-zoom-box, +.leaflet-image-layer, +.leaflet-layer { + position: absolute; + left: 0; + top: 0; + } +.leaflet-container { + overflow: hidden; + } +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + -webkit-user-drag: none; + } +/* Safari renders non-retina tile on retina better with this, but Chrome is worse */ +.leaflet-safari .leaflet-tile { + image-rendering: -webkit-optimize-contrast; + } +/* hack that prevents hw layers "stretching" when loading new tiles */ +.leaflet-safari .leaflet-tile-container { + width: 1600px; + height: 1600px; + -webkit-transform-origin: 0 0; + } +.leaflet-marker-icon, +.leaflet-marker-shadow { + display: block; + } +/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */ +/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */ +.leaflet-container .leaflet-overlay-pane svg, +.leaflet-container .leaflet-marker-pane img, +.leaflet-container .leaflet-tile-pane img, +.leaflet-container img.leaflet-image-layer { + max-width: none !important; + } + +.leaflet-container.leaflet-touch-zoom { + -ms-touch-action: pan-x pan-y; + touch-action: pan-x pan-y; + } +.leaflet-container.leaflet-touch-drag { + -ms-touch-action: pinch-zoom; + } +.leaflet-container.leaflet-touch-drag.leaflet-touch-drag { + -ms-touch-action: none; + touch-action: none; +} +.leaflet-tile { + filter: inherit; + visibility: hidden; + } +.leaflet-tile-loaded { + visibility: inherit; + } +.leaflet-zoom-box { + width: 0; + height: 0; + -moz-box-sizing: border-box; + box-sizing: border-box; + z-index: 800; + } +/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ +.leaflet-overlay-pane svg { + -moz-user-select: none; + } + +.leaflet-pane { z-index: 400; } + +.leaflet-tile-pane { z-index: 200; } +.leaflet-overlay-pane { z-index: 400; } +.leaflet-shadow-pane { z-index: 500; } +.leaflet-marker-pane { z-index: 600; } +.leaflet-tooltip-pane { z-index: 650; } +.leaflet-popup-pane { z-index: 700; } + +.leaflet-map-pane canvas { z-index: 100; } +.leaflet-map-pane svg { z-index: 200; } + +.leaflet-vml-shape { + width: 1px; + height: 1px; + } +.lvml { + behavior: url(#default#VML); + display: inline-block; + position: absolute; + } + + +/* control positioning */ + +.leaflet-control { + position: relative; + z-index: 800; + pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ + pointer-events: auto; + } +.leaflet-top, +.leaflet-bottom { + position: absolute; + z-index: 1000; + pointer-events: none; + } +.leaflet-top { + top: 0; + } +.leaflet-right { + right: 0; + } +.leaflet-bottom { + bottom: 0; + } +.leaflet-left { + left: 0; + } +.leaflet-control { + float: left; + clear: both; + } +.leaflet-right .leaflet-control { + float: right; + } +.leaflet-top .leaflet-control { + margin-top: 10px; + } +.leaflet-bottom .leaflet-control { + margin-bottom: 10px; + } +.leaflet-left .leaflet-control { + margin-left: 10px; + } +.leaflet-right .leaflet-control { + margin-right: 10px; + } + + +/* zoom and fade animations */ + +.leaflet-fade-anim .leaflet-tile { + will-change: opacity; + } +.leaflet-fade-anim .leaflet-popup { + opacity: 0; + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; + } +.leaflet-fade-anim .leaflet-map-pane .leaflet-popup { + opacity: 1; + } +.leaflet-zoom-animated { + -webkit-transform-origin: 0 0; + -ms-transform-origin: 0 0; + transform-origin: 0 0; + } +.leaflet-zoom-anim .leaflet-zoom-animated { + will-change: transform; + } +.leaflet-zoom-anim .leaflet-zoom-animated { + -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); + -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); + -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1); + transition: transform 0.25s cubic-bezier(0,0,0.25,1); + } +.leaflet-zoom-anim .leaflet-tile, +.leaflet-pan-anim .leaflet-tile { + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; + } + +.leaflet-zoom-anim .leaflet-zoom-hide { + visibility: hidden; + } + + +/* cursors */ + +.leaflet-interactive { + cursor: pointer; + } +.leaflet-grab { + cursor: -webkit-grab; + cursor: -moz-grab; + } +.leaflet-crosshair, +.leaflet-crosshair .leaflet-interactive { + cursor: crosshair; + } +.leaflet-popup-pane, +.leaflet-control { + cursor: auto; + } +.leaflet-dragging .leaflet-grab, +.leaflet-dragging .leaflet-grab .leaflet-interactive, +.leaflet-dragging .leaflet-marker-draggable { + cursor: move; + cursor: -webkit-grabbing; + cursor: -moz-grabbing; + } + +/* marker & overlays interactivity */ +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-image-layer, +.leaflet-pane > svg path, +.leaflet-tile-container { + pointer-events: none; + } + +.leaflet-marker-icon.leaflet-interactive, +.leaflet-image-layer.leaflet-interactive, +.leaflet-pane > svg path.leaflet-interactive { + pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ + pointer-events: auto; + } + +/* visual tweaks */ + +.leaflet-container { + background: #ddd; + outline: 0; + } +.leaflet-container a { + color: #0078A8; + } +.leaflet-container a.leaflet-active { + outline: 2px solid orange; + } +.leaflet-zoom-box { + border: 2px dotted #38f; + background: rgba(255,255,255,0.5); + } + + +/* general typography */ +.leaflet-container { + font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; + } + + +/* general toolbar styles */ + +.leaflet-bar { + box-shadow: 0 1px 5px rgba(0,0,0,0.65); + border-radius: 4px; + } +.leaflet-bar a, +.leaflet-bar a:hover { + background-color: #fff; + border-bottom: 1px solid #ccc; + width: 26px; + height: 26px; + line-height: 26px; + display: block; + text-align: center; + text-decoration: none; + color: black; + } +.leaflet-bar a, +.leaflet-control-layers-toggle { + background-position: 50% 50%; + background-repeat: no-repeat; + display: block; + } +.leaflet-bar a:hover { + background-color: #f4f4f4; + } +.leaflet-bar a:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + } +.leaflet-bar a:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-bottom: none; + } +.leaflet-bar a.leaflet-disabled { + cursor: default; + background-color: #f4f4f4; + color: #bbb; + } + +.leaflet-touch .leaflet-bar a { + width: 30px; + height: 30px; + line-height: 30px; + } + + +/* zoom control */ + +.leaflet-control-zoom-in, +.leaflet-control-zoom-out { + font: bold 18px 'Lucida Console', Monaco, monospace; + text-indent: 1px; + } +.leaflet-control-zoom-out { + font-size: 20px; + } + +.leaflet-touch .leaflet-control-zoom-in { + font-size: 22px; + } +.leaflet-touch .leaflet-control-zoom-out { + font-size: 24px; + } + + +/* layers control */ + +.leaflet-control-layers { + box-shadow: 0 1px 5px rgba(0,0,0,0.4); + background: #fff; + border-radius: 5px; + } +.leaflet-control-layers-toggle { + background-image: url(../public/layers.png); + width: 36px; + height: 36px; + } +.leaflet-retina .leaflet-control-layers-toggle { + background-image: url(../public/layers-2x.png); + background-size: 26px 26px; + } +.leaflet-touch .leaflet-control-layers-toggle { + width: 44px; + height: 44px; + } +.leaflet-control-layers .leaflet-control-layers-list, +.leaflet-control-layers-expanded .leaflet-control-layers-toggle { + display: none; + } +.leaflet-control-layers-expanded .leaflet-control-layers-list { + display: block; + position: relative; + } +.leaflet-control-layers-expanded { + padding: 6px 10px 6px 6px; + color: #333; + background: #fff; + } +.leaflet-control-layers-scrollbar { + overflow-y: scroll; + padding-right: 5px; + } +.leaflet-control-layers-selector { + margin-top: 2px; + position: relative; + top: 1px; + } +.leaflet-control-layers label { + display: block; + } +.leaflet-control-layers-separator { + height: 0; + border-top: 1px solid #ddd; + margin: 5px -10px 5px -6px; + } + +/* Default icon URLs */ +.leaflet-default-icon-path { + background-image: url(../public/marker-icon.png); + } + + +/* attribution and scale controls */ + +.leaflet-container .leaflet-control-attribution { + background: #fff; + background: rgba(255, 255, 255, 0.7); + margin: 0; + } +.leaflet-control-attribution, +.leaflet-control-scale-line { + padding: 0 5px; + color: #333; + } +.leaflet-control-attribution a { + text-decoration: none; + } +.leaflet-control-attribution a:hover { + text-decoration: underline; + } +.leaflet-container .leaflet-control-attribution, +.leaflet-container .leaflet-control-scale { + font-size: 11px; + } +.leaflet-left .leaflet-control-scale { + margin-left: 5px; + } +.leaflet-bottom .leaflet-control-scale { + margin-bottom: 5px; + } +.leaflet-control-scale-line { + border: 2px solid #777; + border-top: none; + line-height: 1.1; + padding: 2px 5px 1px; + font-size: 11px; + white-space: nowrap; + overflow: hidden; + -moz-box-sizing: border-box; + box-sizing: border-box; + + background: #fff; + background: rgba(255, 255, 255, 0.5); + } +.leaflet-control-scale-line:not(:first-child) { + border-top: 2px solid #777; + border-bottom: none; + margin-top: -2px; + } +.leaflet-control-scale-line:not(:first-child):not(:last-child) { + border-bottom: 2px solid #777; + } + +.leaflet-touch .leaflet-control-attribution, +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + box-shadow: none; + } +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + border: 2px solid rgba(0,0,0,0.2); + background-clip: padding-box; + } + + +/* popup */ + +.leaflet-popup { + position: absolute; + text-align: center; + margin-bottom: 20px; + } +.leaflet-popup-content-wrapper { + padding: 1px; + text-align: left; + border-radius: 12px; + } +.leaflet-popup-content { + margin: 13px 19px; + line-height: 1.4; + } +.leaflet-popup-content p { + margin: 18px 0; + } +.leaflet-popup-tip-container { + width: 40px; + height: 20px; + position: absolute; + left: 50%; + margin-left: -20px; + overflow: hidden; + pointer-events: none; + } +.leaflet-popup-tip { + width: 17px; + height: 17px; + padding: 1px; + + margin: -10px auto 0; + + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + } +.leaflet-popup-content-wrapper, +.leaflet-popup-tip { + background: white; + color: #333; + box-shadow: 0 3px 14px rgba(0,0,0,0.4); + } +.leaflet-container a.leaflet-popup-close-button { + position: absolute; + top: 0; + right: 0; + padding: 4px 4px 0 0; + border: none; + text-align: center; + width: 18px; + height: 14px; + font: 16px/14px Tahoma, Verdana, sans-serif; + color: #c3c3c3; + text-decoration: none; + font-weight: bold; + background: transparent; + } +.leaflet-container a.leaflet-popup-close-button:hover { + color: #999; + } +.leaflet-popup-scrolled { + overflow: auto; + border-bottom: 1px solid #ddd; + border-top: 1px solid #ddd; + } + +.leaflet-oldie .leaflet-popup-content-wrapper { + zoom: 1; + } +.leaflet-oldie .leaflet-popup-tip { + width: 24px; + margin: 0 auto; + + -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; + filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); + } +.leaflet-oldie .leaflet-popup-tip-container { + margin-top: -1px; + } + +.leaflet-oldie .leaflet-control-zoom, +.leaflet-oldie .leaflet-control-layers, +.leaflet-oldie .leaflet-popup-content-wrapper, +.leaflet-oldie .leaflet-popup-tip { + border: 1px solid #999; + } + + +/* div icon */ + +.leaflet-div-icon { + background: #fff; + border: 1px solid #666; + } + + +/* Tooltip */ +/* Base styles for the element that has a tooltip */ +.leaflet-tooltip { + position: absolute; + padding: 6px; + background-color: #fff; + border: 1px solid #fff; + border-radius: 3px; + color: #222; + white-space: nowrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; + box-shadow: 0 1px 3px rgba(0,0,0,0.4); + } +.leaflet-tooltip.leaflet-clickable { + cursor: pointer; + pointer-events: auto; + } +.leaflet-tooltip-top:before, +.leaflet-tooltip-bottom:before, +.leaflet-tooltip-left:before, +.leaflet-tooltip-right:before { + position: absolute; + pointer-events: none; + border: 6px solid transparent; + background: transparent; + content: ""; + } + +/* Directions */ + +.leaflet-tooltip-bottom { + margin-top: 6px; +} +.leaflet-tooltip-top { + margin-top: -6px; +} +.leaflet-tooltip-bottom:before, +.leaflet-tooltip-top:before { + left: 50%; + margin-left: -6px; + } +.leaflet-tooltip-top:before { + bottom: 0; + margin-bottom: -12px; + border-top-color: #fff; + } +.leaflet-tooltip-bottom:before { + top: 0; + margin-top: -12px; + margin-left: -6px; + border-bottom-color: #fff; + } +.leaflet-tooltip-left { + margin-left: -6px; +} +.leaflet-tooltip-right { + margin-left: 6px; +} +.leaflet-tooltip-left:before, +.leaflet-tooltip-right:before { + top: 50%; + margin-top: -6px; + } +.leaflet-tooltip-left:before { + right: 0; + margin-right: -12px; + border-left-color: #fff; + } +.leaflet-tooltip-right:before { + left: 0; + margin-left: -12px; + border-right-color: #fff; + } diff --git a/ui-old/tsconfig.json b/ui-old/tsconfig.json new file mode 100755 index 0000000..44e2a2c --- /dev/null +++ b/ui-old/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "target": "ESNext", + "downlevelIteration": true, + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"], + "@api/*": ["src/api"], + "@app/*": ["./src/app/*"], + "@components/*": ["src/components/*"], + } + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] +} diff --git a/ui/.dockerignore b/ui/.dockerignore new file mode 100644 index 0000000..2f31584 --- /dev/null +++ b/ui/.dockerignore @@ -0,0 +1,3 @@ +package-lock.json +node_modules +dist/ \ No newline at end of file diff --git a/ui/Dockerfile b/ui/Dockerfile index 444537f..b60c647 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -1,39 +1,30 @@ -# Base -FROM node:21-alpine AS base +FROM node:18-alpine AS base -# Dependencies -FROM base as deps -RUN apk add --no-cache libc6-compat -WORKDIR /app -COPY package.json package-lock.json ./ -RUN npm ci - -# Dev -FROM base AS dev -WORKDIR /app -COPY --from=deps /app/node_modules ./node_modules -COPY . . - -# Builder FROM base AS builder -WORKDIR /app -COPY --from=deps /app/node_modules ./node_modules +RUN apk add --no-cache libc6-compat +WORKDIR /builder COPY . . -RUN npm run build +RUN \ + if [ -f package.json ]; then npm i && npm run build; \ + else echo "Lockfile not found." && exit 1; \ + fi -# Runner FROM base AS runner +ARG PORT=3000 +ENV PORT=${PORT} + WORKDIR /app -RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs -COPY --from=builder /app/next.config.js ./ -COPY --from=builder /app/public ./public -COPY --from=builder /app/package.json ./package.json -COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ -COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static -USER nextjs -EXPOSE 3000 -ENV PORT 3000 -ENV NEXT_TELEMETRY_DISABLED 1 +ENV NODE_ENV=production -CMD ["node", "server.js"] +#RUN addgroup --system --gid 1001 node +#RUN adduser --system --uid 1001 node + +COPY --from=builder /builder /app +#RUN chown -R node:node /app + +USER node + +EXPOSE ${PORT} + +CMD ["npm", "run", "dev"] diff --git a/ui/eslint.config.js b/ui/eslint.config.js new file mode 100644 index 0000000..092408a --- /dev/null +++ b/ui/eslint.config.js @@ -0,0 +1,28 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' + +export default tseslint.config( + { ignores: ['dist'] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ['**/*.{ts,tsx}'], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + 'react-hooks': reactHooks, + 'react-refresh': reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, + }, +) diff --git a/ui/index.html b/ui/index.html new file mode 100644 index 0000000..6139f5a --- /dev/null +++ b/ui/index.html @@ -0,0 +1,15 @@ + + + + + + + + + Aviation + + +
+ + + diff --git a/ui/package-lock.json b/ui/package-lock.json index bddc514..9ddb3c5 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -1,5445 +1,4882 @@ { - "name": "aviation-weather", - "version": "0.1.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "aviation-weather", - "version": "0.1.0", - "dependencies": { - "@mantine/core": "^7.3.2", - "@mantine/form": "^7.3.2", - "@mantine/hooks": "^7.3.2", - "@mantine/modals": "^7.3.2", - "@mantine/notifications": "^7.3.2", - "js-cookie": "^3.0.5", - "leaflet": "^1.9.4", - "next": "^14.0.4", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-icons": "^4.11.0", - "react-leaflet": "^4.2.1", - "recharts": "^2.10.3", - "recoil": "^0.7.7" - }, - "devDependencies": { - "@types/js-cookie": "^3.0.6", - "@types/leaflet": "^1.9.8", - "@types/node": "20.10.5", - "@types/react": "18.2.45", - "@types/react-dom": "18.2.18", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", - "autoprefixer": "^10.4.16", - "eslint": "8.56.0", - "eslint-config-next": "14.0.4", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.0", - "postcss": "^8.4.32", - "postcss-import": "^15.1.0", - "postcss-preset-mantine": "^1.12.1", - "postcss-simple-vars": "^7.0.1", - "prettier": "^3.1.1", - "typescript": "5.3.3" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", - "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@floating-ui/core": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz", - "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==", - "dependencies": { - "@floating-ui/utils": "^0.1.3" - } - }, - "node_modules/@floating-ui/dom": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz", - "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==", - "dependencies": { - "@floating-ui/core": "^1.4.2", - "@floating-ui/utils": "^0.1.3" - } - }, - "node_modules/@floating-ui/react": { - "version": "0.24.8", - "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.24.8.tgz", - "integrity": "sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA==", - "dependencies": { - "@floating-ui/react-dom": "^2.0.1", - "aria-hidden": "^1.2.3", - "tabbable": "^6.0.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/react-dom": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.4.tgz", - "integrity": "sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==", - "dependencies": { - "@floating-ui/dom": "^1.5.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/utils": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz", - "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", - "dev": true - }, - "node_modules/@mantine/core": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/core/-/core-7.3.2.tgz", - "integrity": "sha512-CwAuQogVLcLR7O9e1eOgi3gtk4XX6cnaqevAxzJJpIOIyCnHiQ3cEGINVXyUUjUUipBlvK3sqz3NPGJ2ekLFDQ==", - "dependencies": { - "@floating-ui/react": "^0.24.8", - "clsx": "2.0.0", - "react-number-format": "^5.3.1", - "react-remove-scroll": "^2.5.7", - "react-textarea-autosize": "8.5.3", - "type-fest": "^3.13.1" - }, - "peerDependencies": { - "@mantine/hooks": "7.3.2", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@mantine/form": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/form/-/form-7.3.2.tgz", - "integrity": "sha512-/qa1KQKVC46XWgIU190r3XM3Xld8Lsvz4L/an//TO67RnAGEdC5OCvr2JCb+fprZZi3YdxaKOkVNvP20W23qkg==", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "klona": "^2.0.6" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/@mantine/hooks": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-7.3.2.tgz", - "integrity": "sha512-xgumuuI3PBWXff5N02HCI7PEy25mDEdyXDQklUYK93J6FKwpcosyZnGVitoUrV1gLtYYa9ZudeAWdhHuh/CpOg==", - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/@mantine/modals": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/modals/-/modals-7.3.2.tgz", - "integrity": "sha512-vhpcp0Yqgm+K/vorDbuweTjzDO4pJaG2POc00cSTV3zJdsbeMAzVClovTuseJT+UO2lUdUP3RG1cInaZqSclhA==", - "peerDependencies": { - "@mantine/core": "7.3.2", - "@mantine/hooks": "7.3.2", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@mantine/notifications": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/notifications/-/notifications-7.3.2.tgz", - "integrity": "sha512-XOzgm4pm4XszavVN0QUjN+IP0xiG2IochxJSz/FduTI0r3u1WxdpvDYlOvEJpHhtWvyqI8W8rx6cPJaD2HdAwQ==", - "dependencies": { - "@mantine/store": "7.3.2", - "react-transition-group": "4.4.5" - }, - "peerDependencies": { - "@mantine/core": "7.3.2", - "@mantine/hooks": "7.3.2", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@mantine/notifications/node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/@mantine/notifications/node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/@mantine/store": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/store/-/store-7.3.2.tgz", - "integrity": "sha512-M1eWHzTRCeCFvrpFhXKIM9zblrlIT5/XrMue/fP2HrkA43dpkgq+ArnZkN3LhG9lWR/EKbRwQWDhDIvdLtfD7w==", - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/@next/env": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.4.tgz", - "integrity": "sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==" - }, - "node_modules/@next/eslint-plugin-next": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.0.4.tgz", - "integrity": "sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==", - "dev": true, - "dependencies": { - "glob": "7.1.7" - } - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.4.tgz", - "integrity": "sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.4.tgz", - "integrity": "sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.4.tgz", - "integrity": "sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.4.tgz", - "integrity": "sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.4.tgz", - "integrity": "sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.4.tgz", - "integrity": "sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.4.tgz", - "integrity": "sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.4.tgz", - "integrity": "sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.4.tgz", - "integrity": "sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@react-leaflet/core": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", - "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", - "peerDependencies": { - "leaflet": "^1.9.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz", - "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==", - "dev": true - }, - "node_modules/@swc/helpers": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", - "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@types/d3-array": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", - "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" - }, - "node_modules/@types/d3-color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", - "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" - }, - "node_modules/@types/d3-ease": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", - "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" - }, - "node_modules/@types/d3-interpolate": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", - "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", - "dependencies": { - "@types/d3-color": "*" - } - }, - "node_modules/@types/d3-path": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.0.2.tgz", - "integrity": "sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA==" - }, - "node_modules/@types/d3-scale": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", - "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", - "dependencies": { - "@types/d3-time": "*" - } - }, - "node_modules/@types/d3-shape": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.5.tgz", - "integrity": "sha512-dfEWpZJ1Pdg8meLlICX1M3WBIpxnaH2eQV2eY43Y5ysRJOTAV9f3/R++lgJKFstfrEOE2zdJ0sv5qwr2Bkic6Q==", - "dependencies": { - "@types/d3-path": "*" - } - }, - "node_modules/@types/d3-time": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", - "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" - }, - "node_modules/@types/d3-timer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", - "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" - }, - "node_modules/@types/geojson": { - "version": "7946.0.13", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.13.tgz", - "integrity": "sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==", - "dev": true - }, - "node_modules/@types/js-cookie": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-3.0.6.tgz", - "integrity": "sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/leaflet": { - "version": "1.9.8", - "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.8.tgz", - "integrity": "sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg==", - "dev": true, - "dependencies": { - "@types/geojson": "*" - } - }, - "node_modules/@types/node": { - "version": "20.10.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", - "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", - "dev": true, - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/prop-types": { - "version": "15.7.10", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", - "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==", - "devOptional": true - }, - "node_modules/@types/react": { - "version": "18.2.45", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.45.tgz", - "integrity": "sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==", - "devOptional": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.2.18", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", - "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", - "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==", - "devOptional": true - }, - "node_modules/@types/semver": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", - "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", - "dev": true - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.15.0.tgz", - "integrity": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==", - "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/type-utils": "6.15.0", - "@typescript-eslint/utils": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.4", - "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.15.0.tgz", - "integrity": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/typescript-estree": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.15.0.tgz", - "integrity": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.15.0.tgz", - "integrity": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "6.15.0", - "@typescript-eslint/utils": "6.15.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.15.0.tgz", - "integrity": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.15.0.tgz", - "integrity": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.15.0.tgz", - "integrity": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/typescript-estree": "6.15.0", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.15.0.tgz", - "integrity": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.15.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/aria-hidden": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz", - "integrity": "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", - "dev": true - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - } - }, - "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001563", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", - "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/clsx": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", - "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/d3-array": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", - "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", - "dependencies": { - "internmap": "1 - 2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", - "dependencies": { - "d3-color": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", - "dependencies": { - "d3-path": "^3.1.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "dependencies": { - "d3-array": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", - "dependencies": { - "d3-time": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decimal.js-light": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", - "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", - "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", - "dependencies": { - "@babel/runtime": "^7.1.2" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.587", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.587.tgz", - "integrity": "sha512-RyJX0q/zOkAoefZhB9XHghGeATVP0Q3mwA253XD/zj2OeXc+JZB9pCaEv6R578JUYaWM9PRhye0kXvd/V1cQ3Q==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", - "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", - "dev": true, - "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.1", - "es-set-tostringtag": "^2.0.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.0.1" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", - "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.56.0", - "@humanwhocodes/config-array": "^0.11.13", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.0.4.tgz", - "integrity": "sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==", - "dev": true, - "dependencies": { - "@next/eslint-plugin-next": "14.0.4", - "@rushstack/eslint-patch": "^1.3.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-prettier": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", - "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", - "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", - "dev": true, - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", - "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.0.tgz", - "integrity": "sha512-hQc+2zbnMeXcIkg+pKZtVa+3Yqx4WY7SMkn1PLZ4VbBEU7jJIpVn9347P8BBhTbz6ne85aXvQf30kvexcqBeWw==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.5" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/prettier" - }, - "peerDependencies": { - "@types/eslint": ">=8.0.0", - "eslint": ">=8.0.0", - "eslint-config-prettier": "*", - "prettier": ">=3.0.0" - }, - "peerDependenciesMeta": { - "@types/eslint": { - "optional": true - }, - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true - }, - "node_modules/fast-equals": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", - "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", - "dev": true - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", - "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", - "dev": true, - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globals/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/hamt_plus": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", - "integrity": "sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==" - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", - "dev": true, - "dependencies": { - "which-typed-array": "^1.1.11" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", - "engines": { - "node": ">=14" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", - "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", - "dev": true, - "dependencies": { - "language-subtag-registry": "^0.3.20" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/leaflet": { - "version": "1.9.4", - "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", - "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/next": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/next/-/next-14.0.4.tgz", - "integrity": "sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==", - "dependencies": { - "@next/env": "14.0.4", - "@swc/helpers": "0.5.2", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "graceful-fs": "^4.2.11", - "postcss": "8.4.31", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=18.17.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "14.0.4", - "@next/swc-darwin-x64": "14.0.4", - "@next/swc-linux-arm64-gnu": "14.0.4", - "@next/swc-linux-arm64-musl": "14.0.4", - "@next/swc-linux-x64-gnu": "14.0.4", - "@next/swc-linux-x64-musl": "14.0.4", - "@next/swc-win32-arm64-msvc": "14.0.4", - "@next/swc-win32-ia32-msvc": "14.0.4", - "@next/swc-win32-x64-msvc": "14.0.4" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", - "dev": true - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" - } - }, - "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-mixins": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-9.0.4.tgz", - "integrity": "sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==", - "dev": true, - "dependencies": { - "fast-glob": "^3.2.11", - "postcss-js": "^4.0.0", - "postcss-simple-vars": "^7.0.0", - "sugarss": "^4.0.1" - }, - "engines": { - "node": ">=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-preset-mantine": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/postcss-preset-mantine/-/postcss-preset-mantine-1.12.1.tgz", - "integrity": "sha512-N1biscmlvJHYPWN6znrlFre80wh9baAaMETfERn8acQJykioGYmHIJLpQSwUSxqq/PG8QbayUyOnHgBV/tsZyA==", - "dev": true, - "dependencies": { - "postcss-mixins": "^9.0.4", - "postcss-nested": "^6.0.1" - }, - "peerDependencies": { - "postcss": ">=8.0.0" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-simple-vars": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz", - "integrity": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==", - "dev": true, - "engines": { - "node": ">=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.1" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", - "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", - "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-icons": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.12.0.tgz", - "integrity": "sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==", - "peerDependencies": { - "react": "*" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-leaflet": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", - "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", - "dependencies": { - "@react-leaflet/core": "^2.1.0" - }, - "peerDependencies": { - "leaflet": "^1.9.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-number-format": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/react-number-format/-/react-number-format-5.3.1.tgz", - "integrity": "sha512-qpYcQLauIeEhCZUZY9jXZnnroOtdy3jYaS1zQ3M1Sr6r/KMOBEIGNIb7eKT19g2N1wbYgFgvDzs19hw5TrB8XQ==", - "dependencies": { - "prop-types": "^15.7.2" - }, - "peerDependencies": { - "react": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-remove-scroll": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz", - "integrity": "sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==", - "dependencies": { - "react-remove-scroll-bar": "^2.3.4", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-remove-scroll-bar": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz", - "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==", - "dependencies": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-smooth": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-2.0.5.tgz", - "integrity": "sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA==", - "dependencies": { - "fast-equals": "^5.0.0", - "react-transition-group": "2.9.0" - }, - "peerDependencies": { - "prop-types": "^15.6.0", - "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "dependencies": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-textarea-autosize": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", - "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", - "dependencies": { - "@babel/runtime": "^7.20.13", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-transition-group": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", - "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", - "dependencies": { - "dom-helpers": "^3.4.0", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2", - "react-lifecycles-compat": "^3.0.4" - }, - "peerDependencies": { - "react": ">=15.0.0", - "react-dom": ">=15.0.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/recharts": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.10.3.tgz", - "integrity": "sha512-G4J96fKTZdfFQd6aQnZjo2nVNdXhp+uuLb00+cBTGLo85pChvm1+E67K3wBOHDE/77spcYb2Cy9gYWVqiZvQCg==", - "dependencies": { - "clsx": "^2.0.0", - "eventemitter3": "^4.0.1", - "lodash": "^4.17.19", - "react-is": "^16.10.2", - "react-smooth": "^2.0.5", - "recharts-scale": "^0.4.4", - "tiny-invariant": "^1.3.1", - "victory-vendor": "^36.6.8" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "prop-types": "^15.6.0", - "react": "^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/recharts-scale": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", - "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", - "dependencies": { - "decimal.js-light": "^2.4.1" - } - }, - "node_modules/recoil": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.7.tgz", - "integrity": "sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==", - "dependencies": { - "hamt_plus": "1.0.2" - }, - "peerDependencies": { - "react": ">=16.13.1" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/run-applescript/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/run-applescript/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/sugarss": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz", - "integrity": "sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==", - "dev": true, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", - "dev": true, - "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/tabbable": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", - "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "dev": true, - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typescript": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", - "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-callback-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz", - "integrity": "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "dependencies": { - "use-isomorphic-layout-effect": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "dependencies": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/victory-vendor": { - "version": "36.6.12", - "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.6.12.tgz", - "integrity": "sha512-pJrTkNHln+D83vDCCSUf0ZfxBvIaVrFHmrBOsnnLAbdqfudRACAj51He2zU94/IWq9464oTADcPVkmWAfNMwgA==", - "dependencies": { - "@types/d3-array": "^3.0.3", - "@types/d3-ease": "^3.0.0", - "@types/d3-interpolate": "^3.0.1", - "@types/d3-scale": "^4.0.2", - "@types/d3-shape": "^3.1.0", - "@types/d3-time": "^3.0.0", - "@types/d3-timer": "^3.0.0", - "d3-array": "^3.1.6", - "d3-ease": "^3.0.1", - "d3-interpolate": "^3.0.1", - "d3-scale": "^4.0.2", - "d3-shape": "^3.1.0", - "d3-time": "^3.0.0", - "d3-timer": "^3.0.1" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dev": true, - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "name": "aviation-ui", + "version": "0.1.2", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "aviation-ui", + "version": "0.1.2", + "dependencies": { + "@mantine/core": "^7.17.2", + "@mantine/form": "^7.17.2", + "@mantine/hooks": "^7.17.2", + "@mantine/modals": "^7.17.2", + "@mantine/notifications": "7.17.2", + "@tabler/icons-react": "^3.31.0", + "d3": "^7.9.0", + "leaflet": "^1.9.4", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-leaflet": "^5.0.0" + }, + "devDependencies": { + "@eslint/js": "^9.21.0", + "@types/d3": "^7.4.3", + "@types/leaflet": "^1.9.16", + "@types/node": "^22.13.10", + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.4", + "@vitejs/plugin-react": "^4.3.4", + "autoprefixer": "^10.4.16", + "eslint": "^9.21.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^16.0.0", + "postcss": "^8.5.3", + "postcss-import": "^15.1.0", + "postcss-preset-mantine": "^1.17.0", + "postcss-simple-vars": "^7.0.1", + "prettier": "3.4.1", + "typescript": "~5.7.2", + "typescript-eslint": "^8.25.0", + "vite": "^6.2.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz", + "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.9", + "@babel/types": "^7.26.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", + "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz", + "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", + "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.9" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz", + "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz", + "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz", + "integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz", + "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz", + "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz", + "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz", + "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz", + "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz", + "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz", + "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz", + "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz", + "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz", + "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz", + "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz", + "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz", + "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz", + "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz", + "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz", + "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz", + "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz", + "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz", + "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz", + "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz", + "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz", + "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz", + "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz", + "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz", + "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", + "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.1.0.tgz", + "integrity": "sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", + "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz", + "integrity": "sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.22.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.22.0.tgz", + "integrity": "sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", + "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.12.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.9", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz", + "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.9" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.13", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz", + "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.9" + } + }, + "node_modules/@floating-ui/react": { + "version": "0.26.28", + "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.28.tgz", + "integrity": "sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==", + "license": "MIT", + "dependencies": { + "@floating-ui/react-dom": "^2.1.2", + "@floating-ui/utils": "^0.2.8", + "tabbable": "^6.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz", + "integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz", + "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==", + "license": "MIT" + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mantine/core": { + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@mantine/core/-/core-7.17.2.tgz", + "integrity": "sha512-R6MYhitJ0JEgrhadd31Nw9FhRaQwDHjXUs5YIlitKH/fTOz9gKSxKjzmNng3bEBQCcbEDOkZj3FRcBgTUh/F0Q==", + "license": "MIT", + "dependencies": { + "@floating-ui/react": "^0.26.28", + "clsx": "^2.1.1", + "react-number-format": "^5.4.3", + "react-remove-scroll": "^2.6.2", + "react-textarea-autosize": "8.5.6", + "type-fest": "^4.27.0" + }, + "peerDependencies": { + "@mantine/hooks": "7.17.2", + "react": "^18.x || ^19.x", + "react-dom": "^18.x || ^19.x" + } + }, + "node_modules/@mantine/form": { + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@mantine/form/-/form-7.17.2.tgz", + "integrity": "sha512-MxZPKXXhaZ7M1ZJOpS2wifhh186DMvNjcXa2bP04Tp9TdvTlbLAJZxKjZkQnGGgt8Atsf6/3gdeJMfG704Km6g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "klona": "^2.0.6" + }, + "peerDependencies": { + "react": "^18.x || ^19.x" + } + }, + "node_modules/@mantine/hooks": { + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-7.17.2.tgz", + "integrity": "sha512-tbErVcGZu0E4dSmE6N0k6Tv1y9R3SQmmQgwqorcc+guEgKMdamc36lucZGlJnSGUmGj+WLUgELkEQ0asdfYBDA==", + "license": "MIT", + "peerDependencies": { + "react": "^18.x || ^19.x" + } + }, + "node_modules/@mantine/modals": { + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@mantine/modals/-/modals-7.17.2.tgz", + "integrity": "sha512-Ms8MYLJCZcxRnGfIQr4riGK2g5mpklxiEAU84vbptoAlQ2d5Iqu+CQ0XpDfamCQl/ltmPmYJYkrq52zhQWIS3w==", + "license": "MIT", + "peerDependencies": { + "@mantine/core": "7.17.2", + "@mantine/hooks": "7.17.2", + "react": "^18.x || ^19.x", + "react-dom": "^18.x || ^19.x" + } + }, + "node_modules/@mantine/notifications": { + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@mantine/notifications/-/notifications-7.17.2.tgz", + "integrity": "sha512-vg0L8cmihz0ODg4WJ9MAyK06WPt/6g67ksIUFxd4F8RfdJbIMLTsNG9yWoSfuhtXenUg717KaA917IWLjDSaqw==", + "license": "MIT", + "dependencies": { + "@mantine/store": "7.17.2", + "react-transition-group": "4.4.5" + }, + "peerDependencies": { + "@mantine/core": "7.17.2", + "@mantine/hooks": "7.17.2", + "react": "^18.x || ^19.x", + "react-dom": "^18.x || ^19.x" + } + }, + "node_modules/@mantine/store": { + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@mantine/store/-/store-7.17.2.tgz", + "integrity": "sha512-UoMUYQK/z58hMueCkpDIXc49gPgrVO/zcpb0k+B7MFU51EIUiFzHLxLFBmWrgCAM6rzJORqN8JjyCd/PB9j4aw==", + "license": "MIT", + "peerDependencies": { + "react": "^18.x || ^19.x" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@react-leaflet/core": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-3.0.0.tgz", + "integrity": "sha512-3EWmekh4Nz+pGcr+xjf0KNyYfC3U2JjnkWsh0zcqaexYqmmB5ZhH37kz41JXGmKzpaMZCnPofBBm64i+YrEvGQ==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.35.0.tgz", + "integrity": "sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.35.0.tgz", + "integrity": "sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.35.0.tgz", + "integrity": "sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.35.0.tgz", + "integrity": "sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.35.0.tgz", + "integrity": "sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.35.0.tgz", + "integrity": "sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.35.0.tgz", + "integrity": "sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.35.0.tgz", + "integrity": "sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.35.0.tgz", + "integrity": "sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.35.0.tgz", + "integrity": "sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.35.0.tgz", + "integrity": "sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.35.0.tgz", + "integrity": "sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.35.0.tgz", + "integrity": "sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.35.0.tgz", + "integrity": "sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.35.0.tgz", + "integrity": "sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.35.0.tgz", + "integrity": "sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.35.0.tgz", + "integrity": "sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.35.0.tgz", + "integrity": "sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tabler/icons": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.31.0.tgz", + "integrity": "sha512-dblAdeKY3+GA1U+Q9eziZ0ooVlZMHsE8dqP0RkwvRtEsAULoKOYaCUOcJ4oW1DjWegdxk++UAt2SlQVnmeHv+g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + } + }, + "node_modules/@tabler/icons-react": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/@tabler/icons-react/-/icons-react-3.31.0.tgz", + "integrity": "sha512-2rrCM5y/VnaVKnORpDdAua9SEGuJKVqPtWxeQ/vUVsgaUx30LDgBZph7/lterXxDY1IKR6NO//HDhWiifXTi3w==", + "license": "MIT", + "dependencies": { + "@tabler/icons": "3.31.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/codecalm" + }, + "peerDependencies": { + "react": ">= 16" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/d3": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz", + "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-axis": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz", + "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-brush": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz", + "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-chord": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz", + "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-contour": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz", + "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-dispatch": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.6.tgz", + "integrity": "sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-dsv": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", + "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-fetch": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", + "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-dsv": "*" + } + }, + "node_modules/@types/d3-force": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz", + "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-geo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz", + "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-hierarchy": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz", + "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz", + "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-polygon": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", + "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-quadtree": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", + "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-random": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz", + "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz", + "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-selection": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz", + "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-shape": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz", + "integrity": "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz", + "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-time-format": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", + "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-transition": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz", + "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.16.tgz", + "integrity": "sha512-wzZoyySUxkgMZ0ihJ7IaUIblG8Rdc8AbbZKLneyn+QjYsj5q1QU7TEKYqwTr10BGSzY5LI7tJk9Ifo+mEjdFRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/node": { + "version": "22.13.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz", + "integrity": "sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/react": { + "version": "19.0.10", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.10.tgz", + "integrity": "sha512-JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.0.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.4.tgz", + "integrity": "sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.26.0.tgz", + "integrity": "sha512-cLr1J6pe56zjKYajK6SSSre6nl1Gj6xDp1TY0trpgPzjVbgDwd09v2Ws37LABxzkicmUjhEeg/fAUjPJJB1v5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.26.0", + "@typescript-eslint/type-utils": "8.26.0", + "@typescript-eslint/utils": "8.26.0", + "@typescript-eslint/visitor-keys": "8.26.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.26.0.tgz", + "integrity": "sha512-mNtXP9LTVBy14ZF3o7JG69gRPBK/2QWtQd0j0oH26HcY/foyJJau6pNUez7QrM5UHnSvwlQcJXKsk0I99B9pOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.26.0", + "@typescript-eslint/types": "8.26.0", + "@typescript-eslint/typescript-estree": "8.26.0", + "@typescript-eslint/visitor-keys": "8.26.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.26.0.tgz", + "integrity": "sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.26.0", + "@typescript-eslint/visitor-keys": "8.26.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.26.0.tgz", + "integrity": "sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.26.0", + "@typescript-eslint/utils": "8.26.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.26.0.tgz", + "integrity": "sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.26.0.tgz", + "integrity": "sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.26.0", + "@typescript-eslint/visitor-keys": "8.26.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.26.0.tgz", + "integrity": "sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.26.0", + "@typescript-eslint/types": "8.26.0", + "@typescript-eslint/typescript-estree": "8.26.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.26.0.tgz", + "integrity": "sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.26.0", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz", + "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.26.0", + "@babel/plugin-transform-react-jsx-self": "^7.25.9", + "@babel/plugin-transform-react-jsx-source": "^7.25.9", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.14.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/autoprefixer": { + "version": "10.4.21", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001702", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz", + "integrity": "sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", + "dependencies": { + "d3-path": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", + "dependencies": { + "d3-array": "^3.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "license": "ISC", + "dependencies": { + "delaunator": "5" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", + "dependencies": { + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", + "dependencies": { + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "license": "ISC", + "dependencies": { + "robust-predicates": "^3.0.2" + } + }, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", + "license": "MIT" + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.113", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.113.tgz", + "integrity": "sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==", + "dev": true, + "license": "ISC" + }, + "node_modules/esbuild": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz", + "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.0", + "@esbuild/android-arm": "0.25.0", + "@esbuild/android-arm64": "0.25.0", + "@esbuild/android-x64": "0.25.0", + "@esbuild/darwin-arm64": "0.25.0", + "@esbuild/darwin-x64": "0.25.0", + "@esbuild/freebsd-arm64": "0.25.0", + "@esbuild/freebsd-x64": "0.25.0", + "@esbuild/linux-arm": "0.25.0", + "@esbuild/linux-arm64": "0.25.0", + "@esbuild/linux-ia32": "0.25.0", + "@esbuild/linux-loong64": "0.25.0", + "@esbuild/linux-mips64el": "0.25.0", + "@esbuild/linux-ppc64": "0.25.0", + "@esbuild/linux-riscv64": "0.25.0", + "@esbuild/linux-s390x": "0.25.0", + "@esbuild/linux-x64": "0.25.0", + "@esbuild/netbsd-arm64": "0.25.0", + "@esbuild/netbsd-x64": "0.25.0", + "@esbuild/openbsd-arm64": "0.25.0", + "@esbuild/openbsd-x64": "0.25.0", + "@esbuild/sunos-x64": "0.25.0", + "@esbuild/win32-arm64": "0.25.0", + "@esbuild/win32-ia32": "0.25.0", + "@esbuild/win32-x64": "0.25.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.22.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.22.0.tgz", + "integrity": "sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.19.2", + "@eslint/config-helpers": "^0.1.0", + "@eslint/core": "^0.12.0", + "@eslint/eslintrc": "^3.3.0", + "@eslint/js": "9.22.0", + "@eslint/plugin-kit": "^0.2.7", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.3.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.19.tgz", + "integrity": "sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", + "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.0.0.tgz", + "integrity": "sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause" + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.9.tgz", + "integrity": "sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-mixins": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-9.0.4.tgz", + "integrity": "sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "^3.2.11", + "postcss-js": "^4.0.0", + "postcss-simple-vars": "^7.0.0", + "sugarss": "^4.0.1" + }, + "engines": { + "node": ">=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-preset-mantine": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/postcss-preset-mantine/-/postcss-preset-mantine-1.17.0.tgz", + "integrity": "sha512-ji1PMDBUf2Vsx/HE5faMSs1+ff6qE6YRulTr4Ja+6HD3gop8rSMTCYdpN7KrdsEg079kfBKkO/PaKhG9uR0zwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-mixins": "^9.0.4", + "postcss-nested": "^6.0.1" + }, + "peerDependencies": { + "postcss": ">=8.0.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-simple-vars": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz", + "integrity": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.1" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.1.tgz", + "integrity": "sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", + "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", + "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.25.0" + }, + "peerDependencies": { + "react": "^19.0.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-leaflet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-5.0.0.tgz", + "integrity": "sha512-CWbTpr5vcHw5bt9i4zSlPEVQdTVcML390TjeDG0cK59z1ylexpqC6M1PJFjV8jD7CF+ACBFsLIDs6DRMoLEofw==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^3.0.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/react-number-format": { + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/react-number-format/-/react-number-format-5.4.3.tgz", + "integrity": "sha512-VCY5hFg/soBighAoGcdE+GagkJq0230qN6jcS5sp8wQX1qy1fYN/RX7/BXkrs0oyzzwqR8/+eSUrqXbGeywdUQ==", + "license": "MIT", + "peerDependencies": { + "react": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-remove-scroll": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.6.3.tgz", + "integrity": "sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==", + "license": "MIT", + "dependencies": { + "react-remove-scroll-bar": "^2.3.7", + "react-style-singleton": "^2.2.3", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.3", + "use-sidecar": "^1.1.3" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-remove-scroll-bar": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz", + "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==", + "license": "MIT", + "dependencies": { + "react-style-singleton": "^2.2.2", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-style-singleton": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz", + "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==", + "license": "MIT", + "dependencies": { + "get-nonce": "^1.0.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-textarea-autosize": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.6.tgz", + "integrity": "sha512-aT3ioKXMa8f6zHYGebhbdMD2L00tKeRX1zuVuDx9YQK/JLLRSaSxq3ugECEmUB9z2kvk6bFSIoRHLkkUv0RJiw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "use-composed-ref": "^1.3.0", + "use-latest": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "license": "Unlicense" + }, + "node_modules/rollup": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.35.0.tgz", + "integrity": "sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.35.0", + "@rollup/rollup-android-arm64": "4.35.0", + "@rollup/rollup-darwin-arm64": "4.35.0", + "@rollup/rollup-darwin-x64": "4.35.0", + "@rollup/rollup-freebsd-arm64": "4.35.0", + "@rollup/rollup-freebsd-x64": "4.35.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.35.0", + "@rollup/rollup-linux-arm-musleabihf": "4.35.0", + "@rollup/rollup-linux-arm64-gnu": "4.35.0", + "@rollup/rollup-linux-arm64-musl": "4.35.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.35.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.35.0", + "@rollup/rollup-linux-riscv64-gnu": "4.35.0", + "@rollup/rollup-linux-s390x-gnu": "4.35.0", + "@rollup/rollup-linux-x64-gnu": "4.35.0", + "@rollup/rollup-linux-x64-musl": "4.35.0", + "@rollup/rollup-win32-arm64-msvc": "4.35.0", + "@rollup/rollup-win32-ia32-msvc": "4.35.0", + "@rollup/rollup-win32-x64-msvc": "4.35.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup/node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.35.0.tgz", + "integrity": "sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/scheduler": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", + "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sugarss": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz", + "integrity": "sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz", + "integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "4.37.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.37.0.tgz", + "integrity": "sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.26.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.26.0.tgz", + "integrity": "sha512-PtVz9nAnuNJuAVeUFvwztjuUgSnJInODAUx47VDwWPXzd5vismPOtPtt83tzNXyOjVQbPRp786D6WFW/M2koIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.26.0", + "@typescript-eslint/parser": "8.26.0", + "@typescript-eslint/utils": "8.26.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "dev": true, + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-callback-ref": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz", + "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-composed-ref": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.4.0.tgz", + "integrity": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.0.tgz", + "integrity": "sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-latest": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.3.0.tgz", + "integrity": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==", + "license": "MIT", + "dependencies": { + "use-isomorphic-layout-effect": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-sidecar": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz", + "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==", + "license": "MIT", + "dependencies": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.1.tgz", + "integrity": "sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "postcss": "^8.5.3", + "rollup": "^4.30.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } + } } diff --git a/ui/package.json b/ui/package.json index 9655812..9e3084e 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,47 +1,48 @@ { - "name": "aviation-weather", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint" - }, - "dependencies": { - "@mantine/core": "^7.3.2", - "@mantine/form": "^7.3.2", - "@mantine/hooks": "^7.3.2", - "@mantine/modals": "^7.3.2", - "@mantine/notifications": "^7.3.2", - "js-cookie": "^3.0.5", - "leaflet": "^1.9.4", - "next": "^14.0.4", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-icons": "^4.11.0", - "react-leaflet": "^4.2.1", - "recharts": "^2.10.3", - "recoil": "^0.7.7" - }, - "devDependencies": { - "@types/js-cookie": "^3.0.6", - "@types/leaflet": "^1.9.8", - "@types/node": "20.10.5", - "@types/react": "18.2.45", - "@types/react-dom": "18.2.18", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", - "autoprefixer": "^10.4.16", - "eslint": "8.56.0", - "eslint-config-next": "14.0.4", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.0", - "postcss": "^8.4.32", - "postcss-import": "^15.1.0", - "postcss-preset-mantine": "^1.12.1", - "postcss-simple-vars": "^7.0.1", - "prettier": "^3.1.1", - "typescript": "5.3.3" - } + "name": "aviation-ui", + "version": "0.1.2", + "private": true, + "type": "module", + "scripts": { + "dev": "vite --port 3000", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview", + "format": "prettier --write src" + }, + "dependencies": { + "@mantine/core": "^7.17.2", + "@mantine/form": "^7.17.2", + "@mantine/hooks": "^7.17.2", + "@mantine/modals": "^7.17.2", + "@mantine/notifications": "7.17.2", + "@tabler/icons-react": "^3.31.0", + "d3": "^7.9.0", + "leaflet": "^1.9.4", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "react-leaflet": "^5.0.0" + }, + "devDependencies": { + "@eslint/js": "^9.21.0", + "@types/d3": "^7.4.3", + "@types/leaflet": "^1.9.16", + "@types/node": "^22.13.10", + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.4", + "@vitejs/plugin-react": "^4.3.4", + "autoprefixer": "^10.4.16", + "eslint": "^9.21.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^16.0.0", + "postcss": "^8.5.3", + "postcss-import": "^15.1.0", + "postcss-preset-mantine": "^1.17.0", + "postcss-simple-vars": "^7.0.1", + "prettier": "3.4.1", + "typescript": "~5.7.2", + "typescript-eslint": "^8.25.0", + "vite": "^6.2.0" + } } diff --git a/ui/postcss.config.cjs b/ui/postcss.config.cjs new file mode 100644 index 0000000..87504f8 --- /dev/null +++ b/ui/postcss.config.cjs @@ -0,0 +1,16 @@ +module.exports = { + plugins: { + 'postcss-preset-mantine': {}, + 'postcss-simple-vars': { + variables: { + 'mantine-breakpoint-xs': '36em', + 'mantine-breakpoint-sm': '48em', + 'mantine-breakpoint-md': '62em', + 'mantine-breakpoint-lg': '75em', + 'mantine-breakpoint-xl': '88em', + }, + }, + 'postcss-import': {}, + autoprefixer: {} + } +}; diff --git a/ui/public/vite.svg b/ui/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/ui/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ui/src/App.css b/ui/src/App.css new file mode 100644 index 0000000..aade941 --- /dev/null +++ b/ui/src/App.css @@ -0,0 +1,27 @@ +/* Ensure that the html and body take up the full height */ +html, +body, +#root, +.App { + height: 100%; + margin: 0; + padding: 0; +} + +/* Set up Flexbox layout */ +.App { + display: flex; + flex-direction: column; + height: 100vh; /* Full viewport height */ +} + +/* Make the map container fill the remaining space */ +.leaflet-container { + flex: 1 1 auto; /* Allow the map to grow and fill space */ + width: 100%; +} + +/*.leaflet-container {*/ +/* width: 100%;*/ +/* height: 100vh;*/ +/*}*/ diff --git a/ui/src/App.tsx b/ui/src/App.tsx new file mode 100644 index 0000000..27e14b9 --- /dev/null +++ b/ui/src/App.tsx @@ -0,0 +1,48 @@ +import { MapContainer, TileLayer } from 'react-leaflet'; +import '@mantine/core/styles.css'; +import 'leaflet/dist/leaflet.css'; +import './App.css'; +import markerIcon2x from 'leaflet/dist/images/marker-icon-2x.png'; +import markerIcon from 'leaflet/dist/images/marker-icon.png'; +import markerShadow from 'leaflet/dist/images/marker-shadow.png'; +// import { Header } from '@components/Header'; + +// Fix for default marker icon issues in React-Leaflet +import L from 'leaflet'; + +// Fix Leaflet's default icon path issues with Webpack +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-expect-error +delete L.Icon.Default.prototype._getIconUrl; + +L.Icon.Default.mergeOptions({ + iconRetinaUrl: markerIcon2x, + iconUrl: markerIcon, + shadowUrl: markerShadow +}); + +const tileLayerUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'; + +function App() { + return ( +
+ {/*
*/} + + + +
+ ); +} + +export default App; diff --git a/ui/src/assets/react.svg b/ui/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/ui/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ui/src/components/Header/Header.module.css b/ui/src/components/Header/Header.module.css new file mode 100644 index 0000000..52997aa --- /dev/null +++ b/ui/src/components/Header/Header.module.css @@ -0,0 +1,33 @@ +.header { + height: 56px; + margin-bottom: 120px; + background-color: var(--mantine-color-body); + border-bottom: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4)); +} + +.inner { + height: 56px; + display: flex; + justify-content: space-between; + align-items: center; +} + +.link { + display: block; + line-height: 1; + padding: 8px 12px; + border-radius: var(--mantine-radius-sm); + text-decoration: none; + color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-dark-0)); + font-size: var(--mantine-font-size-sm); + font-weight: 500; + + @mixin hover { + background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6)); + } + + [data-mantine-color-scheme] &[data-active] { + background-color: var(--mantine-color-blue-filled); + color: var(--mantine-color-white); + } +} diff --git a/ui/src/components/Header/index.tsx b/ui/src/components/Header/index.tsx index 8654ae8..9f3df62 100644 --- a/ui/src/components/Header/index.tsx +++ b/ui/src/components/Header/index.tsx @@ -1,111 +1,43 @@ -'use client'; - -import Link from 'next/link'; import { useState } from 'react'; -import { getAirport, getAirports } from '@/api/airport'; -import { Autocomplete, Button, Group, UnstyledButton } from '@mantine/core'; -import { SetterOrUpdater, useRecoilState } from 'recoil'; -import { useToggle } from '@mantine/hooks'; -import { HeaderModal } from './HeaderModal'; -import { coordinatesState } from '@/state/map'; -import { User } from '@/api/auth.types'; -import { usePathname, useRouter } from 'next/navigation'; -import { FaMoon } from "react-icons/fa6"; -import { FaSun } from "react-icons/fa6"; -import UserMenu from './UserMenu'; -import './styles.css'; +import { Burger, Container, Group, Text } from '@mantine/core'; +import { useDisclosure } from '@mantine/hooks'; +import classes from './Header.module.css'; -interface HeaderProps { - user: User | undefined; - profilePicture: File | undefined; - setProfilePicture: SetterOrUpdater; - login: ({ email, password }: { email: string, password: string }) => Promise; - logout: () => Promise; - register: ({ firstName, lastName, email, password }: { firstName: string, lastName: string, email: string, password: string }) => Promise; -} +const links = [ + { link: '/', label: 'Map' }, + { link: '/airports', label: 'Airports' }, + { link: '/metars', label: 'METARs' } +]; -export default function Header({ user, profilePicture, setProfilePicture, login, logout, register }: HeaderProps) { - const [searchValue, setSearchValue] = useState(''); - const [airports, setAirports] = useState<{ key: string; value: string; label: string }[]>([]); - const [modalType, toggle] = useToggle([undefined, 'login', 'register', 'reset']); - const [_, setCoordinates] = useRecoilState(coordinatesState); - const pathname = usePathname(); - const router = useRouter(); +export function Header() { + const [opened, { toggle }] = useDisclosure(false); + const [active, setActive] = useState(links[0].link); - async function onChange(value: string) { - setSearchValue(value); - const airportData = await getAirports({ icaos: [value], name: value }); - setAirports( - airportData.data.map((airport) => ({ - key: airport.icao, - value: airport.icao, - label: `${airport.icao} - ${airport.name}` - })) - ); - } - - async function onClick(value: string) { - setSearchValue(''); - // Get current path - if (pathname == '/') { - const airport = await getAirport({ icao: value }); - if (airport) { - setCoordinates({ lat: airport.data.latitude, lon: airport.data.longitude }); - } - } else { - router.push(`/airport/${value}`) - } - } + const items = links.map((link) => ( + { + event.preventDefault(); + setActive(link.link); + }} + > + {link.label} + + )); return ( - <> - - - +
+ + Aviation Weather + + {items} + + + + +
); } diff --git a/ui/src/index.css b/ui/src/index.css new file mode 100644 index 0000000..e69de29 diff --git a/ui/src/main.tsx b/ui/src/main.tsx new file mode 100644 index 0000000..1dced89 --- /dev/null +++ b/ui/src/main.tsx @@ -0,0 +1,25 @@ +import { StrictMode } from 'react'; +import { createRoot } from 'react-dom/client'; +import './index.css'; +import App from './App.tsx'; +import { createTheme, MantineProvider } from '@mantine/core'; +import { Notifications } from '@mantine/notifications'; +import {} from '@mantine/core'; + +const theme = createTheme({ + fontFamily: 'Inter, sans-serif' +}); + +export const metadata = { + title: 'Aviation Weather', + description: '' +}; + +createRoot(document.getElementById('root')!).render( + + + + + + +); diff --git a/ui/src/vite-env.d.ts b/ui/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/ui/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/ui/styles/global.css b/ui/styles/global.css new file mode 100644 index 0000000..ae106d9 --- /dev/null +++ b/ui/styles/global.css @@ -0,0 +1,44 @@ +html, +body { + padding: 0; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; +} + +a { + color: inherit; + text-decoration: none; +} + +* { + box-sizing: border-box; +} + +.metar-tooltip { + position: absolute; + padding: 6px; + background-color: #000; + border: 1px solid #fff; + border-radius: 3px; + color: #222; + white-space: nowrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; + box-shadow: 0 1px 3px rgba(0,0,0,0.4); +} + +.content { + display: flex; + flex-direction: row; + flex: 1; + overflow: hidden; +} + +.wrapper > nav { + flex: 0 0 56px; + overflow: hidden; +} diff --git a/ui/styles/leaflet.css b/ui/styles/leaflet.css index 31c64fb..6086725 100644 --- a/ui/styles/leaflet.css +++ b/ui/styles/leaflet.css @@ -1,623 +1,623 @@ -/* required styles */ - -.leaflet-pane, -.leaflet-tile, -.leaflet-marker-icon, -.leaflet-marker-shadow, -.leaflet-tile-container, -.leaflet-map-pane svg, -.leaflet-map-pane canvas, -.leaflet-zoom-box, -.leaflet-image-layer, -.leaflet-layer { - position: absolute; - left: 0; - top: 0; - } -.leaflet-container { - overflow: hidden; - } -.leaflet-tile, -.leaflet-marker-icon, -.leaflet-marker-shadow { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - -webkit-user-drag: none; - } -/* Safari renders non-retina tile on retina better with this, but Chrome is worse */ -.leaflet-safari .leaflet-tile { - image-rendering: -webkit-optimize-contrast; - } -/* hack that prevents hw layers "stretching" when loading new tiles */ -.leaflet-safari .leaflet-tile-container { - width: 1600px; - height: 1600px; - -webkit-transform-origin: 0 0; - } -.leaflet-marker-icon, -.leaflet-marker-shadow { - display: block; - } -/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */ -/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */ -.leaflet-container .leaflet-overlay-pane svg, -.leaflet-container .leaflet-marker-pane img, -.leaflet-container .leaflet-tile-pane img, -.leaflet-container img.leaflet-image-layer { - max-width: none !important; - } - -.leaflet-container.leaflet-touch-zoom { - -ms-touch-action: pan-x pan-y; - touch-action: pan-x pan-y; - } -.leaflet-container.leaflet-touch-drag { - -ms-touch-action: pinch-zoom; - } -.leaflet-container.leaflet-touch-drag.leaflet-touch-drag { - -ms-touch-action: none; - touch-action: none; -} -.leaflet-tile { - filter: inherit; - visibility: hidden; - } -.leaflet-tile-loaded { - visibility: inherit; - } -.leaflet-zoom-box { - width: 0; - height: 0; - -moz-box-sizing: border-box; - box-sizing: border-box; - z-index: 800; - } -/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ -.leaflet-overlay-pane svg { - -moz-user-select: none; - } - -.leaflet-pane { z-index: 400; } - -.leaflet-tile-pane { z-index: 200; } -.leaflet-overlay-pane { z-index: 400; } -.leaflet-shadow-pane { z-index: 500; } -.leaflet-marker-pane { z-index: 600; } -.leaflet-tooltip-pane { z-index: 650; } -.leaflet-popup-pane { z-index: 700; } - -.leaflet-map-pane canvas { z-index: 100; } -.leaflet-map-pane svg { z-index: 200; } - -.leaflet-vml-shape { - width: 1px; - height: 1px; - } -.lvml { - behavior: url(#default#VML); - display: inline-block; - position: absolute; - } - - -/* control positioning */ - -.leaflet-control { - position: relative; - z-index: 800; - pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ - pointer-events: auto; - } -.leaflet-top, -.leaflet-bottom { - position: absolute; - z-index: 1000; - pointer-events: none; - } -.leaflet-top { - top: 0; - } -.leaflet-right { - right: 0; - } -.leaflet-bottom { - bottom: 0; - } -.leaflet-left { - left: 0; - } -.leaflet-control { - float: left; - clear: both; - } -.leaflet-right .leaflet-control { - float: right; - } -.leaflet-top .leaflet-control { - margin-top: 10px; - } -.leaflet-bottom .leaflet-control { - margin-bottom: 10px; - } -.leaflet-left .leaflet-control { - margin-left: 10px; - } -.leaflet-right .leaflet-control { - margin-right: 10px; - } - - -/* zoom and fade animations */ - -.leaflet-fade-anim .leaflet-tile { - will-change: opacity; - } -.leaflet-fade-anim .leaflet-popup { - opacity: 0; - -webkit-transition: opacity 0.2s linear; - -moz-transition: opacity 0.2s linear; - -o-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; - } -.leaflet-fade-anim .leaflet-map-pane .leaflet-popup { - opacity: 1; - } -.leaflet-zoom-animated { - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; - } -.leaflet-zoom-anim .leaflet-zoom-animated { - will-change: transform; - } -.leaflet-zoom-anim .leaflet-zoom-animated { - -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); - -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); - -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1); - transition: transform 0.25s cubic-bezier(0,0,0.25,1); - } -.leaflet-zoom-anim .leaflet-tile, -.leaflet-pan-anim .leaflet-tile { - -webkit-transition: none; - -moz-transition: none; - -o-transition: none; - transition: none; - } - -.leaflet-zoom-anim .leaflet-zoom-hide { - visibility: hidden; - } - - -/* cursors */ - -.leaflet-interactive { - cursor: pointer; - } -.leaflet-grab { - cursor: -webkit-grab; - cursor: -moz-grab; - } -.leaflet-crosshair, -.leaflet-crosshair .leaflet-interactive { - cursor: crosshair; - } -.leaflet-popup-pane, -.leaflet-control { - cursor: auto; - } -.leaflet-dragging .leaflet-grab, -.leaflet-dragging .leaflet-grab .leaflet-interactive, -.leaflet-dragging .leaflet-marker-draggable { - cursor: move; - cursor: -webkit-grabbing; - cursor: -moz-grabbing; - } - -/* marker & overlays interactivity */ -.leaflet-marker-icon, -.leaflet-marker-shadow, -.leaflet-image-layer, -.leaflet-pane > svg path, -.leaflet-tile-container { - pointer-events: none; - } - -.leaflet-marker-icon.leaflet-interactive, -.leaflet-image-layer.leaflet-interactive, -.leaflet-pane > svg path.leaflet-interactive { - pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ - pointer-events: auto; - } - -/* visual tweaks */ - -.leaflet-container { - background: #ddd; - outline: 0; - } -.leaflet-container a { - color: #0078A8; - } -.leaflet-container a.leaflet-active { - outline: 2px solid orange; - } -.leaflet-zoom-box { - border: 2px dotted #38f; - background: rgba(255,255,255,0.5); - } - - -/* general typography */ -.leaflet-container { - font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; - } - - -/* general toolbar styles */ - -.leaflet-bar { - box-shadow: 0 1px 5px rgba(0,0,0,0.65); - border-radius: 4px; - } -.leaflet-bar a, -.leaflet-bar a:hover { - background-color: #fff; - border-bottom: 1px solid #ccc; - width: 26px; - height: 26px; - line-height: 26px; - display: block; - text-align: center; - text-decoration: none; - color: black; - } -.leaflet-bar a, -.leaflet-control-layers-toggle { - background-position: 50% 50%; - background-repeat: no-repeat; - display: block; - } -.leaflet-bar a:hover { - background-color: #f4f4f4; - } -.leaflet-bar a:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - } -.leaflet-bar a:last-child { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - border-bottom: none; - } -.leaflet-bar a.leaflet-disabled { - cursor: default; - background-color: #f4f4f4; - color: #bbb; - } - -.leaflet-touch .leaflet-bar a { - width: 30px; - height: 30px; - line-height: 30px; - } - - -/* zoom control */ - -.leaflet-control-zoom-in, -.leaflet-control-zoom-out { - font: bold 18px 'Lucida Console', Monaco, monospace; - text-indent: 1px; - } -.leaflet-control-zoom-out { - font-size: 20px; - } - -.leaflet-touch .leaflet-control-zoom-in { - font-size: 22px; - } -.leaflet-touch .leaflet-control-zoom-out { - font-size: 24px; - } - - -/* layers control */ - -.leaflet-control-layers { - box-shadow: 0 1px 5px rgba(0,0,0,0.4); - background: #fff; - border-radius: 5px; - } -.leaflet-control-layers-toggle { - background-image: url(../public/layers.png); - width: 36px; - height: 36px; - } -.leaflet-retina .leaflet-control-layers-toggle { - background-image: url(../public/layers-2x.png); - background-size: 26px 26px; - } -.leaflet-touch .leaflet-control-layers-toggle { - width: 44px; - height: 44px; - } -.leaflet-control-layers .leaflet-control-layers-list, -.leaflet-control-layers-expanded .leaflet-control-layers-toggle { - display: none; - } -.leaflet-control-layers-expanded .leaflet-control-layers-list { - display: block; - position: relative; - } -.leaflet-control-layers-expanded { - padding: 6px 10px 6px 6px; - color: #333; - background: #fff; - } -.leaflet-control-layers-scrollbar { - overflow-y: scroll; - padding-right: 5px; - } -.leaflet-control-layers-selector { - margin-top: 2px; - position: relative; - top: 1px; - } -.leaflet-control-layers label { - display: block; - } -.leaflet-control-layers-separator { - height: 0; - border-top: 1px solid #ddd; - margin: 5px -10px 5px -6px; - } - -/* Default icon URLs */ -.leaflet-default-icon-path { - background-image: url(../public/marker-icon.png); - } - - -/* attribution and scale controls */ - -.leaflet-container .leaflet-control-attribution { - background: #fff; - background: rgba(255, 255, 255, 0.7); - margin: 0; - } -.leaflet-control-attribution, -.leaflet-control-scale-line { - padding: 0 5px; - color: #333; - } -.leaflet-control-attribution a { - text-decoration: none; - } -.leaflet-control-attribution a:hover { - text-decoration: underline; - } -.leaflet-container .leaflet-control-attribution, -.leaflet-container .leaflet-control-scale { - font-size: 11px; - } -.leaflet-left .leaflet-control-scale { - margin-left: 5px; - } -.leaflet-bottom .leaflet-control-scale { - margin-bottom: 5px; - } -.leaflet-control-scale-line { - border: 2px solid #777; - border-top: none; - line-height: 1.1; - padding: 2px 5px 1px; - font-size: 11px; - white-space: nowrap; - overflow: hidden; - -moz-box-sizing: border-box; - box-sizing: border-box; - - background: #fff; - background: rgba(255, 255, 255, 0.5); - } -.leaflet-control-scale-line:not(:first-child) { - border-top: 2px solid #777; - border-bottom: none; - margin-top: -2px; - } -.leaflet-control-scale-line:not(:first-child):not(:last-child) { - border-bottom: 2px solid #777; - } - -.leaflet-touch .leaflet-control-attribution, -.leaflet-touch .leaflet-control-layers, -.leaflet-touch .leaflet-bar { - box-shadow: none; - } -.leaflet-touch .leaflet-control-layers, -.leaflet-touch .leaflet-bar { - border: 2px solid rgba(0,0,0,0.2); - background-clip: padding-box; - } - - -/* popup */ - -.leaflet-popup { - position: absolute; - text-align: center; - margin-bottom: 20px; - } -.leaflet-popup-content-wrapper { - padding: 1px; - text-align: left; - border-radius: 12px; - } -.leaflet-popup-content { - margin: 13px 19px; - line-height: 1.4; - } -.leaflet-popup-content p { - margin: 18px 0; - } -.leaflet-popup-tip-container { - width: 40px; - height: 20px; - position: absolute; - left: 50%; - margin-left: -20px; - overflow: hidden; - pointer-events: none; - } -.leaflet-popup-tip { - width: 17px; - height: 17px; - padding: 1px; - - margin: -10px auto 0; - - -webkit-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -ms-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); - } -.leaflet-popup-content-wrapper, -.leaflet-popup-tip { - background: white; - color: #333; - box-shadow: 0 3px 14px rgba(0,0,0,0.4); - } -.leaflet-container a.leaflet-popup-close-button { - position: absolute; - top: 0; - right: 0; - padding: 4px 4px 0 0; - border: none; - text-align: center; - width: 18px; - height: 14px; - font: 16px/14px Tahoma, Verdana, sans-serif; - color: #c3c3c3; - text-decoration: none; - font-weight: bold; - background: transparent; - } -.leaflet-container a.leaflet-popup-close-button:hover { - color: #999; - } -.leaflet-popup-scrolled { - overflow: auto; - border-bottom: 1px solid #ddd; - border-top: 1px solid #ddd; - } - -.leaflet-oldie .leaflet-popup-content-wrapper { - zoom: 1; - } -.leaflet-oldie .leaflet-popup-tip { - width: 24px; - margin: 0 auto; - - -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; - filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); - } -.leaflet-oldie .leaflet-popup-tip-container { - margin-top: -1px; - } - -.leaflet-oldie .leaflet-control-zoom, -.leaflet-oldie .leaflet-control-layers, -.leaflet-oldie .leaflet-popup-content-wrapper, -.leaflet-oldie .leaflet-popup-tip { - border: 1px solid #999; - } - - -/* div icon */ - -.leaflet-div-icon { - background: #fff; - border: 1px solid #666; - } - - -/* Tooltip */ -/* Base styles for the element that has a tooltip */ -.leaflet-tooltip { - position: absolute; - padding: 6px; - background-color: #fff; - border: 1px solid #fff; - border-radius: 3px; - color: #222; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - pointer-events: none; - box-shadow: 0 1px 3px rgba(0,0,0,0.4); - } -.leaflet-tooltip.leaflet-clickable { - cursor: pointer; - pointer-events: auto; - } -.leaflet-tooltip-top:before, -.leaflet-tooltip-bottom:before, -.leaflet-tooltip-left:before, -.leaflet-tooltip-right:before { - position: absolute; - pointer-events: none; - border: 6px solid transparent; - background: transparent; - content: ""; - } - -/* Directions */ - -.leaflet-tooltip-bottom { - margin-top: 6px; -} -.leaflet-tooltip-top { - margin-top: -6px; -} -.leaflet-tooltip-bottom:before, -.leaflet-tooltip-top:before { - left: 50%; - margin-left: -6px; - } -.leaflet-tooltip-top:before { - bottom: 0; - margin-bottom: -12px; - border-top-color: #fff; - } -.leaflet-tooltip-bottom:before { - top: 0; - margin-top: -12px; - margin-left: -6px; - border-bottom-color: #fff; - } -.leaflet-tooltip-left { - margin-left: -6px; -} -.leaflet-tooltip-right { - margin-left: 6px; -} -.leaflet-tooltip-left:before, -.leaflet-tooltip-right:before { - top: 50%; - margin-top: -6px; - } -.leaflet-tooltip-left:before { - right: 0; - margin-right: -12px; - border-left-color: #fff; - } -.leaflet-tooltip-right:before { - left: 0; - margin-left: -12px; - border-right-color: #fff; - } +/* required styles */ + +.leaflet-pane, +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-tile-container, +.leaflet-map-pane svg, +.leaflet-map-pane canvas, +.leaflet-zoom-box, +.leaflet-image-layer, +.leaflet-layer { + position: absolute; + left: 0; + top: 0; +} +.leaflet-container { + overflow: hidden; +} +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + -webkit-user-drag: none; +} +/* Safari renders non-retina tile on retina better with this, but Chrome is worse */ +.leaflet-safari .leaflet-tile { + image-rendering: -webkit-optimize-contrast; +} +/* hack that prevents hw layers "stretching" when loading new tiles */ +.leaflet-safari .leaflet-tile-container { + width: 1600px; + height: 1600px; + -webkit-transform-origin: 0 0; +} +.leaflet-marker-icon, +.leaflet-marker-shadow { + display: block; +} +/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */ +/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */ +.leaflet-container .leaflet-overlay-pane svg, +.leaflet-container .leaflet-marker-pane img, +.leaflet-container .leaflet-tile-pane img, +.leaflet-container img.leaflet-image-layer { + max-width: none !important; +} + +.leaflet-container.leaflet-touch-zoom { + -ms-touch-action: pan-x pan-y; + touch-action: pan-x pan-y; +} +.leaflet-container.leaflet-touch-drag { + -ms-touch-action: pinch-zoom; +} +.leaflet-container.leaflet-touch-drag.leaflet-touch-drag { + -ms-touch-action: none; + touch-action: none; +} +.leaflet-tile { + filter: inherit; + visibility: hidden; +} +.leaflet-tile-loaded { + visibility: inherit; +} +.leaflet-zoom-box { + width: 0; + height: 0; + -moz-box-sizing: border-box; + box-sizing: border-box; + z-index: 800; +} +/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ +.leaflet-overlay-pane svg { + -moz-user-select: none; +} + +.leaflet-pane { z-index: 400; } + +.leaflet-tile-pane { z-index: 200; } +.leaflet-overlay-pane { z-index: 400; } +.leaflet-shadow-pane { z-index: 500; } +.leaflet-marker-pane { z-index: 600; } +.leaflet-tooltip-pane { z-index: 650; } +.leaflet-popup-pane { z-index: 700; } + +.leaflet-map-pane canvas { z-index: 100; } +.leaflet-map-pane svg { z-index: 200; } + +.leaflet-vml-shape { + width: 1px; + height: 1px; +} +.lvml { + behavior: url(#default#VML); + display: inline-block; + position: absolute; +} + + +/* control positioning */ + +.leaflet-control { + position: relative; + z-index: 800; + pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ + pointer-events: auto; +} +.leaflet-top, +.leaflet-bottom { + position: absolute; + z-index: 1000; + pointer-events: none; +} +.leaflet-top { + top: 0; +} +.leaflet-right { + right: 0; +} +.leaflet-bottom { + bottom: 0; +} +.leaflet-left { + left: 0; +} +.leaflet-control { + float: left; + clear: both; +} +.leaflet-right .leaflet-control { + float: right; +} +.leaflet-top .leaflet-control { + margin-top: 10px; +} +.leaflet-bottom .leaflet-control { + margin-bottom: 10px; +} +.leaflet-left .leaflet-control { + margin-left: 10px; +} +.leaflet-right .leaflet-control { + margin-right: 10px; +} + + +/* zoom and fade animations */ + +.leaflet-fade-anim .leaflet-tile { + will-change: opacity; +} +.leaflet-fade-anim .leaflet-popup { + opacity: 0; + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; +} +.leaflet-fade-anim .leaflet-map-pane .leaflet-popup { + opacity: 1; +} +.leaflet-zoom-animated { + -webkit-transform-origin: 0 0; + -ms-transform-origin: 0 0; + transform-origin: 0 0; +} +.leaflet-zoom-anim .leaflet-zoom-animated { + will-change: transform; +} +.leaflet-zoom-anim .leaflet-zoom-animated { + -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); + -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); + -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1); + transition: transform 0.25s cubic-bezier(0,0,0.25,1); +} +.leaflet-zoom-anim .leaflet-tile, +.leaflet-pan-anim .leaflet-tile { + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} + +.leaflet-zoom-anim .leaflet-zoom-hide { + visibility: hidden; +} + + +/* cursors */ + +.leaflet-interactive { + cursor: pointer; +} +.leaflet-grab { + cursor: -webkit-grab; + cursor: -moz-grab; +} +.leaflet-crosshair, +.leaflet-crosshair .leaflet-interactive { + cursor: crosshair; +} +.leaflet-popup-pane, +.leaflet-control { + cursor: auto; +} +.leaflet-dragging .leaflet-grab, +.leaflet-dragging .leaflet-grab .leaflet-interactive, +.leaflet-dragging .leaflet-marker-draggable { + cursor: move; + cursor: -webkit-grabbing; + cursor: -moz-grabbing; +} + +/* marker & overlays interactivity */ +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-image-layer, +.leaflet-pane > svg path, +.leaflet-tile-container { + pointer-events: none; +} + +.leaflet-marker-icon.leaflet-interactive, +.leaflet-image-layer.leaflet-interactive, +.leaflet-pane > svg path.leaflet-interactive { + pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ + pointer-events: auto; +} + +/* visual tweaks */ + +.leaflet-container { + background: #ddd; + outline: 0; +} +.leaflet-container a { + color: #0078A8; +} +.leaflet-container a.leaflet-active { + outline: 2px solid orange; +} +.leaflet-zoom-box { + border: 2px dotted #38f; + background: rgba(255,255,255,0.5); +} + + +/* general typography */ +.leaflet-container { + font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; +} + + +/* general toolbar styles */ + +.leaflet-bar { + box-shadow: 0 1px 5px rgba(0,0,0,0.65); + border-radius: 4px; +} +.leaflet-bar a, +.leaflet-bar a:hover { + background-color: #fff; + border-bottom: 1px solid #ccc; + width: 26px; + height: 26px; + line-height: 26px; + display: block; + text-align: center; + text-decoration: none; + color: black; +} +.leaflet-bar a, +.leaflet-control-layers-toggle { + background-position: 50% 50%; + background-repeat: no-repeat; + display: block; +} +.leaflet-bar a:hover { + background-color: #f4f4f4; +} +.leaflet-bar a:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.leaflet-bar a:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-bottom: none; +} +.leaflet-bar a.leaflet-disabled { + cursor: default; + background-color: #f4f4f4; + color: #bbb; +} + +.leaflet-touch .leaflet-bar a { + width: 30px; + height: 30px; + line-height: 30px; +} + + +/* zoom control */ + +.leaflet-control-zoom-in, +.leaflet-control-zoom-out { + font: bold 18px 'Lucida Console', Monaco, monospace; + text-indent: 1px; +} +.leaflet-control-zoom-out { + font-size: 20px; +} + +.leaflet-touch .leaflet-control-zoom-in { + font-size: 22px; +} +.leaflet-touch .leaflet-control-zoom-out { + font-size: 24px; +} + + +/* layers control */ + +.leaflet-control-layers { + box-shadow: 0 1px 5px rgba(0,0,0,0.4); + background: #fff; + border-radius: 5px; +} +.leaflet-control-layers-toggle { + background-image: url(../public/layers.png); + width: 36px; + height: 36px; +} +.leaflet-retina .leaflet-control-layers-toggle { + background-image: url(../public/layers-2x.png); + background-size: 26px 26px; +} +.leaflet-touch .leaflet-control-layers-toggle { + width: 44px; + height: 44px; +} +.leaflet-control-layers .leaflet-control-layers-list, +.leaflet-control-layers-expanded .leaflet-control-layers-toggle { + display: none; +} +.leaflet-control-layers-expanded .leaflet-control-layers-list { + display: block; + position: relative; +} +.leaflet-control-layers-expanded { + padding: 6px 10px 6px 6px; + color: #333; + background: #fff; +} +.leaflet-control-layers-scrollbar { + overflow-y: scroll; + padding-right: 5px; +} +.leaflet-control-layers-selector { + margin-top: 2px; + position: relative; + top: 1px; +} +.leaflet-control-layers label { + display: block; +} +.leaflet-control-layers-separator { + height: 0; + border-top: 1px solid #ddd; + margin: 5px -10px 5px -6px; +} + +/* Default icon URLs */ +.leaflet-default-icon-path { + background-image: url(../public/marker-icon.png); +} + + +/* attribution and scale controls */ + +.leaflet-container .leaflet-control-attribution { + background: #fff; + background: rgba(255, 255, 255, 0.7); + margin: 0; +} +.leaflet-control-attribution, +.leaflet-control-scale-line { + padding: 0 5px; + color: #333; +} +.leaflet-control-attribution a { + text-decoration: none; +} +.leaflet-control-attribution a:hover { + text-decoration: underline; +} +.leaflet-container .leaflet-control-attribution, +.leaflet-container .leaflet-control-scale { + font-size: 11px; +} +.leaflet-left .leaflet-control-scale { + margin-left: 5px; +} +.leaflet-bottom .leaflet-control-scale { + margin-bottom: 5px; +} +.leaflet-control-scale-line { + border: 2px solid #777; + border-top: none; + line-height: 1.1; + padding: 2px 5px 1px; + font-size: 11px; + white-space: nowrap; + overflow: hidden; + -moz-box-sizing: border-box; + box-sizing: border-box; + + background: #fff; + background: rgba(255, 255, 255, 0.5); +} +.leaflet-control-scale-line:not(:first-child) { + border-top: 2px solid #777; + border-bottom: none; + margin-top: -2px; +} +.leaflet-control-scale-line:not(:first-child):not(:last-child) { + border-bottom: 2px solid #777; +} + +.leaflet-touch .leaflet-control-attribution, +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + box-shadow: none; +} +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + border: 2px solid rgba(0,0,0,0.2); + background-clip: padding-box; +} + + +/* popup */ + +.leaflet-popup { + position: absolute; + text-align: center; + margin-bottom: 20px; +} +.leaflet-popup-content-wrapper { + padding: 1px; + text-align: left; + border-radius: 12px; +} +.leaflet-popup-content { + margin: 13px 19px; + line-height: 1.4; +} +.leaflet-popup-content p { + margin: 18px 0; +} +.leaflet-popup-tip-container { + width: 40px; + height: 20px; + position: absolute; + left: 50%; + margin-left: -20px; + overflow: hidden; + pointer-events: none; +} +.leaflet-popup-tip { + width: 17px; + height: 17px; + padding: 1px; + + margin: -10px auto 0; + + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} +.leaflet-popup-content-wrapper, +.leaflet-popup-tip { + background: white; + color: #333; + box-shadow: 0 3px 14px rgba(0,0,0,0.4); +} +.leaflet-container a.leaflet-popup-close-button { + position: absolute; + top: 0; + right: 0; + padding: 4px 4px 0 0; + border: none; + text-align: center; + width: 18px; + height: 14px; + font: 16px/14px Tahoma, Verdana, sans-serif; + color: #c3c3c3; + text-decoration: none; + font-weight: bold; + background: transparent; +} +.leaflet-container a.leaflet-popup-close-button:hover { + color: #999; +} +.leaflet-popup-scrolled { + overflow: auto; + border-bottom: 1px solid #ddd; + border-top: 1px solid #ddd; +} + +.leaflet-oldie .leaflet-popup-content-wrapper { + zoom: 1; +} +.leaflet-oldie .leaflet-popup-tip { + width: 24px; + margin: 0 auto; + + -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; + filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); +} +.leaflet-oldie .leaflet-popup-tip-container { + margin-top: -1px; +} + +.leaflet-oldie .leaflet-control-zoom, +.leaflet-oldie .leaflet-control-layers, +.leaflet-oldie .leaflet-popup-content-wrapper, +.leaflet-oldie .leaflet-popup-tip { + border: 1px solid #999; +} + + +/* div icon */ + +.leaflet-div-icon { + background: #fff; + border: 1px solid #666; +} + + +/* Tooltip */ +/* Base styles for the element that has a tooltip */ +.leaflet-tooltip { + position: absolute; + padding: 6px; + background-color: #fff; + border: 1px solid #fff; + border-radius: 3px; + color: #222; + white-space: nowrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; + box-shadow: 0 1px 3px rgba(0,0,0,0.4); +} +.leaflet-tooltip.leaflet-clickable { + cursor: pointer; + pointer-events: auto; +} +.leaflet-tooltip-top:before, +.leaflet-tooltip-bottom:before, +.leaflet-tooltip-left:before, +.leaflet-tooltip-right:before { + position: absolute; + pointer-events: none; + border: 6px solid transparent; + background: transparent; + content: ""; +} + +/* Directions */ + +.leaflet-tooltip-bottom { + margin-top: 6px; +} +.leaflet-tooltip-top { + margin-top: -6px; +} +.leaflet-tooltip-bottom:before, +.leaflet-tooltip-top:before { + left: 50%; + margin-left: -6px; +} +.leaflet-tooltip-top:before { + bottom: 0; + margin-bottom: -12px; + border-top-color: #fff; +} +.leaflet-tooltip-bottom:before { + top: 0; + margin-top: -12px; + margin-left: -6px; + border-bottom-color: #fff; +} +.leaflet-tooltip-left { + margin-left: -6px; +} +.leaflet-tooltip-right { + margin-left: 6px; +} +.leaflet-tooltip-left:before, +.leaflet-tooltip-right:before { + top: 50%; + margin-top: -6px; +} +.leaflet-tooltip-left:before { + right: 0; + margin-right: -12px; + border-left-color: #fff; +} +.leaflet-tooltip-right:before { + left: 0; + margin-left: -12px; + border-right-color: #fff; +} diff --git a/ui/tsconfig.app.json b/ui/tsconfig.app.json new file mode 100644 index 0000000..900a901 --- /dev/null +++ b/ui/tsconfig.app.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true, + + "baseUrl": ".", + "paths": { + "@/*": [ + "./src/*" + ], + "@components/*": [ + "./src/components/*" + ], + "@lib/*": [ + "./src/lib/*" + ] + } + }, + "include": ["src"], +} diff --git a/ui/tsconfig.json b/ui/tsconfig.json old mode 100755 new mode 100644 index 44e2a2c..c452f43 --- a/ui/tsconfig.json +++ b/ui/tsconfig.json @@ -1,44 +1,7 @@ { - "compilerOptions": { - "target": "ESNext", - "downlevelIteration": true, - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"], - "@api/*": ["src/api"], - "@app/*": ["./src/app/*"], - "@components/*": ["src/components/*"], - } - }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts" - ], - "exclude": [ - "node_modules" + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } ] -} +} \ No newline at end of file diff --git a/ui/tsconfig.node.json b/ui/tsconfig.node.json new file mode 100644 index 0000000..db0becc --- /dev/null +++ b/ui/tsconfig.node.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2022", + "lib": ["ES2023"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/ui/vite.config.mjs b/ui/vite.config.mjs new file mode 100644 index 0000000..1010dfd --- /dev/null +++ b/ui/vite.config.mjs @@ -0,0 +1,16 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' +import path from "path"; + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], + resolve: { + alias: { + '@': path.resolve(__dirname, './src'), + '@assets': path.resolve(__dirname, './src/assets'), + '@components': path.resolve(__dirname, './src/components'), + '@lib': path.resolve(__dirname, './src/lib'), + } + } +}) From b770c343ec538f68a48caeb3caf0f9c1c6ed9cba Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Mon, 7 Apr 2025 08:13:22 -0400 Subject: [PATCH 02/20] Working through airport query params --- api/src/airports/delete.rs | 233 ------------------------- api/src/airports/model/airport.rs | 149 +++++++++++++--- api/src/airports/routes.rs | 38 ++-- api/src/db/mod.rs | 4 +- bruno/Airports/Delete Airport.bru | 2 +- bruno/Airports/Delete All Airports.bru | 2 +- bruno/Airports/Get Airport.bru | 2 +- bruno/Airports/Get All Airports.bru | 10 +- bruno/Airports/Import Airports.bru | 15 ++ data/airports_2023-12-21.json | 2 +- 10 files changed, 171 insertions(+), 286 deletions(-) delete mode 100644 api/src/airports/delete.rs create mode 100644 bruno/Airports/Import Airports.bru diff --git a/api/src/airports/delete.rs b/api/src/airports/delete.rs deleted file mode 100644 index 5e9999b..0000000 --- a/api/src/airports/delete.rs +++ /dev/null @@ -1,233 +0,0 @@ -use std::fmt::Display; -use std::str::FromStr; - -use crate::db; -use log::error; -use serde::{Deserialize, Serialize}; -use sqlx::postgres::types::PgPoint; -use crate::error::ApiResult; - -const TABLE_NAME: &str = "airports"; - -#[derive(Debug, Serialize, Deserialize, sqlx::FromRow)] -struct RunwayDb { - pub icao: String, - pub id: String, - pub length_ft: f32, - pub width_ft: f32, - pub surface: String, -} - -#[derive(Debug)] -pub struct AirportFilter { - pub icaos: Option>, - pub name: Option, - // pub bounds: Option>, - pub categories: Option>, - pub has_metar: Option, -} - -impl Default for AirportFilter { - fn default() -> Self { - AirportFilter { - icaos: None, - name: None, - // bounds: None, - categories: None, - has_metar: None, - } - } -} - -impl AirportDb { - pub async fn find_all(_filter: &AirportFilter, _limit: i32, _page: i32) -> ApiResult> { - let pool = db::pool(); - let airports: Vec = sqlx::query_as::<_, Self>(&format!( - "SELECT * FROM {}", - TABLE_NAME - )) - .fetch_all(pool) - .await?; - - Ok(airports) - } - - pub async fn count(_filter: &AirportFilter) -> ApiResult { - let pool = db::pool(); - let count: i64 = sqlx::query_scalar::<_, i64>(&format!( - "SELECT COUNT(*) FROM {}", - TABLE_NAME - )) - .fetch_one(pool) - .await?; - - Ok(count) - } - - // fn build_query<'a>( - // mut query: QueryBuilder<'a, Postgres>, - // filter: &'a AirportFilter, - // ) -> QueryBuilder<'a, Postgres> { - // if let Some(bounds) = &filter.bounds { - // // convert bounds to a WKT polygon - // if bounds.rings.len() > 1 { - // return Err(ApiError { - // status: 400, - // message: "Only one polygon is allowed".to_string(), - // }); - // } else { - // let mut points: Vec = vec![]; - // bounds.rings.iter().for_each(|ring| { - // ring.iter().for_each(|point| { - // points.push(format!("{} {}", point.get_x(), point.get_y())); - // }); - // }); - // let bounds = format!("POLYGON(({}))", points.join(",")); - // query.push(format!( - // "ST_Contains(ST_GeomFromText('{}', 4326), point)", - // bounds - // )); - // } - // } - // if let Some(categories) = &filter.categories { - // query.push(format!( - // "({})", - // categories - // .iter() - // .map(|category| format!("category = '{}'", category.to_string())) - // .collect::>() - // .join(" OR ") - // )); - // } - // - // fn sanitize_icao(icao: &str) -> String { - // // Sanitize search to only allow [a-zA-Z0-9-\\s] - // icao - // .chars() - // .filter(|c| c.is_alphanumeric() || *c == '-' || *c == ' ') - // .collect::() - // } - // - // if &filter.icaos.is_some() == &true && &filter.name.is_some() == &true { - // let icaos = filter.icaos.as_ref().unwrap(); - // let name = sanitize_icao(filter.name.as_ref().unwrap()); - // let icao_part = format!( - // "({})", - // icaos - // .iter() - // .map(|icao| format!("icao ILIKE '{}'", sanitize_icao(icao))) - // .collect::>() - // .join(" OR ") - // ); - // let name_part = format!("name ILIKE '%{}%'", name); - // parts.push(format!("({} OR {})", icao_part, name_part)); - // } else if let Some(icaos) = &filter.icaos { - // parts.push(format!( - // "({})", - // icaos - // .iter() - // .map(|icao| format!("icao ILIKE '{}'", sanitize_icao(icao))) - // .collect::>() - // .join(" OR ") - // )); - // } else if let Some(name) = &filter.name { - // let search = sanitize_icao(name); - // parts.push(format!("name ILIKE '%{}%'", search)); - // } - // if let Some(has_metar) = &filter.has_metar { - // parts.push(format!("has_metar = {}", has_metar)); - // } - // - // if parts.len() > 0 { - // query = format!("{} WHERE {}", query, parts.join(" AND ")); - // } - // - // return Ok(query); - // } - - pub async fn find_by_icao(icao: &str) -> ApiResult { - let pool = db::pool(); - let airport = - sqlx::query_as::<_, Self>(&format!("SELECT * FROM {} WHERE icao = $1", TABLE_NAME)) - .bind(icao) - .fetch_one(pool) - .await?; - - Ok(airport) - } - - pub async fn insert(&self) -> ApiResult<()> { - let pool = db::pool(); - sqlx::query(&format!( - "INSERT INTO {} ( - icao, - category, - name, - elevation_ft, - iso_country, - iso_region, - municipality, - has_metar, - point, - data - ) VALUES ( - $1, $2, $3, $4, $5, $6, $7, $8, $9, $10 - )", - TABLE_NAME - )) - .bind(self.icao.clone()) - .bind(self.category.clone()) - .bind(&self.name) - .bind(self.elevation_ft) - .bind(self.iso_country.clone()) - .bind(self.iso_region.clone()) - .bind(self.municipality.clone()) - .bind(self.has_metar.clone()) - // .bind(self.point.clone()) - .bind(self.data.clone()) - .execute(pool) - .await?; - Ok(()) - } - - // pub fn insert_vec(airports: Vec) -> ApiResult> { - // let mut conn: r2d2::PooledConnection> = - // db::connection()?; - // let mut inserted_airports: Vec = vec![]; - // for airport in airports { - // let airport = Self::from(airport); - // let airport = diesel::insert_into(airports::table) - // .values(airport) - // .on_conflict_do_nothing() - // .get_result(&mut conn)?; - // inserted_airports.push(airport); - // } - // Ok(inserted_airports) - // } - - pub async fn update(&self) -> ApiResult<()> { - // let mut conn = db::pool()?; - // let airport = diesel::update(airports::table) - // .filter(airports::icao.eq(airport.icao.clone())) - // .set(airport) - // .get_result(&mut conn)?; - // Ok(airport) - Ok(()) - } - - pub async fn delete_all() -> ApiResult<()> { - Ok(()) - } - - pub async fn delete_by_icao(_icao: &str) -> ApiResult<()> { - // let mut conn = db::pool()?; - // let res = match icao { - // Some(icao) => { - // diesel::delete(airports::table.filter(airports::icao.eq(icao))).execute(&mut conn)? - // } - // None => diesel::delete(airports::table).execute(&mut conn)?, - // }; - // Ok(res) - Ok(()) - } -} diff --git a/api/src/airports/model/airport.rs b/api/src/airports/model/airport.rs index 68a2f61..fecc198 100644 --- a/api/src/airports/model/airport.rs +++ b/api/src/airports/model/airport.rs @@ -1,7 +1,7 @@ use std::str::FromStr; use actix_web::web::Json; use serde::{Deserialize, Serialize}; -use sqlx::{Postgres, QueryBuilder}; +use sqlx::{Execute, Postgres, QueryBuilder}; use crate::airports::model::airport_category::AirportCategory; use crate::airports::{Frequency, Runway, UpdateFrequency, UpdateRunway}; use crate::db; @@ -33,7 +33,38 @@ pub struct Airport { pub public: bool, } -#[derive(Debug, Serialize, Deserialize, sqlx::FromRow)] +#[derive(Debug, Deserialize)] +pub struct AirportQuery { + pub page: Option, + pub limit: Option, + pub icaos: Option, + pub iatas: Option, + pub locals: Option, + pub names: Option, + pub categories: Option, + pub iso_countries: Option, + pub iso_regions: Option, + pub municipalities: Option, +} + +impl Default for AirportQuery { + fn default() -> Self { + Self { + page: Some(1), + limit: Some(1000), + icaos: None, + iatas: None, + locals: None, + names: None, + categories: None, + iso_countries: None, + iso_regions: None, + municipalities: None, + } + } +} + +#[derive(Debug, Deserialize, sqlx::FromRow)] struct AirportRow { pub icao: String, pub iata: Option, @@ -51,39 +82,23 @@ struct AirportRow { pub public: bool, } -#[derive(Debug, Serialize, Deserialize)] +#[derive(Debug, Deserialize)] pub struct UpdateAirport { - #[serde(skip_serializing_if = "Option::is_none")] pub icao: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub iata: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub local: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub name: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub category: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub iso_country: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub iso_region: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub municipality: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub elevation_ft: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub longitude: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub latitude: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub has_tower: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub has_beacon: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub runways: Option>, - #[serde(skip_serializing_if = "Option::is_none")] pub frequencies: Option>, - #[serde(skip_serializing_if = "Option::is_none")] pub public: Option, } @@ -161,19 +176,95 @@ impl Airport { } } - pub async fn select_all() -> ApiResult> { + pub async fn select_all(query: &AirportQuery) -> ApiResult> { let pool = db::pool(); - let airports: Vec = sqlx::query_as(&format!( - r#" - SELECT * FROM {} - "#, - TABLE_NAME - )) - .fetch_all(pool) - .await?; + let mut builder = QueryBuilder::::new("SELECT * FROM "); + builder.push(TABLE_NAME); - Ok(airports.into_iter().map(From::from).collect()) + let mut has_where = false; + macro_rules! push_condition { + ($field:expr, $value:expr) => { + if let Some(ref val) = $value { + if !has_where { + builder.push(" WHERE "); + has_where = true; + } else { + builder.push(" AND "); + } + builder.push($field).push(" = ").push_bind(val); + } + }; + } + + // push_condition!("icao", query.icaos); + // push_condition!("iata", query.iata); + // push_condition!("iso_country", query.iso_country); + // push_condition!("iso_region", query.iso_region); + // push_condition!("municipality", query.municipality); + + // Apply pagination. + if let Some(limit) = query.limit { + builder.push(" LIMIT ").push_bind(limit as i64); + let offset = if let Some(page) = query.page { + // Calculate offset (page is 1-based). + (page.saturating_sub(1) * limit) as i64 + } else { + 0 + }; + builder.push(" OFFSET ").push_bind(offset); + } + + let query = builder.build_query_as(); + let airport_rows: Vec = query.fetch_all(pool).await?; + Ok(airport_rows.into_iter().map(From::from).collect()) + } + + pub async fn count(query: &AirportQuery) -> i64 { + let pool = db::pool(); + + let mut builder = QueryBuilder::::new("SELECT COUNT(*) FROM "); + builder.push(TABLE_NAME); + + let mut has_where = false; + macro_rules! push_condition_array { + ($column:expr, $field:expr) => { + if let Some(ref value_str) = $field { + // split on commas, trim whitespace, and drop empties + let values: Vec<&str> = value_str + .split(',') + .map(|s| s.trim()) + .filter(|s| !s.is_empty()) + .collect(); + if !values.is_empty() { + if !has_where { + builder.push(" WHERE "); + has_where = true; + } else { + builder.push(" AND "); + } + dbg!(&values); + builder.push($column); + builder.push(" = ANY("); + builder.push_bind(values); + builder.push(")"); + } + } + }; + } + + push_condition_array!("icao", query.icaos); + push_condition_array!("iata", query.iatas); + push_condition_array!("iso_country", query.iso_countries); + push_condition_array!("iso_region", query.iso_regions); + push_condition_array!("municipality", query.municipalities); + push_condition_array!("local", query.locals); + push_condition_array!("name", query.names); + push_condition_array!("category", query.categories); + + let sql_query = builder.build_query_scalar(); + dbg!(&sql_query.sql()); + sql_query.fetch_one(pool).await.unwrap_or_else(|_| 0) } pub async fn insert(&self) -> ApiResult { diff --git a/api/src/airports/routes.rs b/api/src/airports/routes.rs index cae8f39..f6b2b65 100644 --- a/api/src/airports/routes.rs +++ b/api/src/airports/routes.rs @@ -9,22 +9,9 @@ use crate::{ use actix_multipart::Multipart; use actix_web::{delete, get, post, put, web, HttpResponse, HttpRequest, ResponseError}; use serde::{Serialize, Deserialize}; -use crate::airports::UpdateAirport; +use crate::airports::{AirportQuery, UpdateAirport}; use crate::users::ADMIN_ROLE; -#[derive(Debug, Serialize, Deserialize)] -struct AirportsQuery { - icaos: Option, - name: Option, - bounds: Option, - categories: Option, - order_field: Option, - order_by: Option, - has_metar: Option, - limit: Option, - page: Option, -} - #[post("/import")] async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { if let Err(err) = verify_role(&auth, ADMIN_ROLE) { @@ -69,8 +56,27 @@ async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { #[get("")] async fn get_airports(req: HttpRequest) -> HttpResponse { - match Airport::select_all().await { - Ok(airports) => HttpResponse::Ok().json(airports), + let mut query = match web::Query::::from_query(req.query_string()) { + Ok(q) => q.into_inner(), + Err(_) => AirportQuery::default(), + }; + + let total = Airport::count(&query).await; + let page = query.page.unwrap_or(1); + let mut limit = query.limit.unwrap_or(total as u32); + if limit > 1000 { + limit = 1000 + } + query.limit = Some(limit); + query.page = Some(page); + + match Airport::select_all(&query).await { + Ok(airports) => HttpResponse::Ok().json(Paged { + data: airports, + page, + limit, + total, + }), Err(err) => { log::error!("{}", err); ResponseError::error_response(&err) diff --git a/api/src/db/mod.rs b/api/src/db/mod.rs index 4078903..60951e6 100644 --- a/api/src/db/mod.rs +++ b/api/src/db/mod.rs @@ -168,8 +168,8 @@ pub async fn delete_file(path: &str) -> ApiResult { #[derive(Serialize, Deserialize)] pub struct Paged { pub data: T, - pub page: i32, - pub limit: i32, + pub page: u32, + pub limit: u32, pub total: i64, } diff --git a/bruno/Airports/Delete Airport.bru b/bruno/Airports/Delete Airport.bru index 2969aef..4f2801e 100644 --- a/bruno/Airports/Delete Airport.bru +++ b/bruno/Airports/Delete Airport.bru @@ -1,7 +1,7 @@ meta { name: Delete Airport type: http - seq: 4 + seq: 5 } delete { diff --git a/bruno/Airports/Delete All Airports.bru b/bruno/Airports/Delete All Airports.bru index 2220ad4..d6eb3e9 100644 --- a/bruno/Airports/Delete All Airports.bru +++ b/bruno/Airports/Delete All Airports.bru @@ -1,7 +1,7 @@ meta { name: Delete All Airports type: http - seq: 5 + seq: 6 } delete { diff --git a/bruno/Airports/Get Airport.bru b/bruno/Airports/Get Airport.bru index 8949bd5..27ed00f 100644 --- a/bruno/Airports/Get Airport.bru +++ b/bruno/Airports/Get Airport.bru @@ -1,7 +1,7 @@ meta { name: Get Airport type: http - seq: 2 + seq: 3 } get { diff --git a/bruno/Airports/Get All Airports.bru b/bruno/Airports/Get All Airports.bru index a2131c5..32fe234 100644 --- a/bruno/Airports/Get All Airports.bru +++ b/bruno/Airports/Get All Airports.bru @@ -1,11 +1,17 @@ meta { name: Get All Airports type: http - seq: 3 + seq: 4 } get { - url: {{BASE_URL}}/airports + url: {{BASE_URL}}/airports?icaos=00AA&page=1&limit=1000 body: none auth: none } + +params:query { + icaos: 00AA + page: 1 + limit: 1000 +} diff --git a/bruno/Airports/Import Airports.bru b/bruno/Airports/Import Airports.bru new file mode 100644 index 0000000..41219de --- /dev/null +++ b/bruno/Airports/Import Airports.bru @@ -0,0 +1,15 @@ +meta { + name: Import Airports + type: http + seq: 2 +} + +post { + url: {{BASE_URL}}/airports/import + body: multipartForm + auth: none +} + +body:multipart-form { + : @file(/Users/bsherriff/git/private/aviation-weather/data/airports_2023-12-21.json) +} diff --git a/data/airports_2023-12-21.json b/data/airports_2023-12-21.json index 2235cd0..478e4fd 100644 --- a/data/airports_2023-12-21.json +++ b/data/airports_2023-12-21.json @@ -144368,7 +144368,7 @@ "iata": "", "local": "64CL", "name": "Goodyear Blimp Base Airport", - "category": "balloonport", + "category": "balloon_port", "iso_country": "US", "iso_region": "US-CA", "municipality": "Gardena", From ce6d02be345c2295c27bfe96f93e895bf077b1c2 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Mon, 7 Apr 2025 22:58:52 -0400 Subject: [PATCH 03/20] Expand parser, fixed comments --- .env | 4 +- api/src/auth/routes.rs | 61 +++++++++++++++++++++---- api/src/auth/session.rs | 22 +++++++-- api/src/main.rs | 10 ++-- api/src/metars/model.rs | 71 +++++++++++++++++++++++++++++ api/src/users/model.rs | 14 ++++++ bruno/Airports/Get All Airports.bru | 3 +- bruno/Metars/Find Metars.bru | 4 +- bruno/Users/Login.bru | 2 +- docker-compose.yml | 5 ++ 10 files changed, 172 insertions(+), 24 deletions(-) diff --git a/.env b/.env index b244b62..5af770b 100644 --- a/.env +++ b/.env @@ -18,10 +18,10 @@ MINIO_PORT_INTERNAL=9001 API_HOST=localhost API_PORT=5000 -ADMIN_USERNAME=admin +ENVIRONMENT=development +ADMIN_EMAIL=admin@example.com ADMIN_PASSWORD=CHANGEME UI_PORT=3000 -NODE_ENV=development GOV_API_URL=https://aviationweather.gov/cgi-bin/data diff --git a/api/src/auth/routes.rs b/api/src/auth/routes.rs index e40544f..3ca5d8d 100644 --- a/api/src/auth/routes.rs +++ b/api/src/auth/routes.rs @@ -1,3 +1,4 @@ +use std::sync::OnceLock; use actix_web::{ post, web, HttpResponse, ResponseError, cookie::{Cookie, time::Duration}, @@ -12,23 +13,36 @@ use crate::{ use crate::auth::{Auth, DEFAULT_SESSION_TTL}; #[post("/register")] -async fn register(user: web::Json) -> HttpResponse { - let register_user = user.0; - let insert_user: User = match register_user.to_user() { +async fn register(user: web::Json, req: HttpRequest) -> HttpResponse { + let register_user = user.into_inner(); + let email = register_user.email.clone(); + let ip_address = req.peer_addr().unwrap().ip().to_string(); + let mut insert_user: User = match register_user.to_user() { Ok(user) => user, Err(err) => return ResponseError::error_response(&err), }; + match insert_user.insert().await { Ok(user) => { let response: UserResponse = user.into(); - log::trace!("Registered user '{}'", response.email); + log::info!( + "Successful user registration [Email: {}] [IP Address: {}]", + email, + ip_address + ); HttpResponse::Created().json(response) } Err(err) => { // Obfuscate the service error message to prevent leaking database details if err.status == 409 { + log::warn!( + "Duplicate user registration attempt [Email: {}] [IP Address: {}]", + email, + ip_address + ); HttpResponse::Conflict().finish() } else { + log::error!("attemptFailed to register user [Email: {}]: {}", email, err); ResponseError::error_response(&err) } } @@ -51,28 +65,54 @@ async fn login(request: web::Json, req: HttpRequest) -> HttpRespon let session_cookie = session.to_cookie(); // Save the session to the database if let Err(err) = session.store().await { - log::error!("Failed to store session"); + log::error!( + "Login attempt failure [Email: {}] [IP Address: {}]: {}", + email, + ip_address, + err + ); return ResponseError::error_response(&Error::new(500, err.to_string())); } + log::info!( + "Successful login attempt [Email: {}] [IP Address: {}]", + email, + ip_address + ); HttpResponse::Ok().cookie(session_cookie).finish() } else { - log::error!("Invalid login attempt for {}", email); + log::error!( + "Invalid login attempt [Email: {}] [IP Address: {}]", + email, + ip_address + ); HttpResponse::Unauthorized().finish() } } #[post("/logout")] -async fn logout(req: HttpRequest, _auth: Auth) -> HttpResponse { +async fn logout(req: HttpRequest, auth: Auth) -> HttpResponse { + let email = auth.user.email; + let ip_address = req.peer_addr().unwrap().ip().to_string(); // Delete the session from the store match req.cookie(SESSION_COOKIE_NAME) { Some(cookie) => { let session_id = cookie.value().to_string(); if let Err(err) = Session::delete(&session_id).await { - log::error!("Failed to delete session"); + log::error!( + "Logout attempt failure [Email: {}] [IP Address: {}]: {}", + email, + ip_address, + err + ); return ResponseError::error_response(&Error::new(500, err.to_string())); } } None => { + log::error!( + "Invalid logout attempt [Email: {}] [IP Address: {}]", + email, + ip_address + ); return ResponseError::error_response(&Error::new(400, "Invalid session".to_string())); } } @@ -84,6 +124,11 @@ async fn logout(req: HttpRequest, _auth: Auth) -> HttpResponse { .http_only(true) .finish(); + log::info!( + "Successful logout attempt [Email: {}] [IP Address: {}]", + email, + ip_address + ); HttpResponse::Ok().cookie(session_cookie).finish() } diff --git a/api/src/auth/session.rs b/api/src/auth/session.rs index 33e3cb4..abe1aa9 100644 --- a/api/src/auth/session.rs +++ b/api/src/auth/session.rs @@ -93,12 +93,26 @@ impl Session { None => DEFAULT_SESSION_TTL, }; let ttl = expires_at - Utc::now().timestamp(); - Cookie::build(SESSION_COOKIE_NAME, self.session_id.clone()) + let mut cookie = Cookie::build(SESSION_COOKIE_NAME, self.session_id.clone()) .path("/") .max_age(Duration::seconds(ttl)) // TODO: enable secure and http_only - // .secure(true) - // .http_only(true) - .finish() + .secure(true) + .http_only(true) + .finish(); + + if let Ok(environment) = std::env::var("ENVIRONMENT") { + if environment == "development" || environment == "dev" { + log::debug!( + "Development cookie [Email: {}]: {}", + self.email, + self.session_id + ); + cookie.set_secure(false); + cookie.set_http_only(false); + } + } + + cookie } } diff --git a/api/src/main.rs b/api/src/main.rs index d536c64..8f1aea6 100644 --- a/api/src/main.rs +++ b/api/src/main.rs @@ -24,16 +24,16 @@ async fn main() -> Result<(), Box> { let port = env::var("API_PORT").unwrap_or("5000".to_string()); // Initialize admin user - let admin_username = env::var("ADMIN_USERNAME"); + let admin_email = env::var("ADMIN_EMAIL"); let admin_password = env::var("ADMIN_PASSWORD"); - if admin_username.is_ok() && admin_password.is_ok() { - let username = admin_username.unwrap(); - if User::select(&username).await.is_none() { + if admin_email.is_ok() && admin_password.is_ok() { + let email = admin_email.unwrap(); + if User::select(&email).await.is_none() { log::debug!("Creating default administrator"); let password = admin_password.unwrap(); let password_hash = hash(&password)?; let admin_user = User { - email: username, + email, password_hash, role: ADMIN_ROLE.to_string(), first_name: "Admin".to_string(), diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index d231e1f..6a985b6 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -82,6 +82,20 @@ pub struct QualityControlFlags { pub no_significant_change: Option, #[serde(skip_serializing_if = "Option::is_none")] pub temporary_change: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub rvr_missing: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub precipication_identifier_information_not_available: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub precipication_information_not_available: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub freezing_rain_information_not_available: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub thunderstorm_information_not_available: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub visibility_at_secondary_location_not_available: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub sky_condition_at_secondary_location_not_available: Option, } impl Default for QualityControlFlags { @@ -94,6 +108,13 @@ impl Default for QualityControlFlags { corrected: None, no_significant_change: None, temporary_change: None, + rvr_missing: None, + precipication_identifier_information_not_available: None, + precipication_information_not_available: None, + freezing_rain_information_not_available: None, + thunderstorm_information_not_available: None, + visibility_at_secondary_location_not_available: None, + sky_condition_at_secondary_location_not_available: None, } } } @@ -202,6 +223,11 @@ impl Metar { )); } + // Remove METAR at start of text + if metar_parts[0].to_string() == "METAR".to_string() { + metar_parts.remove(0); + } + // Station Identifier metar.station_id = metar_parts[0].to_string(); metar_parts.remove(0); @@ -602,6 +628,36 @@ impl Metar { metar.quality_control_flags.auto_station_with_precipication = Some(true); } else if remark == "$" { metar.quality_control_flags.maintenance_indicator_on = Some(true); + } else if remark == "PNO" { + metar + .quality_control_flags + .precipication_information_not_available = Some(true); + } else if remark == "RVRNO" { + metar.quality_control_flags.rvr_missing = Some(true); + } else if remark == "PWINO" { + metar + .quality_control_flags + .precipication_identifier_information_not_available = Some(true); + } else if remark == "FZRANO" { + metar + .quality_control_flags + .freezing_rain_information_not_available = Some(true); + } else if remark == "TSNO" { + metar + .quality_control_flags + .thunderstorm_information_not_available = Some(true); + } else if remark == "VISNO" { + let location = metar_parts[0]; + metar_parts.remove(0); + metar + .quality_control_flags + .visibility_at_secondary_location_not_available = Some(location.to_string()); + } else if remark == "CHINO" { + let location = metar_parts[0]; + metar_parts.remove(0); + metar + .quality_control_flags + .sky_condition_at_secondary_location_not_available = Some(location.to_string()); } else if slp_re.is_match(remark) { let slp = slp_re.captures(remark).unwrap(); let sea_level_pressure = slp[1].parse::().unwrap(); @@ -853,3 +909,18 @@ impl Metar { Ok(()) } } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_metar() { + let metar_string = "METAR KABC 121755Z AUTO 21016G24KT 180V240 1SM R11/P6000FT -RA BR BKN015 OVC025 06/04 A2990 +RMK AO2 PK WND 20032/25 WSHFT 1715 VIS 3/4V1 1/2 VIS 3/4 RWY11 RAB07 CIG 013V017 CIG 017 RWY11 PRESFR +SLP125 P0003 60009 T00640036 10066 21012 58033 TSNO $".to_string(); + + let metar = Metar::parse(&metar_string).unwrap(); + dbg!(&metar); + } +} diff --git a/api/src/users/model.rs b/api/src/users/model.rs index c94edc1..c9d5e4a 100644 --- a/api/src/users/model.rs +++ b/api/src/users/model.rs @@ -96,6 +96,20 @@ impl User { user } + pub async fn count() -> i64 { + let pool = db::pool(); + + sqlx::query_scalar(&format!( + r#" + SELECT COUNT(*) FROM {} + "#, + TABLE_NAME + )) + .fetch_one(pool) + .await + .unwrap_or_else(|_| 0) + } + pub async fn insert(&self) -> ApiResult { let pool = db::pool(); let user: User = sqlx::query_as::<_, Self>(&format!( diff --git a/bruno/Airports/Get All Airports.bru b/bruno/Airports/Get All Airports.bru index 32fe234..5bfcc6e 100644 --- a/bruno/Airports/Get All Airports.bru +++ b/bruno/Airports/Get All Airports.bru @@ -5,13 +5,12 @@ meta { } get { - url: {{BASE_URL}}/airports?icaos=00AA&page=1&limit=1000 + url: {{BASE_URL}}/airports?page=1&limit=1000 body: none auth: none } params:query { - icaos: 00AA page: 1 limit: 1000 } diff --git a/bruno/Metars/Find Metars.bru b/bruno/Metars/Find Metars.bru index a7ef918..d388e22 100644 --- a/bruno/Metars/Find Metars.bru +++ b/bruno/Metars/Find Metars.bru @@ -5,11 +5,11 @@ meta { } get { - url: {{BASE_URL}}/metars?icaos=KHEF,KJYO,KLNS,KRMN,KIAD,KSFO,KPBI,KJFK,KORD,KDAL,KSAN,KGFK + url: {{BASE_URL}}/metars?icaos=KJYO,KOKV,KMRB,KHEF,KIAD body: none auth: none } params:query { - icaos: KHEF,KJYO,KLNS,KRMN,KIAD,KSFO,KPBI,KJFK,KORD,KDAL,KSAN,KGFK + icaos: KJYO,KOKV,KMRB,KHEF,KIAD } diff --git a/bruno/Users/Login.bru b/bruno/Users/Login.bru index 4069f89..3909e92 100644 --- a/bruno/Users/Login.bru +++ b/bruno/Users/Login.bru @@ -12,7 +12,7 @@ post { body:json { { - "email": "admin", + "email": "admin@example.com", "password": "CHANGEME" } } diff --git a/docker-compose.yml b/docker-compose.yml index 0d99e4e..4cc0178 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,11 @@ services: - redis:/data ports: - ${REDIS_PORT:-6379}:6379 + healthcheck: + test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ] + interval: 10s + timeout: 5s + retries: 3 networks: - backend profiles: From 7f51134066951b75070775a235d3fd5f47af2e83 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Mon, 7 Apr 2025 23:09:56 -0400 Subject: [PATCH 04/20] Updated dependencies --- api/Cargo.lock | 366 ++++++++++++++++++++++++++++++-------------- api/Cargo.toml | 32 ++-- api/src/auth/mod.rs | 5 +- 3 files changed, 271 insertions(+), 132 deletions(-) diff --git a/api/Cargo.lock b/api/Cargo.lock index 1e2403e..626d1f1 100644 --- a/api/Cargo.lock +++ b/api/Cargo.lock @@ -21,13 +21,13 @@ dependencies = [ [[package]] name = "actix-cors" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" +checksum = "daa239b93927be1ff123eebada5a3ff23e89f0124ccb8609234e5103d5a5ae6d" dependencies = [ "actix-utils", "actix-web", - "derive_more", + "derive_more 2.0.1", "futures-util", "log", "once_cell", @@ -36,23 +36,23 @@ dependencies = [ [[package]] name = "actix-http" -version = "3.9.0" +version = "3.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4" +checksum = "0fa882656b67966045e4152c634051e70346939fced7117d5f0b52146a7c74c9" dependencies = [ "actix-codec", "actix-rt", "actix-service", "actix-utils", - "ahash", "base64", "bitflags", "brotli", "bytes", "bytestring", - "derive_more", + "derive_more 2.0.1", "encoding_rs", "flate2", + "foldhash", "futures-core", "h2 0.3.26", "http 0.2.12", @@ -64,7 +64,7 @@ dependencies = [ "mime", "percent-encoding", "pin-project-lite", - "rand", + "rand 0.9.0", "sha1", "smallvec", "tokio", @@ -92,7 +92,7 @@ dependencies = [ "actix-multipart-derive", "actix-utils", "actix-web", - "derive_more", + "derive_more 0.99.19", "futures-core", "futures-util", "httparse", @@ -100,7 +100,7 @@ dependencies = [ "log", "memchr", "mime", - "rand", + "rand 0.8.5", "serde", "serde_json", "serde_plain", @@ -186,9 +186,9 @@ dependencies = [ [[package]] name = "actix-web" -version = "4.9.0" +version = "4.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38" +checksum = "f2e3b15b3dc6c6ed996e4032389e9849d4ab002b1e92fbfe85b5f307d1479b4d" dependencies = [ "actix-codec", "actix-http", @@ -199,13 +199,13 @@ dependencies = [ "actix-service", "actix-utils", "actix-web-codegen", - "ahash", "bytes", "bytestring", "cfg-if", "cookie", - "derive_more", + "derive_more 2.0.1", "encoding_rs", + "foldhash", "futures-core", "futures-util", "impl-more", @@ -223,6 +223,7 @@ dependencies = [ "smallvec", "socket2", "time", + "tracing", "url", ] @@ -268,19 +269,6 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" -[[package]] -name = "ahash" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" -dependencies = [ - "cfg-if", - "getrandom 0.2.15", - "once_cell", - "version_check", - "zerocopy", -] - [[package]] name = "aho-corasick" version = "1.1.3" @@ -378,7 +366,7 @@ dependencies = [ [[package]] name = "api" -version = "0.1.0" +version = "0.1.1" dependencies = [ "actix-cors", "actix-multipart", @@ -392,8 +380,8 @@ dependencies = [ "futures-util", "geo-types", "log", - "rand", - "rand_chacha", + "rand 0.9.0", + "rand_chacha 0.9.0", "redis", "regex", "reqwest", @@ -504,6 +492,15 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "backon" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "970d91570c01a8a5959b36ad7dd1c30642df24b6b3068710066f6809f7033bb7" +dependencies = [ + "fastrand", +] + [[package]] name = "backtrace" version = "0.3.74" @@ -560,9 +557,9 @@ dependencies = [ [[package]] name = "brotli" -version = "6.0.0" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" +checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -859,6 +856,27 @@ dependencies = [ "syn", ] +[[package]] +name = "derive_more" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "unicode-xid", +] + [[package]] name = "digest" version = "0.10.7" @@ -933,14 +951,14 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.6" +version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" +checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ "anstream", "anstyle", "env_filter", - "humantime", + "jiff", "log", ] @@ -1366,12 +1384,6 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - [[package]] name = "hyper" version = "0.14.32" @@ -1682,6 +1694,30 @@ version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +[[package]] +name = "jiff" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f33145a5cbea837164362c7bd596106eb7c5198f97d1ba6f6ebb3223952e488" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde", +] + +[[package]] +name = "jiff-static" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43ce13c40ec6956157a3635d97a1ee2df323b263f09ea14165131289cb0f5c19" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "jobserver" version = "0.1.32" @@ -1779,9 +1815,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.26" +version = "0.4.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e" +checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" [[package]] name = "maybe-async" @@ -1891,7 +1927,7 @@ dependencies = [ "num-integer", "num-iter", "num-traits", - "rand", + "rand 0.8.5", "smallvec", "zeroize", ] @@ -1949,9 +1985,9 @@ checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" [[package]] name = "openssl" -version = "0.10.71" +version = "0.10.72" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd" +checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da" dependencies = [ "bitflags", "cfg-if", @@ -1981,9 +2017,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "openssl-sys" -version = "0.9.106" +version = "0.9.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd" +checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07" dependencies = [ "cc", "libc", @@ -2043,7 +2079,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ "base64ct", - "rand_core", + "rand_core 0.6.4", "subtle", ] @@ -2068,26 +2104,6 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" -[[package]] -name = "pin-project" -version = "1.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "pin-project-lite" version = "0.2.16" @@ -2127,6 +2143,21 @@ version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +[[package]] +name = "portable-atomic" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" + +[[package]] +name = "portable-atomic-util" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +dependencies = [ + "portable-atomic", +] + [[package]] name = "powerfmt" version = "0.2.0" @@ -2139,7 +2170,7 @@ version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" dependencies = [ - "zerocopy", + "zerocopy 0.7.35", ] [[package]] @@ -2188,8 +2219,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha", - "rand_core", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.3", + "zerocopy 0.8.24", ] [[package]] @@ -2199,7 +2241,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.3", ] [[package]] @@ -2212,16 +2264,25 @@ dependencies = [ ] [[package]] -name = "redis" -version = "0.26.1" +name = "rand_core" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e902a69d09078829137b4a5d9d082e0490393537badd7c91a3d69d14639e115f" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +dependencies = [ + "getrandom 0.3.1", +] + +[[package]] +name = "redis" +version = "0.29.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f" dependencies = [ "arc-swap", - "async-trait", + "backon", "bytes", "combine", - "futures", + "futures-channel", "futures-util", "itoa", "num-bigint", @@ -2234,7 +2295,6 @@ dependencies = [ "sha1_smol", "socket2", "tokio", - "tokio-retry", "tokio-util", "url", ] @@ -2285,9 +2345,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.12" +version = "0.12.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" +checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb" dependencies = [ "base64", "bytes", @@ -2354,7 +2414,7 @@ dependencies = [ "num-traits", "pkcs1", "pkcs8", - "rand_core", + "rand_core 0.6.4", "signature", "spki", "subtle", @@ -2560,18 +2620,18 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" [[package]] name = "serde" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", @@ -2661,7 +2721,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ "digest", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -2839,7 +2899,7 @@ dependencies = [ "memchr", "once_cell", "percent-encoding", - "rand", + "rand 0.8.5", "rsa", "serde", "sha1", @@ -2879,7 +2939,7 @@ dependencies = [ "md-5", "memchr", "once_cell", - "rand", + "rand 0.8.5", "serde", "serde_json", "sha2", @@ -3125,9 +3185,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.0" +version = "1.44.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" +checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" dependencies = [ "backtrace", "bytes", @@ -3162,17 +3222,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "tokio-retry" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" -dependencies = [ - "pin-project", - "rand", - "tokio", -] - [[package]] name = "tokio-rustls" version = "0.26.2" @@ -3311,6 +3360,12 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + [[package]] name = "untrusted" version = "0.9.0" @@ -3506,32 +3561,31 @@ checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" [[package]] name = "windows-registry" -version = "0.2.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" dependencies = [ "windows-result", "windows-strings", - "windows-targets 0.52.6", + "windows-targets 0.53.0", ] [[package]] name = "windows-result" -version = "0.2.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189" dependencies = [ - "windows-targets 0.52.6", + "windows-link", ] [[package]] name = "windows-strings" -version = "0.1.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" dependencies = [ - "windows-result", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -3585,13 +3639,29 @@ dependencies = [ "windows_aarch64_gnullvm 0.52.6", "windows_aarch64_msvc 0.52.6", "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm", + "windows_i686_gnullvm 0.52.6", "windows_i686_msvc 0.52.6", "windows_x86_64_gnu 0.52.6", "windows_x86_64_gnullvm 0.52.6", "windows_x86_64_msvc 0.52.6", ] +[[package]] +name = "windows-targets" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" +dependencies = [ + "windows_aarch64_gnullvm 0.53.0", + "windows_aarch64_msvc 0.53.0", + "windows_i686_gnu 0.53.0", + "windows_i686_gnullvm 0.53.0", + "windows_i686_msvc 0.53.0", + "windows_x86_64_gnu 0.53.0", + "windows_x86_64_gnullvm 0.53.0", + "windows_x86_64_msvc 0.53.0", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.48.5" @@ -3604,6 +3674,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + [[package]] name = "windows_aarch64_msvc" version = "0.48.5" @@ -3616,6 +3692,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + [[package]] name = "windows_i686_gnu" version = "0.48.5" @@ -3628,12 +3710,24 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" +[[package]] +name = "windows_i686_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + [[package]] name = "windows_i686_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + [[package]] name = "windows_i686_msvc" version = "0.48.5" @@ -3646,6 +3740,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_i686_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + [[package]] name = "windows_x86_64_gnu" version = "0.48.5" @@ -3658,6 +3758,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" @@ -3670,6 +3776,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + [[package]] name = "windows_x86_64_msvc" version = "0.48.5" @@ -3682,6 +3794,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + [[package]] name = "wit-bindgen-rt" version = "0.33.0" @@ -3734,7 +3852,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ "byteorder", - "zerocopy-derive", + "zerocopy-derive 0.7.35", +] + +[[package]] +name = "zerocopy" +version = "0.8.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" +dependencies = [ + "zerocopy-derive 0.8.24", ] [[package]] @@ -3748,6 +3875,17 @@ dependencies = [ "syn", ] +[[package]] +name = "zerocopy-derive" +version = "0.8.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "zerofrom" version = "0.1.6" diff --git a/api/Cargo.toml b/api/Cargo.toml index 8c02fbc..29b17a9 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["Ben Sherriff "] repository = "https://github.com/bensherriff/aviation-weather" @@ -10,26 +10,26 @@ license = "GPL-3.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -actix-web = "4.9.0" -actix-cors = "0.7.0" +actix-web = "4.10.2" +actix-cors = "0.7.1" actix-web-httpauth = "0.8.2" actix-multipart = "0.7.2" -chrono = { version = "0.4.38", features = ["serde"] } +chrono = { version = "0.4.40", features = ["serde"] } dotenv = "0.15.0" -sqlx = { version = "0.8.2", features = ["runtime-tokio", "postgres", "chrono", "uuid"] } -env_logger = "0.11.5" -reqwest = "0.12.7" -serde = {version = "1.0.209", features = ["derive"]} -serde_json = "1.0.127" -tokio = { version = "1.40.0", features = ["macros", "rt", "time"] } +sqlx = { version = "0.8.3", features = ["runtime-tokio", "postgres", "chrono", "uuid"] } +env_logger = "0.11.8" +reqwest = "0.12.15" +serde = {version = "1.0.219", features = ["derive"]} +serde_json = "1.0.140" +tokio = { version = "1.44.2", features = ["macros", "rt", "time"] } uuid = { version = "1.10.0", features = ["serde", "v4"] } -log = "0.4.22" +log = "0.4.27" argon2 = "0.5.3" -redis = { version = "0.26.1", features = ["tokio-comp", "connection-manager", "r2d2", "json"] } -regex = "1.10.6" -futures-util = "0.3.30" +redis = { version = "0.29.5", features = ["tokio-comp", "connection-manager", "r2d2", "json"] } +regex = "1.11.1" +futures-util = "0.3.31" rust-s3 = "0.35.1" -rand = "0.8.5" -rand_chacha = "0.3.1" +rand = "0.9.0" +rand_chacha = "0.9.0" geo-types = "0.7.15" byteorder = "1.5.0" diff --git a/api/src/auth/mod.rs b/api/src/auth/mod.rs index 96a7f65..6fe6f73 100644 --- a/api/src/auth/mod.rs +++ b/api/src/auth/mod.rs @@ -2,6 +2,7 @@ use argon2::{ password_hash::{rand_core::OsRng, SaltString}, Argon2, PasswordHash, PasswordHasher, PasswordVerifier, }; +use rand::distr::Alphanumeric; use rand::prelude::*; use rand_chacha::ChaCha20Rng; use serde::{Deserialize, Serialize}; @@ -18,9 +19,9 @@ use crate::error::{Error, ApiResult}; pub fn csprng(take: usize) -> String { // Generate a CSPRNG 128-bit (16 byte) ID using alphanumeric characters (a-z, A-Z, 0-9) - let rng = ChaCha20Rng::from_entropy(); + let rng = ChaCha20Rng::from_os_rng(); rng - .sample_iter(rand::distributions::Alphanumeric) + .sample_iter(Alphanumeric) .take(take) .map(char::from) .collect() From 240ed741f968fc6c72ffbc60d1c21235a58f8b3e Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Tue, 8 Apr 2025 20:59:01 -0400 Subject: [PATCH 05/20] Added peak wind parsing --- api/src/metars/model.rs | 80 ++++++++++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 20 deletions(-) diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index 6a985b6..ba6b5c9 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -30,7 +30,7 @@ pub struct Metar { pub altim_in_hg: Option, #[serde(skip_serializing_if = "Option::is_none")] pub sea_level_pressure_mb: Option, - pub quality_control_flags: QualityControlFlags, + pub remarks: Remarks, pub weather_phenomena: Vec, pub sky_condition: Vec, pub flight_category: FlightCategory, @@ -67,7 +67,9 @@ impl Default for RunwayVisualRange { } #[derive(Serialize, Deserialize, Debug)] -pub struct QualityControlFlags { +pub struct Remarks { + #[serde(skip_serializing_if = "Option::is_none")] + pub peak_wind: Option, #[serde(skip_serializing_if = "Option::is_none")] pub auto: Option, #[serde(skip_serializing_if = "Option::is_none")] @@ -98,9 +100,18 @@ pub struct QualityControlFlags { pub sky_condition_at_secondary_location_not_available: Option, } -impl Default for QualityControlFlags { +#[derive(Serialize, Deserialize, Debug)] +pub struct PeakWind { + pub degrees: i32, + pub speed: i32, + pub hour: Option, + pub minutes: i32, +} + +impl Default for Remarks { fn default() -> Self { - QualityControlFlags { + Remarks { + peak_wind: None, auto: None, auto_station_without_precipication: None, auto_station_with_precipication: None, @@ -165,7 +176,7 @@ impl Default for Metar { runway_visual_range: vec![], altim_in_hg: None, sea_level_pressure_mb: None, - quality_control_flags: QualityControlFlags::default(), + remarks: Remarks::default(), weather_phenomena: vec![], sky_condition: vec![], flight_category: FlightCategory::UNKN, @@ -289,15 +300,15 @@ impl Metar { } // Report Modifiers if !metar_parts.is_empty() && metar_parts[0] == "AUTO" { - metar.quality_control_flags.auto = Some(true); + metar.remarks.auto = Some(true); metar_parts.remove(0); } if !metar_parts.is_empty() && metar_parts[0] == "COR" { - metar.quality_control_flags.corrected = Some(true); + metar.remarks.corrected = Some(true); metar_parts.remove(0); } if !metar_parts.is_empty() && metar_parts[0] == "NOSIG" { - metar.quality_control_flags.no_significant_change = Some(true); + metar.remarks.no_significant_change = Some(true); metar_parts.remove(0); } @@ -605,7 +616,7 @@ impl Metar { // Temporary Change if !metar_parts.is_empty() && metar_parts[0] == "TEMPO" { - metar.quality_control_flags.temporary_change = Some(true); + metar.remarks.temporary_change = Some(true); metar_parts.remove(0); } @@ -622,41 +633,67 @@ impl Metar { metar_parts.remove(0); if remark == "AO1" { metar - .quality_control_flags + .remarks .auto_station_without_precipication = Some(true); } else if remark == "AO2" { - metar.quality_control_flags.auto_station_with_precipication = Some(true); + metar.remarks.auto_station_with_precipication = Some(true); } else if remark == "$" { - metar.quality_control_flags.maintenance_indicator_on = Some(true); + metar.remarks.maintenance_indicator_on = Some(true); + } else if remark == "PK" && metar_parts.len() >= 2 && metar_parts[0] == "WND"{ + metar_parts.remove(0); + let string = metar_parts[0]; + metar_parts.remove(0); + let re = regex::Regex::new(r"(?\d{3})(?\d{2,3})/(?:(?\d{2}))?(?\d{2})").unwrap(); + if let Some(caps) = re.captures(string) { + // Get degrees, speed, minutes + let degrees: i32 = caps["degrees"].parse()?; + let speed: i32 = caps["speed"].parse()?; + let minutes: i32 = caps["minutes"].parse()?; + + // Get optional hours + let hour = if let Some(hour_match) = caps.name("hour") { + Some(hour_match.as_str().parse()?) + } else { + None + }; + metar.remarks.peak_wind = Some(PeakWind { + degrees, + speed, + hour, + minutes + }); + } else { + return Err(Error::new(500, "Input string format is invalid".to_string())); + } } else if remark == "PNO" { metar - .quality_control_flags + .remarks .precipication_information_not_available = Some(true); } else if remark == "RVRNO" { - metar.quality_control_flags.rvr_missing = Some(true); + metar.remarks.rvr_missing = Some(true); } else if remark == "PWINO" { metar - .quality_control_flags + .remarks .precipication_identifier_information_not_available = Some(true); } else if remark == "FZRANO" { metar - .quality_control_flags + .remarks .freezing_rain_information_not_available = Some(true); } else if remark == "TSNO" { metar - .quality_control_flags + .remarks .thunderstorm_information_not_available = Some(true); } else if remark == "VISNO" { let location = metar_parts[0]; metar_parts.remove(0); metar - .quality_control_flags + .remarks .visibility_at_secondary_location_not_available = Some(location.to_string()); } else if remark == "CHINO" { let location = metar_parts[0]; metar_parts.remove(0); metar - .quality_control_flags + .remarks .sky_condition_at_secondary_location_not_available = Some(location.to_string()); } else if slp_re.is_match(remark) { let slp = slp_re.captures(remark).unwrap(); @@ -916,10 +953,13 @@ mod tests { #[test] fn test_metar() { - let metar_string = "METAR KABC 121755Z AUTO 21016G24KT 180V240 1SM R11/P6000FT -RA BR BKN015 OVC025 06/04 A2990 + let mut metar_string = "METAR KABC 121755Z AUTO 21016G24KT 180V240 1SM R11/P6000FT -RA BR BKN015 OVC025 06/04 A2990 RMK AO2 PK WND 20032/25 WSHFT 1715 VIS 3/4V1 1/2 VIS 3/4 RWY11 RAB07 CIG 013V017 CIG 017 RWY11 PRESFR SLP125 P0003 60009 T00640036 10066 21012 58033 TSNO $".to_string(); + let metar = Metar::parse(&metar_string).unwrap(); + dbg!(&metar); + metar_string = "KMRB 082253Z 30014G23KT 10SM CLR 05/M12 A3002 RMK AO2 PK WND 30028/2157 SLP168 T00501117".to_string(); let metar = Metar::parse(&metar_string).unwrap(); dbg!(&metar); } From 4aa3190783cc2c7e55e0891e5bfd588918a74509 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Wed, 9 Apr 2025 20:38:01 -0400 Subject: [PATCH 06/20] Parsing, querying, inserting airports --- api/Cargo.lock | 5 +- api/Cargo.toml | 3 +- api/migrations/10232024_initial.sql | 16 + api/src/airports/model/airport.rs | 256 +- api/src/airports/model/frequency.rs | 104 +- api/src/airports/model/runway.rs | 109 +- api/src/airports/routes.rs | 5 +- api/src/metars/model.rs | 63 +- bruno/Airports/Get Airport.bru | 2 +- bruno/Airports/Get All Airports.bru | 4 +- data/airports_2024-09-04.json | 104106 ------------------------- data/airports_2024-1-5.json | 1 - 12 files changed, 453 insertions(+), 104221 deletions(-) delete mode 100644 data/airports_2024-09-04.json delete mode 100644 data/airports_2024-1-5.json diff --git a/api/Cargo.lock b/api/Cargo.lock index 626d1f1..5eceef0 100644 --- a/api/Cargo.lock +++ b/api/Cargo.lock @@ -377,6 +377,7 @@ dependencies = [ "chrono", "dotenv", "env_logger", + "futures", "futures-util", "geo-types", "log", @@ -3403,9 +3404,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.15.1" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" +checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" dependencies = [ "getrandom 0.3.1", "serde", diff --git a/api/Cargo.toml b/api/Cargo.toml index 29b17a9..06b142c 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -22,7 +22,7 @@ reqwest = "0.12.15" serde = {version = "1.0.219", features = ["derive"]} serde_json = "1.0.140" tokio = { version = "1.44.2", features = ["macros", "rt", "time"] } -uuid = { version = "1.10.0", features = ["serde", "v4"] } +uuid = { version = "1.16.0", features = ["serde", "v4"] } log = "0.4.27" argon2 = "0.5.3" redis = { version = "0.29.5", features = ["tokio-comp", "connection-manager", "r2d2", "json"] } @@ -33,3 +33,4 @@ rand = "0.9.0" rand_chacha = "0.9.0" geo-types = "0.7.15" byteorder = "1.5.0" +futures = "0.3.31" diff --git a/api/migrations/10232024_initial.sql b/api/migrations/10232024_initial.sql index 6e3e5f6..95eac60 100644 --- a/api/migrations/10232024_initial.sql +++ b/api/migrations/10232024_initial.sql @@ -17,6 +17,22 @@ CREATE TABLE IF NOT EXISTS airports ( public BOOLEAN DEFAULT false ); +CREATE TABLE IF NOT EXISTS runways ( + id UUID PRIMARY KEY NOT NULL, + icao TEXT NOT NULL, + runway_id TEXT NOT NULL, + length_ft REAL NOT NULL, + width_ft REAL NOT NULL, + surface TEXT NOT NULL +); + +CREATE TABLE IF NOT EXISTS frequencies ( + id UUID PRIMARY KEY NOT NULL, + icao TEXT NOT NULL, + frequency_id TEXT NOT NULL, + frequency_mhz REAL NOT NULL +); + CREATE TABLE IF NOT EXISTS metars ( icao TEXT NOT NULL, observation_time TIMESTAMPTZ NOT NULL, diff --git a/api/src/airports/model/airport.rs b/api/src/airports/model/airport.rs index fecc198..a03f36c 100644 --- a/api/src/airports/model/airport.rs +++ b/api/src/airports/model/airport.rs @@ -1,11 +1,13 @@ +use std::collections::HashMap; use std::str::FromStr; use actix_web::web::Json; use serde::{Deserialize, Serialize}; use sqlx::{Execute, Postgres, QueryBuilder}; use crate::airports::model::airport_category::AirportCategory; -use crate::airports::{Frequency, Runway, UpdateFrequency, UpdateRunway}; +use crate::airports::{Frequency, FrequencyRow, Runway, RunwayRow, UpdateFrequency, UpdateRunway}; use crate::db; -use crate::error::ApiResult; +use crate::error::{ApiResult, Error}; +use crate::metars::Metar; const TABLE_NAME: &str = "airports"; @@ -31,6 +33,8 @@ pub struct Airport { pub runways: Vec, pub frequencies: Vec, pub public: bool, + #[serde(skip_serializing_if = "Option::is_none")] + pub latest_metar: Option, } #[derive(Debug, Deserialize)] @@ -45,6 +49,7 @@ pub struct AirportQuery { pub iso_countries: Option, pub iso_regions: Option, pub municipalities: Option, + pub metars: Option, } impl Default for AirportQuery { @@ -60,6 +65,7 @@ impl Default for AirportQuery { iso_countries: None, iso_regions: None, municipalities: None, + metars: None, } } } @@ -125,7 +131,7 @@ impl Into for Airport { impl From for Airport { fn from(airport: AirportRow) -> Self { - Airport { + Self { icao: airport.icao.clone(), iata: airport.iata.clone(), local: airport.local.clone(), @@ -148,6 +154,7 @@ impl From for Airport { runways: vec![], frequencies: vec![], public: airport.public, + latest_metar: None, } } } @@ -156,24 +163,53 @@ impl Airport { pub async fn select(icao: &str) -> Option { let pool = db::pool(); - let airport: Option = sqlx::query_as(&format!( - r#" - SELECT * FROM {} WHERE icao = $1 - "#, - TABLE_NAME - )) - .bind(icao) - .fetch_optional(pool) - .await - .unwrap_or_else(|err| { - log::error!("Unable to find airport '{}'", icao); - None - }); + let airport_fut = async { + sqlx::query_as(&format!("SELECT * FROM {} WHERE icao = $1", TABLE_NAME)) + .bind(icao) + .fetch_optional(pool) + .await + }; - match airport { - Some(a) => Some(a.into()), - None => None, - } + let runways_fut = Runway::select_all(icao); + let frequencies_fut = Frequency::select_all(icao); + + let (airport_result, runways_result, frequencies_result) = + tokio::join!(airport_fut, runways_fut, frequencies_fut); + + let airport_row: Option = match airport_result { + Ok(opt) => opt, + Err(err) => { + log::error!("Unable to find airport '{}': {}", icao, err); + return None; + } + }; + + let runways: Vec = match runways_result { + Ok(r) => r, + Err(err) => { + log::error!("Error retrieving runways for airport '{}': {}", icao, err); + vec![] + } + }; + + let frequencies: Vec = match frequencies_result { + Ok(f) => f, + Err(err) => { + log::error!( + "Error retrieving frequencies for airport '{}': {}", + icao, + err + ); + vec![] + } + }; + + airport_row.map(|row| { + let mut airport: Airport = row.into(); + airport.runways = runways; + airport.frequencies = frequencies; + airport + }) } pub async fn select_all(query: &AirportQuery) -> ApiResult> { @@ -183,31 +219,34 @@ impl Airport { builder.push(TABLE_NAME); let mut has_where = false; - macro_rules! push_condition { - ($field:expr, $value:expr) => { - if let Some(ref val) = $value { - if !has_where { - builder.push(" WHERE "); - has_where = true; - } else { - builder.push(" AND "); - } - builder.push($field).push(" = ").push_bind(val); - } - }; - } - - // push_condition!("icao", query.icaos); - // push_condition!("iata", query.iata); - // push_condition!("iso_country", query.iso_country); - // push_condition!("iso_region", query.iso_region); - // push_condition!("municipality", query.municipality); + Self::push_condition_array(&mut builder, &mut has_where, "icao", &query.icaos); + Self::push_condition_array(&mut builder, &mut has_where, "iata", &query.iatas); + Self::push_condition_array( + &mut builder, + &mut has_where, + "iso_country", + &query.iso_countries, + ); + Self::push_condition_array( + &mut builder, + &mut has_where, + "iso_region", + &query.iso_regions, + ); + Self::push_condition_array( + &mut builder, + &mut has_where, + "municipality", + &query.municipalities, + ); + Self::push_condition_array(&mut builder, &mut has_where, "local", &query.locals); + Self::push_condition_array(&mut builder, &mut has_where, "name", &query.names); + Self::push_condition_array(&mut builder, &mut has_where, "category", &query.categories); // Apply pagination. if let Some(limit) = query.limit { builder.push(" LIMIT ").push_bind(limit as i64); let offset = if let Some(page) = query.page { - // Calculate offset (page is 1-based). (page.saturating_sub(1) * limit) as i64 } else { 0 @@ -215,9 +254,22 @@ impl Airport { builder.push(" OFFSET ").push_bind(offset); } - let query = builder.build_query_as(); - let airport_rows: Vec = query.fetch_all(pool).await?; - Ok(airport_rows.into_iter().map(From::from).collect()) + let airport_query = builder.build_query_as::(); + let airport_rows: Vec = airport_query.fetch_all(pool).await?; + let mut airports: Vec = airport_rows.into_iter().map(From::from).collect(); + + // Bulk update airports with runways and frequencies + if !airports.is_empty() { + let icaos: Vec = airports.iter().map(|a| a.icao.clone()).collect(); + let mut runway_map = Runway::select_all_map(icaos.clone()).await?; + let mut frequency_map = Frequency::select_all_map(icaos).await?; + for airport in airports.iter_mut() { + airport.runways = runway_map.remove(&airport.icao).unwrap_or_default(); + airport.frequencies = frequency_map.remove(&airport.icao).unwrap_or_default(); + } + } + + Ok(airports) } pub async fn count(query: &AirportQuery) -> i64 { @@ -227,49 +279,48 @@ impl Airport { builder.push(TABLE_NAME); let mut has_where = false; - macro_rules! push_condition_array { - ($column:expr, $field:expr) => { - if let Some(ref value_str) = $field { - // split on commas, trim whitespace, and drop empties - let values: Vec<&str> = value_str - .split(',') - .map(|s| s.trim()) - .filter(|s| !s.is_empty()) - .collect(); - if !values.is_empty() { - if !has_where { - builder.push(" WHERE "); - has_where = true; - } else { - builder.push(" AND "); - } - dbg!(&values); - builder.push($column); - builder.push(" = ANY("); - builder.push_bind(values); - builder.push(")"); - } - } - }; - } - - push_condition_array!("icao", query.icaos); - push_condition_array!("iata", query.iatas); - push_condition_array!("iso_country", query.iso_countries); - push_condition_array!("iso_region", query.iso_regions); - push_condition_array!("municipality", query.municipalities); - push_condition_array!("local", query.locals); - push_condition_array!("name", query.names); - push_condition_array!("category", query.categories); + Self::push_condition_array(&mut builder, &mut has_where, "icao", &query.icaos); + Self::push_condition_array(&mut builder, &mut has_where, "iata", &query.iatas); + Self::push_condition_array( + &mut builder, + &mut has_where, + "iso_country", + &query.iso_countries, + ); + Self::push_condition_array( + &mut builder, + &mut has_where, + "iso_region", + &query.iso_regions, + ); + Self::push_condition_array( + &mut builder, + &mut has_where, + "municipality", + &query.municipalities, + ); + Self::push_condition_array(&mut builder, &mut has_where, "local", &query.locals); + Self::push_condition_array(&mut builder, &mut has_where, "name", &query.names); + Self::push_condition_array(&mut builder, &mut has_where, "category", &query.categories); let sql_query = builder.build_query_scalar(); - dbg!(&sql_query.sql()); sql_query.fetch_one(pool).await.unwrap_or_else(|_| 0) } pub async fn insert(&self) -> ApiResult { let pool = db::pool(); + let mut all_runway_rows: Vec = Vec::new(); + let mut all_frequency_rows: Vec = Vec::new(); + for runway in &self.runways { + all_runway_rows.push(Runway::into(runway, &self.icao)); + } + for frequency in &self.frequencies { + all_frequency_rows.push(Frequency::into(frequency, &self.icao)); + } + Runway::insert_all(&all_runway_rows).await?; + Frequency::insert_all(&all_frequency_rows).await?; + let airport: AirportRow = sqlx::query_as(&format!( r#" INSERT INTO {} ( @@ -306,12 +357,25 @@ impl Airport { pub async fn insert_all(airports: Vec) -> ApiResult<()> { let pool = db::pool(); - let airport_rows: Vec = airports.into_iter().map(Into::into).collect(); - - // Define the maximum size of a single insertion batch. let chunk_size = 1000; + let mut all_runway_rows: Vec = Vec::new(); + let mut all_frequency_rows: Vec = Vec::new(); + let airport_rows: Vec = airports + .into_iter() + .map(|airport| { + for runway in &airport.runways { + all_runway_rows.push(Runway::into(runway, &airport.icao)); + } + for frequency in &airport.frequencies { + all_frequency_rows.push(Frequency::into(frequency, &airport.icao)); + } + airport.into() + }) + .collect(); + Runway::insert_all(&all_runway_rows).await?; + Frequency::insert_all(&all_frequency_rows).await?; + for chunk in airport_rows.chunks(chunk_size) { - // Build a dynamic query for batch insertion. let mut query_builder: QueryBuilder = QueryBuilder::new( "INSERT INTO airports (icao, iata, local, name, category, \ iso_country, iso_region, municipality, elevation_ft, \ @@ -376,4 +440,32 @@ impl Airport { Ok(()) } + + fn push_condition_array<'a>( + builder: &mut QueryBuilder<'a, Postgres>, + has_where: &mut bool, + column: &str, + field: &'a Option, + ) { + if let Some(ref value_str) = field { + // Split on commas, trim whitespace, and drop empties. + let values: Vec<&str> = value_str + .split(',') + .map(str::trim) + .filter(|s| !s.is_empty()) + .collect(); + if !values.is_empty() { + if !*has_where { + builder.push(" WHERE "); + *has_where = true; + } else { + builder.push(" AND "); + } + builder.push(column); + builder.push(" = ANY("); + builder.push_bind(values); + builder.push(")"); + } + } + } } diff --git a/api/src/airports/model/frequency.rs b/api/src/airports/model/frequency.rs index 0280d66..7f92d1a 100644 --- a/api/src/airports/model/frequency.rs +++ b/api/src/airports/model/frequency.rs @@ -1,15 +1,115 @@ +use std::collections::HashMap; use serde::{Deserialize, Serialize}; +use sqlx::{Postgres, QueryBuilder}; +use uuid::Uuid; +use crate::db; +use crate::error::ApiResult; + +const TABLE_NAME: &str = "frequencies"; #[derive(Debug, Serialize, Deserialize)] pub struct Frequency { - pub id: String, + #[serde(rename = "id")] + pub frequency_id: String, + pub frequency_mhz: f32, +} + +#[derive(Debug, Deserialize, sqlx::FromRow)] +pub struct FrequencyRow { + pub id: Uuid, + pub icao: String, + pub frequency_id: String, pub frequency_mhz: f32, } #[derive(Debug, Serialize, Deserialize)] pub struct UpdateFrequency { #[serde(skip_serializing_if = "Option::is_none")] - pub id: Option, + pub icao: Option, + #[serde(rename = "id", skip_serializing_if = "Option::is_none")] + pub frequency_id: Option, #[serde(skip_serializing_if = "Option::is_none")] pub frequency_mhz: Option, } + +impl From for Frequency { + fn from(frequency: FrequencyRow) -> Self { + Self { + frequency_id: frequency.frequency_id.clone(), + frequency_mhz: frequency.frequency_mhz, + } + } +} + +impl Frequency { + pub fn into(frequency: &Frequency, icao: &str) -> FrequencyRow { + FrequencyRow { + id: Uuid::new_v4(), + icao: icao.to_string(), + frequency_id: frequency.frequency_id.clone(), + frequency_mhz: frequency.frequency_mhz.clone(), + } + } + + pub async fn select_all_map(icaos: Vec) -> ApiResult>> { + let pool = db::pool(); + + let frequency_rows: Vec = sqlx::query_as(&format!( + r#"SELECT * FROM {} WHERE icao = ANY($1)"#, + TABLE_NAME + )) + .bind(&icaos) + .fetch_all(pool) + .await?; + + let mut frequency_map: HashMap> = HashMap::new(); + for frequency_row in frequency_rows { + let icao = frequency_row.icao.clone(); + let frequency = frequency_row.into(); + frequency_map + .entry(icao.to_string()) + .or_default() + .push(frequency); + } + + Ok(frequency_map) + } + + pub async fn select_all(icao: &str) -> ApiResult> { + let pool = db::pool(); + + let frequency_row: Vec = sqlx::query_as(&format!( + r#" + SELECT * FROM {} WHERE icao = $1 + "#, + TABLE_NAME + )) + .bind(icao) + .fetch_all(pool) + .await?; + Ok(frequency_row.into_iter().map(From::from).collect()) + } + + pub async fn insert_all(frequencies: &Vec) -> ApiResult<()> { + let pool = db::pool(); + let chunk_size = 1000; + + for chunk in frequencies.chunks(chunk_size) { + let mut query_builder: QueryBuilder = QueryBuilder::new(&format!( + "INSERT INTO {} (id, icao, frequency_id, frequency_mhz) ", + TABLE_NAME + )); + query_builder.push_values(chunk, |mut b, row| { + b.push_bind(&row.id) + .push_bind(&row.icao) + .push_bind(&row.frequency_id) + .push_bind(&row.frequency_mhz); + }); + + let query = query_builder.build(); + query.execute(pool).await?; + } + + Ok(()) + } +} diff --git a/api/src/airports/model/runway.rs b/api/src/airports/model/runway.rs index b0fc9b4..5a5e3ef 100644 --- a/api/src/airports/model/runway.rs +++ b/api/src/airports/model/runway.rs @@ -1,8 +1,26 @@ +use std::collections::HashMap; use serde::{Deserialize, Serialize}; +use sqlx::{Postgres, QueryBuilder}; +use uuid::Uuid; +use crate::db; +use crate::error::ApiResult; + +const TABLE_NAME: &str = "runways"; #[derive(Debug, Serialize, Deserialize)] pub struct Runway { - pub id: String, + #[serde(rename = "id")] + pub runway_id: String, + pub length_ft: f32, + pub width_ft: f32, + pub surface: String, +} + +#[derive(Debug, Deserialize, sqlx::FromRow)] +pub struct RunwayRow { + pub id: Uuid, + pub icao: String, + pub runway_id: String, pub length_ft: f32, pub width_ft: f32, pub surface: String, @@ -11,7 +29,9 @@ pub struct Runway { #[derive(Debug, Serialize, Deserialize)] pub struct UpdateRunway { #[serde(skip_serializing_if = "Option::is_none")] - pub id: Option, + pub icao: Option, + #[serde(rename = "id", skip_serializing_if = "Option::is_none")] + pub frequency_id: Option, #[serde(skip_serializing_if = "Option::is_none")] pub length_ft: Option, #[serde(skip_serializing_if = "Option::is_none")] @@ -19,3 +39,88 @@ pub struct UpdateRunway { #[serde(skip_serializing_if = "Option::is_none")] pub surface: Option, } + +impl From for Runway { + fn from(runway: RunwayRow) -> Self { + Self { + runway_id: runway.runway_id.clone(), + length_ft: runway.length_ft.clone(), + width_ft: runway.width_ft.clone(), + surface: runway.surface.clone(), + } + } +} + +impl Runway { + pub fn into(runway: &Runway, icao: &str) -> RunwayRow { + RunwayRow { + id: Uuid::new_v4(), + icao: icao.to_string(), + runway_id: runway.runway_id.clone(), + length_ft: runway.length_ft.clone(), + width_ft: runway.width_ft.clone(), + surface: runway.surface.clone(), + } + } + + pub async fn select_all_map(icaos: Vec) -> ApiResult>> { + let pool = db::pool(); + + let runway_rows: Vec = sqlx::query_as(&format!( + r#"SELECT * FROM {} WHERE icao = ANY($1)"#, + TABLE_NAME + )) + .bind(&icaos) + .fetch_all(pool) + .await?; + + let mut runway_map: HashMap> = HashMap::new(); + for runway_row in runway_rows { + let icao = runway_row.icao.clone(); + let runway = runway_row.into(); + runway_map.entry(icao.to_string()).or_default().push(runway); + } + + Ok(runway_map) + } + + pub async fn select_all(icao: &str) -> ApiResult> { + let pool = db::pool(); + + let runway_rows: Vec = sqlx::query_as(&format!( + r#" + SELECT * FROM {} WHERE icao = $1 + "#, + TABLE_NAME + )) + .bind(icao) + .fetch_all(pool) + .await?; + Ok(runway_rows.into_iter().map(From::from).collect()) + } + + pub async fn insert_all(runways: &Vec) -> ApiResult<()> { + let pool = db::pool(); + let chunk_size = 1000; + + for chunk in runways.chunks(chunk_size) { + let mut query_builder: QueryBuilder = QueryBuilder::new(&format!( + "INSERT INTO {} (id, icao, runway_id, length_ft, width_ft, surface) ", + TABLE_NAME + )); + query_builder.push_values(chunk, |mut b, row| { + b.push_bind(&row.id) + .push_bind(&row.icao) + .push_bind(&row.runway_id) + .push_bind(&row.length_ft) + .push_bind(&row.width_ft) + .push_bind(&row.surface); + }); + + let query = query_builder.build(); + query.execute(pool).await?; + } + + Ok(()) + } +} diff --git a/api/src/airports/routes.rs b/api/src/airports/routes.rs index f6b2b65..fb73fff 100644 --- a/api/src/airports/routes.rs +++ b/api/src/airports/routes.rs @@ -58,7 +58,10 @@ async fn import_airports(mut payload: Multipart, auth: Auth) -> HttpResponse { async fn get_airports(req: HttpRequest) -> HttpResponse { let mut query = match web::Query::::from_query(req.query_string()) { Ok(q) => q.into_inner(), - Err(_) => AirportQuery::default(), + Err(err) => { + log::error!("{}", err); + AirportQuery::default() + } }; let total = Airport::count(&query).await; diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index ba6b5c9..1cf7ac7 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -42,6 +42,10 @@ pub struct Metar { pub min_t_c: Option, #[serde(skip_serializing_if = "Option::is_none")] pub precip_in: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub humidity: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub density_altitude: Option, } #[derive(Serialize, Deserialize, Debug)] @@ -184,6 +188,8 @@ impl Default for Metar { max_t_c: None, min_t_c: None, precip_in: None, + humidity: None, + density_altitude: None, } } } @@ -632,18 +638,19 @@ impl Metar { let remark = metar_parts[0]; metar_parts.remove(0); if remark == "AO1" { - metar - .remarks - .auto_station_without_precipication = Some(true); + metar.remarks.auto_station_without_precipication = Some(true); } else if remark == "AO2" { metar.remarks.auto_station_with_precipication = Some(true); } else if remark == "$" { metar.remarks.maintenance_indicator_on = Some(true); - } else if remark == "PK" && metar_parts.len() >= 2 && metar_parts[0] == "WND"{ + } else if remark == "PK" && metar_parts.len() >= 2 && metar_parts[0] == "WND" { metar_parts.remove(0); let string = metar_parts[0]; metar_parts.remove(0); - let re = regex::Regex::new(r"(?\d{3})(?\d{2,3})/(?:(?\d{2}))?(?\d{2})").unwrap(); + let re = regex::Regex::new( + r"(?\d{3})(?\d{2,3})/(?:(?\d{2}))?(?\d{2})", + ) + .unwrap(); if let Some(caps) = re.captures(string) { // Get degrees, speed, minutes let degrees: i32 = caps["degrees"].parse()?; @@ -660,15 +667,16 @@ impl Metar { degrees, speed, hour, - minutes + minutes, }); } else { - return Err(Error::new(500, "Input string format is invalid".to_string())); + return Err(Error::new( + 500, + "Input string format is invalid".to_string(), + )); } } else if remark == "PNO" { - metar - .remarks - .precipication_information_not_available = Some(true); + metar.remarks.precipication_information_not_available = Some(true); } else if remark == "RVRNO" { metar.remarks.rvr_missing = Some(true); } else if remark == "PWINO" { @@ -676,19 +684,14 @@ impl Metar { .remarks .precipication_identifier_information_not_available = Some(true); } else if remark == "FZRANO" { - metar - .remarks - .freezing_rain_information_not_available = Some(true); + metar.remarks.freezing_rain_information_not_available = Some(true); } else if remark == "TSNO" { - metar - .remarks - .thunderstorm_information_not_available = Some(true); + metar.remarks.thunderstorm_information_not_available = Some(true); } else if remark == "VISNO" { let location = metar_parts[0]; metar_parts.remove(0); - metar - .remarks - .visibility_at_secondary_location_not_available = Some(location.to_string()); + metar.remarks.visibility_at_secondary_location_not_available = + Some(location.to_string()); } else if remark == "CHINO" { let location = metar_parts[0]; metar_parts.remove(0); @@ -713,7 +716,7 @@ impl Metar { metar.temp_c = Some(t / 10.0 * -1.0); } } - let dewpoint_negation = &remark[6..7]; + let dewpoint_negation = &remark[5..6]; let dewpoint = &remark[6..9]; if let Ok(d) = dewpoint.parse::() { if dewpoint_negation == "0" { @@ -778,6 +781,16 @@ impl Metar { } } + // Calculate estimated humidity + if metar.temp_c.is_some() && metar.dewpoint_c.is_some() { + let estimated_humidity = 100.0 - ((metar.temp_c.unwrap() - metar.dewpoint_c.unwrap()) * 5.0); + metar.humidity = Some(estimated_humidity); + } + + // Calculate estimated density + // let estimated_density = ; + // metar.density_altitude = Some(metar.density_altitude); + Ok(metar) } @@ -957,10 +970,16 @@ mod tests { RMK AO2 PK WND 20032/25 WSHFT 1715 VIS 3/4V1 1/2 VIS 3/4 RWY11 RAB07 CIG 013V017 CIG 017 RWY11 PRESFR SLP125 P0003 60009 T00640036 10066 21012 58033 TSNO $".to_string(); let metar = Metar::parse(&metar_string).unwrap(); - dbg!(&metar); + // dbg!(&metar); - metar_string = "KMRB 082253Z 30014G23KT 10SM CLR 05/M12 A3002 RMK AO2 PK WND 30028/2157 SLP168 T00501117".to_string(); + metar_string = "KMIA 090053Z 33004KT 10SM FEW015 FEW024 SCT075 SCT250 25/22 A2990 RMK AO2 SLP126 T02500217 $".to_string(); let metar = Metar::parse(&metar_string).unwrap(); dbg!(&metar); + + metar_string = + "KMRB 082253Z 30014G23KT 10SM CLR 05/M12 A3002 RMK AO2 PK WND 30028/2157 SLP168 T00501117" + .to_string(); + let metar = Metar::parse(&metar_string).unwrap(); + // dbg!(&metar); } } diff --git a/bruno/Airports/Get Airport.bru b/bruno/Airports/Get Airport.bru index 27ed00f..3a40a4b 100644 --- a/bruno/Airports/Get Airport.bru +++ b/bruno/Airports/Get Airport.bru @@ -5,7 +5,7 @@ meta { } get { - url: {{BASE_URL}}/airports/TEST + url: {{BASE_URL}}/airports/KHEF body: none auth: none } diff --git a/bruno/Airports/Get All Airports.bru b/bruno/Airports/Get All Airports.bru index 5bfcc6e..966717c 100644 --- a/bruno/Airports/Get All Airports.bru +++ b/bruno/Airports/Get All Airports.bru @@ -5,7 +5,7 @@ meta { } get { - url: {{BASE_URL}}/airports?page=1&limit=1000 + url: {{BASE_URL}}/airports?page=1&limit=1000&icaos=KHEF&metarss=true body: none auth: none } @@ -13,4 +13,6 @@ get { params:query { page: 1 limit: 1000 + icaos: KHEF + metarss: true } diff --git a/data/airports_2024-09-04.json b/data/airports_2024-09-04.json deleted file mode 100644 index 02220eb..0000000 --- a/data/airports_2024-09-04.json +++ /dev/null @@ -1,104106 +0,0 @@ -[ - { - "name": "Peterstown Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "487", - "location": { - "latitude": 37.4012325, - "longitude": -80.8072992 - }, - "state": "WV", - "type": "aerodrome" - }, - { - "name": "Robinson Private Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "290", - "location": { - "latitude": 37.3484735, - "longitude": -79.5719779 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Brookneal-Campbell County Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "0V4", - "elevation": "178", - "location": { - "latitude": 37.1418094, - "longitude": -79.0161286 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Ayres-Acip Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "160", - "location": { - "latitude": 38.7759492, - "longitude": -77.9105505 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Mecklenburg-Brunswick Regional Airport", - "alt_name": null, - "icao": "KAVC", - "iata": null, - "faa": null, - "elevation": "130", - "location": { - "latitude": 36.6882004, - "longitude": -78.0544403 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Franwood Farms Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "299", - "location": { - "latitude": 38.6909503, - "longitude": -78.6294596 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Kilmarnock-Tolbert Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "2", - "location": { - "latitude": 37.6926338, - "longitude": -76.3182779 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Johnson Fox Field Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "0VA1", - "elevation": "266", - "location": { - "latitude": 37.2334759, - "longitude": -79.5853093 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "High View Farm Airport", - "alt_name": null, - "icao": "61VA", - "iata": "61VA", - "faa": null, - "elevation": "179", - "location": { - "latitude": 39.2353805, - "longitude": -78.0119425 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Meadow Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "20", - "location": { - "latitude": 37.8570844, - "longitude": -77.420537 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Mayers Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "56", - "location": { - "latitude": 37.7818091, - "longitude": -77.4938727 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Nashs Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "232", - "location": { - "latitude": 37.3904451, - "longitude": -78.8148365 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Hill Top Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "74", - "location": { - "latitude": 37.4159832, - "longitude": -77.9538903 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Powell Valley Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "486", - "location": { - "latitude": 36.8562088, - "longitude": -82.717104 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Alpha Hotel Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "154", - "location": { - "latitude": 36.8195838, - "longitude": -78.7830623 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Big River Ranch Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "110", - "location": { - "latitude": 36.6751394, - "longitude": -78.6950044 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Lake County Regional Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W63", - "elevation": "120", - "location": { - "latitude": 36.5951632, - "longitude": -78.5605134 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "White Oak Stand Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "640", - "location": { - "latitude": 36.8078925, - "longitude": -81.7012303 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Merifield Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "104", - "location": { - "latitude": 36.5844512, - "longitude": -78.5007112 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Huff Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "590", - "location": { - "latitude": 36.7723367, - "longitude": -81.7234538 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Skovhus Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "221", - "location": { - "latitude": 37.4143105, - "longitude": -78.9641861 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Crewe Municipal Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W81", - "elevation": "123", - "location": { - "latitude": 37.180985, - "longitude": -78.0983336 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Ayers Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "411", - "location": { - "latitude": 38.9032741, - "longitude": -78.6549254 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Berryvale Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "135", - "location": { - "latitude": 38.5290151, - "longitude": -77.9563047 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Layne Farm Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "170", - "location": { - "latitude": 37.121259, - "longitude": -78.6436126 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Moorefields Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "327", - "location": { - "latitude": 36.55986, - "longitude": -80.1378265 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Trent Farm Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "338", - "location": { - "latitude": 36.6501369, - "longitude": -80.1164365 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Longs Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "256", - "location": { - "latitude": 38.8041692, - "longitude": -78.5716663 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "The Greenhouse Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "90", - "location": { - "latitude": 38.4356828, - "longitude": -77.8572166 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Grand Pre Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "150", - "location": { - "latitude": 38.4542933, - "longitude": -78.1863901 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Woodford Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "73", - "location": { - "latitude": 38.0823564, - "longitude": -77.4883163 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Mann Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "9", - "location": { - "latitude": 36.5490406, - "longitude": -77.1913561 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Wheatland Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "23VA", - "elevation": "144", - "location": { - "latitude": 37.5570452, - "longitude": -78.6203323 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Toga Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "216", - "location": { - "latitude": 37.4509784, - "longitude": -78.6786199 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Springwood Airstrip Gliderport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "313", - "location": { - "latitude": 37.554022, - "longitude": -79.7497635 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Eastview Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "151", - "location": { - "latitude": 37.6143112, - "longitude": -78.6036203 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Byrd Creek Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "90", - "location": { - "latitude": 37.8187547, - "longitude": -78.0472209 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Burnt Chimney Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "311", - "location": { - "latitude": 37.0754184, - "longitude": -79.827255 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Walnut Hill Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "58VA", - "elevation": "82", - "location": { - "latitude": 38.5951218, - "longitude": -77.6461009 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Shivok Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "7", - "location": { - "latitude": 38.009019, - "longitude": -76.5630107 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Chase City Municipal Airport", - "alt_name": null, - "icao": "KCXE", - "iata": null, - "faa": "CXE", - "elevation": "151", - "location": { - "latitude": 36.7881968, - "longitude": -78.501387 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Twin Towers Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "141", - "location": { - "latitude": 36.7648333, - "longitude": -78.3587663 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Stokes Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "78", - "location": { - "latitude": 37.6563343, - "longitude": -78.0454742 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Snow Hill Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA19", - "elevation": "83", - "location": { - "latitude": 37.9540296, - "longitude": -78.3691745 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Woods Farm Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "20", - "location": { - "latitude": 37.7151428, - "longitude": -77.3024786 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Fox Fire Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "136", - "location": { - "latitude": 36.784304, - "longitude": -79.0497366 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Heathsville Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "30", - "location": { - "latitude": 37.945131, - "longitude": -76.4571739 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Riverwood Airport", - "alt_name": null, - "icao": "0VA2", - "iata": null, - "faa": null, - "elevation": "322", - "location": { - "latitude": 37.7970435, - "longitude": -79.767433 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Irvington Marina Seaplane Base", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "3", - "location": { - "latitude": 37.6576374, - "longitude": -76.4371705 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Keysville Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "193", - "location": { - "latitude": 37.0382067, - "longitude": -78.4627724 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Wells Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA56", - "elevation": "30", - "location": { - "latitude": 37.0034831, - "longitude": -76.8274597 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Apple Grove Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "5", - "location": { - "latitude": 37.7626342, - "longitude": -76.346335 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Tye River Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "192", - "location": { - "latitude": 37.6584219, - "longitude": -78.9446668 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Providence Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "143", - "location": { - "latitude": 37.2253651, - "longitude": -78.4186344 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Big Buffalo Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "140", - "location": { - "latitude": 37.2834853, - "longitude": -78.449718 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Barrows Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "333", - "location": { - "latitude": 37.4920756, - "longitude": -79.9286544 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Deer Run Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "717", - "location": { - "latitude": 36.994296, - "longitude": -80.4544965 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "New London Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W90", - "elevation": "248", - "location": { - "latitude": 37.2734046, - "longitude": -79.3370815 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Balcony Downs Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA43", - "elevation": "230", - "location": { - "latitude": 37.6471956, - "longitude": -79.4254925 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Twin County Airport", - "alt_name": null, - "icao": "KHLX", - "iata": null, - "faa": "HLX", - "elevation": "814", - "location": { - "latitude": 36.7659599, - "longitude": -80.8234089 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "DNE", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "232", - "location": { - "latitude": 37.6795631, - "longitude": -79.4203479 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Bachman Farm Ultralight Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "105", - "location": { - "latitude": 37.7484784, - "longitude": -77.8538836 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Rose Retreat Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "88", - "location": { - "latitude": 37.7168124, - "longitude": -77.8838846 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Als Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "335", - "location": { - "latitude": 39.290657, - "longitude": -78.3508391 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Timber Ridge Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "303", - "location": { - "latitude": 39.2962123, - "longitude": -78.3622283 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Lockerman Seaplane Base", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA48", - "elevation": "242", - "location": { - "latitude": 37.0379554, - "longitude": -79.5960949 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Orange County Airport", - "alt_name": null, - "icao": "KOMH", - "iata": null, - "faa": "OMH", - "elevation": "136", - "location": { - "latitude": 38.2475219, - "longitude": -78.045868 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Christians Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "56", - "location": { - "latitude": 37.6137556, - "longitude": -77.2958113 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Rhynalds Ranch Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "84", - "location": { - "latitude": 38.5287121, - "longitude": -77.7364561 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Harris Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "166", - "location": { - "latitude": 38.9126115, - "longitude": -77.8816618 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Redhouse Airfield", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "233", - "location": { - "latitude": 37.1890344, - "longitude": -78.829733 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Fighting Creek Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "110", - "location": { - "latitude": 37.5168158, - "longitude": -77.9138885 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Davis Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "267", - "location": { - "latitude": 36.6868041, - "longitude": -79.6661433 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Covington Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "285", - "location": { - "latitude": 36.6001377, - "longitude": -80.0386559 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Mazza Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "52", - "location": { - "latitude": 37.2445951, - "longitude": -77.4941529 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Gravely Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "223", - "location": { - "latitude": 36.6468043, - "longitude": -79.7969808 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Blue Ridge Airport", - "alt_name": null, - "icao": "KMTV", - "iata": null, - "faa": "MTV", - "elevation": "278", - "location": { - "latitude": 36.6311065, - "longitude": -80.017917 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Loury Lester Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "314", - "location": { - "latitude": 36.7424744, - "longitude": -79.8473674 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Hunt Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "42", - "location": { - "latitude": 37.6987537, - "longitude": -77.0952498 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Red Birds Airyard Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "271", - "location": { - "latitude": 37.1126432, - "longitude": -79.609197 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Cub Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "119", - "location": { - "latitude": 37.9454187, - "longitude": -77.8994399 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Lakeview Aerodrome", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "305", - "location": { - "latitude": 37.1187543, - "longitude": -79.6028082 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Hickory Tree Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "163", - "location": { - "latitude": 38.9533101, - "longitude": -77.7464997 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Wharton Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "52", - "location": { - "latitude": 37.5945889, - "longitude": -77.2177531 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Wakefield Municipal Airport", - "alt_name": null, - "icao": "KAKQ", - "iata": null, - "faa": "AKQ", - "elevation": "31", - "location": { - "latitude": 36.9870954, - "longitude": -77.0010719 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Camp Nimcock Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "23", - "location": { - "latitude": 37.6241426, - "longitude": -76.5963983 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Airlie Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "160", - "location": { - "latitude": 38.758346, - "longitude": -77.7877842 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Wallops Flight Facility Airport", - "alt_name": null, - "icao": "KWAL", - "iata": "WAL", - "faa": "WAL", - "elevation": "10", - "location": { - "latitude": 37.9417901, - "longitude": -75.4621455 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Tangier Island Airport", - "alt_name": null, - "icao": "KTGI", - "iata": null, - "faa": "TGI", - "elevation": "1", - "location": { - "latitude": 37.8248484, - "longitude": -75.9977149 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Melville Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "2VA2", - "elevation": "22", - "location": { - "latitude": 37.1447907, - "longitude": -76.7905627 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Micro Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "890", - "location": { - "latitude": 36.7355861, - "longitude": -80.4506264 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Flying Horse Farm Balloonport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA60", - "elevation": "146", - "location": { - "latitude": 39.0515416, - "longitude": -77.7770579 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Brammer Seaplane Base", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "9VA7", - "elevation": "264", - "location": { - "latitude": 37.0344145, - "longitude": -79.6944873 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Frog Hollow Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "8", - "location": { - "latitude": 37.6951425, - "longitude": -76.9949687 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "White Post Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "3VA7", - "elevation": "184", - "location": { - "latitude": 39.0603304, - "longitude": -78.0932456 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "The Meadows Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "179", - "location": { - "latitude": 38.7742829, - "longitude": -77.7997158 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Aviacres Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "3VA2", - "elevation": "129", - "location": { - "latitude": 38.624288, - "longitude": -77.7861042 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Shandy Hall Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "12", - "location": { - "latitude": 37.8576368, - "longitude": -76.7357919 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Thornton River Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "111", - "location": { - "latitude": 38.6317876, - "longitude": -78.0838872 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Fox Acres Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "135", - "location": { - "latitude": 38.7223399, - "longitude": -77.899717 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Pace Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "232", - "location": { - "latitude": 36.5854157, - "longitude": -79.8939289 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Worley Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "362", - "location": { - "latitude": 36.9501398, - "longitude": -79.8794782 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Breezy Knoll Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "244", - "location": { - "latitude": 37.2661953, - "longitude": -79.0417675 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Sabot Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "79", - "location": { - "latitude": 37.6293133, - "longitude": -77.7474937 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Trussmark Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "6VA4", - "elevation": null, - "location": { - "latitude": 37.2839764, - "longitude": -80.0688393 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Bradshaw Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "150", - "location": { - "latitude": 37.6154223, - "longitude": -78.6038982 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Bush Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "451", - "location": { - "latitude": 36.8426345, - "longitude": -80.2383823 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Wood Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "104", - "location": { - "latitude": 37.6365319, - "longitude": -78.7300152 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Rockfish Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "226", - "location": { - "latitude": 37.8795842, - "longitude": -78.8936337 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Weems Landing Strip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "5", - "location": { - "latitude": 37.6726381, - "longitude": -76.4577269 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Janeway Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "65", - "location": { - "latitude": 37.8320855, - "longitude": -77.5008169 - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Vaughan Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5761122, - "longitude": -78.9987017 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Groundhog Mountain Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6632996, - "longitude": -80.4994965 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Manquin Flight Park Ultralightport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "04VG", - "elevation": null, - "location": { - "latitude": 37.7113789, - "longitude": -77.2027293 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Jayarz Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2862704, - "longitude": -77.7921965 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Brooklyn Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6889, - "longitude": -77.1014023 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Whithall Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "1VG2", - "elevation": "7", - "location": { - "latitude": 38.1275783, - "longitude": -76.6891235 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hawk Ridge Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2904072, - "longitude": -79.4448743 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Mc Laughlin Seaplane Base", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3205986, - "longitude": -77.3458023 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Serenity Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9332102, - "longitude": -76.3457189 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Merlin Aerodrome", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3171403, - "longitude": -77.8678453 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Seven Gables Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1638985, - "longitude": -77.8499985 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Folly Neck Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8722, - "longitude": -76.731102 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Old South Aerodrome", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.677778, - "longitude": -81.928722 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Cool Water Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.858056, - "longitude": -77.547222 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hilldale Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2463989, - "longitude": -78.4753036 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Holly Springs Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7903173, - "longitude": -77.8299586 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Ferguson Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1176277, - "longitude": -79.7871335 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Root Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1731987, - "longitude": -78.9692001 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Cottonwood Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "87VA", - "elevation": null, - "location": { - "latitude": 38.0812062, - "longitude": -78.6956152 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Belmont Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3741989, - "longitude": -77.9918976 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hen & Bacon Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2181015, - "longitude": -78.2118988 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Timberdoodle Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.536195, - "longitude": -79.0228442 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Highview Farms Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2630997, - "longitude": -78.8494034 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Buck Hollar Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "95VA", - "elevation": null, - "location": { - "latitude": 36.6209879, - "longitude": -79.3567475 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Jucapa Farms Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.3708948, - "longitude": -78.3049849 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Davison Army Airfield", - "alt_name": null, - "icao": "KDAA", - "iata": "DAA", - "faa": "14/32", - "elevation": null, - "location": { - "latitude": 38.7145694, - "longitude": -77.1810423 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Catawba Valley Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2839945, - "longitude": -80.3011846 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Fincastle Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5231785, - "longitude": -79.8535692 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Federhart-Ophelia STOLport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9078375, - "longitude": -76.2903144 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Eureka Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0624008, - "longitude": -78.5616989 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Payne Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VG05", - "elevation": null, - "location": { - "latitude": 37.8796005, - "longitude": -78.0575027 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Fulcher Family Farms Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7251015, - "longitude": -79.0830994 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Rular Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5388985, - "longitude": -77.8283005 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Collins Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6250992, - "longitude": -80.1706009 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Branham Mill Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.970423, - "longitude": -76.7092365 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Woody Field Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8839287, - "longitude": -79.8524796 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Woodridge Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8391991, - "longitude": -78.821701 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Venning's Landing Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0435982, - "longitude": -79.8013992 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Woodstock Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.882, - "longitude": -78.5578003 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Abbott Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.945333, - "longitude": -79.796667 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Lee Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5615, - "longitude": -76.852528 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hop-Along Airport", - "alt_name": null, - "icao": "12VA", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7885636, - "longitude": -79.7672515 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hotinger's Landing Strip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8561555, - "longitude": -79.4800564 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9070861, - "longitude": -79.6504927 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Fork Union Military Academy Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA36", - "elevation": null, - "location": { - "latitude": 37.7438326, - "longitude": -78.2699318 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Garner Gliderport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "3VA8", - "elevation": null, - "location": { - "latitude": 36.8563124, - "longitude": -76.6820993 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Grayson Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "65VA", - "elevation": null, - "location": { - "latitude": 37.8453847, - "longitude": -78.5472052 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Slate River Airpark", - "alt_name": null, - "icao": "8VA1", - "iata": null, - "faa": "8VA1", - "elevation": null, - "location": { - "latitude": 37.5447267, - "longitude": -78.5872544 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Heth Army Heliport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1579609, - "longitude": -77.3734476 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Naval Support Facility Dahlgren", - "alt_name": null, - "icao": "KNDY", - "iata": "DGN", - "faa": "NSF Dahlgren", - "elevation": null, - "location": { - "latitude": 38.3324701, - "longitude": -77.0372541 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Sanford Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1200263, - "longitude": -76.6139172 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Potts Landing Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "3VG9", - "elevation": null, - "location": { - "latitude": 36.7111618, - "longitude": -79.1362896 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5417729, - "longitude": -78.8279028 - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Virginia Tech Montgomery Executive Airport", - "alt_name": null, - "icao": "KBCB", - "iata": "BCB", - "faa": null, - "elevation": "650", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hanover County Municipal Airport", - "alt_name": null, - "icao": "KOFP", - "iata": null, - "faa": null, - "elevation": "58", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Front Royal-Warren County Airport", - "alt_name": null, - "icao": "KFRR", - "iata": "FRR", - "faa": "FRR", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Franklin Municipal Airport", - "alt_name": "John Beverly Rose Field", - "icao": "KFKN", - "iata": "FKN", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Upperville Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "160", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Charlottesville-Albemarle Airport", - "alt_name": "Charlottesville Albemarle Airport", - "icao": "KCHO", - "iata": "CHO", - "faa": null, - "elevation": "193", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Bridgewater Air Park", - "alt_name": null, - "icao": "KVBW", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Emporia-Greensville Regional Airport", - "alt_name": null, - "icao": "KEMV", - "iata": null, - "faa": "EMV", - "elevation": "36", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Shannon Airport", - "alt_name": null, - "icao": "KEZF", - "iata": null, - "faa": "EZF", - "elevation": "26", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Winchester Regional Airport", - "alt_name": null, - "icao": "KOKV", - "iata": "WGO", - "faa": "OKV", - "elevation": "221", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Norfolk International Airport", - "alt_name": null, - "icao": "KORF", - "iata": "ORF", - "faa": null, - "elevation": "7", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Richmond International Airport", - "alt_name": "Byrd Field / Intl", - "icao": "KRIC", - "iata": "RIC", - "faa": null, - "elevation": "49", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Newport News/Williamsburg Airport", - "alt_name": null, - "icao": "KPHF", - "iata": "PHF", - "faa": "PHF", - "elevation": "13", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Warrenton-Fauquier Airport", - "alt_name": null, - "icao": "KHWY", - "iata": null, - "faa": "HWY", - "elevation": "98", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Farmville Regional Airport", - "alt_name": null, - "icao": "KFVX", - "iata": null, - "faa": "FVX", - "elevation": "122", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Gordonsville Municipal Airport", - "alt_name": null, - "icao": "KGVE", - "iata": "GVE", - "faa": "GVE", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Calvin Grove Airstrip", - "alt_name": null, - "icao": "YCVG", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Williamsburg - Jamestown Airport", - "alt_name": null, - "icao": "KJGG", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Camp Peary Airstrip", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "New Kent County Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W96", - "elevation": "34", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Virginia Beach Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Chesapeake Regional Airport", - "alt_name": null, - "icao": "KCPK", - "iata": null, - "faa": "CPK", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Middle Peninsula Regional Airport", - "alt_name": null, - "icao": "KFYJ", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Hampton Roads Executive Airport", - "alt_name": null, - "icao": "KPVG", - "iata": null, - "faa": "PVG", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Aberdeen Field", - "alt_name": null, - "icao": "31VA", - "iata": null, - "faa": "31VA", - "elevation": "10", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Suffolk Executive Airport", - "alt_name": null, - "icao": "KSFQ", - "iata": null, - "faa": "SFQ", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Tappahannock-Essex County Airport", - "alt_name": null, - "icao": "KXSA", - "iata": null, - "faa": "XSA", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Stafford Regional Airport", - "alt_name": null, - "icao": "KRMN", - "iata": null, - "faa": null, - "elevation": "64.67856", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Manassas Regional Airport", - "alt_name": null, - "icao": "KHEF", - "iata": "MNZ", - "faa": null, - "elevation": "55", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Dogwood Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "42", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Flying T Farm Airport", - "alt_name": null, - "icao": "1VA9", - "iata": null, - "faa": null, - "elevation": "77", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Quantico Marine Corps Airfield/Turner Field", - "alt_name": null, - "icao": "KNYG", - "iata": "NYG", - "faa": null, - "elevation": "19", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Chimney View Airport", - "alt_name": null, - "icao": "5VA5", - "iata": null, - "faa": null, - "elevation": "7", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Flying Circus Aerodrome", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "3VA3", - "elevation": "94", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Hartwood Airport", - "alt_name": null, - "icao": "3VG7", - "iata": null, - "faa": null, - "elevation": "110", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Sky Bryce Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VG18", - "elevation": "386", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Accomack County Airport", - "alt_name": null, - "icao": "KMFV", - "iata": "MFV", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "William M Tuck Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W78", - "elevation": "119", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "New Castle International Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "409", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Lynchburg Regional Airport", - "alt_name": "Lynchburg Regional Airport-Preston Glenn Field", - "icao": "KLYH", - "iata": "LYH", - "faa": "LYH", - "elevation": "284", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Falwell Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W24", - "elevation": "259", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Starr Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "198", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Spring Valley Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "84", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Hannah Airfield", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "7VA9", - "elevation": "929", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Pleasantdale Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "4VA9", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Arrowpoint Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VG43", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "New Market Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "8W2", - "elevation": "292", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Singleton Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "97VA", - "elevation": "628", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Bath Alum Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "9VA0", - "elevation": "542", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Ingalls Field", - "alt_name": null, - "icao": "KHSP", - "iata": "HSP", - "faa": "HSP", - "elevation": "1150", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Lee County Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "0VG", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Lee County Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "563", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Virginia Highlands Airport", - "alt_name": null, - "icao": "KVJI", - "iata": "VJI", - "faa": "VJI", - "elevation": "628", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Eagles Nest Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W13", - "elevation": "434", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Big Hill Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "489", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Tazewell County Airport", - "alt_name": null, - "icao": "KJFZ", - "iata": null, - "faa": null, - "elevation": "794", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Felker Army Airfield", - "alt_name": null, - "icao": "KFAF", - "iata": "FAF", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Milton Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Chesterfield County Airport", - "alt_name": null, - "icao": "KFCI", - "iata": null, - "faa": "FCI", - "elevation": "64", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": "KAPH", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Fairfax County Police Heliport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "26VA", - "elevation": "135", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Mountain Empire Airport", - "alt_name": null, - "icao": "KMKJ", - "iata": null, - "faa": "MKJ", - "elevation": "759", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Culpeper Regional Airport", - "alt_name": null, - "icao": "KCJR", - "iata": null, - "faa": null, - "elevation": "94", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Lawrenceville-Brunswick Municipal Airport", - "alt_name": null, - "icao": "KLVL", - "iata": "LVL", - "faa": "LVL", - "elevation": "101", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Nocarva Landowners", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "NC10", - "elevation": "84", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Martindale Executive Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "70NC", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Smith Mountain Lake Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W91", - "elevation": "265", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Reedville Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "3", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Longbranch Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "3", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Devil's Reach Landing Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Toddsbury Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "22", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Louisa County Airport-Freeman Field", - "alt_name": null, - "icao": "KLKU", - "iata": "LOW", - "faa": "LKU", - "elevation": "149", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Johnson Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA91", - "elevation": "10", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Midway Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VG56", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "High Hopes Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "3", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Sawyer Stolport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "3", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Lonesome Pine Airport", - "alt_name": null, - "icao": "KLNP", - "iata": "LNP", - "faa": "LNP", - "elevation": "810", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Hummel Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W75", - "elevation": "9", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Easter Field", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "112", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Plainview Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "125", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Flying W Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Bundoran Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "252", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Twin County Airport", - "alt_name": null, - "icao": "KHLX", - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Lake Anna Airport", - "alt_name": null, - "icao": null, - "iata": "7W4", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Warrenton Air Park", - "alt_name": null, - "icao": null, - "iata": "7VG0", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Lunenburg County Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "W31", - "elevation": "163", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Scott Airpark", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VA61", - "elevation": "529", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "The Grass Patch Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "530", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Krens Farm Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": "227", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Maples Field Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "VG57", - "elevation": "67", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Holly Point Airport", - "alt_name": null, - "icao": null, - "iata": null, - "faa": "9VA1", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Washington Dulles International Airport", - "alt_name": "Dulles International Airport", - "icao": "KIAD", - "iata": "IAD", - "faa": "IAD", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Langley Air Force Base", - "alt_name": "Joint Base Langley-Eustis", - "icao": "KLFI", - "iata": "LFI", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Naval Air Station Oceana", - "alt_name": "Apollo Soucek Field", - "icao": "KNTU", - "iata": "NTU", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Naval Auxillary Landing Field Fentress", - "alt_name": null, - "icao": "KNFE", - "iata": null, - "faa": "NFE", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Dinwiddie County Airport", - "alt_name": null, - "icao": "KPTB", - "iata": "PTB", - "faa": "KPTB", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Luray Caverns Airport", - "alt_name": null, - "icao": "KLUA", - "iata": null, - "faa": "LUA", - "elevation": "275.2", - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "New River Valley Airport", - "alt_name": null, - "icao": "KPSK", - "iata": "PSK", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Roanoke-Blacksburg Regional Airport", - "alt_name": "Woodrum Field", - "icao": "KROA", - "iata": "ROA", - "faa": null, - "elevation": "356", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Danville Regional Airport", - "alt_name": null, - "icao": "KDAN", - "iata": "DAN", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Shenandoah Valley Regional Airport", - "alt_name": null, - "icao": "KSHD", - "iata": "SHD", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Ronald Reagan Washington National Airport", - "alt_name": null, - "icao": "KDCA", - "iata": "DCA", - "faa": "DCA", - "elevation": "4.3", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Norfolk Naval Station (Chambers Field)", - "alt_name": null, - "icao": "KNGU", - "iata": "NGU", - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": "Leesburg Executive Airport", - "alt_name": null, - "icao": "KJYO", - "iata": null, - "faa": "JYO", - "elevation": "116", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Allen C. Perkinson Municipal Airport / Blackstone Army Airfield", - "alt_name": null, - "icao": "KBKT", - "iata": "BKT", - "faa": null, - "elevation": "133", - "location": { - "latitude": null, - "longitude": null - }, - "state": "VA", - "type": "aerodrome" - }, - { - "name": "Norfolk Naval Station Airport", - "alt_name": null, - "icao": "KNHU", - "iata": null, - "faa": "NHU", - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": "aerodrome" - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6491203, - "longitude": -83.2268921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6502281, - "longitude": -83.2276959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6505926, - "longitude": -83.2219814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6501874, - "longitude": -83.222849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6508008, - "longitude": -83.2232941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6517477, - "longitude": -83.2263344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6510877, - "longitude": -83.2258555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6555862, - "longitude": -83.2221959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6549012, - "longitude": -83.2216989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6541368, - "longitude": -83.2233356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6533985, - "longitude": -83.2227998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6528307, - "longitude": -83.2190916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6519771, - "longitude": -83.2184722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6515643, - "longitude": -83.2193558 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6524295, - "longitude": -83.2199836 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6512677, - "longitude": -83.2224712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6572365, - "longitude": -83.2158079 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.65569, - "longitude": -83.2128631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6550473, - "longitude": -83.2123967 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6546931, - "longitude": -83.2131553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6554076, - "longitude": -83.2136738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.65505, - "longitude": -83.2144395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6545882, - "longitude": -83.2141044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6542542, - "longitude": -83.2148195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6546812, - "longitude": -83.2151294 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6569209, - "longitude": -83.2087112 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6569696, - "longitude": -83.2101234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6577988, - "longitude": -83.2125914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6585008, - "longitude": -83.2131009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6582321, - "longitude": -83.2165304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6581947, - "longitude": -83.2067692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6590984, - "longitude": -83.207252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6594857, - "longitude": -83.2096124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6586139, - "longitude": -83.2108461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7446315, - "longitude": -83.0410731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7452462, - "longitude": -83.0410248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.746424, - "longitude": -83.0398232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7453537, - "longitude": -83.0406171 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7459297, - "longitude": -83.0403382 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7465658, - "longitude": -83.0393082 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7466862, - "longitude": -83.0383533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7465315, - "longitude": -83.0376881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7467464, - "longitude": -83.0370122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7466733, - "longitude": -83.0364543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7476834, - "longitude": -83.0332142 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.747202, - "longitude": -83.0329835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8879757, - "longitude": -82.3041112 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8879106, - "longitude": -82.3041607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8878738, - "longitude": -82.3041784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8877973, - "longitude": -82.3041466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8877549, - "longitude": -82.3040935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.887752, - "longitude": -82.3040298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8879389, - "longitude": -82.3032653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8878228, - "longitude": -82.3032299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8880029, - "longitude": -82.2939317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8879151, - "longitude": -82.2961351 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8872787, - "longitude": -82.2956976 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8902285, - "longitude": -82.2966076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8880016, - "longitude": -82.2998709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8891452, - "longitude": -82.298158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8892018, - "longitude": -82.2980589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.889332, - "longitude": -82.2977191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.889349, - "longitude": -82.297528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.889315, - "longitude": -82.2974501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8879835, - "longitude": -82.2963765 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9850763, - "longitude": -82.5360909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9840766, - "longitude": -82.5388483 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9840157, - "longitude": -82.5381283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9830635, - "longitude": -82.5365614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9819969, - "longitude": -82.5363849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9818047, - "longitude": -82.5372029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9818239, - "longitude": -82.5378565 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9819873, - "longitude": -82.5382093 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.982378, - "longitude": -82.53847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.983025, - "longitude": -82.5388349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9833774, - "longitude": -82.538911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9835952, - "longitude": -82.5386504 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9847626, - "longitude": -82.5298149 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9842023, - "longitude": -82.5326944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9842724, - "longitude": -82.5333013 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9839545, - "longitude": -82.5337059 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9846279, - "longitude": -82.5340768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.985005, - "longitude": -82.5233209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.984601, - "longitude": -82.5237593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9842077, - "longitude": -82.5244269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9846494, - "longitude": -82.5263218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9848595, - "longitude": -82.5272794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9851396, - "longitude": -82.5278121 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.984741, - "longitude": -82.5284797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9849726, - "longitude": -82.5288574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9877635, - "longitude": -82.530929 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9891631, - "longitude": -82.5301578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9891948, - "longitude": -82.5296758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9885516, - "longitude": -82.5295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9852851, - "longitude": -82.5309074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9910518, - "longitude": -82.5248445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.98605, - "longitude": -82.5229568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9854898, - "longitude": -82.5230782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9915291, - "longitude": -82.5249124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9927112, - "longitude": -82.5230694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9924486, - "longitude": -82.5236988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9924803, - "longitude": -82.5242319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.992444, - "longitude": -82.5245381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9923399, - "longitude": -82.5251959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9921677, - "longitude": -82.5255248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9920138, - "longitude": -82.5256779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9901898, - "longitude": -82.5209806 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9897989, - "longitude": -82.5214867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9894865, - "longitude": -82.5217025 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9892064, - "longitude": -82.5216688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9887486, - "longitude": -82.5216014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9885654, - "longitude": -82.5216081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9880537, - "longitude": -82.5217362 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9876605, - "longitude": -82.5219048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9873481, - "longitude": -82.5219722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9870842, - "longitude": -82.5220936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9868956, - "longitude": -82.5222757 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9866209, - "longitude": -82.5226668 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9908316, - "longitude": -82.5197975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9911487, - "longitude": -82.5194856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9913797, - "longitude": -82.5193949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9919639, - "longitude": -82.5194402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9932185, - "longitude": -82.5196501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9937575, - "longitude": -82.5198939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9940202, - "longitude": -82.5201491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9941198, - "longitude": -82.5206594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.994156, - "longitude": -82.5213172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.994002, - "longitude": -82.5216801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9937439, - "longitude": -82.5220204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9932683, - "longitude": -82.5224457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6810887, - "longitude": -82.0488788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6781983, - "longitude": -82.0472119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.679099, - "longitude": -82.045528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6790401, - "longitude": -82.0456381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6793457, - "longitude": -82.0452887 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6794431, - "longitude": -82.0457569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6795972, - "longitude": -82.0454806 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6815536, - "longitude": -82.0480437 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6823708, - "longitude": -82.0485163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6825459, - "longitude": -82.0482121 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6829817, - "longitude": -82.0490634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6807047, - "longitude": -82.0426249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6815317, - "longitude": -82.0414982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6815328, - "longitude": -82.0407808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6815338, - "longitude": -82.0404978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.681535, - "longitude": -82.0384661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6809033, - "longitude": -82.0426615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6806866, - "longitude": -82.0436505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6802309, - "longitude": -82.0434114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6801028, - "longitude": -82.0436583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6803258, - "longitude": -82.0438676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6845088, - "longitude": -82.0474025 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6852195, - "longitude": -82.0483788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6857789, - "longitude": -82.049381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6870653, - "longitude": -82.04598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.688304, - "longitude": -82.0407808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6886718, - "longitude": -82.0408908 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.688731, - "longitude": -82.0397776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6890591, - "longitude": -82.0411113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6827578, - "longitude": -82.0371558 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6852712, - "longitude": -82.032836 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6839097, - "longitude": -82.0352393 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6903086, - "longitude": -82.0362533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6871791, - "longitude": -82.0291319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6876652, - "longitude": -82.0283354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6880631, - "longitude": -82.0278136 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6891192, - "longitude": -82.0267006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6895558, - "longitude": -82.026266 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6884278, - "longitude": -82.0274113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6878574, - "longitude": -82.0280658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.68746, - "longitude": -82.0286584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6867523, - "longitude": -82.0299896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6862065, - "longitude": -82.0310639 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6915226, - "longitude": -82.0318191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6904409, - "longitude": -82.0253299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6924443, - "longitude": -82.0253554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6911226, - "longitude": -82.0278445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6928379, - "longitude": -82.0294404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.691969, - "longitude": -82.0302934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6928007, - "longitude": -82.0294768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6918763, - "longitude": -82.0285406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6909724, - "longitude": -82.0275592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6910463, - "longitude": -82.0277095 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6914707, - "longitude": -82.0271566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6917534, - "longitude": -82.0267003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6941444, - "longitude": -82.0260118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6920345, - "longitude": -82.0261623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6907818, - "longitude": -82.0249592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6910797, - "longitude": -82.0245279 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6930799, - "longitude": -82.0212691 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6953826, - "longitude": -82.0233695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6913743, - "longitude": -82.0240495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6916373, - "longitude": -82.0236081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0615129, - "longitude": -81.803872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0609264, - "longitude": -81.8045372 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0601387, - "longitude": -81.8048322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0601259, - "longitude": -81.8055511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0611405, - "longitude": -81.8060875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.062765, - "longitude": -81.8016699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0630475, - "longitude": -81.8014607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0632829, - "longitude": -81.8010744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0635077, - "longitude": -81.800884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0635419, - "longitude": -81.8006641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0634863, - "longitude": -81.8002161 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0637003, - "longitude": -81.7995966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.063696, - "longitude": -81.7991754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0638052, - "longitude": -81.7965066 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0633579, - "longitude": -81.7964664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0632102, - "longitude": -81.7965254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0629512, - "longitude": -81.7967775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0627265, - "longitude": -81.7971812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0624835, - "longitude": -81.7974709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0623219, - "longitude": -81.7975581 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0619195, - "longitude": -81.7975956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0615428, - "longitude": -81.7975339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0613267, - "longitude": -81.7974106 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0611126, - "longitude": -81.7979899 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0618703, - "longitude": -81.798411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0617376, - "longitude": -81.7988294 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0621025, - "longitude": -81.7990413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0622042, - "longitude": -81.7991728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0623647, - "longitude": -81.7994893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0625231, - "longitude": -81.7999131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0626387, - "longitude": -81.8003261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0626473, - "longitude": -81.8006319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0645714, - "longitude": -81.7966783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0648603, - "longitude": -81.7964315 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0649695, - "longitude": -81.796048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0643296, - "longitude": -81.7961016 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0640363, - "longitude": -81.7964289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.065023, - "longitude": -81.7954445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0655795, - "longitude": -81.7938781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0661402, - "longitude": -81.7940068 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0661531, - "longitude": -81.7934704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0668379, - "longitude": -81.7930573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0668508, - "longitude": -81.7928374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0662644, - "longitude": -81.7923439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.06632, - "longitude": -81.7920274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0667181, - "longitude": -81.7919308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0670391, - "longitude": -81.7917699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0673473, - "longitude": -81.7913729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0672874, - "longitude": -81.7910188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0670948, - "longitude": -81.7907828 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0663542, - "longitude": -81.7904878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0661274, - "longitude": -81.7907909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0653312, - "longitude": -81.7906031 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0652413, - "longitude": -81.7914936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0653398, - "longitude": -81.7920059 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0655538, - "longitude": -81.7924029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0655538, - "longitude": -81.7926014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8909844, - "longitude": -81.3638234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8901414, - "longitude": -81.3636625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8928872, - "longitude": -81.3592824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8918597, - "longitude": -81.3619459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8915572, - "longitude": -81.3589847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8936766, - "longitude": -81.3571876 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8922651, - "longitude": -81.3552672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8922565, - "longitude": -81.3541782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8924281, - "longitude": -81.3542748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8926469, - "longitude": -81.3533092 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.892707, - "longitude": -81.3523275 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8922908, - "longitude": -81.3521773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8953133, - "longitude": -81.3514906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8950709, - "longitude": -81.3523248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.89485, - "longitude": -81.3535801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8943201, - "longitude": -81.3552511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8968277, - "longitude": -81.3444176 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8964566, - "longitude": -81.346432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8961134, - "longitude": -81.3482291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8940262, - "longitude": -81.3449621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8940563, - "longitude": -81.3447931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8941056, - "longitude": -81.344541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8943888, - "longitude": -81.344187 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8945947, - "longitude": -81.3433072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8946526, - "longitude": -81.3427734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8942064, - "longitude": -81.3424355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8954484, - "longitude": -81.3404936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8957895, - "longitude": -81.3399974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8960104, - "longitude": -81.3396567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8962807, - "longitude": -81.3391686 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8965274, - "longitude": -81.3386965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8978787, - "longitude": -81.3390961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8977264, - "longitude": -81.3393402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8974176, - "longitude": -81.3411963 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.758701, - "longitude": -80.8210269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7579987, - "longitude": -80.8223474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.756886, - "longitude": -80.8222507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7568944, - "longitude": -80.8242464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7569996, - "longitude": -80.8243898 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7570046, - "longitude": -80.825091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7684858, - "longitude": -80.8217377 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7673166, - "longitude": -80.8215184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7672405, - "longitude": -80.8215549 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7669691, - "longitude": -80.8215354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7666646, - "longitude": -80.8215452 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7662859, - "longitude": -80.8216402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7657921, - "longitude": -80.8219448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7655168, - "longitude": -80.8220618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7652416, - "longitude": -80.8219935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7652455, - "longitude": -80.8211163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.764084, - "longitude": -80.8210749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7656961, - "longitude": -80.8252902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7652633, - "longitude": -80.8219989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7656207, - "longitude": -80.8220176 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7660767, - "longitude": -80.8217693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7734359, - "longitude": -80.8254732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7727195, - "longitude": -80.8239039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7727078, - "longitude": -80.8237602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7725478, - "longitude": -80.8231827 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.772458, - "longitude": -80.8229658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7717182, - "longitude": -80.8204121 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7716714, - "longitude": -80.8203366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7705471, - "longitude": -80.8209799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7703636, - "longitude": -80.8211382 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7701548, - "longitude": -80.8213917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7699888, - "longitude": -80.8215915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7698073, - "longitude": -80.8217596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7696668, - "longitude": -80.8218327 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7694813, - "longitude": -80.8218717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7693252, - "longitude": -80.8218863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7703607, - "longitude": -80.8254154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.773396, - "longitude": -80.8255086 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1279162, - "longitude": -80.6941579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1284979, - "longitude": -80.69386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1290383, - "longitude": -80.6935199 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1283042, - "longitude": -80.6903761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.128257, - "longitude": -80.6909286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1281626, - "longitude": -80.6913561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1280001, - "longitude": -80.6917836 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1278323, - "longitude": -80.6922966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1277746, - "longitude": -80.692586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1277588, - "longitude": -80.6928622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.127806, - "longitude": -80.6933029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1296675, - "longitude": -80.6930266 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1301185, - "longitude": -80.6926386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1305222, - "longitude": -80.6921979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1310309, - "longitude": -80.6915665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1318069, - "longitude": -80.6904484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1325148, - "longitude": -80.6894422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1329936, - "longitude": -80.6887346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1334166, - "longitude": -80.6882123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.133899, - "longitude": -80.6877256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1342766, - "longitude": -80.687423 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1348166, - "longitude": -80.6870745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1311148, - "longitude": -80.6858775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1300014, - "longitude": -80.6877212 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1317801, - "longitude": -80.6831753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1310415, - "longitude": -80.6842883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1349812, - "longitude": -80.6780554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1333986, - "longitude": -80.6807057 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1365521, - "longitude": -80.6863642 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1370659, - "longitude": -80.6861537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1375535, - "longitude": -80.6860419 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1379992, - "longitude": -80.6860485 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1382794, - "longitude": -80.6860575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1385183, - "longitude": -80.6861405 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1386913, - "longitude": -80.686226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1388119, - "longitude": -80.6861603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1388748, - "longitude": -80.6860813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1389461, - "longitude": -80.6858409 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1390909, - "longitude": -80.6858927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1394292, - "longitude": -80.6860805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1400476, - "longitude": -80.6863619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1423472, - "longitude": -80.6815415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1422544, - "longitude": -80.6833346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1401543, - "longitude": -80.686388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1368968, - "longitude": -80.6749684 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1398439, - "longitude": -80.6786363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1429592, - "longitude": -80.6822459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1424508, - "longitude": -80.674438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.139925, - "longitude": -80.6698278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1382266, - "longitude": -80.6727857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1392288, - "longitude": -80.6711234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1398888, - "longitude": -80.6698952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1436618, - "longitude": -80.6724788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1446583, - "longitude": -80.6732516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.145613, - "longitude": -80.6705171 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1465393, - "longitude": -80.6675542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1426149, - "longitude": -80.6649625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2056405, - "longitude": -80.4128093 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.205235, - "longitude": -80.4143385 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052144, - "longitude": -80.4144936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2053232, - "longitude": -80.4148075 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2055337, - "longitude": -80.4150323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052266, - "longitude": -80.4145756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2057251, - "longitude": -80.4151311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052512, - "longitude": -80.4146597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052798, - "longitude": -80.4147374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052169, - "longitude": -80.4144052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2054242, - "longitude": -80.4149293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2069531, - "longitude": -80.4156404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052276, - "longitude": -80.4143659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2136849, - "longitude": -80.4192895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2129324, - "longitude": -80.4244436 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2132258, - "longitude": -80.4180078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2114286, - "longitude": -80.4133352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2115578, - "longitude": -80.4128536 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2130299, - "longitude": -80.4173776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2130658, - "longitude": -80.4175331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2126824, - "longitude": -80.4165003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2121818, - "longitude": -80.4152366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2116285, - "longitude": -80.4138398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2100441, - "longitude": -80.4168819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2133742, - "longitude": -80.4180424 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2136962, - "longitude": -80.4188161 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2100841, - "longitude": -80.4169867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.21018, - "longitude": -80.4175164 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2088512, - "longitude": -80.4164276 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2093147, - "longitude": -80.4166041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2054178, - "longitude": -80.4082441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2051066, - "longitude": -80.4090589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2057703, - "longitude": -80.4066583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2056785, - "longitude": -80.4070821 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2050343, - "longitude": -80.4097343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2051608, - "longitude": -80.4105763 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2050462, - "longitude": -80.4099903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2052803, - "longitude": -80.4085756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2056462, - "longitude": -80.4068281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2056074, - "longitude": -80.407647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2050571, - "longitude": -80.4092498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2056672, - "longitude": -80.4073407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2050188, - "longitude": -80.4094727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2055813, - "longitude": -80.4125339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2050055, - "longitude": -80.4048408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2063371, - "longitude": -80.4006819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2061662, - "longitude": -80.4002356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.204642, - "longitude": -80.4033776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2119755, - "longitude": -80.4120153 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2093654, - "longitude": -80.4084496 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2096192, - "longitude": -80.4076797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2116682, - "longitude": -80.4113001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2108269, - "longitude": -80.4118553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2091105, - "longitude": -80.4073936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.20955, - "longitude": -80.4060463 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2091057, - "longitude": -80.4058145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2091057, - "longitude": -80.4052309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2089689, - "longitude": -80.405188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2089348, - "longitude": -80.4048017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2099806, - "longitude": -80.4019007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2093244, - "longitude": -80.4051622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2089142, - "longitude": -80.4050764 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2059816, - "longitude": -80.3994802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2030694, - "longitude": -80.3994459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2059132, - "longitude": -80.3991198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2040264, - "longitude": -80.3992914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.215132, - "longitude": -80.4228379 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2152002, - "longitude": -80.4230051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3112667, - "longitude": -79.9702982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3114581, - "longitude": -79.9701205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3121135, - "longitude": -79.9690543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3127844, - "longitude": -79.9682766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3127934, - "longitude": -79.9715083 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3116806, - "longitude": -79.9697748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3125621, - "longitude": -79.9685401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3120999, - "longitude": -79.9709395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3127045, - "longitude": -79.9683713 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3127554, - "longitude": -79.968311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3170679, - "longitude": -79.9748408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.315568, - "longitude": -79.9736718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.315944, - "longitude": -79.9739656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3191442, - "longitude": -79.9764698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3132658, - "longitude": -79.9676975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3135415, - "longitude": -79.9674987 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3138221, - "longitude": -79.9722986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3139501, - "longitude": -79.9674471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3151043, - "longitude": -79.9676234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3157977, - "longitude": -79.9678311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3171716, - "longitude": -79.9686308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3175954, - "longitude": -79.9687329 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3179953, - "longitude": -79.9685428 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3179779, - "longitude": -79.9684178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3181834, - "longitude": -79.9683024 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3180983, - "longitude": -79.9682848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.318024, - "longitude": -79.9683336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3190439, - "longitude": -79.9685344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3192698, - "longitude": -79.9685041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.317276, - "longitude": -79.9687025 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3139703, - "longitude": -79.9724062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3149332, - "longitude": -79.9731667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3179136, - "longitude": -79.9685817 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3204957, - "longitude": -79.9818017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3206196, - "longitude": -79.9820155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3208416, - "longitude": -79.9827021 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3209111, - "longitude": -79.9831236 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.321012, - "longitude": -79.9836106 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.321057, - "longitude": -79.9837438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3213533, - "longitude": -79.9842775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3215227, - "longitude": -79.9844574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.322027, - "longitude": -79.9847986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3224649, - "longitude": -79.9850213 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3227662, - "longitude": -79.9850714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3230908, - "longitude": -79.9850432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3232933, - "longitude": -79.9849658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3236088, - "longitude": -79.9848379 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.324003, - "longitude": -79.9846637 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3243435, - "longitude": -79.9845976 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3250982, - "longitude": -79.9847687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3254655, - "longitude": -79.9850194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3257562, - "longitude": -79.9852198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3247802, - "longitude": -79.9846369 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3245688, - "longitude": -79.9845989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3207419, - "longitude": -79.9823123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3205259, - "longitude": -79.9817606 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3253023, - "longitude": -79.9849023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3249207, - "longitude": -79.9846811 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3233559, - "longitude": -79.9849563 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3238181, - "longitude": -79.9847402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3241587, - "longitude": -79.9846201 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3228576, - "longitude": -79.9850706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3222284, - "longitude": -79.9849184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3225986, - "longitude": -79.9850532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3217797, - "longitude": -79.9845928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3212232, - "longitude": -79.9840905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.321431, - "longitude": -79.98437 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3206882, - "longitude": -79.9821675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3208099, - "longitude": -79.9825618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3207913, - "longitude": -79.9824833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3208709, - "longitude": -79.9828638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.320969, - "longitude": -79.9834416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3211075, - "longitude": -79.9838678 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3211625, - "longitude": -79.983983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.321296, - "longitude": -79.9841989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.321857, - "longitude": -79.9846571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3297375, - "longitude": -79.9829373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3314173, - "longitude": -79.9802379 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3260781, - "longitude": -79.9854367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.327297, - "longitude": -79.9845722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3275551, - "longitude": -79.9846747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3285788, - "longitude": -79.9854102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3289867, - "longitude": -79.9846297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3290993, - "longitude": -79.9844028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3292075, - "longitude": -79.9836754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3292867, - "longitude": -79.9834592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3293459, - "longitude": -79.9833601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3294514, - "longitude": -79.9832396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3296379, - "longitude": -79.983105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3297132, - "longitude": -79.9829327 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3297942, - "longitude": -79.982948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3298496, - "longitude": -79.9830655 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3299027, - "longitude": -79.9830402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3301024, - "longitude": -79.9831308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3307282, - "longitude": -79.9817907 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3303977, - "longitude": -79.9825051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3290507, - "longitude": -79.9845869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3313427, - "longitude": -79.9804218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3261063, - "longitude": -79.9853737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3265236, - "longitude": -79.9855003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3264215, - "longitude": -79.9855875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3295335, - "longitude": -79.9831769 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3292305, - "longitude": -79.9836509 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.329228, - "longitude": -79.9836147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3290817, - "longitude": -79.9844848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287818, - "longitude": -79.9850384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287836, - "longitude": -79.9850347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287328, - "longitude": -79.9851281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3281967, - "longitude": -79.9851355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3281825, - "longitude": -79.9851079 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3281109, - "longitude": -79.9850533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3280546, - "longitude": -79.9850332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3274321, - "longitude": -79.9845693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3273213, - "longitude": -79.9845085 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3278007, - "longitude": -79.9848393 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3271514, - "longitude": -79.9849041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3268405, - "longitude": -79.9858715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3269909, - "longitude": -79.9852904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3270398, - "longitude": -79.985159 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3265152, - "longitude": -79.9856488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3265474, - "longitude": -79.9855185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3264992, - "longitude": -79.9854835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3207895, - "longitude": -79.9777672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3210231, - "longitude": -79.9779478 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.319533, - "longitude": -79.9767868 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3204003, - "longitude": -79.9686194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3232718, - "longitude": -79.9684138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3237625, - "longitude": -79.9685548 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.324509, - "longitude": -79.9690518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.319753, - "longitude": -79.9685847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.321646, - "longitude": -79.9685522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.322635, - "longitude": -79.9684697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3235629, - "longitude": -79.9684533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3246547, - "longitude": -79.9687317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3256159, - "longitude": -79.9694166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3309924, - "longitude": -79.9762226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3311285, - "longitude": -79.9758766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.331192, - "longitude": -79.9758555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3313277, - "longitude": -79.9755875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.331326, - "longitude": -79.9753495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3313158, - "longitude": -79.9749839 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3316192, - "longitude": -79.9791708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3317611, - "longitude": -79.9783339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.33171, - "longitude": -79.974636 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318574, - "longitude": -79.9776467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318024, - "longitude": -79.9745764 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318718, - "longitude": -79.9775094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3320078, - "longitude": -79.9745766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3320648, - "longitude": -79.9770895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3319211, - "longitude": -79.9736893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3323734, - "longitude": -79.9741147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3310537, - "longitude": -79.9761104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3311683, - "longitude": -79.9763718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3309316, - "longitude": -79.9760439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3312745, - "longitude": -79.9754286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.331375, - "longitude": -79.9748777 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3315235, - "longitude": -79.9748606 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3320123, - "longitude": -79.9744621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3321397, - "longitude": -79.9744288 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3320855, - "longitude": -79.9741546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3321524, - "longitude": -79.9740677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3310882, - "longitude": -79.9765355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3319317, - "longitude": -79.9770165 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.332071, - "longitude": -79.9738495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3314401, - "longitude": -79.9800718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3322229, - "longitude": -79.9739833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3314707, - "longitude": -79.9800115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3319146, - "longitude": -79.9774016 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318532, - "longitude": -79.9777454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318431, - "longitude": -79.97781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318189, - "longitude": -79.9779864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3317873, - "longitude": -79.9781752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3298002, - "longitude": -79.968834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287789, - "longitude": -79.9677952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3292587, - "longitude": -79.9675371 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3302506, - "longitude": -79.9673027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3307045, - "longitude": -79.9671188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3319128, - "longitude": -79.9726533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3293185, - "longitude": -79.9695414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287399, - "longitude": -79.9703914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3281859, - "longitude": -79.9712184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3309861, - "longitude": -79.9670407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3323217, - "longitude": -79.972006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3322057, - "longitude": -79.9729652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3320856, - "longitude": -79.9731475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3321949, - "longitude": -79.9732949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3268644, - "longitude": -79.9703129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287531, - "longitude": -79.9676825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287663, - "longitude": -79.9675852 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3288251, - "longitude": -79.9675161 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3289066, - "longitude": -79.9675061 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3295721, - "longitude": -79.9675162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3311714, - "longitude": -79.9667577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3321267, - "longitude": -79.9653821 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3312412, - "longitude": -79.9667409 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3313918, - "longitude": -79.9665098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3313072, - "longitude": -79.9666396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3342842, - "longitude": -79.9702049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3356294, - "longitude": -79.9687525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3365325, - "longitude": -79.9682511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3372004, - "longitude": -79.9686146 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3374129, - "longitude": -79.9684401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3375912, - "longitude": -79.9678326 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3376038, - "longitude": -79.9675854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3375607, - "longitude": -79.9673261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3374897, - "longitude": -79.9671343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3363732, - "longitude": -79.9684622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3361497, - "longitude": -79.9688957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3353785, - "longitude": -79.9685708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3355669, - "longitude": -79.9687747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3357412, - "longitude": -79.9688609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3360713, - "longitude": -79.9688642 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.33623, - "longitude": -79.9688712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3327544, - "longitude": -79.9724763 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.333435, - "longitude": -79.9714552 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3330265, - "longitude": -79.9720667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3342769, - "longitude": -79.9702197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.332971, - "longitude": -79.9721559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3337133, - "longitude": -79.9710483 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3350436, - "longitude": -79.9643554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3356827, - "longitude": -79.9642729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.33384, - "longitude": -79.9642586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3331327, - "longitude": -79.9638923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3358715, - "longitude": -79.9644651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.336193, - "longitude": -79.9646108 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3368573, - "longitude": -79.9660974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3367904, - "longitude": -79.9658178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3367345, - "longitude": -79.965333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3366256, - "longitude": -79.9650228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3364542, - "longitude": -79.9647942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3373737, - "longitude": -79.9669424 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3370346, - "longitude": -79.9664803 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3369234, - "longitude": -79.9662775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3337116, - "longitude": -79.9645273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3341166, - "longitude": -79.9641023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5591099, - "longitude": -79.3425472 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5588966, - "longitude": -79.342064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5590032, - "longitude": -79.3422758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5611344, - "longitude": -79.344829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5615057, - "longitude": -79.344878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.560071, - "longitude": -79.3451157 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5604951, - "longitude": -79.3454746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5602728, - "longitude": -79.3453122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5607515, - "longitude": -79.3449603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5606028, - "longitude": -79.3453196 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5593446, - "longitude": -79.3435331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5607406, - "longitude": -79.3403843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5608827, - "longitude": -79.3402747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5647574, - "longitude": -79.3388797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5598822, - "longitude": -79.3441818 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5653678, - "longitude": -79.3427656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.559299, - "longitude": -79.3431551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5594904, - "longitude": -79.3436255 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5598194, - "longitude": -79.3442338 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5629185, - "longitude": -79.344064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5639962, - "longitude": -79.3434574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5628731, - "longitude": -79.3395495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5614899, - "longitude": -79.3400462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5662252, - "longitude": -79.3423793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5689804, - "longitude": -79.3420311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.567512, - "longitude": -79.3418749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5692019, - "longitude": -79.3430623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5710306, - "longitude": -79.343495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5666088, - "longitude": -79.3423825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5679368, - "longitude": -79.3419913 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.568392, - "longitude": -79.3419941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5702957, - "longitude": -79.3433042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5711317, - "longitude": -79.3431096 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5718043, - "longitude": -79.3433808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5678536, - "longitude": -79.3377531 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5708431, - "longitude": -79.3367837 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.571589, - "longitude": -79.3363828 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5722783, - "longitude": -79.3326887 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5704126, - "longitude": -79.3368282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5691836, - "longitude": -79.3372769 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5704351, - "longitude": -79.3269526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5721437, - "longitude": -79.3256627 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5722882, - "longitude": -79.3302194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5732985, - "longitude": -79.3427797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5739596, - "longitude": -79.3409983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.574042, - "longitude": -79.3403731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5741893, - "longitude": -79.3404741 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5743097, - "longitude": -79.3398866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.574468, - "longitude": -79.3398195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5755992, - "longitude": -79.3400881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5764892, - "longitude": -79.3404637 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.572658, - "longitude": -79.3436094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5736337, - "longitude": -79.3417623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5739539, - "longitude": -79.3419084 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5741435, - "longitude": -79.3412128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5731022, - "longitude": -79.3429586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.572995, - "longitude": -79.3428951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5747824, - "longitude": -79.3398857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5752011, - "longitude": -79.3399699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5805693, - "longitude": -79.3422748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5805301, - "longitude": -79.3418833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5790705, - "longitude": -79.341667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5790954, - "longitude": -79.3415805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5805323, - "longitude": -79.3401391 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5728291, - "longitude": -79.3347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5729261, - "longitude": -79.3317064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5728108, - "longitude": -79.3314004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5734508, - "longitude": -79.3338454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5729142, - "longitude": -79.3313157 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.575035, - "longitude": -79.3304707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5769132, - "longitude": -79.3295198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5783031, - "longitude": -79.3269724 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5775176, - "longitude": -79.3283929 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5767191, - "longitude": -79.3298123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5760514, - "longitude": -79.3302692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5764263, - "longitude": -79.3300875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5756218, - "longitude": -79.3304082 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5753079, - "longitude": -79.330448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5747666, - "longitude": -79.3304112 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5749008, - "longitude": -79.3304495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5734073, - "longitude": -79.327905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5807141, - "longitude": -79.3375049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5807843, - "longitude": -79.3358494 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.580735, - "longitude": -79.3340661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5805682, - "longitude": -79.3294785 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.580725, - "longitude": -79.331068 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5806927, - "longitude": -79.3307946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5804305, - "longitude": -79.3297386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.580443, - "longitude": -79.3296532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5804218, - "longitude": -79.3288395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5795455, - "longitude": -79.3280189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5799751, - "longitude": -79.3282526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5802121, - "longitude": -79.328495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5803169, - "longitude": -79.3286545 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5798235, - "longitude": -79.3281422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7032088, - "longitude": -78.8540209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.70398, - "longitude": -78.8529217 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.704439, - "longitude": -78.8540026 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.70445, - "longitude": -78.8540438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7063044, - "longitude": -78.8541354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7075859, - "longitude": -78.8542041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7092934, - "longitude": -78.854282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7108686, - "longitude": -78.854369 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7117498, - "longitude": -78.8545019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7118306, - "longitude": -78.8557752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7135893, - "longitude": -78.8556011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7137656, - "longitude": -78.8533247 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1046359, - "longitude": -79.5979505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1048448, - "longitude": -79.5953909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1047673, - "longitude": -79.5979334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1048102, - "longitude": -79.5975677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1048456, - "longitude": -79.5974186 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1058435, - "longitude": -79.5957949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1049606, - "longitude": -79.5949983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104644, - "longitude": -79.595847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1047043, - "longitude": -79.597969 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.105768, - "longitude": -79.5954649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1057048, - "longitude": -79.5962207 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1046567, - "longitude": -79.5979625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1047982, - "longitude": -79.5977192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1056057, - "longitude": -79.5961022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1049087, - "longitude": -79.595219 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1046723, - "longitude": -79.5979675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1047905, - "longitude": -79.5978957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1048013, - "longitude": -79.5978568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104903, - "longitude": -79.5972806 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039933, - "longitude": -79.5973146 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1047352, - "longitude": -79.5979591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1049805, - "longitude": -79.5971589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1073311, - "longitude": -79.592238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080101, - "longitude": -79.5914498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1081425, - "longitude": -79.5912938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1124298, - "longitude": -79.5890044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1124353, - "longitude": -79.5890646 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1124156, - "longitude": -79.5889814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1108475, - "longitude": -79.5882116 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.112224, - "longitude": -79.5889825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1124375, - "longitude": -79.589044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.110765, - "longitude": -79.5882392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1120436, - "longitude": -79.5889456 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1123823, - "longitude": -79.589267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1110141, - "longitude": -79.5907523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1107523, - "longitude": -79.590123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1121382, - "longitude": -79.5889757 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1107371, - "longitude": -79.5900864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1119988, - "longitude": -79.5900294 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1118304, - "longitude": -79.5902231 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.112396, - "longitude": -79.5889659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1108225, - "longitude": -79.5882091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1107917, - "longitude": -79.5882179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1100788, - "longitude": -79.5904451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1107884, - "longitude": -79.5900532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1119076, - "longitude": -79.5901593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1124343, - "longitude": -79.5890178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1123734, - "longitude": -79.5889596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1108695, - "longitude": -79.5882215 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1101364, - "longitude": -79.5905222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1119929, - "longitude": -79.5889187 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3119882, - "longitude": -79.2203873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3117371, - "longitude": -79.2199412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3113791, - "longitude": -79.2135746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3127531, - "longitude": -79.2187838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3083808, - "longitude": -79.2086173 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3087642, - "longitude": -79.2081698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3100374, - "longitude": -79.2075329 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.310941, - "longitude": -79.2126796 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3104344, - "longitude": -79.2117328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3097225, - "longitude": -79.2109238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3094313, - "longitude": -79.2099362 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3088074, - "longitude": -79.2090173 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.317244, - "longitude": -79.2158774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3168351, - "longitude": -79.2153076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3133301, - "longitude": -79.218564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3131831, - "longitude": -79.2182751 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.313026, - "longitude": -79.2192312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3134347, - "longitude": -79.2187754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3105303, - "longitude": -79.2063968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3125291, - "longitude": -79.2050714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.311864, - "longitude": -79.2055124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3132273, - "longitude": -79.2053296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3158694, - "longitude": -79.2035395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3189221, - "longitude": -79.2014739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3177585, - "longitude": -79.1979281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3186224, - "longitude": -79.1973824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3192649, - "longitude": -79.197484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3253967, - "longitude": -79.21395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3214936, - "longitude": -79.2177095 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3234386, - "longitude": -79.2158489 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3303896, - "longitude": -79.2073246 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3277188, - "longitude": -79.2077473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3286661, - "longitude": -79.209122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3277396, - "longitude": -79.2094952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3271157, - "longitude": -79.2101665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3278038, - "longitude": -79.2116233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3286958, - "longitude": -79.2075769 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3266176, - "longitude": -79.2127867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3200309, - "longitude": -79.19736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3210849, - "longitude": -79.1970158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3218926, - "longitude": -79.1964478 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3224538, - "longitude": -79.1958453 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3230971, - "longitude": -79.1950363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.323684, - "longitude": -79.1945625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3242666, - "longitude": -79.1940069 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3244037, - "longitude": -79.1940597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3241405, - "longitude": -79.1950358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3256931, - "longitude": -79.1957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3257833, - "longitude": -79.1953816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.320573, - "longitude": -79.1972542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3240565, - "longitude": -79.1941826 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3304492, - "longitude": -79.2026023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3302944, - "longitude": -79.2028835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3305518, - "longitude": -79.2047816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3302291, - "longitude": -79.2066601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3321316, - "longitude": -79.2021677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3312671, - "longitude": -79.2023752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.330312, - "longitude": -79.2027339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3303734, - "longitude": -79.202647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3305069, - "longitude": -79.2039484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3304365, - "longitude": -79.2034882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3305365, - "longitude": -79.2043589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.330612, - "longitude": -79.2062124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.330338, - "longitude": -79.2062506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3302227, - "longitude": -79.2064663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.330263, - "longitude": -79.2063202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3304782, - "longitude": -79.2037607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3273415, - "longitude": -79.1960488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3278213, - "longitude": -79.194296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3276005, - "longitude": -79.1951024 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3352401, - "longitude": -79.2024184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3333012, - "longitude": -79.2019322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3360832, - "longitude": -79.2013575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3362251, - "longitude": -79.2006324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3354822, - "longitude": -79.2022729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3357229, - "longitude": -79.2020807 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3359418, - "longitude": -79.2017501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3345305, - "longitude": -79.2024473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3348431, - "longitude": -79.2024992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3350381, - "longitude": -79.2024765 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3338244, - "longitude": -79.202088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3341862, - "longitude": -79.202292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3343795, - "longitude": -79.2024006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3335575, - "longitude": -79.2019858 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.333094, - "longitude": -79.2019464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3326163, - "longitude": -79.2020438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3345817, - "longitude": -79.1968823 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3349017, - "longitude": -79.1978067 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3362193, - "longitude": -79.1996242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3345833, - "longitude": -79.196512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3346158, - "longitude": -79.1963225 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3346918, - "longitude": -79.1960596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3347839, - "longitude": -79.1975966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3346793, - "longitude": -79.1973324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3346129, - "longitude": -79.1971073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3358173, - "longitude": -79.1986712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3360113, - "longitude": -79.1989619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3361434, - "longitude": -79.1992798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3350957, - "longitude": -79.1980487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3354495, - "longitude": -79.1983201 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.335665, - "longitude": -79.1984735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3362715, - "longitude": -79.2000487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.327995, - "longitude": -79.1934581 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3275501, - "longitude": -79.1927427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3302454, - "longitude": -79.1920561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3276784, - "longitude": -79.1926664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3287456, - "longitude": -79.1923335 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3280543, - "longitude": -79.1925491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3297969, - "longitude": -79.1920986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3301382, - "longitude": -79.19204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3306348, - "longitude": -79.1917225 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3303995, - "longitude": -79.1919953 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3304797, - "longitude": -79.1919964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3305822, - "longitude": -79.1918987 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3306148, - "longitude": -79.1918263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3314527, - "longitude": -79.1919445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3318089, - "longitude": -79.1919895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3324474, - "longitude": -79.1919964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3359066, - "longitude": -79.1922046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3331859, - "longitude": -79.1919404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3341502, - "longitude": -79.1918747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3347241, - "longitude": -79.1919113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3347156, - "longitude": -79.1920845 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3356543, - "longitude": -79.1931864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.335472, - "longitude": -79.1936983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4762949, - "longitude": -80.1024047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4764056, - "longitude": -80.1025334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4765205, - "longitude": -80.1026326 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4766355, - "longitude": -80.1026782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4767185, - "longitude": -80.1026943 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4762736, - "longitude": -80.1012138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4761693, - "longitude": -80.1012325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4760629, - "longitude": -80.1013184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4760139, - "longitude": -80.1014659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4760182, - "longitude": -80.1016268 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4760948, - "longitude": -80.1018763 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4762076, - "longitude": -80.1022544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4767951, - "longitude": -80.1026997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.476876, - "longitude": -80.1026997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4769782, - "longitude": -80.1026809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4771527, - "longitude": -80.1025924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4773209, - "longitude": -80.1024905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4831402, - "longitude": -80.1022223 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4830274, - "longitude": -80.1020882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4827209, - "longitude": -80.1019004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4826124, - "longitude": -80.1020104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4825379, - "longitude": -80.1020426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4784575, - "longitude": -80.1015356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4815247, - "longitude": -80.1038638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.481629, - "longitude": -80.1039067 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4816929, - "longitude": -80.1039979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4817482, - "longitude": -80.1041481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4818568, - "longitude": -80.1043868 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4828997, - "longitude": -80.1045638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4832062, - "longitude": -80.1044512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4775146, - "longitude": -80.1024047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4777083, - "longitude": -80.1023564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4783085, - "longitude": -80.1023778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4792302, - "longitude": -80.1024824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4796772, - "longitude": -80.102579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4797751, - "longitude": -80.102689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4798602, - "longitude": -80.1032308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4799007, - "longitude": -80.1033407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4806222, - "longitude": -80.1036733 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.480833, - "longitude": -80.1037377 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4836191, - "longitude": -80.1033059 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4836617, - "longitude": -80.1023456 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4833318, - "longitude": -80.1023054 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4833956, - "longitude": -80.1042795 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4834084, - "longitude": -80.1035553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4835042, - "longitude": -80.1033407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7289011, - "longitude": -79.8123372 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7285531, - "longitude": -79.8134101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7277979, - "longitude": -79.8140109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7280355, - "longitude": -79.8148155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7282646, - "longitude": -79.8146653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7290453, - "longitude": -79.8133993 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7351547, - "longitude": -79.8075414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7353922, - "longitude": -79.8082388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9484952, - "longitude": -79.846992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9443579, - "longitude": -79.8442347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9482583, - "longitude": -79.8349006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9473276, - "longitude": -79.8336561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9482329, - "longitude": -79.832551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9449163, - "longitude": -79.8281736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9466846, - "longitude": -79.8269076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9536389, - "longitude": -79.8364992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9540873, - "longitude": -79.8371 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9528775, - "longitude": -79.8385377 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9523276, - "longitude": -79.8378296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9487067, - "longitude": -79.8296542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9501449, - "longitude": -79.8268647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9528352, - "longitude": -79.8254485 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9579025, - "longitude": -79.8244293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9566674, - "longitude": -79.8274333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9568874, - "longitude": -79.8287422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9542649, - "longitude": -79.822026 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0506828, - "longitude": -79.7360923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0509606, - "longitude": -79.7363136 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0507393, - "longitude": -79.7353086 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0507635, - "longitude": -79.7347244 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0520916, - "longitude": -79.7262781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0532575, - "longitude": -79.7260581 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0523767, - "longitude": -79.7232727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0526858, - "longitude": -79.7233624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0544117, - "longitude": -79.723903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0543172, - "longitude": -79.7238825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0536606, - "longitude": -79.7236745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3778456, - "longitude": -79.1281351 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3783827, - "longitude": -79.1280198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3778371, - "longitude": -79.1260994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3778413, - "longitude": -79.1270784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3779121, - "longitude": -79.1281208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3781958, - "longitude": -79.1280599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3773426, - "longitude": -79.1160927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3806441, - "longitude": -79.1189969 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3795614, - "longitude": -79.1182673 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3789902, - "longitude": -79.1186535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3785511, - "longitude": -79.1186911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3800536, - "longitude": -79.118599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3804739, - "longitude": -79.1188822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3783763, - "longitude": -79.1148984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3777369, - "longitude": -79.1135734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3772424, - "longitude": -79.1137505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3778257, - "longitude": -79.1137575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6568975, - "longitude": -78.9254724 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6571782, - "longitude": -78.9258375 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6622062, - "longitude": -78.9196689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6619255, - "longitude": -78.9193038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0739697, - "longitude": -78.9490145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0749874, - "longitude": -78.9488268 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0762543, - "longitude": -78.9465898 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0765879, - "longitude": -78.9467454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0737712, - "longitude": -78.9487088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0776203, - "longitude": -78.9442804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0784979, - "longitude": -78.9408896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0778779, - "longitude": -78.9445353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0783192, - "longitude": -78.9430949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0790793, - "longitude": -78.9438647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0796324, - "longitude": -78.9429635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0792271, - "longitude": -78.9420033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0790687, - "longitude": -78.9420864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0789758, - "longitude": -78.9419872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0791706, - "longitude": -78.9399222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0797549, - "longitude": -78.9406943 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7032382, - "longitude": -78.8465414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.702893, - "longitude": -78.8471735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7026911, - "longitude": -78.8476361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7025148, - "longitude": -78.8480666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7023752, - "longitude": -78.8485109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7023679, - "longitude": -78.8485567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.704451, - "longitude": -78.8522518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7036421, - "longitude": -78.8486804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7036642, - "longitude": -78.8486529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7038111, - "longitude": -78.8486758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.703969, - "longitude": -78.8486392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7040938, - "longitude": -78.8486529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7041819, - "longitude": -78.8487445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7055663, - "longitude": -78.8488773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7067414, - "longitude": -78.8489918 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7058087, - "longitude": -78.8503109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7047915, - "longitude": -78.8517675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7087903, - "longitude": -78.8413978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7078246, - "longitude": -78.8410314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.707384, - "longitude": -78.8408665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7068625, - "longitude": -78.8406192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.705783, - "longitude": -78.8423597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048723, - "longitude": -78.8438711 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.70398, - "longitude": -78.8452956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.715304, - "longitude": -78.8471277 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7138867, - "longitude": -78.847004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7117058, - "longitude": -78.8467979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7126971, - "longitude": -78.8513094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7127338, - "longitude": -78.8506728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7121684, - "longitude": -78.850627 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7121505, - "longitude": -78.8504957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.713806, - "longitude": -78.8506087 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7154839, - "longitude": -78.8507232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7116837, - "longitude": -78.8435551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7116764, - "longitude": -78.8423459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7110705, - "longitude": -78.842149 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7183697, - "longitude": -78.8499812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7180319, - "longitude": -78.8491384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7179438, - "longitude": -78.848914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7177676, - "longitude": -78.8484147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7176317, - "longitude": -78.8480071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7175473, - "longitude": -78.8476727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7171361, - "longitude": -78.8508285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7175216, - "longitude": -78.850856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7174959, - "longitude": -78.8504346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7174812, - "longitude": -78.8472926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5442486, - "longitude": -78.1561457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5442961, - "longitude": -78.1560706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5448865, - "longitude": -78.1559204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454554, - "longitude": -78.1558185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5458217, - "longitude": -78.155561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5456493, - "longitude": -78.1549602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5455545, - "longitude": -78.1542306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5456881, - "longitude": -78.1535333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5458346, - "longitude": -78.153029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5455588, - "longitude": -78.1528305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454511, - "longitude": -78.1523531 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5457915, - "longitude": -78.1513339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5459251, - "longitude": -78.1507599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5459682, - "longitude": -78.1504702 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5459682, - "longitude": -78.1502234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5459208, - "longitude": -78.1497782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5457398, - "longitude": -78.1488233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5456709, - "longitude": -78.1485175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5456234, - "longitude": -78.1482493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5455631, - "longitude": -78.147965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5455071, - "longitude": -78.14767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.545464, - "longitude": -78.1473535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454338, - "longitude": -78.1467687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454381, - "longitude": -78.1465005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454166, - "longitude": -78.1461786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454424, - "longitude": -78.1458782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5454295, - "longitude": -78.1455939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5455114, - "longitude": -78.1452935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5448994, - "longitude": -78.1437968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5445503, - "longitude": -78.1438612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5440806, - "longitude": -78.1440812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5455631, - "longitude": -78.1449448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5457872, - "longitude": -78.1443655 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5459682, - "longitude": -78.1440597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5462613, - "longitude": -78.1439041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5467009, - "longitude": -78.1443547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5464768, - "longitude": -78.143416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5395937, - "longitude": -78.0581462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5388912, - "longitude": -78.0582213 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5388955, - "longitude": -78.0584842 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5442247, - "longitude": -78.0584118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5443475, - "longitude": -78.0579128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5433024, - "longitude": -78.0578754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5397747, - "longitude": -78.0579746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5396497, - "longitude": -78.0583983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5433282, - "longitude": -78.0584091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5438023, - "longitude": -78.058409 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.5435178, - "longitude": -78.058408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9532108, - "longitude": -78.1881685 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9528921, - "longitude": -78.1861408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9650292, - "longitude": -78.1848694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9587426, - "longitude": -78.1843374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9585566, - "longitude": -78.1832986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9597613, - "longitude": -78.1830619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9599649, - "longitude": -78.1831408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9612054, - "longitude": -78.1828406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9613095, - "longitude": -78.1828466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9613992, - "longitude": -78.1828921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9619637, - "longitude": -78.1834106 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9620267, - "longitude": -78.183447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9620897, - "longitude": -78.1834713 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9621793, - "longitude": -78.1834773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9651406, - "longitude": -78.1826433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7689102, - "longitude": -77.7989209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7686105, - "longitude": -77.7992213 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7684504, - "longitude": -77.7996987 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7667058, - "longitude": -77.800042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7669636, - "longitude": -77.7996209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7676769, - "longitude": -77.7986527 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7679949, - "longitude": -77.7980921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7687695, - "longitude": -77.7963862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7690564, - "longitude": -77.7986285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7723458, - "longitude": -77.7921228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7713341, - "longitude": -77.7918714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7708397, - "longitude": -77.7918197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7715917, - "longitude": -77.7919297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7719859, - "longitude": -77.7920155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7746017, - "longitude": -77.793071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7751259, - "longitude": -77.7932252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7755062, - "longitude": -77.7943638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7753912, - "longitude": -77.7948104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.771799, - "longitude": -77.794518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7714101, - "longitude": -77.7946065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7711759, - "longitude": -77.7951336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7709954, - "longitude": -77.7953897 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7708236, - "longitude": -77.7959088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7707827, - "longitude": -77.7960978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7706012, - "longitude": -77.7962923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7699383, - "longitude": -77.7975033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7690864, - "longitude": -77.7956405 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7692196, - "longitude": -77.7952918 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7693378, - "longitude": -77.7948439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7695709, - "longitude": -77.7938059 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7697375, - "longitude": -77.7930133 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7699018, - "longitude": -77.792037 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7699265, - "longitude": -77.7917902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7699878, - "longitude": -77.7917111 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7700748, - "longitude": -77.7916843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7758692, - "longitude": -77.7933794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7770734, - "longitude": -77.7935645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.777357, - "longitude": -77.7938502 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7773441, - "longitude": -77.7941103 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7787846, - "longitude": -77.7943155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7787502, - "longitude": -77.7947366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7762785, - "longitude": -77.7943786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6835634, - "longitude": -77.4912822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6824965, - "longitude": -77.4918348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6839652, - "longitude": -77.492134 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6885944, - "longitude": -77.4899904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6849959, - "longitude": -77.4921185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6914571, - "longitude": -77.4898821 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6813807, - "longitude": -77.4846749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6820718, - "longitude": -77.4891488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6813148, - "longitude": -77.4842406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6817635, - "longitude": -77.487199 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6812353, - "longitude": -77.4837165 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6802946, - "longitude": -77.4776689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6810131, - "longitude": -77.4820677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6848712, - "longitude": -77.4774689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6840968, - "longitude": -77.4770343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6852325, - "longitude": -77.4786812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6802637, - "longitude": -77.4748832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6830514, - "longitude": -77.476455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6938874, - "longitude": -77.4876132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6943563, - "longitude": -77.4855316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6927303, - "longitude": -77.4890347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6909452, - "longitude": -77.4886242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.693922, - "longitude": -77.4877911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6917539, - "longitude": -77.4836379 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6939046, - "longitude": -77.4867868 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6923948, - "longitude": -77.4831659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.067049, - "longitude": -77.9648741 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0670185, - "longitude": -77.964853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0665435, - "longitude": -77.9622672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0694656, - "longitude": -77.963811 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0692162, - "longitude": -77.9638197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0682649, - "longitude": -77.9640524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0674645, - "longitude": -77.9646787 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0673521, - "longitude": -77.965126 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0767701, - "longitude": -77.9650985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0767551, - "longitude": -77.9636829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0834164, - "longitude": -77.964389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0770777, - "longitude": -77.9650354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0818217, - "longitude": -77.9644119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0809246, - "longitude": -77.9644574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0806636, - "longitude": -77.9644708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0802709, - "longitude": -77.9644695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800206, - "longitude": -77.9645526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0789624, - "longitude": -77.9647498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0787431, - "longitude": -77.9647498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0824974, - "longitude": -77.9644022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.08243, - "longitude": -77.9644032 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0663617, - "longitude": -77.9603791 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0662436, - "longitude": -77.9590205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0660315, - "longitude": -77.9573393 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.067739, - "longitude": -77.9558006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0664827, - "longitude": -77.9564336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0660386, - "longitude": -77.956844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0738907, - "longitude": -77.9500687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0717239, - "longitude": -77.9519328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0718052, - "longitude": -77.9522668 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.070671, - "longitude": -77.9533423 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0725941, - "longitude": -77.9511792 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0823423, - "longitude": -77.9559226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0805812, - "longitude": -77.9594794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0808967, - "longitude": -77.9570256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0816966, - "longitude": -77.9571858 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0813201, - "longitude": -77.9596274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0816692, - "longitude": -77.9568287 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.081618, - "longitude": -77.9568198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0817194, - "longitude": -77.9570083 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0822989, - "longitude": -77.9562297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0817132, - "longitude": -77.9561109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0814912, - "longitude": -77.9560675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0814286, - "longitude": -77.9567179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0816254, - "longitude": -77.9567514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0816479, - "longitude": -77.9569955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0826402, - "longitude": -77.9535309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0826386, - "longitude": -77.953573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0827692, - "longitude": -77.9528435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0828665, - "longitude": -77.9518752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0829917, - "longitude": -77.950467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0831811, - "longitude": -77.9492667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0826417, - "longitude": -77.9534894 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0768, - "longitude": -77.9475635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0764095, - "longitude": -77.9478841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.083303, - "longitude": -77.9481657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0834539, - "longitude": -77.9474629 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0829136, - "longitude": -77.9469439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0826055, - "longitude": -77.9466274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0822406, - "longitude": -77.9462385 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0816864, - "longitude": -77.9456592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0807684, - "longitude": -77.9448639 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0804325, - "longitude": -77.9446694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0797156, - "longitude": -77.9453293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0791186, - "longitude": -77.9459073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0787035, - "longitude": -77.9463753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0784542, - "longitude": -77.9461138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0782776, - "longitude": -77.9462828 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0777223, - "longitude": -77.9467709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0851454, - "longitude": -77.9622094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0853158, - "longitude": -77.9619717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0854657, - "longitude": -77.9617134 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0855933, - "longitude": -77.9614371 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0856975, - "longitude": -77.9611458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0857769, - "longitude": -77.9608426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0858309, - "longitude": -77.9605309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2865635, - "longitude": -77.793633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2859553, - "longitude": -77.7938744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2853578, - "longitude": -77.7929222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2856779, - "longitude": -77.7922114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2894337, - "longitude": -77.7957251 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2886655, - "longitude": -77.7968516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2844225, - "longitude": -77.7902349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2853434, - "longitude": -77.7896816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.174115, - "longitude": -77.5206248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1751835, - "longitude": -77.5193105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.171982, - "longitude": -77.5172077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.176765, - "longitude": -77.5170682 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1781841, - "longitude": -77.5187312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1792718, - "longitude": -77.5171111 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1844625, - "longitude": -77.517492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1842403, - "longitude": -77.5203029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1847873, - "longitude": -77.520775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1854797, - "longitude": -77.5205497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1866165, - "longitude": -77.5201957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1871037, - "longitude": -77.5200991 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1878473, - "longitude": -77.5200562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1739867, - "longitude": -77.5144665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1732088, - "longitude": -77.5155447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1750467, - "longitude": -77.5135921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1806844, - "longitude": -77.5149063 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1758204, - "longitude": -77.5102286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1773848, - "longitude": -77.5115268 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.176889, - "longitude": -77.5031046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1784619, - "longitude": -77.5046281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1880225, - "longitude": -77.5146435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1847617, - "longitude": -77.5104002 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1858109, - "longitude": -77.5118191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1871731, - "longitude": -77.5136336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1850138, - "longitude": -77.5076429 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1866934, - "longitude": -77.5056474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1876005, - "longitude": -77.504612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.180257, - "longitude": -77.5007872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1797655, - "longitude": -77.5020854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1780986, - "longitude": -77.4994675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1767351, - "longitude": -77.5009267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1770856, - "longitude": -77.5016562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1799792, - "longitude": -77.5013612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1799535, - "longitude": -77.5015838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1792163, - "longitude": -77.5011091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1790442, - "longitude": -77.5009642 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1788043, - "longitude": -77.5006719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1784878, - "longitude": -77.5001877 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.184283, - "longitude": -77.4965761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1834539, - "longitude": -77.4973754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.185078, - "longitude": -77.4957983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1863133, - "longitude": -77.4948542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1865208, - "longitude": -77.4939047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1875348, - "longitude": -77.4939717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1884015, - "longitude": -77.4938571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1888644, - "longitude": -77.5200133 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.189155, - "longitude": -77.5199596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1893772, - "longitude": -77.5198201 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1896593, - "longitude": -77.5194446 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1906165, - "longitude": -77.5182001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1910824, - "longitude": -77.5175027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1915709, - "longitude": -77.5164096 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1913159, - "longitude": -77.5170635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.188499, - "longitude": -77.5141224 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1911774, - "longitude": -77.5150186 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.190257, - "longitude": -77.5140609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1887797, - "longitude": -77.5145154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.189668, - "longitude": -77.5134781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.191867, - "longitude": -77.5157349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1899269, - "longitude": -77.5019109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1903601, - "longitude": -77.5026433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1907704, - "longitude": -77.5009589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1913003, - "longitude": -77.5006263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1915396, - "longitude": -77.5008194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1921379, - "longitude": -77.5005672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1915439, - "longitude": -77.4989472 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1913003, - "longitude": -77.4985341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1911123, - "longitude": -77.4981962 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1908559, - "longitude": -77.4976651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1904926, - "longitude": -77.4967531 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.190843, - "longitude": -77.501211 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1902234, - "longitude": -77.4962864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1895616, - "longitude": -77.4953102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1899032, - "longitude": -77.4958144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.18867, - "longitude": -77.4941394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1889854, - "longitude": -77.4946202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3504143, - "longitude": -78.4421893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3493171, - "longitude": -78.4396048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3501838, - "longitude": -78.4393628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3525908, - "longitude": -78.4382309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3572976, - "longitude": -78.4353073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3524288, - "longitude": -78.4375979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3575884, - "longitude": -78.4363427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3665955, - "longitude": -78.434662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3651131, - "longitude": -78.432771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3663329, - "longitude": -78.4327453 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3697819, - "longitude": -78.0833155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3697735, - "longitude": -78.0829533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3664034, - "longitude": -78.0830768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3664118, - "longitude": -78.083439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6570061, - "longitude": -78.0443401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6567145, - "longitude": -78.0453951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6555041, - "longitude": -78.0461997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6553979, - "longitude": -78.0459959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6561369, - "longitude": -78.045379 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6564852, - "longitude": -78.0451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6568334, - "longitude": -78.0446226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6572963, - "longitude": -78.0447084 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9703562, - "longitude": -78.6827721 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9713878, - "longitude": -78.6832942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9715908, - "longitude": -78.6834552 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9716034, - "longitude": -78.6836912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9715717, - "longitude": -78.6839192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9710579, - "longitude": -78.6836697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.969976, - "longitude": -78.6830503 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9647487, - "longitude": -78.6799557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9649625, - "longitude": -78.6795921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9653269, - "longitude": -78.6792532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9678306, - "longitude": -78.6812404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9672902, - "longitude": -78.6812958 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.967178, - "longitude": -78.6815966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1280062, - "longitude": -78.4599018 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1284481, - "longitude": -78.4600064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1279253, - "longitude": -78.4598631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1278803, - "longitude": -78.4598062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1278438, - "longitude": -78.4597439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1287829, - "longitude": -78.4599546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1282256, - "longitude": -78.4599911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1283465, - "longitude": -78.46001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1281035, - "longitude": -78.4599367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1294615, - "longitude": -78.4598071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1291051, - "longitude": -78.4545808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1320502, - "longitude": -78.4591077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1300839, - "longitude": -78.4532857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1301641, - "longitude": -78.4531844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1301304, - "longitude": -78.4532254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1300534, - "longitude": -78.4533278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1298034, - "longitude": -78.4536802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1297363, - "longitude": -78.4537696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1295975, - "longitude": -78.4539341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1294506, - "longitude": -78.4541316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.129289, - "longitude": -78.454342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.128681, - "longitude": -78.455046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1284354, - "longitude": -78.4553243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1282257, - "longitude": -78.455619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1279324, - "longitude": -78.4561564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1277161, - "longitude": -78.4567478 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1275893, - "longitude": -78.4574071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.127565, - "longitude": -78.4580348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.127725, - "longitude": -78.4593805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1277894, - "longitude": -78.4595773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1302248, - "longitude": -78.4596397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1307129, - "longitude": -78.4595321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1310091, - "longitude": -78.4594717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1312189, - "longitude": -78.4594229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1314149, - "longitude": -78.4593631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1316362, - "longitude": -78.459297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1318408, - "longitude": -78.4592092 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1319166, - "longitude": -78.4591755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1278148, - "longitude": -78.4596883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1275682, - "longitude": -78.4577169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1275946, - "longitude": -78.4584411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.127637, - "longitude": -78.457079 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.12781, - "longitude": -78.4564447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1280769, - "longitude": -78.4558707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1282698, - "longitude": -78.455557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1303917, - "longitude": -78.4529657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1319298, - "longitude": -78.4518796 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1310619, - "longitude": -78.452395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1309355, - "longitude": -78.4524704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.130552, - "longitude": -78.4526688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.130609, - "longitude": -78.4527894 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1313294, - "longitude": -78.4522361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1307087, - "longitude": -78.4525877 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1386201, - "longitude": -78.4564863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1335243, - "longitude": -78.4583061 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1326884, - "longitude": -78.4587863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.132215, - "longitude": -78.4590267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1324791, - "longitude": -78.4588847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1329498, - "longitude": -78.4586525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1339744, - "longitude": -78.4582244 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1340893, - "longitude": -78.4581595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1334424, - "longitude": -78.4578735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1344017, - "longitude": -78.4576783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1358624, - "longitude": -78.4568847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1366094, - "longitude": -78.4564912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1373157, - "longitude": -78.4570735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.138617, - "longitude": -78.4548775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.138235, - "longitude": -78.4566783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1378221, - "longitude": -78.4569771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1375768, - "longitude": -78.4570295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1370494, - "longitude": -78.45654 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1353867, - "longitude": -78.4570507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1350208, - "longitude": -78.4572197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1347445, - "longitude": -78.4574702 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1336269, - "longitude": -78.4583252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1332817, - "longitude": -78.4584888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1368383, - "longitude": -78.4480293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1383219, - "longitude": -78.4468596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1364303, - "longitude": -78.4485359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.136112, - "longitude": -78.44903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1385686, - "longitude": -78.4466949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1380713, - "longitude": -78.4470512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1379293, - "longitude": -78.4471622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1373843, - "longitude": -78.4475885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1370805, - "longitude": -78.4478355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1369457, - "longitude": -78.4479119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1368595, - "longitude": -78.4479977 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1367178, - "longitude": -78.4481705 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.136633, - "longitude": -78.4483238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1362458, - "longitude": -78.4487991 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1361636, - "longitude": -78.4489414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1360363, - "longitude": -78.4491514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1358065, - "longitude": -78.4494982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1357987, - "longitude": -78.449546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1357871, - "longitude": -78.4495929 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1357825, - "longitude": -78.4495982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1357514, - "longitude": -78.4496346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1356883, - "longitude": -78.4496074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.134986, - "longitude": -78.4500796 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1349558, - "longitude": -78.4500984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1349132, - "longitude": -78.4501249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1348825, - "longitude": -78.450142 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1348569, - "longitude": -78.4501562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1347794, - "longitude": -78.4502014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1346296, - "longitude": -78.4502888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1341946, - "longitude": -78.4505425 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1341619, - "longitude": -78.4505625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.134126, - "longitude": -78.4505843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1336868, - "longitude": -78.4508523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1330163, - "longitude": -78.451256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1366977, - "longitude": -78.448241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1387933, - "longitude": -78.456357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1393928, - "longitude": -78.4558937 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1395514, - "longitude": -78.4556023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1397219, - "longitude": -78.4557144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1401861, - "longitude": -78.4554379 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.140574, - "longitude": -78.4551764 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1407856, - "longitude": -78.4547804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1437767, - "longitude": -78.4532785 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1428894, - "longitude": -78.453809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1426426, - "longitude": -78.4537343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1425897, - "longitude": -78.4539585 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1417905, - "longitude": -78.4545488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1413673, - "longitude": -78.4548103 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1404447, - "longitude": -78.4538389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1403213, - "longitude": -78.4538688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1401979, - "longitude": -78.4542574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1395044, - "longitude": -78.4547281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1392223, - "longitude": -78.4543993 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1386934, - "longitude": -78.454631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1388345, - "longitude": -78.4551914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1392693, - "longitude": -78.455565 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.143051, - "longitude": -78.447012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1439699, - "longitude": -78.4468601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1433279, - "longitude": -78.4472851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1428234, - "longitude": -78.446817 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1425761, - "longitude": -78.4466142 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1451636, - "longitude": -78.452479 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.144309, - "longitude": -78.4516972 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1440647, - "longitude": -78.451814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1448932, - "longitude": -78.4526359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1394848, - "longitude": -78.446363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1412244, - "longitude": -78.4460986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1391244, - "longitude": -78.4464411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1423389, - "longitude": -78.4464681 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1421455, - "longitude": -78.4463489 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1419381, - "longitude": -78.4462535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.141717, - "longitude": -78.4461749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1415985, - "longitude": -78.4461402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1414146, - "longitude": -78.4461153 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1410506, - "longitude": -78.4461191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1409606, - "longitude": -78.4461294 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1408697, - "longitude": -78.4461422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1406618, - "longitude": -78.446177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1404683, - "longitude": -78.4462094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1403262, - "longitude": -78.4462316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1402845, - "longitude": -78.4462381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1402369, - "longitude": -78.4462455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1396631, - "longitude": -78.4463352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1393531, - "longitude": -78.4463916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1392643, - "longitude": -78.4464108 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1390687, - "longitude": -78.4464579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1389495, - "longitude": -78.4464937 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1388638, - "longitude": -78.4465271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1387996, - "longitude": -78.4465521 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1398327, - "longitude": -78.4463087 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1405609, - "longitude": -78.4461939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1505291, - "longitude": -78.4536464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.149705, - "longitude": -78.4542585 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1485919, - "longitude": -78.4534245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1458351, - "longitude": -78.4467523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1480564, - "longitude": -78.4517908 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1481297, - "longitude": -78.4513418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1480144, - "longitude": -78.4508564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1472497, - "longitude": -78.4511953 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1466764, - "longitude": -78.4506111 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1464348, - "longitude": -78.4507339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1467565, - "longitude": -78.4512794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1462409, - "longitude": -78.4517557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1459588, - "longitude": -78.452006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1528932, - "longitude": -78.447011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1527777, - "longitude": -78.4466912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1545343, - "longitude": -78.4517579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1529193, - "longitude": -78.4470736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1528272, - "longitude": -78.4468477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1527987, - "longitude": -78.4467575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.152731, - "longitude": -78.4466182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1529734, - "longitude": -78.4472295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1530241, - "longitude": -78.4473755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1533084, - "longitude": -78.448194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1500663, - "longitude": -78.4442116 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1507003, - "longitude": -78.4437508 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1514314, - "longitude": -78.4429695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1507313, - "longitude": -78.4439573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1504175, - "longitude": -78.4441789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.150157, - "longitude": -78.4443947 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1499458, - "longitude": -78.4443007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1493731, - "longitude": -78.4447242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1487354, - "longitude": -78.445182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1481183, - "longitude": -78.4456696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1473119, - "longitude": -78.4442304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.147219, - "longitude": -78.4443412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.147169, - "longitude": -78.4444247 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1471045, - "longitude": -78.444529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1470249, - "longitude": -78.4446925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1470046, - "longitude": -78.4447353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1469118, - "longitude": -78.4449638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1468991, - "longitude": -78.444997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1468905, - "longitude": -78.4450195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1467301, - "longitude": -78.4454264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1466577, - "longitude": -78.4453765 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1466092, - "longitude": -78.4453431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1460999, - "longitude": -78.4464485 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1454465, - "longitude": -78.4459491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1516711, - "longitude": -78.4436459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1516292, - "longitude": -78.4435242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1516024, - "longitude": -78.4434443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1515536, - "longitude": -78.4432983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1515473, - "longitude": -78.443281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1514752, - "longitude": -78.4430827 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1526273, - "longitude": -78.4464583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1525909, - "longitude": -78.4463784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.152531, - "longitude": -78.4461489 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1524931, - "longitude": -78.4460035 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1524712, - "longitude": -78.4459195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1524247, - "longitude": -78.4457904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1523798, - "longitude": -78.4456657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1522472, - "longitude": -78.445332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1521558, - "longitude": -78.4451025 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1520877, - "longitude": -78.4448974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1520403, - "longitude": -78.4447444 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.151977, - "longitude": -78.4445289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1518883, - "longitude": -78.4442716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1518373, - "longitude": -78.4441246 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.98895, - "longitude": -78.4008259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9903664, - "longitude": -78.4007349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9904204, - "longitude": -78.4007321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9889541, - "longitude": -78.4007609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9913931, - "longitude": -78.4006762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9916476, - "longitude": -78.4006755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9919914, - "longitude": -78.4006352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.992622, - "longitude": -78.4005925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9928025, - "longitude": -78.400565 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9933234, - "longitude": -78.4005256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9930758, - "longitude": -78.400549 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9935768, - "longitude": -78.4004914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9943572, - "longitude": -78.3943819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9893726, - "longitude": -78.3951853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9890907, - "longitude": -78.3986063 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9983348, - "longitude": -78.4001038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9995712, - "longitude": -78.3995935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.998961, - "longitude": -78.398033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9987791, - "longitude": -78.3969334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9947216, - "longitude": -78.4003699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9993469, - "longitude": -78.3996399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9990216, - "longitude": -78.3997652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9991914, - "longitude": -78.399693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9986744, - "longitude": -78.3999686 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9988533, - "longitude": -78.3998703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9984881, - "longitude": -78.400051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.998192, - "longitude": -78.400117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9979269, - "longitude": -78.4001258 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9977392, - "longitude": -78.4001412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9976985, - "longitude": -78.4001451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9970614, - "longitude": -78.4001924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9965377, - "longitude": -78.4002249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9966794, - "longitude": -78.4002108 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9962833, - "longitude": -78.400246 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9963944, - "longitude": -78.4002389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9959019, - "longitude": -78.4002653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9948304, - "longitude": -78.4003583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9987152, - "longitude": -78.3965984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9980993, - "longitude": -78.396396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9974637, - "longitude": -78.396134 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9964496, - "longitude": -78.3956276 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9952241, - "longitude": -78.3948772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9898823, - "longitude": -78.389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9939712, - "longitude": -78.394011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9912521, - "longitude": -78.3892925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9904356, - "longitude": -78.3890832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9936161, - "longitude": -78.3933799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9926643, - "longitude": -78.3907451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9929953, - "longitude": -78.3916303 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9932909, - "longitude": -78.392522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.992331, - "longitude": -78.3901651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9917761, - "longitude": -78.3895825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9898248, - "longitude": -78.3896978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1580316, - "longitude": -78.1653003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.158213, - "longitude": -78.1654559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1579641, - "longitude": -78.1658314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1574706, - "longitude": -78.1672476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1567915, - "longitude": -78.1669955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1564836, - "longitude": -78.1668989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1560322, - "longitude": -78.1672744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1556483, - "longitude": -78.1668668 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1548637, - "longitude": -78.1674998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1550409, - "longitude": -78.1680308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.154404, - "longitude": -78.1684975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1530246, - "longitude": -78.169844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1524087, - "longitude": -78.1685405 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1588162, - "longitude": -78.1623177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1590735, - "longitude": -78.1634979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1588457, - "longitude": -78.1638841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.1584998, - "longitude": -78.1641792 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5346445, - "longitude": -77.8930762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5348536, - "longitude": -77.893222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5366608, - "longitude": -77.8884789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5368699, - "longitude": -77.8886247 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5947371, - "longitude": -77.8004873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5965274, - "longitude": -77.800498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5968835, - "longitude": -77.7997094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5967739, - "longitude": -77.7991891 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5988046, - "longitude": -77.7985078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5997057, - "longitude": -77.7987117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5996292, - "longitude": -77.7995378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5978143, - "longitude": -77.7999991 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.597147, - "longitude": -77.8001493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.596756, - "longitude": -77.8003746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5947881, - "longitude": -77.8008896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3980956, - "longitude": -77.5188607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3980998, - "longitude": -77.5185013 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3972603, - "longitude": -77.5176698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3982554, - "longitude": -77.5165701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4058919, - "longitude": -77.5185227 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4059771, - "longitude": -77.518394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.406889, - "longitude": -77.51701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4160159, - "longitude": -77.5368283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4161182, - "longitude": -77.536397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4164249, - "longitude": -77.5379441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4164931, - "longitude": -77.537472 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4167871, - "longitude": -77.5379215 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4168894, - "longitude": -77.5376469 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4176563, - "longitude": -77.5361824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4151638, - "longitude": -77.535367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4146246, - "longitude": -77.5355548 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4121344, - "longitude": -77.5330603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4162119, - "longitude": -77.5304478 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4128758, - "longitude": -77.5230825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4125711, - "longitude": -77.526792 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3988179, - "longitude": -77.5158727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3990395, - "longitude": -77.5155723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3992995, - "longitude": -77.5151056 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.399585, - "longitude": -77.5145155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3998663, - "longitude": -77.5139254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3998705, - "longitude": -77.5135499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4005524, - "longitude": -77.5138342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4012555, - "longitude": -77.5142044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4022016, - "longitude": -77.5148749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4957958, - "longitude": -77.3350436 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4988691, - "longitude": -77.3396989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4993879, - "longitude": -77.3405344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4914075, - "longitude": -77.3110401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4908946, - "longitude": -77.3082303 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4916011, - "longitude": -77.3113359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4914476, - "longitude": -77.3114094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4921628, - "longitude": -77.3070552 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.492253, - "longitude": -77.3075555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4918913, - "longitude": -77.3076926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4921042, - "longitude": -77.3067368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4921944, - "longitude": -77.3067446 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4922336, - "longitude": -77.3069208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4915727, - "longitude": -77.3109481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4916265, - "longitude": -77.3112423 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4922102, - "longitude": -77.3068159 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5009945, - "longitude": -77.3063396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5012236, - "longitude": -77.306323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5003934, - "longitude": -77.3062851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5007263, - "longitude": -77.3063328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4908214, - "longitude": -77.2998797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.491175, - "longitude": -77.3017132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4913473, - "longitude": -77.3027015 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.491754, - "longitude": -77.2998358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.49506, - "longitude": -77.3024983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4967938, - "longitude": -77.3037952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4979341, - "longitude": -77.3047521 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4990187, - "longitude": -77.3056203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4997499, - "longitude": -77.3060537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5029665, - "longitude": -77.3059807 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5015809, - "longitude": -77.3062603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5001198, - "longitude": -77.3062076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5065227, - "longitude": -77.3379344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5104882, - "longitude": -77.3365809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5109009, - "longitude": -77.3364612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5142988, - "longitude": -77.3368634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5127598, - "longitude": -77.3366578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5105874, - "longitude": -77.3365407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5112592, - "longitude": -77.3364113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5114993, - "longitude": -77.3364071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5155201, - "longitude": -77.3370539 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5170302, - "longitude": -77.3405802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5178618, - "longitude": -77.3405692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5179911, - "longitude": -77.3390914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5174158, - "longitude": -77.3373495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5180862, - "longitude": -77.3384007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5182716, - "longitude": -77.3376331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5193585, - "longitude": -77.333439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5168285, - "longitude": -77.3372579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5139216, - "longitude": -77.3133017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5127615, - "longitude": -77.3070508 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5137483, - "longitude": -77.3079543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5134602, - "longitude": -77.3106487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5123484, - "longitude": -77.3070522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5197244, - "longitude": -77.3319694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5198994, - "longitude": -77.3313232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5200893, - "longitude": -77.3307915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5204149, - "longitude": -77.3300097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5207517, - "longitude": -77.3291522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5209484, - "longitude": -77.3286373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5215486, - "longitude": -77.3271831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5218464, - "longitude": -77.3263749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5219476, - "longitude": -77.326047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5211819, - "longitude": -77.3280566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5226069, - "longitude": -77.3225862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5220224, - "longitude": -77.3257843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5220441, - "longitude": -77.3256147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5221002, - "longitude": -77.3253888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5225434, - "longitude": -77.3197456 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5229919, - "longitude": -77.3205967 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5226944, - "longitude": -77.3204941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5227499, - "longitude": -77.3205132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5178841, - "longitude": -77.3147989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5204195, - "longitude": -77.3173914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.522448, - "longitude": -77.3167517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.522458, - "longitude": -77.319322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5194774, - "longitude": -77.3176746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5191624, - "longitude": -77.3172008 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5181585, - "longitude": -77.3160836 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5207621, - "longitude": -77.3172834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5193999, - "longitude": -77.3175324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5192722, - "longitude": -77.3173416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.519675, - "longitude": -77.3176152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5200656, - "longitude": -77.3174978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5227817, - "longitude": -77.3192141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5227239, - "longitude": -77.3192334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5074107, - "longitude": -77.3050966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5085359, - "longitude": -77.3048668 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5117629, - "longitude": -77.3042167 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.706241, - "longitude": -77.4381893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.709309, - "longitude": -77.4404466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7100537, - "longitude": -77.4387898 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7125947, - "longitude": -77.4378798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6994662, - "longitude": -77.4308447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7061018, - "longitude": -77.436563 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7052163, - "longitude": -77.4323615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7016992, - "longitude": -77.4277553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.702155, - "longitude": -77.4281883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7036895, - "longitude": -77.4281181 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7053972, - "longitude": -77.4292761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7060774, - "longitude": -77.4304074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.709731, - "longitude": -77.4324739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7102098, - "longitude": -77.436025 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7067123, - "longitude": -77.4370682 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7063749, - "longitude": -77.4359704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7082148, - "longitude": -77.4326202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7078956, - "longitude": -77.4342561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7107817, - "longitude": -77.4348679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7098533, - "longitude": -77.4327525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7170027, - "longitude": -77.4413082 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7159531, - "longitude": -77.4431205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9646881, - "longitude": -77.7523784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9639713, - "longitude": -77.7524595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9649238, - "longitude": -77.751407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9659187, - "longitude": -77.7514153 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9656209, - "longitude": -77.7500787 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9660234, - "longitude": -77.747862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9637065, - "longitude": -77.7514473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9642256, - "longitude": -77.7514317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9677547, - "longitude": -77.7414878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.967627, - "longitude": -77.740913 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9682128, - "longitude": -77.7402737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9678415, - "longitude": -77.7397047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9660774, - "longitude": -77.7399547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9695708, - "longitude": -77.7454128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9693352, - "longitude": -77.7444373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9686087, - "longitude": -77.7432708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9694792, - "longitude": -77.74237 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9686848, - "longitude": -77.7410418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9663965, - "longitude": -77.7384078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0068251, - "longitude": -77.9794404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0067461, - "longitude": -77.9787547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0076086, - "longitude": -77.9775117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0096755, - "longitude": -77.9796591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0082184, - "longitude": -77.9794043 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0080162, - "longitude": -77.9790595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0078298, - "longitude": -77.9783337 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.00837, - "longitude": -77.9771749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0091615, - "longitude": -77.9695665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0080892, - "longitude": -77.9693737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0118256, - "longitude": -77.9684577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0118177, - "longitude": -77.9687384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.011557, - "longitude": -77.9712495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.01172, - "longitude": -77.9715614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.011624, - "longitude": -77.9725083 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0112174, - "longitude": -77.9724148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0110834, - "longitude": -77.9736481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0103551, - "longitude": -77.9735404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0087594, - "longitude": -77.9636067 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.008536, - "longitude": -77.9632892 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0090051, - "longitude": -77.9625917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0092017, - "longitude": -77.9619509 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0115354, - "longitude": -77.9625029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0118418, - "longitude": -77.9626954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0120946, - "longitude": -77.9627515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.011787, - "longitude": -77.9656561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.011863, - "longitude": -77.9657951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0116776, - "longitude": -77.967896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0094385, - "longitude": -77.960607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0097825, - "longitude": -77.9601477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0103678, - "longitude": -77.9601307 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0104438, - "longitude": -77.9602838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.010904, - "longitude": -77.9600172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0120124, - "longitude": -77.9602334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0663608, - "longitude": -77.3217033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0660588, - "longitude": -77.322714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0657426, - "longitude": -77.321836 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0709834, - "longitude": -77.3200512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0698754, - "longitude": -77.3245577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0710259, - "longitude": -77.3204607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0713139, - "longitude": -77.3211727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0674578, - "longitude": -77.320358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0709422, - "longitude": -77.3203202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0691913, - "longitude": -77.3194637 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0706685, - "longitude": -77.3191726 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0708316, - "longitude": -77.3180413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0684791, - "longitude": -77.3164822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0681261, - "longitude": -77.3190447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0685295, - "longitude": -77.3131125 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0690148, - "longitude": -77.3151953 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0709118, - "longitude": -77.316232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0715442, - "longitude": -77.3157277 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0715515, - "longitude": -77.3162601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0679948, - "longitude": -77.3112992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.069003, - "longitude": -77.311538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0671174, - "longitude": -77.3111329 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0671426, - "longitude": -77.3122059 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0672687, - "longitude": -77.3123821 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0677352, - "longitude": -77.312238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.0690148, - "longitude": -77.3125427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2092658, - "longitude": -79.7160622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2088612, - "longitude": -79.7156545 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2100372, - "longitude": -79.7133773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2114745, - "longitude": -79.7114649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2120351, - "longitude": -79.7123071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2109561, - "longitude": -79.714072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3932981, - "longitude": -79.6070595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3924198, - "longitude": -79.6069858 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3917847, - "longitude": -79.6061302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3914932, - "longitude": -79.6052221 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3913696, - "longitude": -79.6049352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3936399, - "longitude": -79.6030045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3931863, - "longitude": -79.6020533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3939119, - "longitude": -79.606547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3984516, - "longitude": -79.6030764 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3961607, - "longitude": -79.6047641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3989467, - "longitude": -79.6027884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988686, - "longitude": -79.6022805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988201, - "longitude": -79.6015861 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3986479, - "longitude": -79.6013077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3987341, - "longitude": -79.6005352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988178, - "longitude": -79.6003412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3986392, - "longitude": -79.6011602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3986681, - "longitude": -79.6010427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3964766, - "longitude": -79.5992138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3966356, - "longitude": -79.5994381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3978222, - "longitude": -79.5985342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.399634, - "longitude": -79.5971824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3980671, - "longitude": -79.5950292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3980306, - "longitude": -79.5945262 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3980777, - "longitude": -79.594356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3977276, - "longitude": -79.5938303 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.397894, - "longitude": -79.5937258 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3984067, - "longitude": -79.5946182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3987874, - "longitude": -79.5950412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3997386, - "longitude": -79.595156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4000558, - "longitude": -79.5949582 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4002774, - "longitude": -79.5955945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4000406, - "longitude": -79.596101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4006622, - "longitude": -79.5959975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3994288, - "longitude": -79.5999931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3958813, - "longitude": -79.5997647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3998182, - "longitude": -79.5998703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4002802, - "longitude": -79.5960264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4013031, - "longitude": -79.5960022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4016395, - "longitude": -79.5960022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4019078, - "longitude": -79.5960647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4023602, - "longitude": -79.5958959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4027391, - "longitude": -79.5956784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4027756, - "longitude": -79.5957036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4033825, - "longitude": -79.5952559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4040465, - "longitude": -79.5949906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4041838, - "longitude": -79.5962617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4037493, - "longitude": -79.5964045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4035322, - "longitude": -79.5965603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4034395, - "longitude": -79.5966861 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4033606, - "longitude": -79.5970957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4034272, - "longitude": -79.5977808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4035801, - "longitude": -79.5984068 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4040087, - "longitude": -79.5993857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4039901, - "longitude": -79.5994739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.403941, - "longitude": -79.5995307 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4038745, - "longitude": -79.5995505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4017453, - "longitude": -79.5986354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4015854, - "longitude": -79.5986892 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4010991, - "longitude": -79.599001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4019511, - "longitude": -79.5987647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4022132, - "longitude": -79.5988092 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4019077, - "longitude": -79.5986675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4037721, - "longitude": -79.5995144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4039612, - "longitude": -79.5992294 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4037781, - "longitude": -79.5988624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4034821, - "longitude": -79.5980916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4033735, - "longitude": -79.5969193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4036121, - "longitude": -79.5964887 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4039727, - "longitude": -79.5963194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4025907, - "longitude": -79.5957636 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2509522, - "longitude": -78.9068463 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2564928, - "longitude": -78.9066499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2522424, - "longitude": -78.9059045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2518497, - "longitude": -78.9088819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2520444, - "longitude": -78.9091298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2522834, - "longitude": -78.9089998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2533842, - "longitude": -78.9082938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2540181, - "longitude": -78.9078378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2545637, - "longitude": -78.907286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2549405, - "longitude": -78.9070444 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2557564, - "longitude": -78.9067801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2610046, - "longitude": -78.9054612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2612735, - "longitude": -78.9058359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2615274, - "longitude": -78.9061033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2574751, - "longitude": -78.9064102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2572177, - "longitude": -78.9064648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2585042, - "longitude": -78.9061468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2579468, - "longitude": -78.905636 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2619459, - "longitude": -78.9056804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2566743, - "longitude": -78.9066036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2553309, - "longitude": -78.9013864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2552966, - "longitude": -78.9025088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2546991, - "longitude": -78.9028403 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2547863, - "longitude": -78.9028964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.259973, - "longitude": -78.9036344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2602594, - "longitude": -78.9041242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2604955, - "longitude": -78.9045593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2575823, - "longitude": -78.8992371 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2606591, - "longitude": -78.8963042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2613969, - "longitude": -78.8955854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2615972, - "longitude": -78.8953692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2616057, - "longitude": -78.8954839 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2617334, - "longitude": -78.8954553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2617186, - "longitude": -78.8953371 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2618335, - "longitude": -78.8952904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2621597, - "longitude": -78.8950931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2628924, - "longitude": -78.8945747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.265031, - "longitude": -78.9025504 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2661702, - "longitude": -78.9027601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2647302, - "longitude": -78.9006677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2645887, - "longitude": -78.9002197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2635584, - "longitude": -78.9040512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2649049, - "longitude": -78.9009486 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2661662, - "longitude": -78.9025243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2659299, - "longitude": -78.9027124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2658905, - "longitude": -78.9024936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2648268, - "longitude": -78.8989464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2645709, - "longitude": -78.8998717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2646304, - "longitude": -78.8994308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2647286, - "longitude": -78.8991668 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2642369, - "longitude": -78.9033315 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2679979, - "longitude": -78.8976303 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2684419, - "longitude": -78.8983401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2657106, - "longitude": -78.8979502 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2669045, - "longitude": -78.896904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2649757, - "longitude": -78.8922689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2634803, - "longitude": -78.8940345 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2633844, - "longitude": -78.8941473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2637261, - "longitude": -78.893786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2644413, - "longitude": -78.8929316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2675117, - "longitude": -78.8975998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2670157, - "longitude": -78.8968328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2668584, - "longitude": -78.8967753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2663728, - "longitude": -78.8971878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2713412, - "longitude": -78.8956662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2698143, - "longitude": -78.8945082 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.269933, - "longitude": -78.8939904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2701566, - "longitude": -78.8929305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2702578, - "longitude": -78.8926632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2702944, - "longitude": -78.894702 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2706708, - "longitude": -78.8949515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2708989, - "longitude": -78.8952136 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2698561, - "longitude": -78.8944062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2704826, - "longitude": -78.8948062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2695377, - "longitude": -78.8880259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2679988, - "longitude": -78.8885707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2680963, - "longitude": -78.8885226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2685482, - "longitude": -78.8885458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2687371, - "longitude": -78.8885397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2691699, - "longitude": -78.8883123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2667344, - "longitude": -78.8901672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.26597, - "longitude": -78.891058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2674284, - "longitude": -78.8893228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2677945, - "longitude": -78.8888762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2712574, - "longitude": -78.8914652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.271867, - "longitude": -78.8909357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2734192, - "longitude": -78.8895695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2726997, - "longitude": -78.8878087 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2706041, - "longitude": -78.8921118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2707772, - "longitude": -78.8918961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2734771, - "longitude": -78.8893654 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2731073, - "longitude": -78.8886381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2718602, - "longitude": -78.8858454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2720343, - "longitude": -78.8861069 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2723904, - "longitude": -78.8871527 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2706526, - "longitude": -78.886912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2715298, - "longitude": -78.8861249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2721966, - "longitude": -78.8866053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2725888, - "longitude": -78.8903041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.36307, - "longitude": -78.961201 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.362983, - "longitude": -78.958243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.362083, - "longitude": -78.960343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.362159, - "longitude": -78.960414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363362, - "longitude": -78.961462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363494, - "longitude": -78.961597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363586, - "longitude": -78.961712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363719, - "longitude": -78.961909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363779, - "longitude": -78.962023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363883, - "longitude": -78.962263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363958, - "longitude": -78.962483 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.364243, - "longitude": -78.963578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.362331, - "longitude": -78.959932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.362511, - "longitude": -78.959564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.36266, - "longitude": -78.959199 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3628, - "longitude": -78.958814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363101, - "longitude": -78.957875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3650129, - "longitude": -78.9633773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.364281, - "longitude": -78.9637099 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3668888, - "longitude": -78.9611457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3651643, - "longitude": -78.9621327 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3690751, - "longitude": -78.9643938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3706817, - "longitude": -78.962645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3706312, - "longitude": -78.9627309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3703713, - "longitude": -78.9628945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3693358, - "longitude": -78.9640183 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3702106, - "longitude": -78.9630849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3698657, - "longitude": -78.9633531 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3701274, - "longitude": -78.9631198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3706817, - "longitude": -78.9625587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3689321, - "longitude": -78.9603914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3690086, - "longitude": -78.9605234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3702788, - "longitude": -78.962991 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.369933, - "longitude": -78.9632458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3697648, - "longitude": -78.9635033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.369129, - "longitude": -78.9643162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.365561, - "longitude": -78.955776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.365899, - "longitude": -78.955381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.366107, - "longitude": -78.95516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.36315, - "longitude": -78.957772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.363223, - "longitude": -78.95767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.36331, - "longitude": -78.95758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.364088, - "longitude": -78.956983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.36453, - "longitude": -78.956624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.364743, - "longitude": -78.956454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.36509, - "longitude": -78.956193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.365455, - "longitude": -78.955883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3642754, - "longitude": -78.9568342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3672329, - "longitude": -78.9553703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3678553, - "longitude": -78.9563574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3666777, - "longitude": -78.9559282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3687975, - "longitude": -78.957559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3687302, - "longitude": -78.9573015 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3083908, - "longitude": -78.1003515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3087612, - "longitude": -78.0994932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3086938, - "longitude": -78.0997185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3086096, - "longitude": -78.1000082 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3055915, - "longitude": -78.0991352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3060145, - "longitude": -78.0974185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3070942, - "longitude": -78.098195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3076836, - "longitude": -78.0985598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3087359, - "longitude": -78.0991821 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3086576, - "longitude": -78.0989107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.65516, - "longitude": -78.7101931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6538041, - "longitude": -78.7124756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6537703, - "longitude": -78.7127124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6529086, - "longitude": -78.714077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6534089, - "longitude": -78.7098123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6537516, - "longitude": -78.7098618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6531657, - "longitude": -78.7121612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6554573, - "longitude": -78.710398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6556873, - "longitude": -78.7104095 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6559321, - "longitude": -78.7103675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6561314, - "longitude": -78.7102631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.656255, - "longitude": -78.710104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6564159, - "longitude": -78.7090843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6545808, - "longitude": -78.7084886 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6550037, - "longitude": -78.7084461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6559047, - "longitude": -78.7077772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6559848, - "longitude": -78.7076994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6560346, - "longitude": -78.7076357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6560594, - "longitude": -78.7086903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6564477, - "longitude": -78.7097491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6564717, - "longitude": -78.7096028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6564777, - "longitude": -78.7093578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6564506, - "longitude": -78.7091375 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6583136, - "longitude": -78.7038319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6583869, - "longitude": -78.7038695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6588393, - "longitude": -78.7044864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.65821, - "longitude": -78.7055541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6580199, - "longitude": -78.7054147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6570986, - "longitude": -78.7058625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.656825, - "longitude": -78.7056962 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.656966, - "longitude": -78.7053281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6572562, - "longitude": -78.7054838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6581461, - "longitude": -78.7040151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.65824, - "longitude": -78.7039301 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8132079, - "longitude": -78.7735043 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.813313, - "longitude": -78.7736264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.81336, - "longitude": -78.7736631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.813432, - "longitude": -78.7736877 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8135161, - "longitude": -78.7736353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8135617, - "longitude": -78.7735491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8135905, - "longitude": -78.7733827 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8135818, - "longitude": -78.773273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6621256, - "longitude": -78.5055864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6625717, - "longitude": -78.5055167 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6617758, - "longitude": -78.5050392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6617172, - "longitude": -78.504881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.661713, - "longitude": -78.5047469 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6617528, - "longitude": -78.5046047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6620795, - "longitude": -78.5041434 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6618784, - "longitude": -78.5037357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6620523, - "longitude": -78.5032663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6630157, - "longitude": -78.5051844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6629839, - "longitude": -78.5051229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6668001, - "longitude": -78.4989899 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6668515, - "longitude": -78.4980512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6668561, - "longitude": -78.4977873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6668929, - "longitude": -78.4975564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6668993, - "longitude": -78.4989006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6669389, - "longitude": -78.497382 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6670106, - "longitude": -78.4972089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.667086, - "longitude": -78.4970793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.667189, - "longitude": -78.4969438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6673325, - "longitude": -78.4968013 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6674806, - "longitude": -78.4966823 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6677556, - "longitude": -78.4964961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6681135, - "longitude": -78.4962523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6681723, - "longitude": -78.496224 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6682477, - "longitude": -78.4962004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6684947, - "longitude": -78.496661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6686201, - "longitude": -78.4965557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6686443, - "longitude": -78.4965354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6686624, - "longitude": -78.4965193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6691477, - "longitude": -78.4960902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.667726, - "longitude": -78.4965161 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6695621, - "longitude": -78.4957237 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6699559, - "longitude": -78.4966848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6699787, - "longitude": -78.4966692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6701721, - "longitude": -78.4971409 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6705775, - "longitude": -78.4968811 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6713797, - "longitude": -78.4978475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.81759, - "longitude": -78.7680026 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8174928, - "longitude": -78.7683481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8176829, - "longitude": -78.768586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8182277, - "longitude": -78.7678888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8182974, - "longitude": -78.7679701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8183497, - "longitude": -78.7680107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8183797, - "longitude": -78.7680229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8184209, - "longitude": -78.7680046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8185128, - "longitude": -78.7678948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8185112, - "longitude": -78.76784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8184843, - "longitude": -78.7677749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8174772, - "longitude": -78.7678228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8176978, - "longitude": -78.7678837 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8181849, - "longitude": -78.7674537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.818337, - "longitude": -78.7675859 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8182515, - "longitude": -78.7674761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8182134, - "longitude": -78.7674517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8180141, - "longitude": -78.7674701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8179181, - "longitude": -78.7674609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8176852, - "longitude": -78.7676519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8178901, - "longitude": -78.7676745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8179584, - "longitude": -78.7676449 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8179926, - "longitude": -78.7677022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9172493, - "longitude": -78.2599256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9155724, - "longitude": -78.2593754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9157393, - "longitude": -78.2576588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9170249, - "longitude": -78.2577017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9184848, - "longitude": -78.2588098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9182844, - "longitude": -78.2588957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.918034, - "longitude": -78.2591317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9174163, - "longitude": -78.2600115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9171083, - "longitude": -78.2562641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9167577, - "longitude": -78.2546762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9173328, - "longitude": -78.2499693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9175332, - "longitude": -78.2476089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9177502, - "longitude": -78.246536 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9183011, - "longitude": -78.2466862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9187185, - "longitude": -78.2588098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9187352, - "longitude": -78.2469437 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.919194, - "longitude": -78.247308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9192065, - "longitude": -78.2483648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9192047, - "longitude": -78.2482147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5680975, - "longitude": -77.9232339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5703832, - "longitude": -77.9228229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5684553, - "longitude": -77.9169948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.567579, - "longitude": -77.9169854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5187935, - "longitude": -77.8645813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5185249, - "longitude": -77.864745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.518292, - "longitude": -77.8642058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5184053, - "longitude": -77.8635004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5186613, - "longitude": -77.8623873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5225331, - "longitude": -77.8646296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5215867, - "longitude": -77.8651714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5207032, - "longitude": -77.8652881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5189703, - "longitude": -77.8655107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5189383, - "longitude": -77.8649515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5214901, - "longitude": -77.8604561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5252296, - "longitude": -77.8630793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5188145, - "longitude": -77.8632081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5250522, - "longitude": -77.8580354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5315307, - "longitude": -77.857849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5305844, - "longitude": -77.8597641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5301585, - "longitude": -77.8602442 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5295311, - "longitude": -77.860719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5285334, - "longitude": -77.8612755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5274286, - "longitude": -77.8564435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5270803, - "longitude": -77.8556013 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5281588, - "longitude": -77.8550917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5280078, - "longitude": -77.8546143 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5290863, - "longitude": -77.8545553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5311593, - "longitude": -77.8544158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5326784, - "longitude": -77.8533107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5334925, - "longitude": -77.8541744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4840912, - "longitude": -77.6153282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4843068, - "longitude": -77.6153497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4843573, - "longitude": -77.6152292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4853948, - "longitude": -77.612828 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4854992, - "longitude": -77.6118167 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.484007, - "longitude": -77.6116962 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.483879, - "longitude": -77.6122686 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4805576, - "longitude": -77.6108872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.480443, - "longitude": -77.6109303 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4803655, - "longitude": -77.6110163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4803521, - "longitude": -77.6111755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4804262, - "longitude": -77.6113089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4805441, - "longitude": -77.6114294 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4807159, - "longitude": -77.6113477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4808102, - "longitude": -77.6112229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4808675, - "longitude": -77.6111755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4818579, - "longitude": -77.6116188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4820195, - "longitude": -77.6118038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4840104, - "longitude": -77.6126343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4844011, - "longitude": -77.6131851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4849805, - "longitude": -77.6134304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4852836, - "longitude": -77.6134519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4855565, - "longitude": -77.6133185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4869723, - "longitude": -77.6143591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4871887, - "longitude": -77.6136744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4866344, - "longitude": -77.6138651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4865434, - "longitude": -77.6141706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5480329, - "longitude": -77.716021 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5481074, - "longitude": -77.7167959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5482846, - "longitude": -77.7180118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5483126, - "longitude": -77.7189774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5486855, - "longitude": -77.7190251 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5492076, - "longitude": -77.718584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5513539, - "longitude": -77.7128166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5507296, - "longitude": -77.7126649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5488372, - "longitude": -77.7138576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5485456, - "longitude": -77.7130169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5483032, - "longitude": -77.7128381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5479396, - "longitude": -77.7134222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5485363, - "longitude": -77.7120633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5480981, - "longitude": -77.7120036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5518459, - "longitude": -77.7177495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.552368, - "longitude": -77.7172846 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5523121, - "longitude": -77.7169151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5524519, - "longitude": -77.7167959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5527036, - "longitude": -77.7171058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5550156, - "longitude": -77.7157707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5551927, - "longitude": -77.7153773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5547266, - "longitude": -77.7150435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5545495, - "longitude": -77.7141971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5545122, - "longitude": -77.7136726 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5533469, - "longitude": -77.7144713 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.552396, - "longitude": -77.7148289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5518664, - "longitude": -77.7150539 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5774855, - "longitude": -77.7041021 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5769068, - "longitude": -77.7034892 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5765566, - "longitude": -77.7030091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5764475, - "longitude": -77.7027476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5763616, - "longitude": -77.7023667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5763374, - "longitude": -77.702065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.576349, - "longitude": -77.7018611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5763941, - "longitude": -77.7015768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5764863, - "longitude": -77.7013019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5766069, - "longitude": -77.7010605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5767684, - "longitude": -77.7008311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5769476, - "longitude": -77.7006648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.577086, - "longitude": -77.7005522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5772664, - "longitude": -77.7004664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5774037, - "longitude": -77.7004436 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5776868, - "longitude": -77.7004543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5877971, - "longitude": -77.7158046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5850107, - "longitude": -77.7127066 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5890466, - "longitude": -77.7171671 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5813226, - "longitude": -77.7100056 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5817818, - "longitude": -77.7090615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5780301, - "longitude": -77.6998052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5792804, - "longitude": -77.7055022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5785475, - "longitude": -77.7050623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5784385, - "longitude": -77.7048974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5782959, - "longitude": -77.7047901 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5780978, - "longitude": -77.7046989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5779185, - "longitude": -77.7045634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5778231, - "longitude": -77.7004181 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5779384, - "longitude": -77.7003296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5780128, - "longitude": -77.7001539 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5780453, - "longitude": -77.6999675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5836159, - "longitude": -77.7042332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5794209, - "longitude": -77.7054298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5793559, - "longitude": -77.7052769 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5786157, - "longitude": -77.7053198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5867016, - "longitude": -77.707593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5871613, - "longitude": -77.7068809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5895026, - "longitude": -77.7104737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5899397, - "longitude": -77.7098072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5904324, - "longitude": -77.7114487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5907762, - "longitude": -77.7108559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5878705, - "longitude": -77.7076319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5899481, - "longitude": -77.7061325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5889816, - "longitude": -77.7078331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.589913, - "longitude": -77.7088825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5895687, - "longitude": -77.7094202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5908748, - "longitude": -77.7109471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5894848, - "longitude": -77.7058777 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5940026, - "longitude": -77.7226684 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5951175, - "longitude": -77.720692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5950959, - "longitude": -77.7209464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5929471, - "longitude": -77.7145842 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5947133, - "longitude": -77.7168587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5948055, - "longitude": -77.7166508 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5963359, - "longitude": -77.7180214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5919566, - "longitude": -77.7091098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5920488, - "longitude": -77.7100807 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5954324, - "longitude": -77.7103865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.593814, - "longitude": -77.709775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5941829, - "longitude": -77.7091849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5788542, - "longitude": -77.6987766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.262728, - "longitude": -77.4525499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2636029, - "longitude": -77.4530689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2689921, - "longitude": -77.4518498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2655785, - "longitude": -77.4489633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2666899, - "longitude": -77.4490164 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2690199, - "longitude": -77.444544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2679471, - "longitude": -77.4459216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2703329, - "longitude": -77.4459445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2709407, - "longitude": -77.4494369 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2719668, - "longitude": -77.4476687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3582722, - "longitude": -77.4576194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3586498, - "longitude": -77.4574773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3587901, - "longitude": -77.4563902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3589807, - "longitude": -77.4546473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3592936, - "longitude": -77.4518587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3593799, - "longitude": -77.4506249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.358934, - "longitude": -77.4518036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3594015, - "longitude": -77.4501983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3595921, - "longitude": -77.4488315 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3597504, - "longitude": -77.44785 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3600489, - "longitude": -77.4456117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3599626, - "longitude": -77.4455429 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3599662, - "longitude": -77.4451944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3599086, - "longitude": -77.4448045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3596748, - "longitude": -77.4439147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3596497, - "longitude": -77.4443092 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3595382, - "longitude": -77.4448229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3594806, - "longitude": -77.4450247 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.359495, - "longitude": -77.4462493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3594159, - "longitude": -77.4474464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3593332, - "longitude": -77.4482399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3592073, - "longitude": -77.4492718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3601028, - "longitude": -77.4435524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3600812, - "longitude": -77.4434102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3597755, - "longitude": -77.4433735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3596676, - "longitude": -77.4435524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3935015, - "longitude": -77.4537063 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3898411, - "longitude": -77.4496605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3905062, - "longitude": -77.4486927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3895535, - "longitude": -77.4476607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3909627, - "longitude": -77.4446152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.390934, - "longitude": -77.4441749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3933741, - "longitude": -77.4439797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3937309, - "longitude": -77.4441246 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3921805, - "longitude": -77.4426367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.392389, - "longitude": -77.4429027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3925703, - "longitude": -77.4430971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3930611, - "longitude": -77.4436746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3928823, - "longitude": -77.443508 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4059286, - "longitude": -77.4657185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4036037, - "longitude": -77.464672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3996979, - "longitude": -77.4605123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3969516, - "longitude": -77.4574026 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3967432, - "longitude": -77.4572467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3964843, - "longitude": -77.4573522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3945863, - "longitude": -77.4561321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3950033, - "longitude": -77.4553662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988051, - "longitude": -77.451031 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988405, - "longitude": -77.4511579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988701, - "longitude": -77.4513754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3989322, - "longitude": -77.4515422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3987685, - "longitude": -77.4508609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3987983, - "longitude": -77.450659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3989194, - "longitude": -77.4504596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4028694, - "longitude": -77.4632884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.402504, - "longitude": -77.4627864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4016029, - "longitude": -77.4616544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4009236, - "longitude": -77.4616223 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4032457, - "longitude": -77.4569986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4037705, - "longitude": -77.457602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4044336, - "longitude": -77.457981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4049036, - "longitude": -77.4584997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4055091, - "longitude": -77.4591694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4012331, - "longitude": -77.4540773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.401262, - "longitude": -77.4544857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4017637, - "longitude": -77.4550486 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4021731, - "longitude": -77.4556005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4026027, - "longitude": -77.4562517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3943311, - "longitude": -77.4444235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3952168, - "longitude": -77.4447739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3955058, - "longitude": -77.4450666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3955528, - "longitude": -77.4453535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3975769, - "longitude": -77.4479553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3977347, - "longitude": -77.4485242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3979588, - "longitude": -77.4489813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3982466, - "longitude": -77.4493314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3985503, - "longitude": -77.4496439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3989633, - "longitude": -77.4502109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3956853, - "longitude": -77.4456917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3966274, - "longitude": -77.4467235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3971482, - "longitude": -77.4472965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3973899, - "longitude": -77.4476005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.3988701, - "longitude": -77.4499705 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4082887, - "longitude": -77.4621944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4310929, - "longitude": -77.4728801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4307025, - "longitude": -77.4734155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4308905, - "longitude": -77.4735386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4312058, - "longitude": -77.4727318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4347467, - "longitude": -77.4684188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4346262, - "longitude": -77.4682403 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6036483, - "longitude": -77.5888859 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6030689, - "longitude": -77.5891029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6032249, - "longitude": -77.5867923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6028475, - "longitude": -77.586533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6027247, - "longitude": -77.5865205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6026273, - "longitude": -77.5865371 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6025023, - "longitude": -77.58656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4036938, - "longitude": -77.3185241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4033743, - "longitude": -77.3181692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4038689, - "longitude": -77.3135695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4042147, - "longitude": -77.3138622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4034759, - "longitude": -77.3172247 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.403389, - "longitude": -77.3180324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4034933, - "longitude": -77.3170621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4036147, - "longitude": -77.3159331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4041618, - "longitude": -77.3143358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4976459, - "longitude": -77.3068443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4979773, - "longitude": -77.3083223 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4989351, - "longitude": -77.309143 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4974557, - "longitude": -77.3073588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4974546, - "longitude": -77.307492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4976482, - "longitude": -77.3078658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4982128, - "longitude": -77.3086462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4984315, - "longitude": -77.3084129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4983602, - "longitude": -77.3084889 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4978199, - "longitude": -77.306474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4981011, - "longitude": -77.3058755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4990139, - "longitude": -77.3038794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4988483, - "longitude": -77.3043938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4995413, - "longitude": -77.3100037 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4999454, - "longitude": -77.3102332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5063514, - "longitude": -77.3085597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5079153, - "longitude": -77.3080911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5090294, - "longitude": -77.3073717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5102874, - "longitude": -77.3062933 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5083653, - "longitude": -77.3078614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.503124, - "longitude": -77.3003117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5040119, - "longitude": -77.3006765 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4998263, - "longitude": -77.3031735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5004896, - "longitude": -77.3025941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5011928, - "longitude": -77.3022267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5015822, - "longitude": -77.3016858 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5040727, - "longitude": -77.3008213 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5008192, - "longitude": -77.302393 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5037684, - "longitude": -77.3004968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5036256, - "longitude": -77.3004619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.503082, - "longitude": -77.3003305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5040601, - "longitude": -77.3010145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5036865, - "longitude": -77.3005156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5022361, - "longitude": -77.3010225 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5042385, - "longitude": -77.3012934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5049669, - "longitude": -77.3016984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.504058, - "longitude": -77.3007489 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4997696, - "longitude": -77.3032459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4992533, - "longitude": -77.3040774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5018268, - "longitude": -77.3014168 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4995954, - "longitude": -77.3034927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5002545, - "longitude": -77.3027899 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.4999859, - "longitude": -77.3030233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5031785, - "longitude": -77.300309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5055672, - "longitude": -77.3023447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5099938, - "longitude": -77.3025298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5101365, - "longitude": -77.3035839 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5059534, - "longitude": -77.3021784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5091458, - "longitude": -77.3025593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5122248, - "longitude": -77.3038065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5116476, - "longitude": -77.3037287 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5118491, - "longitude": -77.304182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5118812, - "longitude": -77.3045147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5111853, - "longitude": -77.305404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.5123396, - "longitude": -77.303934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6495857, - "longitude": -77.7853101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6489402, - "longitude": -77.7838671 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6484223, - "longitude": -77.7846236 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6553418, - "longitude": -77.7848075 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6510883, - "longitude": -77.7857864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6501401, - "longitude": -77.7859732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6510361, - "longitude": -77.7905204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6546465, - "longitude": -77.7841051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6544155, - "longitude": -77.7838863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.654134, - "longitude": -77.7835474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6539752, - "longitude": -77.7833594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6538549, - "longitude": -77.7832824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6511029, - "longitude": -77.7844228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6499213, - "longitude": -77.784222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6531858, - "longitude": -77.783516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6576894, - "longitude": -77.7884391 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6581749, - "longitude": -77.7881915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6564306, - "longitude": -77.786971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9693692, - "longitude": -77.8676923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9694195, - "longitude": -77.8673816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.969553, - "longitude": -77.8664374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9692836, - "longitude": -77.8669492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9705848, - "longitude": -77.8661767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9695864, - "longitude": -77.8668666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9700868, - "longitude": -77.868433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9703871, - "longitude": -77.8690982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9697699, - "longitude": -77.8678107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9677662, - "longitude": -77.8601042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9668837, - "longitude": -77.8607941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.974458, - "longitude": -77.880359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.974651, - "longitude": -77.880453 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.974775, - "longitude": -77.880475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.975114, - "longitude": -77.880409 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.976712, - "longitude": -77.879943 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9739405, - "longitude": -77.8766942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9723365, - "longitude": -77.8701249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.975642, - "longitude": -77.871716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9718052, - "longitude": -77.8719091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.971288, - "longitude": -77.8706217 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9738237, - "longitude": -77.8733253 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9728536, - "longitude": -77.87388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9722889, - "longitude": -77.8728104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9733708, - "longitude": -77.8724853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9716383, - "longitude": -77.867682 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.971102, - "longitude": -77.8666273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9731039, - "longitude": -77.869567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9716358, - "longitude": -77.8687302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.606338, - "longitude": -77.5845156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6064034, - "longitude": -77.5844183 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6084808, - "longitude": -77.5829658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.608411, - "longitude": -77.5827955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6083379, - "longitude": -77.5827789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6077031, - "longitude": -77.5832297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.6054588, - "longitude": -77.5846834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.721705, - "longitude": -77.5211245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7164303, - "longitude": -77.5174866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7209061, - "longitude": -77.5205835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7207439, - "longitude": -77.5210823 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7211331, - "longitude": -77.5212486 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7241335, - "longitude": -77.5230028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7243009, - "longitude": -77.524258 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.724552, - "longitude": -77.5243975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7268705, - "longitude": -77.5240649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7274899, - "longitude": -77.524022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7279503, - "longitude": -77.5242044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7220187, - "longitude": -77.5204808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7232714, - "longitude": -77.5212647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7239075, - "longitude": -77.5218548 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7299378, - "longitude": -77.524678 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7286366, - "longitude": -77.5248696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7293899, - "longitude": -77.5250734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7314457, - "longitude": -77.5222046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7327448, - "longitude": -77.5196466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7330587, - "longitude": -77.5177664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7320815, - "longitude": -77.5160524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7326046, - "longitude": -77.5168276 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.732839, - "longitude": -77.5171575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7329624, - "longitude": -77.5173989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7331382, - "longitude": -77.5182706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7331298, - "longitude": -77.5184771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7330545, - "longitude": -77.5189492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7125452, - "longitude": -77.5098419 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7099235, - "longitude": -77.5041139 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7109416, - "longitude": -77.503633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.708925, - "longitude": -77.5068852 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7161899, - "longitude": -77.5132689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.715693, - "longitude": -77.5149604 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7162538, - "longitude": -77.5133989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7158982, - "longitude": -77.5157739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.720183, - "longitude": -77.5068418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7213626, - "longitude": -77.5085547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7167804, - "longitude": -77.5035855 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7172027, - "longitude": -77.5040433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7177524, - "longitude": -77.5052067 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7183065, - "longitude": -77.5057641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7189325, - "longitude": -77.5060852 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7194188, - "longitude": -77.5059805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7197697, - "longitude": -77.5057203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7200122, - "longitude": -77.5057214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7201285, - "longitude": -77.5060689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.720184, - "longitude": -77.5062979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7202684, - "longitude": -77.5067136 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7124579, - "longitude": -77.5026178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7138599, - "longitude": -77.5024554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7154819, - "longitude": -77.5025553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.728057, - "longitude": -77.5117709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7253329, - "longitude": -77.5097964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7262667, - "longitude": -77.5106987 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7232335, - "longitude": -77.5083666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7226037, - "longitude": -77.5076678 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7228726, - "longitude": -77.5079937 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7229385, - "longitude": -77.5081091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7308743, - "longitude": -77.51436 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7300185, - "longitude": -77.5134158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7305939, - "longitude": -77.5139496 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.7303449, - "longitude": -77.5137323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9184228, - "longitude": -77.4648719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9183051, - "longitude": -77.4646444 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9181848, - "longitude": -77.4639619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9183025, - "longitude": -77.4643594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9183626, - "longitude": -77.464783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9183077, - "longitude": -77.4644457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9173234, - "longitude": -77.4603634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.917359, - "longitude": -77.4605872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9173213, - "longitude": -77.4567112 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9172232, - "longitude": -77.4567602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9175619, - "longitude": -77.4566589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9148521, - "longitude": -77.4475793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9148899, - "longitude": -77.4475056 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9171469, - "longitude": -77.4457896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9175443, - "longitude": -77.4453712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9144247, - "longitude": -77.4450565 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.91427, - "longitude": -77.447133 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9148728, - "longitude": -77.4475702 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9174188, - "longitude": -77.4454105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9145301, - "longitude": -77.4448709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9142966, - "longitude": -77.4466631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9147787, - "longitude": -77.4476114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9173012, - "longitude": -77.4455334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.917743, - "longitude": -77.4453373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9145824, - "longitude": -77.4447035 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9180986, - "longitude": -77.4450862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9149214, - "longitude": -77.4461949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9146831, - "longitude": -77.4471297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9168558, - "longitude": -77.4459983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9183771, - "longitude": -77.4457979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9181495, - "longitude": -77.4452474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9147268, - "longitude": -77.4457555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9145778, - "longitude": -77.4454194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.917686, - "longitude": -77.438389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9154923, - "longitude": -77.4408704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166898, - "longitude": -77.4380674 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9169251, - "longitude": -77.4382583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9147837, - "longitude": -77.4417568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9172598, - "longitude": -77.4380491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9162715, - "longitude": -77.4396545 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9145562, - "longitude": -77.4434119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9145484, - "longitude": -77.4423424 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9180076, - "longitude": -77.4383603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9184521, - "longitude": -77.4390035 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9158949, - "longitude": -77.4403579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9178638, - "longitude": -77.4384989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9155341, - "longitude": -77.4407632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166715, - "longitude": -77.4380256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.917265, - "longitude": -77.4382662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9148909, - "longitude": -77.4416182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9170506, - "longitude": -77.4380413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9162741, - "longitude": -77.4394114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.914585, - "longitude": -77.4421856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9177357, - "longitude": -77.4381799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9161146, - "longitude": -77.4400441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9182978, - "longitude": -77.4385956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9180311, - "longitude": -77.4386348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9156021, - "longitude": -77.4406507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166715, - "longitude": -77.4379602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9175291, - "longitude": -77.4383367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9154583, - "longitude": -77.4409331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9168127, - "longitude": -77.4380596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9162558, - "longitude": -77.4383106 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9146634, - "longitude": -77.4419607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.917503, - "longitude": -77.4380988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.916227, - "longitude": -77.4398611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9145405, - "longitude": -77.4427007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9181802, - "longitude": -77.4384989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9182665, - "longitude": -77.4388309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9157224, - "longitude": -77.4405331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166349, - "longitude": -77.4375916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9184225, - "longitude": -77.438697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9162568, - "longitude": -77.4383728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9155214, - "longitude": -77.4407958 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9163667, - "longitude": -77.4351742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9173407, - "longitude": -77.431101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9165864, - "longitude": -77.4355603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9164385, - "longitude": -77.4327243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166578, - "longitude": -77.4358094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9163083, - "longitude": -77.4345299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9164803, - "longitude": -77.4363641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9175059, - "longitude": -77.4309399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9164996, - "longitude": -77.4354567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166632, - "longitude": -77.4325282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9169696, - "longitude": -77.4317438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166755, - "longitude": -77.4357138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9163077, - "longitude": -77.4332309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9165033, - "longitude": -77.4361814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9164229, - "longitude": -77.4353337 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9167735, - "longitude": -77.432185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.917121, - "longitude": -77.4314503 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9166625, - "longitude": -77.435656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9163322, - "longitude": -77.4329694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.91654, - "longitude": -77.4360524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9163434, - "longitude": -77.4350243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9164846, - "longitude": -77.4364776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9179556, - "longitude": -77.4306115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9180769, - "longitude": -77.4305781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9177674, - "longitude": -77.4307287 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9178269, - "longitude": -77.4306722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9294813, - "longitude": -77.5184316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290609, - "longitude": -77.517323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9301779, - "longitude": -77.5184964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9295171, - "longitude": -77.518535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9300691, - "longitude": -77.5185508 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290588, - "longitude": -77.5170134 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9309047, - "longitude": -77.5184774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9329244, - "longitude": -77.5184337 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9336376, - "longitude": -77.5183688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9351364, - "longitude": -77.5182933 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9325897, - "longitude": -77.51844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9335833, - "longitude": -77.518396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9321023, - "longitude": -77.5184462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9339347, - "longitude": -77.5183458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9329683, - "longitude": -77.518396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9338719, - "longitude": -77.518373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.937894, - "longitude": -77.5181875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9409134, - "longitude": -77.5181636 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9430929, - "longitude": -77.5184505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9406187, - "longitude": -77.5181455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9441761, - "longitude": -77.5185771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9442783, - "longitude": -77.5185006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9443174, - "longitude": -77.5184128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9443445, - "longitude": -77.5182223 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9444363, - "longitude": -77.5181258 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9440879, - "longitude": -77.5185844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9419674, - "longitude": -77.5182961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9402796, - "longitude": -77.5181264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9399375, - "longitude": -77.5181171 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9392626, - "longitude": -77.5181325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9442397, - "longitude": -77.5185442 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290144, - "longitude": -77.5114096 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290316, - "longitude": -77.5122526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290279, - "longitude": -77.5117367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9291068, - "longitude": -77.5117764 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290014, - "longitude": -77.511007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9291006, - "longitude": -77.51183 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9289275, - "longitude": -77.4996837 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9287331, - "longitude": -77.493305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9288713, - "longitude": -77.4935147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9288866, - "longitude": -77.4936628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9464013, - "longitude": -77.5187518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9457798, - "longitude": -77.5187935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.950981, - "longitude": -77.5163495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9455775, - "longitude": -77.5187863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9475202, - "longitude": -77.5182919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.950748, - "longitude": -77.5165635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9467933, - "longitude": -77.5186398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9462871, - "longitude": -77.5187752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9504658, - "longitude": -77.5167709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9512102, - "longitude": -77.5161078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9450183, - "longitude": -77.518217 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9454794, - "longitude": -77.5187373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.945421, - "longitude": -77.5186864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9452144, - "longitude": -77.5183457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9451247, - "longitude": -77.5182518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9460165, - "longitude": -77.5187977 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9465474, - "longitude": -77.5187172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9500853, - "longitude": -77.5170019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9454022, - "longitude": -77.5186555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9524701, - "longitude": -77.5136451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9521626, - "longitude": -77.5144835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9519652, - "longitude": -77.5149506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9530586, - "longitude": -77.5122416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.951512, - "longitude": -77.5157252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9517394, - "longitude": -77.5153846 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545605, - "longitude": -77.509485 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545198, - "longitude": -77.5095803 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9528428, - "longitude": -77.5126795 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9546983, - "longitude": -77.5082725 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545209, - "longitude": -77.5087085 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545073, - "longitude": -77.508789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545261, - "longitude": -77.5091256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545636, - "longitude": -77.5093415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9545678, - "longitude": -77.5094113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.954549, - "longitude": -77.5092919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9547993, - "longitude": -77.5079991 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9501532, - "longitude": -77.4922285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9500244, - "longitude": -77.4917449 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9506281, - "longitude": -77.4938349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9500929, - "longitude": -77.4920022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9503084, - "longitude": -77.4927536 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9504354, - "longitude": -77.4931831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9532366, - "longitude": -77.5025731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9523699, - "longitude": -77.499723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9533186, - "longitude": -77.5028543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9249135, - "longitude": -77.4869575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9249782, - "longitude": -77.4848589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9249939, - "longitude": -77.4849321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9248187, - "longitude": -77.48437 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9249965, - "longitude": -77.4850184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.924952, - "longitude": -77.4848197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.924836, - "longitude": -77.4844282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9249381, - "longitude": -77.4847728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9229282, - "longitude": -77.4775119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9254854, - "longitude": -77.4868775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.925543, - "longitude": -77.486925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9255377, - "longitude": -77.4868984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9255482, - "longitude": -77.4869507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9254384, - "longitude": -77.4878298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9264288, - "longitude": -77.4894756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9217869, - "longitude": -77.4733717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9206525, - "longitude": -77.4704511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9197615, - "longitude": -77.4681572 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9200397, - "longitude": -77.4561147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9194481, - "longitude": -77.4512867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9194682, - "longitude": -77.4514206 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.920013, - "longitude": -77.4555288 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9200436, - "longitude": -77.45578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9198511, - "longitude": -77.4558016 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9194364, - "longitude": -77.4506175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193981, - "longitude": -77.4484647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9194263, - "longitude": -77.4486879 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9189628, - "longitude": -77.4471584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9194247, - "longitude": -77.4491514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9190364, - "longitude": -77.4473659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9194163, - "longitude": -77.4494744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193544, - "longitude": -77.4482679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.918905, - "longitude": -77.4389966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9192339, - "longitude": -77.4396885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9185696, - "longitude": -77.4388172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193556, - "longitude": -77.4393878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9190116, - "longitude": -77.4395264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193196, - "longitude": -77.4392715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.919145, - "longitude": -77.4396389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193138, - "longitude": -77.4395205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193739, - "longitude": -77.4393331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193095, - "longitude": -77.439299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9193457, - "longitude": -77.4394193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9192889, - "longitude": -77.4395728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9485354, - "longitude": -77.4867043 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9505806, - "longitude": -77.4779397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9505387, - "longitude": -77.4778749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9510805, - "longitude": -77.4780883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9507833, - "longitude": -77.4769337 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.950814, - "longitude": -77.4789904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9520495, - "longitude": -77.4769191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.951467, - "longitude": -77.4769196 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9594815, - "longitude": -77.4768019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9590799, - "longitude": -77.4768228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9615105, - "longitude": -77.4767789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9583791, - "longitude": -77.4769274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9597325, - "longitude": -77.4768354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9596279, - "longitude": -77.4767977 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9593811, - "longitude": -77.4768249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9631964, - "longitude": -77.4767622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9584816, - "longitude": -77.4769295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.959766, - "longitude": -77.4767956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9596446, - "longitude": -77.4768417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9594376, - "longitude": -77.4768438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9584963, - "longitude": -77.4768207 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9602136, - "longitude": -77.4767956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9583791, - "longitude": -77.4768228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9659596, - "longitude": -77.4770655 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9659303, - "longitude": -77.4769504 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9660789, - "longitude": -77.4770634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9677082, - "longitude": -77.477929 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9666349, - "longitude": -77.4767064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9658718, - "longitude": -77.476986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9675179, - "longitude": -77.4777177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9659973, - "longitude": -77.4767141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9686035, - "longitude": -77.4782762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9659743, - "longitude": -77.477122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9659136, - "longitude": -77.4770948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9658362, - "longitude": -77.4767141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9672271, - "longitude": -77.4770525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.965991, - "longitude": -77.47685 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9679302, - "longitude": -77.4781118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9660219, - "longitude": -77.4770953 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9582994, - "longitude": -77.4471967 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.960851, - "longitude": -77.4472925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9643528, - "longitude": -77.4439649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9643927, - "longitude": -77.446408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9619696, - "longitude": -77.4468382 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9639089, - "longitude": -77.4468218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9639774, - "longitude": -77.4464091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9594462, - "longitude": -77.4382339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9595014, - "longitude": -77.4381218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9600998, - "longitude": -77.4379086 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9591641, - "longitude": -77.4392302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.958909, - "longitude": -77.4396671 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9587142, - "longitude": -77.4399753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9591981, - "longitude": -77.4391609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9589613, - "longitude": -77.4395381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9588089, - "longitude": -77.4398806 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9592274, - "longitude": -77.4382493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9591003, - "longitude": -77.4393342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9587298, - "longitude": -77.4399518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9588697, - "longitude": -77.4397934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9586672, - "longitude": -77.44008 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9579131, - "longitude": -77.4422819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9581026, - "longitude": -77.4414897 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9582994, - "longitude": -77.4422903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9585763, - "longitude": -77.4402615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9630461, - "longitude": -77.4385498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9631116, - "longitude": -77.4395849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9637944, - "longitude": -77.4424998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9582994, - "longitude": -77.4424928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9630905, - "longitude": -77.438101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9635504, - "longitude": -77.4416259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9592197, - "longitude": -77.4390052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9592246, - "longitude": -77.4388484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9592255, - "longitude": -77.4384112 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.959226, - "longitude": -77.4383728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9630528, - "longitude": -77.4390626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.963042, - "longitude": -77.4387985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9630726, - "longitude": -77.4393324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9636661, - "longitude": -77.442071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9645203, - "longitude": -77.4451571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9671059, - "longitude": -77.4452203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9702849, - "longitude": -77.4453739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9701328, - "longitude": -77.4449646 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9693857, - "longitude": -77.4449604 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9688641, - "longitude": -77.4451759 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9687113, - "longitude": -77.4452229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9670351, - "longitude": -77.4452667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.967029, - "longitude": -77.4448672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9670645, - "longitude": -77.4446872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9671016, - "longitude": -77.443739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9676909, - "longitude": -77.4398748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9689612, - "longitude": -77.443293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9682359, - "longitude": -77.4409935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9682015, - "longitude": -77.4410191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9690268, - "longitude": -77.4426467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9690719, - "longitude": -77.4429978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9690018, - "longitude": -77.4432072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.967066, - "longitude": -77.4432209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9671602, - "longitude": -77.4431866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9672342, - "longitude": -77.4432918 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9673593, - "longitude": -77.4433763 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9673947, - "longitude": -77.4433124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9684798, - "longitude": -77.4415729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9683107, - "longitude": -77.4410446 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9683419, - "longitude": -77.4409946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9678466, - "longitude": -77.4402273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9674788, - "longitude": -77.4396131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9671643, - "longitude": -77.4387935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9669701, - "longitude": -77.4378219 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9236598, - "longitude": -77.4303793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9217229, - "longitude": -77.4304693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9213045, - "longitude": -77.4305634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.920746, - "longitude": -77.4305048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.92444, - "longitude": -77.4304442 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.92216, - "longitude": -77.4304233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9214217, - "longitude": -77.4305592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9210702, - "longitude": -77.4305007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9245195, - "longitude": -77.4303689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9187024, - "longitude": -77.4305634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9228922, - "longitude": -77.4304003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9214907, - "longitude": -77.4304797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9212857, - "longitude": -77.4305467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9247873, - "longitude": -77.4303626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9199093, - "longitude": -77.4305341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9299497, - "longitude": -77.4321155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9292638, - "longitude": -77.431889 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9307781, - "longitude": -77.4309588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.928931, - "longitude": -77.4312913 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9305982, - "longitude": -77.4315842 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9300627, - "longitude": -77.4320904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9290042, - "longitude": -77.4314608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.930686, - "longitude": -77.4313708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.93032, - "longitude": -77.4319356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9296778, - "longitude": -77.4321113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9291277, - "longitude": -77.431693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9307446, - "longitude": -77.4311407 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9287762, - "longitude": -77.4309588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9304768, - "longitude": -77.4317934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9286947, - "longitude": -77.4307998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9297869, - "longitude": -77.4321086 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9294607, - "longitude": -77.4320322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9282491, - "longitude": -77.4303982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.930914, - "longitude": -77.4303166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9261344, - "longitude": -77.4303291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9283558, - "longitude": -77.4304463 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9309977, - "longitude": -77.4302727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9307948, - "longitude": -77.4306283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9277806, - "longitude": -77.4303019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9285524, - "longitude": -77.4306283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9316336, - "longitude": -77.4302643 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.92804, - "longitude": -77.4303333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.930822, - "longitude": -77.4304756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9278057, - "longitude": -77.4303417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9272805, - "longitude": -77.4303102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.93219, - "longitude": -77.4302476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9355016, - "longitude": -77.4301694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9354217, - "longitude": -77.4300656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9330664, - "longitude": -77.4302413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9368505, - "longitude": -77.4301365 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9362986, - "longitude": -77.4301338 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9354468, - "longitude": -77.4300635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9342504, - "longitude": -77.430212 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9368473, - "longitude": -77.4300283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9381452, - "longitude": -77.430099 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9363028, - "longitude": -77.4300167 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9354828, - "longitude": -77.4302091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.935451, - "longitude": -77.430189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9353736, - "longitude": -77.4301702 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.933514, - "longitude": -77.4302302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.944182, - "longitude": -77.4299777 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9412682, - "longitude": -77.4299924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.942563, - "longitude": -77.4300154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9402307, - "longitude": -77.4300719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9433411, - "longitude": -77.4300342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9402516, - "longitude": -77.4300175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9487399, - "longitude": -77.4314189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9484094, - "longitude": -77.4310905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9498674, - "longitude": -77.4313374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9493821, - "longitude": -77.4316386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9488947, - "longitude": -77.4314231 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9484826, - "longitude": -77.4311742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9500786, - "longitude": -77.4311094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9483467, - "longitude": -77.4308563 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9495473, - "longitude": -77.4316177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9489763, - "longitude": -77.4314733 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9485558, - "longitude": -77.431193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9503087, - "longitude": -77.4308458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9483969, - "longitude": -77.4309588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9497084, - "longitude": -77.431534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.949152, - "longitude": -77.4315716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9491381, - "longitude": -77.4315638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9507082, - "longitude": -77.4303312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9504489, - "longitude": -77.4306994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9469975, - "longitude": -77.4300698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9482797, - "longitude": -77.4307224 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9480852, - "longitude": -77.4304149 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9508547, - "longitude": -77.4302204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9505702, - "longitude": -77.4305237 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9478321, - "longitude": -77.4300614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9481103, - "longitude": -77.4305216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9510325, - "longitude": -77.4301388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9479011, - "longitude": -77.4300321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9458909, - "longitude": -77.430007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9506539, - "longitude": -77.4303919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9478697, - "longitude": -77.4300342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9466774, - "longitude": -77.4300321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9458868, - "longitude": -77.4299798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9482337, - "longitude": -77.4307433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.95119, - "longitude": -77.4300968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9480203, - "longitude": -77.4302727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9480574, - "longitude": -77.430354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9464004, - "longitude": -77.4300233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9566108, - "longitude": -77.4300084 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.952618, - "longitude": -77.4300466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9518136, - "longitude": -77.4298701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9513608, - "longitude": -77.430094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9568148, - "longitude": -77.4299985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.951865, - "longitude": -77.4298669 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9571465, - "longitude": -77.4299126 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9557269, - "longitude": -77.4300189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.951902, - "longitude": -77.4299462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9516697, - "longitude": -77.4300916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9574771, - "longitude": -77.4298405 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9518833, - "longitude": -77.4300621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9616546, - "longitude": -77.4316911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9618167, - "longitude": -77.4324677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.961036, - "longitude": -77.4366084 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9612703, - "longitude": -77.4311499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9618037, - "longitude": -77.4321748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9614362, - "longitude": -77.4360027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9618612, - "longitude": -77.435621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9612833, - "longitude": -77.4310348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9617252, - "longitude": -77.4319081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9616889, - "longitude": -77.4359685 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.961869, - "longitude": -77.4351163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9617587, - "longitude": -77.4359799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.961817, - "longitude": -77.4358169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9631961, - "longitude": -77.4369628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9635611, - "longitude": -77.4315129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.963169, - "longitude": -77.4327469 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9605087, - "longitude": -77.4373372 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9613795, - "longitude": -77.4361269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9608354, - "longitude": -77.4309298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9606894, - "longitude": -77.4309567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9605184, - "longitude": -77.430895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9632108, - "longitude": -77.4366191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9632056, - "longitude": -77.4367936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9593273, - "longitude": -77.4300255 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9610715, - "longitude": -77.4307289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9589883, - "longitude": -77.4297741 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9610375, - "longitude": -77.4307132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9583295, - "longitude": -77.4295506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9580849, - "longitude": -77.429692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9610173, - "longitude": -77.4306864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9655423, - "longitude": -77.4316545 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9655535, - "longitude": -77.436179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9668036, - "longitude": -77.437285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9661148, - "longitude": -77.4361942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9663983, - "longitude": -77.4362019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9666145, - "longitude": -77.4362078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9667572, - "longitude": -77.4368877 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9667074, - "longitude": -77.4364445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9736708, - "longitude": -77.476698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9725035, - "longitude": -77.4782241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.974862, - "longitude": -77.4752808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9748776, - "longitude": -77.4764266 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.976138, - "longitude": -77.475212 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9762864, - "longitude": -77.4752053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9741915, - "longitude": -77.4764348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9761338, - "longitude": -77.4752703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.976205, - "longitude": -77.475209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.976289, - "longitude": -77.4752704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.983339, - "longitude": -77.474004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9825429, - "longitude": -77.4747971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9780866, - "longitude": -77.4752551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9827422, - "longitude": -77.474632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9780795, - "longitude": -77.4750364 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9808343, - "longitude": -77.4742771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9831639, - "longitude": -77.4741934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.980644, - "longitude": -77.4750009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9808803, - "longitude": -77.4741788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9838631, - "longitude": -77.4734147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9846018, - "longitude": -77.4724865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9860273, - "longitude": -77.4706542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9850541, - "longitude": -77.4719052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9897748, - "longitude": -77.4644221 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9879078, - "longitude": -77.4678209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9900445, - "longitude": -77.4635831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.989897, - "longitude": -77.4641062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9888064, - "longitude": -77.4662653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9873411, - "longitude": -77.4687524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9899523, - "longitude": -77.4638569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9899221, - "longitude": -77.4639606 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9890378, - "longitude": -77.4658468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9874752, - "longitude": -77.4685358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9868425, - "longitude": -77.4695295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.987226, - "longitude": -77.4682849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9870947, - "longitude": -77.4684996 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9871616, - "longitude": -77.4683957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9891337, - "longitude": -77.4655974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9890795, - "longitude": -77.4656819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9892473, - "longitude": -77.4654472 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9775208, - "longitude": -77.4521736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9774391, - "longitude": -77.4507058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.977437, - "longitude": -77.4519333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9774424, - "longitude": -77.4512801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9774537, - "longitude": -77.4521193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9799085, - "longitude": -77.4524242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9796223, - "longitude": -77.4521714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9807201, - "longitude": -77.4530668 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9841004, - "longitude": -77.4549728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9799487, - "longitude": -77.4524928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9803051, - "longitude": -77.4527622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9818915, - "longitude": -77.4537378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9799085, - "longitude": -77.452451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9799704, - "longitude": -77.4524878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9811552, - "longitude": -77.4533462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9788571, - "longitude": -77.4521934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9776194, - "longitude": -77.4522019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9782002, - "longitude": -77.4522293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9754852, - "longitude": -77.4496222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9727796, - "longitude": -77.4484423 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9774339, - "longitude": -77.4499829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9731692, - "longitude": -77.4494098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9731378, - "longitude": -77.4494098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.973372, - "longitude": -77.4496616 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9734523, - "longitude": -77.4496919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9714254, - "longitude": -77.4454535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9713998, - "longitude": -77.4465384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.972009, - "longitude": -77.4465766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9731804, - "longitude": -77.4484342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.973212, - "longitude": -77.4471748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9736003, - "longitude": -77.4496852 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9727946, - "longitude": -77.4467033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9732078, - "longitude": -77.4473432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9759705, - "longitude": -77.4497065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9720513, - "longitude": -77.4467027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9713305, - "longitude": -77.4457993 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9714671, - "longitude": -77.445659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.971145, - "longitude": -77.4453566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.973057, - "longitude": -77.4491915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9749474, - "longitude": -77.4496704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9745845, - "longitude": -77.4496382 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9744261, - "longitude": -77.4496852 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9746565, - "longitude": -77.4496315 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9753821, - "longitude": -77.4496181 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9756897, - "longitude": -77.449649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9766113, - "longitude": -77.4498394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9732959, - "longitude": -77.4494518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9733042, - "longitude": -77.4495457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9881349, - "longitude": -77.4600197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9886821, - "longitude": -77.4602674 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9872229, - "longitude": -77.4575967 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9870757, - "longitude": -77.4573758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.990046, - "longitude": -77.4611493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.987561, - "longitude": -77.4589772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9901347, - "longitude": -77.4629114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9881349, - "longitude": -77.4599528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9883642, - "longitude": -77.4600817 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9871493, - "longitude": -77.4574109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9870506, - "longitude": -77.4573172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9898836, - "longitude": -77.460915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9874488, - "longitude": -77.4584852 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9901748, - "longitude": -77.4615693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9878722, - "longitude": -77.4596432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9882136, - "longitude": -77.4600783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9870506, - "longitude": -77.4572218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9892645, - "longitude": -77.4605803 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9873719, - "longitude": -77.4581087 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9901547, - "longitude": -77.461417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9877149, - "longitude": -77.4593738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9901614, - "longitude": -77.463236 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9859913, - "longitude": -77.456027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9869033, - "longitude": -77.4569357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9857219, - "longitude": -77.4559433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9858089, - "longitude": -77.4559266 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.986664, - "longitude": -77.4566144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9857236, - "longitude": -77.4558881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9857838, - "longitude": -77.4559802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9863678, - "longitude": -77.4563015 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.9853722, - "longitude": -77.4556974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8532972, - "longitude": -77.3736914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8532053, - "longitude": -77.3733669 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8534077, - "longitude": -77.373155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8540812, - "longitude": -77.3738626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8539851, - "longitude": -77.3737339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8536885, - "longitude": -77.3732028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8536676, - "longitude": -77.3730097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8536258, - "longitude": -77.3728488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8534462, - "longitude": -77.3729239 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8535005, - "longitude": -77.3731706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.853037, - "longitude": -77.3740418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8531481, - "longitude": -77.3743621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1413392, - "longitude": -78.1467775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.140935, - "longitude": -78.1461355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1461796, - "longitude": -78.1499078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1457095, - "longitude": -78.1492729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1451478, - "longitude": -78.1496148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1433148, - "longitude": -78.1494561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1415445, - "longitude": -78.147144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1430719, - "longitude": -78.1495863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1430907, - "longitude": -78.1495944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1447855, - "longitude": -78.1490994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1450247, - "longitude": -78.1495017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1443133, - "longitude": -78.1488848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1440616, - "longitude": -78.148925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1431172, - "longitude": -78.1495902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1427843, - "longitude": -78.1491611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1441157, - "longitude": -78.1489089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1439846, - "longitude": -78.1489572 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1446342, - "longitude": -78.1489775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1445754, - "longitude": -78.1489465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1445094, - "longitude": -78.1489158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1443757, - "longitude": -78.1488875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1449623, - "longitude": -78.1493595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1430464, - "longitude": -78.1495661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1439061, - "longitude": -78.1490016 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1447106, - "longitude": -78.1490323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1450962, - "longitude": -78.1496512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1448375, - "longitude": -78.1491503 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1424036, - "longitude": -78.1485415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1431484, - "longitude": -78.1495768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1449249, - "longitude": -78.1492791 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1444407, - "longitude": -78.1488997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1441802, - "longitude": -78.1488955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.144888, - "longitude": -78.1492162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1489668, - "longitude": -78.1538761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1512106, - "longitude": -78.1517011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1488113, - "longitude": -78.1539731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1496479, - "longitude": -78.1563138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1485333, - "longitude": -78.1533517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1479566, - "longitude": -78.1536534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1537116, - "longitude": -78.1539905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1526253, - "longitude": -78.1518245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1519744, - "longitude": -78.1576665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1509889, - "longitude": -78.1553826 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1540916, - "longitude": -78.1537813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1540585, - "longitude": -78.1549896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1530851, - "longitude": -78.1554617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1526404, - "longitude": -78.1517869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1493332, - "longitude": -78.1486517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1522031, - "longitude": -78.1513605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1521766, - "longitude": -78.1513003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1505383, - "longitude": -78.1507949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1499068, - "longitude": -78.1479443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1528583, - "longitude": -78.1512425 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1520539, - "longitude": -78.1508738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1491256, - "longitude": -78.1488998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1498303, - "longitude": -78.1498438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1493494, - "longitude": -78.1492014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1503102, - "longitude": -78.1474468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1488077, - "longitude": -78.1452653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1495489, - "longitude": -78.1483856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1488275, - "longitude": -78.1453022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1497283, - "longitude": -78.1465189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1501497, - "longitude": -78.1471545 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1488325, - "longitude": -78.1453659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1490677, - "longitude": -78.1456941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1498152, - "longitude": -78.1466381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1499813, - "longitude": -78.1468819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1498961, - "longitude": -78.1467528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1500575, - "longitude": -78.1470052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1501772, - "longitude": -78.1472091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1494297, - "longitude": -78.1461245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1496281, - "longitude": -78.1463866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1492465, - "longitude": -78.1459179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1344691, - "longitude": -78.1359834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1344233, - "longitude": -78.1328774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1346964, - "longitude": -78.1334394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1345148, - "longitude": -78.1354872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1348248, - "longitude": -78.1367317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1340301, - "longitude": -78.1321666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1347687, - "longitude": -78.1366271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1342199, - "longitude": -78.1324926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1398386, - "longitude": -78.1443653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1381353, - "longitude": -78.1417704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.140184, - "longitude": -78.144942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.137648, - "longitude": -78.1410742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1365599, - "longitude": -78.1395507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.138322, - "longitude": -78.1345779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1381936, - "longitude": -78.1345177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1380828, - "longitude": -78.1343499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1351816, - "longitude": -78.1346719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1381645, - "longitude": -78.1344882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1392983, - "longitude": -78.1352043 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1375897, - "longitude": -78.1332931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1348935, - "longitude": -78.1368363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1350724, - "longitude": -78.1347388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1372652, - "longitude": -78.1327164 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1358499, - "longitude": -78.1385487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1350974, - "longitude": -78.1372547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1385375, - "longitude": -78.1347116 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.13827, - "longitude": -78.1345538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1404607, - "longitude": -78.1359646 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.135594, - "longitude": -78.1381717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1381286, - "longitude": -78.1344384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1379497, - "longitude": -78.1339529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1351166, - "longitude": -78.1343058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1350183, - "longitude": -78.1347871 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.135397, - "longitude": -78.1378314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1352553, - "longitude": -78.1346284 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1338678, - "longitude": -78.1319225 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1337014, - "longitude": -78.1316865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1333378, - "longitude": -78.1311649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1328983, - "longitude": -78.1306431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1331667, - "longitude": -78.1309542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1345878, - "longitude": -78.1290419 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1337991, - "longitude": -78.1283766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1327261, - "longitude": -78.1304488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.132838, - "longitude": -78.1305751 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1349872, - "longitude": -78.1285675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1367264, - "longitude": -78.1317267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1451643, - "longitude": -78.1404332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1442269, - "longitude": -78.1415795 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1475075, - "longitude": -78.1435304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.144962, - "longitude": -78.1401385 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1465349, - "longitude": -78.1446953 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1434207, - "longitude": -78.1380455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1432524, - "longitude": -78.1377939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.1417109, - "longitude": -78.136788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2321256, - "longitude": -77.7531563 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2317485, - "longitude": -77.752883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.232221, - "longitude": -77.750551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2330837, - "longitude": -77.7513787 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2296284, - "longitude": -77.7514934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2305201, - "longitude": -77.7500848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2311993, - "longitude": -77.7497105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2312154, - "longitude": -77.7494849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2301308, - "longitude": -77.7505178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2312655, - "longitude": -77.7487856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2337129, - "longitude": -77.7490636 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2336922, - "longitude": -77.7492508 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2346737, - "longitude": -77.749502 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.235477, - "longitude": -77.7494967 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2360029, - "longitude": -77.7493042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2371972, - "longitude": -77.7493103 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2368918, - "longitude": -77.7501775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.236347, - "longitude": -77.7497773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2337635, - "longitude": -77.7502867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2351248, - "longitude": -77.7500684 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2566292, - "longitude": -77.654139 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2566117, - "longitude": -77.6577074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2570462, - "longitude": -77.6578129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2578667, - "longitude": -77.6548461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2584926, - "longitude": -77.6548514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2576566, - "longitude": -77.653968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2570269, - "longitude": -77.6539313 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2569359, - "longitude": -77.6541448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.256614, - "longitude": -77.6572532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2566246, - "longitude": -77.6550863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2577074, - "longitude": -77.6554223 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2570925, - "longitude": -77.6576454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2591124, - "longitude": -77.653123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2584785, - "longitude": -77.6529896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2588905, - "longitude": -77.6503862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2590041, - "longitude": -77.6531002 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2592017, - "longitude": -77.6504666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2584034, - "longitude": -77.6518688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2586785, - "longitude": -77.6530317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.260523, - "longitude": -77.6543734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2606472, - "longitude": -77.6538054 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2633004, - "longitude": -77.6544969 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2657009, - "longitude": -77.6546036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2614605, - "longitude": -77.6544151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.261865, - "longitude": -77.6544331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2653256, - "longitude": -77.6545869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2650802, - "longitude": -77.654576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.263375, - "longitude": -77.6545002 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2609111, - "longitude": -77.6527644 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2614691, - "longitude": -77.6527805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2637711, - "longitude": -77.6529751 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2637769, - "longitude": -77.6510726 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2615246, - "longitude": -77.6509745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2608626, - "longitude": -77.6529557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2594095, - "longitude": -77.6506455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2637715, - "longitude": -77.6528327 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2637758, - "longitude": -77.6514328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2637377, - "longitude": -77.6510709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2618542, - "longitude": -77.6509889 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.269836, - "longitude": -77.6538718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2674283, - "longitude": -77.653625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2674402, - "longitude": -77.6546809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2660274, - "longitude": -77.6546181 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2659936, - "longitude": -77.6546166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2690438, - "longitude": -77.6537906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2674548, - "longitude": -77.6531573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2674561, - "longitude": -77.6526105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.2698005, - "longitude": -77.6526241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0679413, - "longitude": -77.5549546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0692754, - "longitude": -77.5522447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.068004, - "longitude": -77.5520187 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0654956, - "longitude": -77.5538922 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0686552, - "longitude": -77.5522448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0687223, - "longitude": -77.5522569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0687358, - "longitude": -77.55216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.066221, - "longitude": -77.5521395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0664246, - "longitude": -77.5521047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0669139, - "longitude": -77.5520564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0677318, - "longitude": -77.5520175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0671258, - "longitude": -77.5520504 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0689787, - "longitude": -77.5522046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0686708, - "longitude": -77.5521412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0659591, - "longitude": -77.5521469 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0658404, - "longitude": -77.552796 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0658113, - "longitude": -77.552914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0657592, - "longitude": -77.5530414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0656696, - "longitude": -77.5532117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0686884, - "longitude": -77.5522534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0714739, - "longitude": -77.5524573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0738748, - "longitude": -77.5528569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.075097, - "longitude": -77.5532532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0751179, - "longitude": -77.553156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0752086, - "longitude": -77.5531735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.074417, - "longitude": -77.5529519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0743616, - "longitude": -77.5531226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0742564, - "longitude": -77.5530532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0741138, - "longitude": -77.5533465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0739714, - "longitude": -77.5532825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0739949, - "longitude": -77.5531983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0730586, - "longitude": -77.5527176 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0738655, - "longitude": -77.5531366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0744001, - "longitude": -77.552973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.070971, - "longitude": -77.552389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0703968, - "longitude": -77.552332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.077829, - "longitude": -77.5555202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0794827, - "longitude": -77.5599683 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0778936, - "longitude": -77.5555118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.079809, - "longitude": -77.5560782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0798995, - "longitude": -77.5554233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0799536, - "longitude": -77.5560871 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.077562, - "longitude": -77.5554554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0786238, - "longitude": -77.5557036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0783465, - "longitude": -77.5555654 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0774259, - "longitude": -77.5553982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0779419, - "longitude": -77.5592923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0822816, - "longitude": -77.5611886 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0776882, - "longitude": -77.5555102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0776987, - "longitude": -77.555468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0778438, - "longitude": -77.5554578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0778999, - "longitude": -77.5554857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0778915, - "longitude": -77.5555305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0783116, - "longitude": -77.5557145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0784458, - "longitude": -77.5556131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0798138, - "longitude": -77.555381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.07973, - "longitude": -77.5560435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0869945, - "longitude": -77.5637954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0875822, - "longitude": -77.562439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0849642, - "longitude": -77.5623538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0851074, - "longitude": -77.5631252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0873705, - "longitude": -77.5631051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0861097, - "longitude": -77.5578887 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0837237, - "longitude": -77.5564606 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0859099, - "longitude": -77.5578981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0856495, - "longitude": -77.5578587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0868691, - "longitude": -77.557778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0835082, - "longitude": -77.5575985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0836639, - "longitude": -77.5574832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.086307, - "longitude": -77.5578378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0870424, - "longitude": -77.5586352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0851317, - "longitude": -77.5575616 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0854222, - "longitude": -77.5577707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0841798, - "longitude": -77.5566696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0848053, - "longitude": -77.5572708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0836386, - "longitude": -77.5576602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0838546, - "longitude": -77.5565169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0840185, - "longitude": -77.5565913 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0843163, - "longitude": -77.5567717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0844531, - "longitude": -77.5569119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.08497, - "longitude": -77.5574047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0849403, - "longitude": -77.5574047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0852625, - "longitude": -77.5576716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0855233, - "longitude": -77.5578178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0880465, - "longitude": -77.5605416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0879825, - "longitude": -77.5603732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0873101, - "longitude": -77.5600728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0857846, - "longitude": -77.5578855 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0860052, - "longitude": -77.5578956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0861838, - "longitude": -77.5578734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0867927, - "longitude": -77.5576937 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0874603, - "longitude": -77.5601399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0831006, - "longitude": -77.5615443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0829985, - "longitude": -77.5615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0767403, - "longitude": -77.5535115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.079369, - "longitude": -77.5548579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0769478, - "longitude": -77.5539016 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0791365, - "longitude": -77.5552186 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0792595, - "longitude": -77.5552697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0778365, - "longitude": -77.553864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0766428, - "longitude": -77.5538801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0777262, - "longitude": -77.5542695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0787867, - "longitude": -77.5550711 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0770405, - "longitude": -77.5535619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0762923, - "longitude": -77.5533122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.079891, - "longitude": -77.5550881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0769397, - "longitude": -77.5539292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0787576, - "longitude": -77.5551904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0777098, - "longitude": -77.5543403 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0768418, - "longitude": -77.5539661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0768646, - "longitude": -77.5538942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0778504, - "longitude": -77.5538179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0772621, - "longitude": -77.553547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0770456, - "longitude": -77.553539 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0776817, - "longitude": -77.5544322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0776609, - "longitude": -77.5545093 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0762883, - "longitude": -77.5533271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 39.0762523, - "longitude": -77.5533237 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6896935, - "longitude": -76.9012638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6902106, - "longitude": -76.9002124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6948123, - "longitude": -76.9072094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6952773, - "longitude": -76.906906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6913052, - "longitude": -76.9024733 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6910078, - "longitude": -76.9030351 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.691649, - "longitude": -76.9035519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6917974, - "longitude": -76.903745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.691961, - "longitude": -76.9035038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6923306, - "longitude": -76.9037526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6921931, - "longitude": -76.903875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7008985, - "longitude": -76.9080734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7005136, - "longitude": -76.9110829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6969582, - "longitude": -76.9101602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7003773, - "longitude": -76.9120851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7004355, - "longitude": -76.9115774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6974833, - "longitude": -76.9115617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7005578, - "longitude": -76.9106713 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6994784, - "longitude": -76.9119039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.697668, - "longitude": -76.9111776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6977384, - "longitude": -76.9095822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6977692, - "longitude": -76.9113536 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6976615, - "longitude": -76.9115451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7018132, - "longitude": -76.9002762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7013107, - "longitude": -76.9041185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.701096, - "longitude": -76.9061228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7015899, - "longitude": -76.9017709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6920073, - "longitude": -76.8963091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6944689, - "longitude": -76.8975437 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6927573, - "longitude": -76.8968262 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6946906, - "longitude": -76.8975885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6930556, - "longitude": -76.8988312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6913379, - "longitude": -76.8978859 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.695864, - "longitude": -76.8979451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6935722, - "longitude": -76.8973799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6932454, - "longitude": -76.8989144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6911582, - "longitude": -76.8981387 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6938163, - "longitude": -76.8973546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7023268, - "longitude": -76.8980799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.697796, - "longitude": -76.8984936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6993549, - "longitude": -76.8935029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7025466, - "longitude": -76.8958526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7018595, - "longitude": -76.8991615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6987416, - "longitude": -76.8985186 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6992383, - "longitude": -76.8943853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7027325, - "longitude": -76.8939697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7032687, - "longitude": -76.8970418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6987988, - "longitude": -76.8970345 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7018927, - "longitude": -76.8985431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6993168, - "longitude": -76.8937993 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.702788, - "longitude": -76.8935344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6991799, - "longitude": -76.894924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.700836, - "longitude": -76.8925656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6996721, - "longitude": -76.8929411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7022623, - "longitude": -76.8927171 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7002549, - "longitude": -76.8916141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7028099, - "longitude": -76.8933326 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6994105, - "longitude": -76.893045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7005731, - "longitude": -76.8928123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7007824, - "longitude": -76.8931707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7028371, - "longitude": -76.8898921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7020462, - "longitude": -76.8895273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7023142, - "longitude": -76.8932493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7020201, - "longitude": -76.889741 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7022162, - "longitude": -76.8932328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6693892, - "longitude": -76.5987333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.674178, - "longitude": -76.6052082 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6749826, - "longitude": -76.6062971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6756624, - "longitude": -76.6069838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6763895, - "longitude": -76.6076812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6769273, - "longitude": -76.6081961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6709468, - "longitude": -76.6008362 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.672556, - "longitude": -76.6030302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6731583, - "longitude": -76.6038402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6817049, - "longitude": -76.6113612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6829009, - "longitude": -76.6106209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6835031, - "longitude": -76.6103526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6772629, - "longitude": -76.6085234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6773747, - "longitude": -76.6086736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.677422, - "longitude": -76.6088023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.677478, - "longitude": -76.6091135 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6775597, - "longitude": -76.6095587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.67762, - "longitude": -76.6097572 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6778136, - "longitude": -76.6096928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6778609, - "longitude": -76.6098538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6778566, - "longitude": -76.6099557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.678347, - "longitude": -76.6100147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.678717, - "longitude": -76.6101273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6796807, - "longitude": -76.6105672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6808853, - "longitude": -76.6111466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6815221, - "longitude": -76.6114738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6842345, - "longitude": -76.6099557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.685069, - "longitude": -76.6095158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6856455, - "longitude": -76.6091188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6863962, - "longitude": -76.6086629 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6873555, - "longitude": -76.6095587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6884438, - "longitude": -76.6088238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6895622, - "longitude": -76.6080674 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6898289, - "longitude": -76.6058626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6880825, - "longitude": -76.6039797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.68628, - "longitude": -76.6020593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6880179, - "longitude": -76.6018179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6888439, - "longitude": -76.600922 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6891493, - "longitude": -76.6003158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6894676, - "longitude": -76.5998116 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6910248, - "longitude": -76.6070803 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6905043, - "longitude": -76.5984812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6750708, - "longitude": -76.5966466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6719902, - "longitude": -76.5977838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6818253, - "longitude": -76.5940931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6799582, - "longitude": -76.5948012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6775404, - "longitude": -76.5957239 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6889127, - "longitude": -76.595858 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.687263, - "longitude": -76.5920224 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6839936, - "longitude": -76.5932562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6908656, - "longitude": -76.5979501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6911065, - "longitude": -76.597521 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6904441, - "longitude": -76.5949138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6915969, - "longitude": -76.5942057 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6918421, - "longitude": -76.5929827 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6938014, - "longitude": -76.5925696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6935949, - "longitude": -76.5921941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.694481, - "longitude": -76.5911534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.693724, - "longitude": -76.5895441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6907129, - "longitude": -76.5907457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.778311, - "longitude": -76.4691593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7783818, - "longitude": -76.4716698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7790016, - "longitude": -76.4719595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7797927, - "longitude": -76.4721902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7821782, - "longitude": -76.4748742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7845692, - "longitude": -76.473515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7780876, - "longitude": -76.4620997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7780976, - "longitude": -76.462415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7779673, - "longitude": -76.4590849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7778813, - "longitude": -76.4561452 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7777147, - "longitude": -76.4556823 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7780294, - "longitude": -76.4606406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7751658, - "longitude": -76.4509283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7750755, - "longitude": -76.4506681 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7752173, - "longitude": -76.4507687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7754043, - "longitude": -76.4510775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7770005, - "longitude": -76.4538117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7756673, - "longitude": -76.4487193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7761798, - "longitude": -76.4519543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7756084, - "longitude": -76.4512804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7759607, - "longitude": -76.4526067 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7776751, - "longitude": -76.4425732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7766954, - "longitude": -76.4454808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7774603, - "longitude": -76.4431526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7836988, - "longitude": -76.461177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7837805, - "longitude": -76.4644815 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7834926, - "longitude": -76.4544286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7836215, - "longitude": -76.4586987 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7869984, - "longitude": -76.4503731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7860103, - "longitude": -76.450534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7833551, - "longitude": -76.451049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7874366, - "longitude": -76.4434101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7873936, - "longitude": -76.4443328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7875655, - "longitude": -76.4456739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7905727, - "longitude": -76.4494075 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7890519, - "longitude": -76.4498474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7894644, - "longitude": -76.4453306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7893355, - "longitude": -76.4460494 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7897995, - "longitude": -76.4474978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7902462, - "longitude": -76.4475729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7789813, - "longitude": -76.4384426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7791274, - "longitude": -76.438507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7800383, - "longitude": -76.4356317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7804421, - "longitude": -76.4358248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7818514, - "longitude": -76.4368011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7839051, - "longitude": -76.4385499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7846183, - "longitude": -76.4391829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7857954, - "longitude": -76.4411785 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0121454, - "longitude": -76.5909033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0122568, - "longitude": -76.5915792 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0127623, - "longitude": -76.5914397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0127194, - "longitude": -76.5912037 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0154009, - "longitude": -76.5905063 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0150325, - "longitude": -76.5901523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0133448, - "longitude": -76.5905707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0123931, - "longitude": -76.5908346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0132391, - "longitude": -76.5906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0198468, - "longitude": -76.5893262 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0219712, - "longitude": -76.5887897 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0241298, - "longitude": -76.5882318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0231691, - "longitude": -76.5880412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0186236, - "longitude": -76.5892293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.018794, - "longitude": -76.5891848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0243995, - "longitude": -76.5877196 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0275132, - "longitude": -76.5873413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0289693, - "longitude": -76.5869658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0268315, - "longitude": -76.5870838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0266289, - "longitude": -76.5875741 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0246338, - "longitude": -76.5880992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0283608, - "longitude": -76.5871227 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0263976, - "longitude": -76.5871972 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0278815, - "longitude": -76.5850775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0276245, - "longitude": -76.5847557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0272905, - "longitude": -76.5845304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.026571, - "longitude": -76.5852599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0268056, - "longitude": -76.585022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1293131, - "longitude": -76.6052869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.127613, - "longitude": -76.6041577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1303845, - "longitude": -76.6064456 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1298434, - "longitude": -76.6058099 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1307694, - "longitude": -76.5994263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.132, - "longitude": -76.600353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1326875, - "longitude": -76.6005528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1333697, - "longitude": -76.600526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1349723, - "longitude": -76.6003878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.11932, - "longitude": -76.5006342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1199723, - "longitude": -76.5020558 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.120122, - "longitude": -76.5021952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1201348, - "longitude": -76.5024125 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1216704, - "longitude": -76.5040942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.121895, - "longitude": -76.5045717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.122111, - "longitude": -76.5066343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1216533, - "longitude": -76.5063017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1218458, - "longitude": -76.5059557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1219827, - "longitude": -76.5050813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1210331, - "longitude": -76.5032628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1204278, - "longitude": -76.5026968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1195852, - "longitude": -76.5013664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1192981, - "longitude": -76.4996253 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1201923, - "longitude": -76.4994651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1205363, - "longitude": -76.4993603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1208629, - "longitude": -76.4991444 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1210542, - "longitude": -76.4989533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1217908, - "longitude": -76.4965663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.122777, - "longitude": -76.4945972 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1190462, - "longitude": -76.4997732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1212163, - "longitude": -76.4987582 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1213589, - "longitude": -76.498498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1219716, - "longitude": -76.4972743 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1227267, - "longitude": -76.495802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1218646, - "longitude": -76.4966644 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1219489, - "longitude": -76.4967579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1219975, - "longitude": -76.4967905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1220494, - "longitude": -76.4967661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1227074, - "longitude": -76.4954285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1228533, - "longitude": -76.4955586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1228495, - "longitude": -76.4956973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1227807, - "longitude": -76.4957897 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1228249, - "longitude": -76.4957404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1235353, - "longitude": -76.5077662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1318485, - "longitude": -76.5071244 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1340321, - "longitude": -76.5087207 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1344855, - "longitude": -76.5077968 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1345794, - "longitude": -76.5077846 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1347156, - "longitude": -76.5076261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1348648, - "longitude": -76.5073278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1319376, - "longitude": -76.5071001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1260414, - "longitude": -76.5026833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1244873, - "longitude": -76.5058807 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.124955, - "longitude": -76.5049183 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1241217, - "longitude": -76.5066048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1296973, - "longitude": -76.5055633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.133098, - "longitude": -76.5033491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1336284, - "longitude": -76.502252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1349489, - "longitude": -76.5009566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1331401, - "longitude": -76.5049035 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1334366, - "longitude": -76.5041914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1332334, - "longitude": -76.5034694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1333689, - "longitude": -76.5037455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1343677, - "longitude": -76.5021104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1328151, - "longitude": -76.505558 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1308905, - "longitude": -76.5063465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.13048, - "longitude": -76.5060515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1304073, - "longitude": -76.5061105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.132753, - "longitude": -76.50568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1351505, - "longitude": -76.5011691 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1234131, - "longitude": -76.493327 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1258987, - "longitude": -76.4883679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1248979, - "longitude": -76.4903474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1254201, - "longitude": -76.4892853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1281642, - "longitude": -76.4838406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.127995, - "longitude": -76.4841813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1272656, - "longitude": -76.4856088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1274472, - "longitude": -76.4852658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1266042, - "longitude": -76.486956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1301513, - "longitude": -76.4849164 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1302642, - "longitude": -76.4846899 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1313227, - "longitude": -76.4825844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1304567, - "longitude": -76.4843117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.130054, - "longitude": -76.4851847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1301869, - "longitude": -76.4849449 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1348423, - "longitude": -76.4762207 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.13424, - "longitude": -76.4774133 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.134266, - "longitude": -76.4774316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1336871, - "longitude": -76.4785664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1329551, - "longitude": -76.4800268 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1326776, - "longitude": -76.480033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1326554, - "longitude": -76.4799344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1329241, - "longitude": -76.4800275 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0638258, - "longitude": -76.3670956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0663551, - "longitude": -76.3694299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0665035, - "longitude": -76.3698912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0667177, - "longitude": -76.3702699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0668825, - "longitude": -76.3705797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0672561, - "longitude": -76.3708895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0675308, - "longitude": -76.3708964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0678054, - "longitude": -76.3708689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0680362, - "longitude": -76.3708689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0681515, - "longitude": -76.3709584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0683548, - "longitude": -76.3711374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0685581, - "longitude": -76.3713714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0687558, - "longitude": -76.3715298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0689536, - "longitude": -76.3716156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0692372, - "longitude": -76.3716749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0696901, - "longitude": -76.3717637 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0699461, - "longitude": -76.3717835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0701194, - "longitude": -76.3718526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0702691, - "longitude": -76.3719957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.070407, - "longitude": -76.3721191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0647282, - "longitude": -76.3656562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0655297, - "longitude": -76.3647586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0640604, - "longitude": -76.3676044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0639883, - "longitude": -76.3670081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0639498, - "longitude": -76.3667692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0639498, - "longitude": -76.3664401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0640398, - "longitude": -76.3661291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0642518, - "longitude": -76.3659646 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0645011, - "longitude": -76.3658144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0651321, - "longitude": -76.3652726 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0653183, - "longitude": -76.3651817 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0654161, - "longitude": -76.3650077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0656843, - "longitude": -76.3645411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0657727, - "longitude": -76.3643315 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0658105, - "longitude": -76.36394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0658957, - "longitude": -76.3631808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0658799, - "longitude": -76.3627893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0658263, - "longitude": -76.3626984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0657222, - "longitude": -76.3626114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0656748, - "longitude": -76.3625758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0642115, - "longitude": -76.3680496 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0644818, - "longitude": -76.3681631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0648389, - "longitude": -76.368232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0652509, - "longitude": -76.3681562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0655695, - "longitude": -76.3679635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0658607, - "longitude": -76.3679497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0661903, - "longitude": -76.3681425 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0663332, - "longitude": -76.3684454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0663606, - "longitude": -76.3689273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0641572, - "longitude": -76.366012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0646193, - "longitude": -76.3657321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0657545, - "longitude": -76.3626384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0639346, - "longitude": -76.3666089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.064095, - "longitude": -76.3660551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0639854, - "longitude": -76.3663173 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0759693, - "longitude": -76.3825739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0755456, - "longitude": -76.3823272 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.075856, - "longitude": -76.3873883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0757662, - "longitude": -76.3866104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0755094, - "longitude": -76.3865568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0769688, - "longitude": -76.3835259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0765751, - "longitude": -76.3833113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0762327, - "longitude": -76.3831182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0758175, - "longitude": -76.3829251 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0751969, - "longitude": -76.3826139 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0750086, - "longitude": -76.3825227 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0746149, - "longitude": -76.3824155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0743409, - "longitude": -76.3823618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740798, - "longitude": -76.3823296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0738915, - "longitude": -76.3823243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0735962, - "longitude": -76.3823404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.073211, - "longitude": -76.382394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0728386, - "longitude": -76.3824798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0725861, - "longitude": -76.3825657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0718799, - "longitude": -76.38469 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0735363, - "longitude": -76.3855376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740156, - "longitude": -76.3857843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0738487, - "longitude": -76.3862778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0741141, - "longitude": -76.386412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0741098, - "longitude": -76.3869269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0743623, - "longitude": -76.3869323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0743623, - "longitude": -76.3865568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0747989, - "longitude": -76.3867714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0749701, - "longitude": -76.3862617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0723112, - "longitude": -76.3833926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0744413, - "longitude": -76.3819195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0732524, - "longitude": -76.3807331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0732537, - "longitude": -76.380608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0739068, - "longitude": -76.3785705 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0730728, - "longitude": -76.3807368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0739919, - "longitude": -76.376834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0750705, - "longitude": -76.3821072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0737675, - "longitude": -76.3811613 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0731586, - "longitude": -76.3819688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740329, - "longitude": -76.3761887 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740182, - "longitude": -76.3811822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740722, - "longitude": -76.381192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0733433, - "longitude": -76.381901 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736878, - "longitude": -76.3816306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0737414, - "longitude": -76.3814607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740098, - "longitude": -76.3811807 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740023, - "longitude": -76.3811793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0739194, - "longitude": -76.3811706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0738435, - "longitude": -76.381165 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0734838, - "longitude": -76.3818359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0735737, - "longitude": -76.3817794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736419, - "longitude": -76.3817073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.073722, - "longitude": -76.3815518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.077112, - "longitude": -76.3831909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0782333, - "longitude": -76.3838131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0789823, - "longitude": -76.3834591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0786816, - "longitude": -76.3826732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0792444, - "longitude": -76.3822934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.077831, - "longitude": -76.38362 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0788742, - "longitude": -76.382582 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0790732, - "longitude": -76.3824479 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0777478, - "longitude": -76.386471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0776493, - "longitude": -76.3857038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0776964, - "longitude": -76.386074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0776065, - "longitude": -76.3855429 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0772599, - "longitude": -76.3842072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801034, - "longitude": -76.3795779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0795719, - "longitude": -76.3819394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0798712, - "longitude": -76.3814369 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800406, - "longitude": -76.3809697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801261, - "longitude": -76.3802324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801255, - "longitude": -76.3796865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801025, - "longitude": -76.3806079 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0799698, - "longitude": -76.3812141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0797238, - "longitude": -76.3816995 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.079422, - "longitude": -76.3821233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801415, - "longitude": -76.3794608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801068, - "longitude": -76.3795072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0805528, - "longitude": -76.3795443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0806147, - "longitude": -76.3790736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800326, - "longitude": -76.3783708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800155, - "longitude": -76.3775286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800027, - "longitude": -76.3770995 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800241, - "longitude": -76.376783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801268, - "longitude": -76.3763753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0802295, - "longitude": -76.3761339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0803964, - "longitude": -76.3758549 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800981, - "longitude": -76.3796837 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0731299, - "longitude": -76.3721064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0705803, - "longitude": -76.3721537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0707929, - "longitude": -76.3721241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0712931, - "longitude": -76.3720698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0715491, - "longitude": -76.3720254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0716752, - "longitude": -76.3719414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0717855, - "longitude": -76.3717094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0718445, - "longitude": -76.3714626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0719154, - "longitude": -76.371275 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0720139, - "longitude": -76.3711418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.072136, - "longitude": -76.3711121 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0723802, - "longitude": -76.3712059 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0725732, - "longitude": -76.3715416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0727662, - "longitude": -76.3717934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0732455, - "longitude": -76.37216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0733718, - "longitude": -76.3720179 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0734124, - "longitude": -76.3716692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0734788, - "longitude": -76.3716075 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0735708, - "longitude": -76.3716638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736842, - "longitude": -76.3719374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0742128, - "longitude": -76.3726562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0806403, - "longitude": -76.3756028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0809528, - "longitude": -76.3753882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.082793, - "longitude": -76.3749001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0834777, - "longitude": -76.3745567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0682319, - "longitude": -76.3574003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0702588, - "longitude": -76.3581041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0658137, - "longitude": -76.3622476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.065088, - "longitude": -76.3611088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0654634, - "longitude": -76.3595073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0663785, - "longitude": -76.3589457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0671811, - "longitude": -76.3579047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0686937, - "longitude": -76.3575118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0656559, - "longitude": -76.3624532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0657001, - "longitude": -76.3623939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0657695, - "longitude": -76.3623306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0657474, - "longitude": -76.3620617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0656054, - "longitude": -76.3617889 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0654982, - "longitude": -76.3616663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0652836, - "longitude": -76.3614014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0654319, - "longitude": -76.361524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0651921, - "longitude": -76.3612748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0651574, - "longitude": -76.3608715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.065353, - "longitude": -76.3597841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0652457, - "longitude": -76.3603891 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.065312, - "longitude": -76.3600648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.065312, - "longitude": -76.3602309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.065211, - "longitude": -76.3606856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0653972, - "longitude": -76.3596101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0656307, - "longitude": -76.359353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.066003, - "longitude": -76.3591909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0662081, - "longitude": -76.3590841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0665741, - "longitude": -76.3588192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0667697, - "longitude": -76.3586373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0669843, - "longitude": -76.3583091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0675612, - "longitude": -76.3576431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0677103, - "longitude": -76.3575497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0679525, - "longitude": -76.357461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0694609, - "longitude": -76.3577733 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0691172, - "longitude": -76.3576964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0700378, - "longitude": -76.3579041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0697739, - "longitude": -76.3578195 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0703775, - "longitude": -76.3579865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.070339, - "longitude": -76.3580884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0702748, - "longitude": -76.3581984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0701892, - "longitude": -76.358126 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0699131, - "longitude": -76.3578819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0694123, - "longitude": -76.3578899 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0693845, - "longitude": -76.3578819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0693438, - "longitude": -76.3577961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0709179, - "longitude": -76.3568627 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.07067, - "longitude": -76.357458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0707146, - "longitude": -76.3573347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0712624, - "longitude": -76.3564094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0715171, - "longitude": -76.3561841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0704695, - "longitude": -76.357839 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0707028, - "longitude": -76.3575198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0715995, - "longitude": -76.3587751 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0709489, - "longitude": -76.3576915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.070874, - "longitude": -76.3575144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0708055, - "longitude": -76.3574259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0708034, - "longitude": -76.3570799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0710581, - "longitude": -76.3566347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0710003, - "longitude": -76.356758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0715674, - "longitude": -76.3587992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0713192, - "longitude": -76.3583835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0716166, - "longitude": -76.3587295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.071469, - "longitude": -76.3584988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0711865, - "longitude": -76.3580804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0710688, - "longitude": -76.3578846 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0717782, - "longitude": -76.3560151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0714426, - "longitude": -76.3584596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0729927, - "longitude": -76.3566481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0730077, - "longitude": -76.3566266 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0729306, - "longitude": -76.3563986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0728493, - "longitude": -76.3562994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0719655, - "longitude": -76.3559158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0735594, - "longitude": -76.3520874 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0741885, - "longitude": -76.3528706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736749, - "longitude": -76.3548822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0725176, - "longitude": -76.355476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0726858, - "longitude": -76.3501274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0728275, - "longitude": -76.3508911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740601, - "longitude": -76.3541258 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0723271, - "longitude": -76.3557254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0724448, - "longitude": -76.3555537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0732217, - "longitude": -76.3551595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0735042, - "longitude": -76.3551836 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736411, - "longitude": -76.3549878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0738359, - "longitude": -76.3550897 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0737545, - "longitude": -76.355248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0737819, - "longitude": -76.3547589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0739103, - "longitude": -76.3545872 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0739771, - "longitude": -76.3544192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0741628, - "longitude": -76.3536645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0742142, - "longitude": -76.3531281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740216, - "longitude": -76.3525863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0738504, - "longitude": -76.3524092 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0731142, - "longitude": -76.3514758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0729216, - "longitude": -76.3512076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0726905, - "longitude": -76.3504459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0721816, - "longitude": -76.35583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.072845, - "longitude": -76.3552641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0725946, - "longitude": -76.3553687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0726524, - "longitude": -76.3557683 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0726289, - "longitude": -76.3558166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0725347, - "longitude": -76.3556288 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0724983, - "longitude": -76.3555618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736454, - "longitude": -76.3552533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0733544, - "longitude": -76.3551514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0727633, - "longitude": -76.3505049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0727419, - "longitude": -76.3506551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0728831, - "longitude": -76.3510413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0740901, - "longitude": -76.3527204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0736563, - "longitude": -76.3521945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.07273, - "longitude": -76.3491626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0750776, - "longitude": -76.3467159 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0767391, - "longitude": -76.3449564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.074388, - "longitude": -76.3474461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0746009, - "longitude": -76.3466904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0743527, - "longitude": -76.3472933 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0743559, - "longitude": -76.3471565 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0743864, - "longitude": -76.3469855 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0744421, - "longitude": -76.3468594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0746898, - "longitude": -76.3466495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.074976, - "longitude": -76.3466589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0748888, - "longitude": -76.3466368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0766518, - "longitude": -76.3448243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0768905, - "longitude": -76.3445688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0769081, - "longitude": -76.3442617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0768856, - "longitude": -76.3444273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0769675, - "longitude": -76.3440954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0747818, - "longitude": -76.3466328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0745239, - "longitude": -76.3467568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0771408, - "longitude": -76.343858 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0783718, - "longitude": -76.3429997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0776721, - "longitude": -76.3437427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0773693, - "longitude": -76.3437346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0772537, - "longitude": -76.3437755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0774768, - "longitude": -76.3437172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0775731, - "longitude": -76.3437253 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0770509, - "longitude": -76.3439506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0813532, - "longitude": -76.3410383 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0811392, - "longitude": -76.3406985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0802742, - "longitude": -76.340569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0788977, - "longitude": -76.3408332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0823995, - "longitude": -76.340003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0780067, - "longitude": -76.3423312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.078226, - "longitude": -76.3426164 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0782046, - "longitude": -76.3419778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0780356, - "longitude": -76.3421555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0780051, - "longitude": -76.3422152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0789335, - "longitude": -76.3408023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0790223, - "longitude": -76.3408298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0798653, - "longitude": -76.3407263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0793797, - "longitude": -76.3409264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0791818, - "longitude": -76.3409049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0792973, - "longitude": -76.3409391 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0795627, - "longitude": -76.3408707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0800612, - "longitude": -76.3408291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0802035, - "longitude": -76.3408238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0802217, - "longitude": -76.3406602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0804678, - "longitude": -76.3404644 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0805502, - "longitude": -76.340518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0806422, - "longitude": -76.3405408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.080716, - "longitude": -76.3404724 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0808792, - "longitude": -76.3404296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0810351, - "longitude": -76.3405047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0817394, - "longitude": -76.3405354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0815885, - "longitude": -76.3408613 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0814569, - "longitude": -76.3410182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.081256, - "longitude": -76.3409001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0821342, - "longitude": -76.3402243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0819887, - "longitude": -76.3403182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0822754, - "longitude": -76.3401505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0831492, - "longitude": -76.3400003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0829532, - "longitude": -76.3400065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0834798, - "longitude": -76.3400815 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0827066, - "longitude": -76.3400111 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0825044, - "longitude": -76.3400392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0783058, - "longitude": -76.34149 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0834461, - "longitude": -76.3401727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0834226, - "longitude": -76.3401834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0833702, - "longitude": -76.3401318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0832894, - "longitude": -76.3400473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0823482, - "longitude": -76.3400647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0818239, - "longitude": -76.3404053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0812868, - "longitude": -76.340982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0805802, - "longitude": -76.3406132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0803694, - "longitude": -76.3404885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0801565, - "longitude": -76.3408506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0780955, - "longitude": -76.3423815 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0780623, - "longitude": -76.3423768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.078072, - "longitude": -76.342124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0781388, - "longitude": -76.3419919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0780982, - "longitude": -76.3420509 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0894602, - "longitude": -76.3771477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0894132, - "longitude": -76.37777 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0893532, - "longitude": -76.3787276 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0879925, - "longitude": -76.3775608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0877507, - "longitude": -76.3773489 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0881743, - "longitude": -76.3765684 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0878277, - "longitude": -76.3762385 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0863492, - "longitude": -76.3761017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0858913, - "longitude": -76.3757208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0963323, - "longitude": -76.3827965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0953011, - "longitude": -76.3803288 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0898967, - "longitude": -76.3743851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0894987, - "longitude": -76.3744226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0895758, - "longitude": -76.3747016 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0895886, - "longitude": -76.3748786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0867557, - "longitude": -76.3753292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0841111, - "longitude": -76.3741812 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.08483, - "longitude": -76.3748142 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0852515, - "longitude": -76.3751924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0937539, - "longitude": -76.3740632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.091557, - "longitude": -76.374208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0928664, - "longitude": -76.3740686 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1012506, - "longitude": -76.3822439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0990257, - "longitude": -76.3825122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0970853, - "longitude": -76.3826865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1026197, - "longitude": -76.3777593 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1014559, - "longitude": -76.377829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1013361, - "longitude": -76.3802323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1012891, - "longitude": -76.3797334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1012334, - "longitude": -76.3779631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1058744, - "longitude": -76.3775635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1069288, - "longitude": -76.3775219 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042914, - "longitude": -76.3776493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063569, - "longitude": -76.3759516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063187, - "longitude": -76.3761516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062635, - "longitude": -76.3762672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106255, - "longitude": -76.3763201 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062666, - "longitude": -76.3763656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062961, - "longitude": -76.3764041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062858, - "longitude": -76.3764683 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063146, - "longitude": -76.3765097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063865, - "longitude": -76.3767062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063681, - "longitude": -76.3768185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1064501, - "longitude": -76.3768324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1064833, - "longitude": -76.3767773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065477, - "longitude": -76.3767693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066241, - "longitude": -76.3767907 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067254, - "longitude": -76.3768609 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106873, - "longitude": -76.3770408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1069449, - "longitude": -76.3772552 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1069538, - "longitude": -76.3774368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.109717, - "longitude": -76.3693138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1096777, - "longitude": -76.3694154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1095993, - "longitude": -76.369515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1095283, - "longitude": -76.3698424 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1095111, - "longitude": -76.3698747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1094022, - "longitude": -76.3699649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1093387, - "longitude": -76.3699919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1092873, - "longitude": -76.3699911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1091763, - "longitude": -76.3700537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1090243, - "longitude": -76.3700578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089404, - "longitude": -76.3701192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088677, - "longitude": -76.3701287 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1087743, - "longitude": -76.3702172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1086964, - "longitude": -76.3703511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108665, - "longitude": -76.370314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1085592, - "longitude": -76.3703295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1085037, - "longitude": -76.3703704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1084732, - "longitude": -76.3704388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108453, - "longitude": -76.3704198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1084161, - "longitude": -76.3704474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082998, - "longitude": -76.3704819 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.10822, - "longitude": -76.3704831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1081077, - "longitude": -76.3704308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080851, - "longitude": -76.3703936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080373, - "longitude": -76.3701443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080578, - "longitude": -76.3700203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080472, - "longitude": -76.3699759 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079439, - "longitude": -76.3699219 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1078258, - "longitude": -76.3699865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077712, - "longitude": -76.3699604 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077273, - "longitude": -76.3698742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077182, - "longitude": -76.3697582 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1076201, - "longitude": -76.3697289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1075788, - "longitude": -76.3696716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1075365, - "longitude": -76.3695454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1075522, - "longitude": -76.3696556 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1075998, - "longitude": -76.3697334 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1076246, - "longitude": -76.3697564 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1076927, - "longitude": -76.369763 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077025, - "longitude": -76.3697816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077094, - "longitude": -76.3699216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077524, - "longitude": -76.3699938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1078125, - "longitude": -76.3700308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1078499, - "longitude": -76.3700317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079785, - "longitude": -76.3699789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080208, - "longitude": -76.3700212 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079867, - "longitude": -76.3701348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080181, - "longitude": -76.3702559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080202, - "longitude": -76.3703771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079341, - "longitude": -76.3703917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079109, - "longitude": -76.3704619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077667, - "longitude": -76.3705601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077159, - "longitude": -76.3706722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.107713, - "longitude": -76.3707841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.107741, - "longitude": -76.3709129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077204, - "longitude": -76.3710132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077307, - "longitude": -76.3710825 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077635, - "longitude": -76.3709271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077318, - "longitude": -76.3707761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077459, - "longitude": -76.3706271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077642, - "longitude": -76.3705954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079391, - "longitude": -76.3704798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079789, - "longitude": -76.3704132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082111, - "longitude": -76.3705586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1083755, - "longitude": -76.370594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1084051, - "longitude": -76.3706422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1084275, - "longitude": -76.3707709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1085193, - "longitude": -76.3709657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1085577, - "longitude": -76.370975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088017, - "longitude": -76.3709463 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089032, - "longitude": -76.3708786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089316, - "longitude": -76.3709189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089322, - "longitude": -76.3709915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088349, - "longitude": -76.3714655 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088791, - "longitude": -76.3718514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089296, - "longitude": -76.3720395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089198, - "longitude": -76.3721361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088797, - "longitude": -76.3722037 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088412, - "longitude": -76.3722356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108594, - "longitude": -76.3723781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1084751, - "longitude": -76.3724744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1083849, - "longitude": -76.3724841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1083515, - "longitude": -76.3725172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080646, - "longitude": -76.3726108 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079219, - "longitude": -76.3726916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1078166, - "longitude": -76.3726594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1076217, - "longitude": -76.3727162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1075451, - "longitude": -76.3727598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1074704, - "longitude": -76.3727541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1072894, - "longitude": -76.372849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1072207, - "longitude": -76.3729177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1071129, - "longitude": -76.3729512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106993, - "longitude": -76.3730313 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1069428, - "longitude": -76.3730341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106894, - "longitude": -76.3729399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1068262, - "longitude": -76.3728766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067537, - "longitude": -76.3728646 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067017, - "longitude": -76.3728956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066638, - "longitude": -76.3726771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066796, - "longitude": -76.3726475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067557, - "longitude": -76.3725998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067108, - "longitude": -76.3725934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067275, - "longitude": -76.3725555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106639, - "longitude": -76.3726228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106592, - "longitude": -76.3726118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065156, - "longitude": -76.3725525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063858, - "longitude": -76.3723377 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063888, - "longitude": -76.3723057 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1064708, - "longitude": -76.3722414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065287, - "longitude": -76.3720801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065792, - "longitude": -76.3720547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066049, - "longitude": -76.3720172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066077, - "longitude": -76.3719086 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065616, - "longitude": -76.3717687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065179, - "longitude": -76.371701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063514, - "longitude": -76.371558 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062751, - "longitude": -76.3714153 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062757, - "longitude": -76.3713478 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063455, - "longitude": -76.3711544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063088, - "longitude": -76.3709238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062338, - "longitude": -76.3708234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062017, - "longitude": -76.3707321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1061897, - "longitude": -76.3706245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1061391, - "longitude": -76.3705328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1060748, - "longitude": -76.3705276 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1059245, - "longitude": -76.3704514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1059315, - "longitude": -76.3704715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1061427, - "longitude": -76.3706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1061881, - "longitude": -76.370826 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062754, - "longitude": -76.3709512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062705, - "longitude": -76.37104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063054, - "longitude": -76.3711917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062407, - "longitude": -76.3713279 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062447, - "longitude": -76.3714345 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062669, - "longitude": -76.3714971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106341, - "longitude": -76.3715991 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065029, - "longitude": -76.3717712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065648, - "longitude": -76.3718979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065687, - "longitude": -76.3719414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065481, - "longitude": -76.3720028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1064724, - "longitude": -76.3720652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1064387, - "longitude": -76.3721795 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063342, - "longitude": -76.3722538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063203, - "longitude": -76.3723167 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063277, - "longitude": -76.3723633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106472, - "longitude": -76.3725868 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065968, - "longitude": -76.3727208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066166, - "longitude": -76.3727883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066256, - "longitude": -76.3729071 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106654, - "longitude": -76.3729587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067236, - "longitude": -76.3730187 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1067311, - "longitude": -76.3730855 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065882, - "longitude": -76.3732679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065995, - "longitude": -76.3733361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065804, - "longitude": -76.3734361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065592, - "longitude": -76.3734542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065667, - "longitude": -76.3735355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065455, - "longitude": -76.3736131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.10655, - "longitude": -76.3736758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065113, - "longitude": -76.3737402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065153, - "longitude": -76.3738001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.10655, - "longitude": -76.3738187 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106617, - "longitude": -76.3740591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1066087, - "longitude": -76.3742088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065563, - "longitude": -76.3743985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065062, - "longitude": -76.3744578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065102, - "longitude": -76.3745247 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1064906, - "longitude": -76.3745792 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065122, - "longitude": -76.3747696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065622, - "longitude": -76.3749456 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065673, - "longitude": -76.3750441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065491, - "longitude": -76.37515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065468, - "longitude": -76.3753012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104139, - "longitude": -76.364767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041573, - "longitude": -76.364767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042677, - "longitude": -76.3648205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104391, - "longitude": -76.3649291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1046486, - "longitude": -76.3650743 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1048502, - "longitude": -76.3651152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1049704, - "longitude": -76.3650998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1050984, - "longitude": -76.3650376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.105173, - "longitude": -76.3649638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1052542, - "longitude": -76.3648271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1053243, - "longitude": -76.3647651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1056236, - "longitude": -76.3647115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1057095, - "longitude": -76.3646751 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1057587, - "longitude": -76.3646316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1059761, - "longitude": -76.3646954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1061185, - "longitude": -76.3647951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1062552, - "longitude": -76.3648554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1063771, - "longitude": -76.3648396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065024, - "longitude": -76.364869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1065935, - "longitude": -76.3648332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.106678, - "longitude": -76.3647541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1068029, - "longitude": -76.364783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1070787, - "longitude": -76.364707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1071478, - "longitude": -76.3647075 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1071722, - "longitude": -76.3647246 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1072406, - "longitude": -76.3648426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1073035, - "longitude": -76.3648969 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1073477, - "longitude": -76.3651348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.107395, - "longitude": -76.365245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1074437, - "longitude": -76.3652964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1075843, - "longitude": -76.3655363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1077158, - "longitude": -76.3656418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1079971, - "longitude": -76.365657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1081626, - "longitude": -76.3656034 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082295, - "longitude": -76.3656077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082596, - "longitude": -76.3655769 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082705, - "longitude": -76.3655216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082529, - "longitude": -76.3652431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1082284, - "longitude": -76.3651468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108179, - "longitude": -76.3650749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1081377, - "longitude": -76.3650645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108113, - "longitude": -76.3650738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080899, - "longitude": -76.3651856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080765, - "longitude": -76.3651865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108043, - "longitude": -76.3651278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1080794, - "longitude": -76.3650615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1081522, - "longitude": -76.3649963 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.108247, - "longitude": -76.364974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1083972, - "longitude": -76.3648443 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1087686, - "longitude": -76.3647481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1088562, - "longitude": -76.3647846 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1089043, - "longitude": -76.3648406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1090081, - "longitude": -76.3650039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1092516, - "longitude": -76.365324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1093272, - "longitude": -76.3654747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1093669, - "longitude": -76.3656421 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1093759, - "longitude": -76.3658888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1093623, - "longitude": -76.3662272 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1094072, - "longitude": -76.3665672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1094213, - "longitude": -76.366617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1096295, - "longitude": -76.3669658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1097215, - "longitude": -76.3670374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0960337, - "longitude": -76.3516864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0955524, - "longitude": -76.3507851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0963055, - "longitude": -76.35185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0954133, - "longitude": -76.3504633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0954304, - "longitude": -76.3494467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0953962, - "longitude": -76.349723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0953235, - "longitude": -76.3497122 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0952785, - "longitude": -76.3497659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0951117, - "longitude": -76.3497257 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0950988, - "longitude": -76.34979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0951117, - "longitude": -76.3498464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0953513, - "longitude": -76.3499644 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0959332, - "longitude": -76.3515174 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0958241, - "longitude": -76.351402 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0957963, - "longitude": -76.3514235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0957578, - "longitude": -76.3514047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0957856, - "longitude": -76.3512062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0957535, - "longitude": -76.3513189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0956914, - "longitude": -76.3510024 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0961172, - "longitude": -76.3516971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0959952, - "longitude": -76.3518151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0962391, - "longitude": -76.3518205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0963375, - "longitude": -76.3519599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0964894, - "longitude": -76.3520645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0966092, - "longitude": -76.3521316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0960147, - "longitude": -76.35175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0885076, - "longitude": -76.3385171 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0870772, - "longitude": -76.3382676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0861426, - "longitude": -76.3390036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0899422, - "longitude": -76.3373731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0843901, - "longitude": -76.3401298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0835633, - "longitude": -76.3400345 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0842322, - "longitude": -76.3401767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0839906, - "longitude": -76.3402751 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0838939, - "longitude": -76.3401922 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0857007, - "longitude": -76.3395833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0849957, - "longitude": -76.3399783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0858831, - "longitude": -76.33944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0861212, - "longitude": -76.3390553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0860089, - "longitude": -76.3393583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0861945, - "longitude": -76.3389477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0864029, - "longitude": -76.3387011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0867894, - "longitude": -76.3383682 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.087181, - "longitude": -76.3382918 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0873864, - "longitude": -76.3384165 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0877619, - "longitude": -76.3385801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0882337, - "longitude": -76.3385318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0879502, - "longitude": -76.3386042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.088836, - "longitude": -76.3384447 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0891858, - "longitude": -76.3381027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0899903, - "longitude": -76.3369198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0899796, - "longitude": -76.3371988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0894522, - "longitude": -76.3378774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0897196, - "longitude": -76.337695 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0893099, - "longitude": -76.3379726 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0900513, - "longitude": -76.3367119 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0900213, - "longitude": -76.3367535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0898812, - "longitude": -76.3374831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0890253, - "longitude": -76.3382126 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0887226, - "longitude": -76.3384742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0880946, - "longitude": -76.3385479 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0878047, - "longitude": -76.3386069 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0876421, - "longitude": -76.3385278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0866022, - "longitude": -76.3384809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0860571, - "longitude": -76.3392986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0851521, - "longitude": -76.339921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0852856, - "longitude": -76.339847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0853426, - "longitude": -76.3398241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0854176, - "longitude": -76.3398141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0854631, - "longitude": -76.3398003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0855113, - "longitude": -76.3397614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0839404, - "longitude": -76.3402505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0838233, - "longitude": -76.3401452 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0837601, - "longitude": -76.3400929 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0836334, - "longitude": -76.3400412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0859609, - "longitude": -76.3393949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0860874, - "longitude": -76.3392601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0861078, - "longitude": -76.3391352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0861004, - "longitude": -76.3392012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.086255, - "longitude": -76.338908 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0863508, - "longitude": -76.3387997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0863152, - "longitude": -76.3388658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.084706, - "longitude": -76.3400698 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0844884, - "longitude": -76.3401196 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0856076, - "longitude": -76.3396708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0845406, - "longitude": -76.3401077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0953983, - "longitude": -76.3490524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0925957, - "longitude": -76.3461342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.092279, - "longitude": -76.346102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918832, - "longitude": -76.3456031 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916906, - "longitude": -76.3445731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918575, - "longitude": -76.3433635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0930556, - "longitude": -76.3467109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0932394, - "longitude": -76.3469353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0940419, - "longitude": -76.3477194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0945083, - "longitude": -76.3480681 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917848, - "longitude": -76.3429745 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918212, - "longitude": -76.3431462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.091849, - "longitude": -76.3434654 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917655, - "longitude": -76.3438033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917399, - "longitude": -76.3439804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917655, - "longitude": -76.3441949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917548, - "longitude": -76.3443693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916714, - "longitude": -76.3448789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916842, - "longitude": -76.3449513 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916543, - "longitude": -76.3449808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0915494, - "longitude": -76.344946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0914253, - "longitude": -76.3448306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0913761, - "longitude": -76.344903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0913868, - "longitude": -76.3449567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0915152, - "longitude": -76.3449781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0915986, - "longitude": -76.345005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916714, - "longitude": -76.3450532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917249, - "longitude": -76.345131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917356, - "longitude": -76.345182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916457, - "longitude": -76.3451203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0915366, - "longitude": -76.3451203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0915259, - "longitude": -76.3451632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916115, - "longitude": -76.3451927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916778, - "longitude": -76.3452517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917976, - "longitude": -76.3454851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918811, - "longitude": -76.3457614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918768, - "longitude": -76.3458069 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920265, - "longitude": -76.3460242 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920972, - "longitude": -76.3460913 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.092172, - "longitude": -76.3461154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0924138, - "longitude": -76.3462146 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0923389, - "longitude": -76.34622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0923047, - "longitude": -76.346153 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0925144, - "longitude": -76.3461395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0929144, - "longitude": -76.3464587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0927219, - "longitude": -76.3463166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0930685, - "longitude": -76.3468235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0930257, - "longitude": -76.3469308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0929209, - "longitude": -76.3470005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0928759, - "longitude": -76.3470461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0929337, - "longitude": -76.3470971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0929915, - "longitude": -76.3471185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0930171, - "longitude": -76.3470649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0930642, - "longitude": -76.3470381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0932011, - "longitude": -76.3470676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0932439, - "longitude": -76.3470274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0935028, - "longitude": -76.3473036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0933659, - "longitude": -76.347132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0943201, - "longitude": -76.3479232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0944078, - "longitude": -76.348009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0952486, - "longitude": -76.3489961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0950796, - "longitude": -76.3488834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0949255, - "longitude": -76.3487037 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0948678, - "longitude": -76.3485321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0947266, - "longitude": -76.3482799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0954668, - "longitude": -76.3491543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920325, - "longitude": -76.3380826 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0906011, - "longitude": -76.3366932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0901219, - "longitude": -76.3366771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919067, - "longitude": -76.3417085 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0924002, - "longitude": -76.3406662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919424, - "longitude": -76.3394243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918431, - "longitude": -76.3382033 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919416, - "longitude": -76.3378036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917212, - "longitude": -76.337876 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0911264, - "longitude": -76.3370687 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918367, - "longitude": -76.3386431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918545, - "longitude": -76.3389006 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918587, - "longitude": -76.3389842 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918549, - "longitude": -76.3390299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918457, - "longitude": -76.3390649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918834, - "longitude": -76.3391958 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918977, - "longitude": -76.3392301 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919174, - "longitude": -76.339308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920071, - "longitude": -76.3397053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920878, - "longitude": -76.3398354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0921766, - "longitude": -76.3400191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0922226, - "longitude": -76.3400848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0922686, - "longitude": -76.3402739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0924286, - "longitude": -76.340866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.092358, - "longitude": -76.341094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0923082, - "longitude": -76.3412114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.092197, - "longitude": -76.3413367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920822, - "longitude": -76.3413625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919987, - "longitude": -76.3414645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919752, - "longitude": -76.3415878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919795, - "longitude": -76.3416415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917655, - "longitude": -76.3422128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918147, - "longitude": -76.3419499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917334, - "longitude": -76.3425776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0917313, - "longitude": -76.3427465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0923949, - "longitude": -76.3409981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0924291, - "longitude": -76.3407822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0923547, - "longitude": -76.3405093 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919611, - "longitude": -76.3395967 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918228, - "longitude": -76.3383172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0920164, - "longitude": -76.3381241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0919736, - "longitude": -76.337813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0916666, - "longitude": -76.3378412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0914495, - "longitude": -76.337471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.090921, - "longitude": -76.3369305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.090753, - "longitude": -76.3367669 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0905027, - "longitude": -76.3366757 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0903636, - "longitude": -76.3367455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0902738, - "longitude": -76.3367683 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.090201, - "longitude": -76.3367361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918647, - "longitude": -76.339172 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918514, - "longitude": -76.3391429 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918195, - "longitude": -76.3390983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918379, - "longitude": -76.3391191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0918471, - "longitude": -76.3391353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0968403, - "longitude": -76.3521101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0999185, - "longitude": -76.3521259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995059, - "longitude": -76.3532554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0993391, - "longitude": -76.3542705 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1016334, - "longitude": -76.3543417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1031946, - "longitude": -76.3539441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0976918, - "longitude": -76.3523462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0985946, - "longitude": -76.3522711 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0990438, - "longitude": -76.3521665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0980469, - "longitude": -76.3523569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0993412, - "longitude": -76.3520592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995128, - "longitude": -76.352011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0996813, - "longitude": -76.352078 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0997605, - "longitude": -76.3520699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.099953, - "longitude": -76.3520163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0997669, - "longitude": -76.3522523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995359, - "longitude": -76.3535988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995701, - "longitude": -76.3528263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995893, - "longitude": -76.3530489 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0993769, - "longitude": -76.3538129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0992364, - "longitude": -76.3542559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0991765, - "longitude": -76.3538268 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995337, - "longitude": -76.3545 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0997091, - "longitude": -76.3546931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1005285, - "longitude": -76.3549506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0999124, - "longitude": -76.3547468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1003253, - "longitude": -76.3548353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1004493, - "longitude": -76.3556292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1015735, - "longitude": -76.3546287 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1010676, - "longitude": -76.3549318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0974201, - "longitude": -76.3522925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0967462, - "longitude": -76.3521772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0970521, - "longitude": -76.3522201 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995893, - "longitude": -76.3526305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0996214, - "longitude": -76.3524561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0996279, - "longitude": -76.3523354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995701, - "longitude": -76.3519948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0998204, - "longitude": -76.3520619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0998439, - "longitude": -76.352137 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0995316, - "longitude": -76.3531213 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0989903, - "longitude": -76.3539796 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0988256, - "longitude": -76.3540869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0989005, - "longitude": -76.3541433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.098939, - "longitude": -76.3542023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0989668, - "longitude": -76.3543444 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0990395, - "longitude": -76.3543712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.099093, - "longitude": -76.3543739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.0991401, - "longitude": -76.3542881 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1005071, - "longitude": -76.355597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1005285, - "longitude": -76.3552832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1004729, - "longitude": -76.3552537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1004493, - "longitude": -76.3550284 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.100398, - "longitude": -76.3549077 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1011521, - "longitude": -76.3547923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1008152, - "longitude": -76.3549613 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1015393, - "longitude": -76.3544088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1011007, - "longitude": -76.3548299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1015265, - "longitude": -76.3548514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1015928, - "longitude": -76.3548782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.101642, - "longitude": -76.3548514 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1017404, - "longitude": -76.3548782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1017126, - "longitude": -76.3549104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1016377, - "longitude": -76.3549238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1015457, - "longitude": -76.3549506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1014815, - "longitude": -76.3549882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1014302, - "longitude": -76.3550311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1014345, - "longitude": -76.3551249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.101396, - "longitude": -76.3550981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1013831, - "longitude": -76.3549747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.101259, - "longitude": -76.3549372 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1012184, - "longitude": -76.354854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1015222, - "longitude": -76.3545107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1025105, - "longitude": -76.3541325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1020827, - "longitude": -76.3542398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1026346, - "longitude": -76.3541298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1028014, - "longitude": -76.354103 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.103056, - "longitude": -76.354036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1044134, - "longitude": -76.3574272 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041641, - "longitude": -76.3563614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.10429, - "longitude": -76.3593708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.103467, - "longitude": -76.3621367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042466, - "longitude": -76.3582693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039651, - "longitude": -76.3560214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039844, - "longitude": -76.3562515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.103963, - "longitude": -76.3561442 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104055, - "longitude": -76.3563293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1043078, - "longitude": -76.3568661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1043459, - "longitude": -76.35715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104224, - "longitude": -76.3565948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042561, - "longitude": -76.3579279 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1043224, - "longitude": -76.3576677 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042133, - "longitude": -76.3590624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041812, - "longitude": -76.3586655 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042026, - "longitude": -76.3584536 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1043053, - "longitude": -76.3599529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104186, - "longitude": -76.3603325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042026, - "longitude": -76.360138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042671, - "longitude": -76.3592076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041472, - "longitude": -76.3603893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041823, - "longitude": -76.3603511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041577, - "longitude": -76.3603605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041578, - "longitude": -76.3604316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041894, - "longitude": -76.3605102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041833, - "longitude": -76.3606481 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104211, - "longitude": -76.3607218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042241, - "longitude": -76.3609264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042448, - "longitude": -76.360973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042246, - "longitude": -76.3610132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042354, - "longitude": -76.3610996 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104288, - "longitude": -76.3611969 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1043424, - "longitude": -76.3613734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104459, - "longitude": -76.361544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1044727, - "longitude": -76.3616002 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1044671, - "longitude": -76.3616783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1044317, - "longitude": -76.3618168 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1043132, - "longitude": -76.3618781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042899, - "longitude": -76.3617856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1042341, - "longitude": -76.3617518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104166, - "longitude": -76.3616602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039196, - "longitude": -76.3614683 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1038594, - "longitude": -76.3614415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1038196, - "longitude": -76.3614484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.103755, - "longitude": -76.3614814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1036983, - "longitude": -76.3615333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1036705, - "longitude": -76.3615938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1036472, - "longitude": -76.3615983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1036555, - "longitude": -76.3616777 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1036363, - "longitude": -76.3617782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1035582, - "longitude": -76.3618573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1034684, - "longitude": -76.3620343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041149, - "longitude": -76.3533359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040335, - "longitude": -76.353378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040849, - "longitude": -76.3534432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039692, - "longitude": -76.3547643 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040144, - "longitude": -76.3537946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1041898, - "longitude": -76.355141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.104194, - "longitude": -76.3551813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1034885, - "longitude": -76.3538042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039716, - "longitude": -76.3535156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1037448, - "longitude": -76.3536766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1033598, - "longitude": -76.3539072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039523, - "longitude": -76.3541406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039181, - "longitude": -76.3544839 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040037, - "longitude": -76.3549667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040914, - "longitude": -76.3551062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1039309, - "longitude": -76.3557579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040229, - "longitude": -76.3554575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1040935, - "longitude": -76.3553047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1098209, - "longitude": -76.3692054 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1098475, - "longitude": -76.3670661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1101469, - "longitude": -76.3672083 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1107803, - "longitude": -76.3673856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1109717, - "longitude": -76.3675158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1110013, - "longitude": -76.3675583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1109073, - "longitude": -76.3676081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1106285, - "longitude": -76.3678267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1104117, - "longitude": -76.3680308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1103803, - "longitude": -76.3681319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1102469, - "longitude": -76.3684041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1100577, - "longitude": -76.3688624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2405751, - "longitude": -76.7201116 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2404171, - "longitude": -76.7198621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2402334, - "longitude": -76.7195671 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2402163, - "longitude": -76.7195376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2397957, - "longitude": -76.7190816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2393708, - "longitude": -76.718623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2393473, - "longitude": -76.7185961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2390761, - "longitude": -76.718395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2386479, - "longitude": -76.7180838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2379561, - "longitude": -76.717188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2373368, - "longitude": -76.7164048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2369225, - "longitude": -76.7158737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2367731, - "longitude": -76.7155679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2366791, - "longitude": -76.715128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2366279, - "longitude": -76.7149886 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2356114, - "longitude": -76.7134329 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2355729, - "longitude": -76.7114588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2360641, - "longitude": -76.7113515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2361709, - "longitude": -76.7109438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2366193, - "longitude": -76.7107936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2372001, - "longitude": -76.7100104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2382422, - "longitude": -76.709946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2382849, - "longitude": -76.7102679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2382678, - "longitude": -76.7109492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2382849, - "longitude": -76.7113515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2382892, - "longitude": -76.7116948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2383063, - "longitude": -76.7118289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2383789, - "longitude": -76.7119255 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2385668, - "longitude": -76.7124619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2386821, - "longitude": -76.7125907 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2388914, - "longitude": -76.7130306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2397669, - "longitude": -76.7148759 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.240369, - "longitude": -76.7144843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2382778, - "longitude": -76.7115398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2378322, - "longitude": -76.7091682 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1372763, - "longitude": -76.611916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1367375, - "longitude": -76.6127542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1371608, - "longitude": -76.6134046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.137364, - "longitude": -76.6145781 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1376826, - "longitude": -76.6153975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1377307, - "longitude": -76.6156952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1374239, - "longitude": -76.6161619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1379392, - "longitude": -76.6167788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1377232, - "longitude": -76.6171932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1370561, - "longitude": -76.6167319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1365258, - "longitude": -76.6161257 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.141512, - "longitude": -76.6054505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1415334, - "longitude": -76.6062445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1395193, - "longitude": -76.6091788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1392456, - "longitude": -76.608932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1386255, - "longitude": -76.6096026 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1374164, - "longitude": -76.6111904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1361505, - "longitude": -76.6003744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1368433, - "longitude": -76.6006628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1389965, - "longitude": -76.6021045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1402409, - "longitude": -76.6036427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1409134, - "longitude": -76.6042368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1407787, - "longitude": -76.6044594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1409262, - "longitude": -76.6045815 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.243778, - "longitude": -76.7232471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2441623, - "longitude": -76.7240732 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2445104, - "longitude": -76.7248162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2446257, - "longitude": -76.7250522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2439958, - "longitude": -76.7254948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2434214, - "longitude": -76.725873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2427531, - "longitude": -76.7263477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2425075, - "longitude": -76.7265113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2422406, - "longitude": -76.725645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2418071, - "longitude": -76.7241725 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2442605, - "longitude": -76.7214205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2439531, - "longitude": -76.7216297 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2438506, - "longitude": -76.7217209 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2432484, - "longitude": -76.7221152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2434406, - "longitude": -76.7225363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2414399, - "longitude": -76.722936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2413502, - "longitude": -76.722649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.240921, - "longitude": -76.7212569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2413897, - "longitude": -76.7166784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2424189, - "longitude": -76.7167427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2433114, - "longitude": -76.7186739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2430637, - "longitude": -76.7188778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2436958, - "longitude": -76.7202135 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2429442, - "longitude": -76.7186096 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.243083, - "longitude": -76.7185049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2431983, - "longitude": -76.718749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3034906, - "longitude": -76.6470594 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3050635, - "longitude": -76.6473012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.304387, - "longitude": -76.647192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3082194, - "longitude": -76.6417271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3097896, - "longitude": -76.640107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3116584, - "longitude": -76.6382188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3082023, - "longitude": -76.6440445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3130151, - "longitude": -76.6392058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3124946, - "longitude": -76.6374034 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3138002, - "longitude": -76.6360408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3157798, - "longitude": -76.6339916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3176228, - "longitude": -76.6343886 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3152849, - "longitude": -76.6368455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3192184, - "longitude": -76.6305155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3200631, - "longitude": -76.6318673 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.137038, - "longitude": -76.5026272 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1371062, - "longitude": -76.5025945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1371942, - "longitude": -76.5027505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1371994, - "longitude": -76.502666 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1406031, - "longitude": -76.5054348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1416142, - "longitude": -76.5033696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1363496, - "longitude": -76.5021158 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1369449, - "longitude": -76.5025794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1430142, - "longitude": -76.5006376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1448022, - "longitude": -76.4973932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1444781, - "longitude": -76.4954377 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1445591, - "longitude": -76.496076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1445332, - "longitude": -76.4944904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1447244, - "longitude": -76.4970395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1444976, - "longitude": -76.4957833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1424329, - "longitude": -76.4883336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1417145, - "longitude": -76.4873304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.139602, - "longitude": -76.4824005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1400724, - "longitude": -76.4848091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.140577, - "longitude": -76.4856084 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1398415, - "longitude": -76.4836075 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.143177, - "longitude": -76.4884516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1438441, - "longitude": -76.4904847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.143797, - "longitude": -76.4913805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1442638, - "longitude": -76.4911971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1448605, - "longitude": -76.4909535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1447601, - "longitude": -76.4918845 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1446402, - "longitude": -76.4931895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1447179, - "longitude": -76.4923357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1439039, - "longitude": -76.4894494 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1448917, - "longitude": -76.4905973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1449473, - "longitude": -76.4900716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1442631, - "longitude": -76.4899965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1443272, - "longitude": -76.4894869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1439937, - "longitude": -76.4885964 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1391872, - "longitude": -76.4804157 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1399313, - "longitude": -76.4792355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.138627, - "longitude": -76.4793803 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1399655, - "longitude": -76.4801957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1393882, - "longitude": -76.4778783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1388708, - "longitude": -76.4774599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1408293, - "longitude": -76.4746436 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1387853, - "longitude": -76.4677396 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1401879, - "longitude": -76.4687588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1408507, - "longitude": -76.4687534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1416547, - "longitude": -76.4734634 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1419754, - "longitude": -76.4713766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1384431, - "longitude": -76.4689573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1362408, - "longitude": -76.4734366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1426638, - "longitude": -76.4700409 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1427023, - "longitude": -76.4719238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6537927, - "longitude": -76.3317631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6550838, - "longitude": -76.3316129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6564911, - "longitude": -76.3314681 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6565212, - "longitude": -76.3253043 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6553463, - "longitude": -76.3263879 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6540423, - "longitude": -76.327611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6530439, - "longitude": -76.3285176 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.658135, - "longitude": -76.3313018 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6639476, - "longitude": -76.3285439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6578424, - "longitude": -76.3240544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6625841, - "longitude": -76.327292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.663591, - "longitude": -76.3289604 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6639127, - "longitude": -76.3286358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.663712, - "longitude": -76.3185935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6620854, - "longitude": -76.3201277 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.661285, - "longitude": -76.3208519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6601533, - "longitude": -76.3219301 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6591592, - "longitude": -76.3228313 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6663928, - "longitude": -76.3263128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.667305, - "longitude": -76.3254867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6667671, - "longitude": -76.3245909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6676621, - "longitude": -76.3237916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6700803, - "longitude": -76.3215546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6705789, - "longitude": -76.3223755 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6652267, - "longitude": -76.3171665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6645425, - "longitude": -76.3178102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6702094, - "longitude": -76.3125263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6684797, - "longitude": -76.3141356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6682258, - "longitude": -76.3143663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6671071, - "longitude": -76.3154392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6660485, - "longitude": -76.3163994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.674149, - "longitude": -76.319055 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6709317, - "longitude": -76.3112095 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6761765, - "longitude": -76.3135672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.674932, - "longitude": -76.3115662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.670921, - "longitude": -76.3102546 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6709264, - "longitude": -76.311878 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6776608, - "longitude": -76.3156647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6709059, - "longitude": -76.3097423 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.673851, - "longitude": -76.3097182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6699195, - "longitude": -76.161775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6693, - "longitude": -76.1621235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6688197, - "longitude": -76.1591435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6688918, - "longitude": -76.1590176 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6675702, - "longitude": -76.1562163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6765992, - "longitude": -76.1612589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.671445, - "longitude": -76.1607433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6715975, - "longitude": -76.1613255 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6757961, - "longitude": -76.1593316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6835947, - "longitude": -76.1616979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6791452, - "longitude": -76.1623431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6792361, - "longitude": -76.1628064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6831726, - "longitude": -76.1617435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6811785, - "longitude": -76.1622776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6854865, - "longitude": -76.1602189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.684092, - "longitude": -76.1615446 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6883862, - "longitude": -76.1634903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.687321, - "longitude": -76.1603664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6848903, - "longitude": -76.1607906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6841789, - "longitude": -76.1617768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6862946, - "longitude": -76.1577252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6867196, - "longitude": -76.1590243 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6657974, - "longitude": -76.1524914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6680057, - "longitude": -76.1508458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6685426, - "longitude": -76.1505317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6711372, - "longitude": -76.1492104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6726612, - "longitude": -76.1484466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6748078, - "longitude": -76.1473525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6760033, - "longitude": -76.1467645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6769326, - "longitude": -76.1462773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6781287, - "longitude": -76.1452965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6785202, - "longitude": -76.1448191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6789031, - "longitude": -76.1442397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6796044, - "longitude": -76.1432473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6798926, - "longitude": -76.1429684 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6807143, - "longitude": -76.1421261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6819189, - "longitude": -76.1408816 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6775092, - "longitude": -76.1458942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6793398, - "longitude": -76.1435343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6872103, - "longitude": -76.1471902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6873694, - "longitude": -76.149867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6889663, - "longitude": -76.151357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6877033, - "longitude": -76.1498234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6845345, - "longitude": -76.1381994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6860273, - "longitude": -76.1366705 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6880319, - "longitude": -76.1346106 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6895117, - "longitude": -76.1330925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6915976, - "longitude": -76.1585144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6912902, - "longitude": -76.1542417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6910043, - "longitude": -76.1468737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6955768, - "longitude": -76.1410908 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6945789, - "longitude": -76.1414502 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6929314, - "longitude": -76.1420618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6919937, - "longitude": -76.1424105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6916195, - "longitude": -76.1425553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6914775, - "longitude": -76.1425875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6906817, - "longitude": -76.1426626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6992629, - "longitude": -76.1397336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6972285, - "longitude": -76.1404793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6917743, - "longitude": -76.130775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6939423, - "longitude": -76.1285488 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7028585, - "longitude": -76.138414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7011726, - "longitude": -76.1390362 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7099762, - "longitude": -76.1358176 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7092666, - "longitude": -76.1360643 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7080926, - "longitude": -76.1364935 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7057788, - "longitude": -76.1373411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7079893, - "longitude": -76.126918 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7079764, - "longitude": -76.1270468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7078947, - "longitude": -76.1271916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7078861, - "longitude": -76.1273257 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7086172, - "longitude": -76.1307482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.708957, - "longitude": -76.1322771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7100364, - "longitude": -76.1354367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7101224, - "longitude": -76.1356942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7101052, - "longitude": -76.1357747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7100579, - "longitude": -76.1357908 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6960026, - "longitude": -76.1264299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6964714, - "longitude": -76.1259417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.696622, - "longitude": -76.1257325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6967338, - "longitude": -76.1255501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6967237, - "longitude": -76.1219971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6934298, - "longitude": -76.1165355 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6937715, - "longitude": -76.1146997 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6951241, - "longitude": -76.1196364 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6939543, - "longitude": -76.1179519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.693606, - "longitude": -76.1172866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6934544, - "longitude": -76.1158966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6935441, - "longitude": -76.1152874 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6970521, - "longitude": -76.1248688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6971984, - "longitude": -76.1241178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6971166, - "longitude": -76.1229859 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6971962, - "longitude": -76.1235411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6969464, - "longitude": -76.1224912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6964187, - "longitude": -76.1103319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6954951, - "longitude": -76.1118345 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6970656, - "longitude": -76.1093748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6985505, - "longitude": -76.1073577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7012907, - "longitude": -76.1057835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6989085, - "longitude": -76.1069125 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7017951, - "longitude": -76.1055314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7010768, - "longitude": -76.1055261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7005091, - "longitude": -76.105632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7032338, - "longitude": -76.1058131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7021613, - "longitude": -76.1055981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7014408, - "longitude": -76.1055066 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7007887, - "longitude": -76.105567 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6994824, - "longitude": -76.1064365 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7000447, - "longitude": -76.1060966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7006699, - "longitude": -76.1058891 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7019122, - "longitude": -76.1058204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7064497, - "longitude": -76.1204324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7066647, - "longitude": -76.1215 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7075163, - "longitude": -76.1255072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7098988, - "longitude": -76.1207811 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7070862, - "longitude": -76.1229322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7097314, - "longitude": -76.1205649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7097729, - "longitude": -76.1209017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7096421, - "longitude": -76.1201244 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7055294, - "longitude": -76.116554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7056369, - "longitude": -76.1169241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7078431, - "longitude": -76.1135499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7093827, - "longitude": -76.1187212 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7095634, - "longitude": -76.1193005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7058992, - "longitude": -76.1175724 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7049864, - "longitude": -76.1143722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048481, - "longitude": -76.113742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7050951, - "longitude": -76.1144214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.704955, - "longitude": -76.1138208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7055616, - "longitude": -76.1163879 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7091655, - "longitude": -76.1185239 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7105009, - "longitude": -76.1203734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7132101, - "longitude": -76.1182169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7157645, - "longitude": -76.1161999 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7067164, - "longitude": -76.107708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7066539, - "longitude": -76.1082123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7066475, - "longitude": -76.1090009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7067594, - "longitude": -76.1098055 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048845, - "longitude": -76.1105727 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7065099, - "longitude": -76.1099235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7068153, - "longitude": -76.107244 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7065343, - "longitude": -76.1080058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7066273, - "longitude": -76.1074398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7047834, - "longitude": -76.110291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.704787, - "longitude": -76.1122118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7047961, - "longitude": -76.1130626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048751, - "longitude": -76.1127595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7049065, - "longitude": -76.1132794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7093312, - "longitude": -76.1040549 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7093139, - "longitude": -76.1041192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7088667, - "longitude": -76.1043338 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7085377, - "longitude": -76.1045484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7080022, - "longitude": -76.1050285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7073765, - "longitude": -76.1058734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7069271, - "longitude": -76.1068497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048864, - "longitude": -76.1064233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7067464, - "longitude": -76.1067907 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7069056, - "longitude": -76.1065011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048671, - "longitude": -76.1061363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7041359, - "longitude": -76.1027299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.704953, - "longitude": -76.1028988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7049897, - "longitude": -76.1019145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7051745, - "longitude": -76.1010186 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7092817, - "longitude": -76.103961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7081034, - "longitude": -76.104653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7073831, - "longitude": -76.1055274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7048046, - "longitude": -76.1063938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7047832, - "longitude": -76.1061175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7042477, - "longitude": -76.103603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7075668, - "longitude": -76.1055757 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7077759, - "longitude": -76.1052981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7082409, - "longitude": -76.1047965 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7085689, - "longitude": -76.1043057 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7092682, - "longitude": -76.1039309 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7076948, - "longitude": -76.1050916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7071088, - "longitude": -76.106029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7068411, - "longitude": -76.1065306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.705667, - "longitude": -76.1062865 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7043528, - "longitude": -76.1036783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7091252, - "longitude": -76.1007856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7086949, - "longitude": -76.1004381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7096991, - "longitude": -76.1012535 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7071432, - "longitude": -76.1063052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7067677, - "longitude": -76.1068685 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7056713, - "longitude": -76.1065681 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7045284, - "longitude": -76.1048844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7046848, - "longitude": -76.1055948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7156613, - "longitude": -76.1012064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7115631, - "longitude": -76.1030088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7104837, - "longitude": -76.1019574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.711475, - "longitude": -76.102931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7104514, - "longitude": -76.1035211 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7103686, - "longitude": -76.1034299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7028542, - "longitude": -76.0979314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7034477, - "longitude": -76.0987152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7030671, - "longitude": -76.0982737 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7056691, - "longitude": -76.0999377 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7053573, - "longitude": -76.0991465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7036714, - "longitude": -76.0986716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7040348, - "longitude": -76.0982559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7061465, - "longitude": -76.0989184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7073722, - "longitude": -76.099487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7082345, - "longitude": -76.1000906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7035725, - "longitude": -76.0985576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7052036, - "longitude": -76.098626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.707126, - "longitude": -76.0993704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6769007, - "longitude": -76.0247366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6809021, - "longitude": -76.0414298 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6781656, - "longitude": -76.0353367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6788583, - "longitude": -76.0350738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6793315, - "longitude": -76.0376032 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6808868, - "longitude": -76.0365638 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6809782, - "longitude": -76.0391434 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6800021, - "longitude": -76.0411386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6810025, - "longitude": -76.0404663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6804478, - "longitude": -76.0411984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6776536, - "longitude": -76.0283254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6776709, - "longitude": -76.0295431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6777698, - "longitude": -76.031764 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6778602, - "longitude": -76.0321234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.68079, - "longitude": -76.0344945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6814783, - "longitude": -76.0343175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.681431, - "longitude": -76.0336415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6814224, - "longitude": -76.0329603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.681474, - "longitude": -76.0322575 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6814697, - "longitude": -76.0319786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6813578, - "longitude": -76.0312222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6811212, - "longitude": -76.0297416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6809061, - "longitude": -76.0283415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.68042, - "longitude": -76.0284649 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6798435, - "longitude": -76.0254232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6792842, - "longitude": -76.0256137 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6788368, - "longitude": -76.0248305 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6785958, - "longitude": -76.0239936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6778343, - "longitude": -76.0243182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6791143, - "longitude": -76.0247607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.6800059, - "longitude": -76.0262802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8822599, - "longitude": -76.2119482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8826687, - "longitude": -76.2119767 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8831394, - "longitude": -76.2119946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.884361, - "longitude": -76.2120362 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8848825, - "longitude": -76.2120699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8819952, - "longitude": -76.211842 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8820879, - "longitude": -76.2118949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8821717, - "longitude": -76.2119269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813067, - "longitude": -76.208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8814782, - "longitude": -76.2072688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813902, - "longitude": -76.2075779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.88159, - "longitude": -76.2069573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813676, - "longitude": -76.2076982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813341, - "longitude": -76.2085663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813334, - "longitude": -76.2082659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813772, - "longitude": -76.2089838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.881424, - "longitude": -76.2094174 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8818675, - "longitude": -76.2062601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8814639, - "longitude": -76.2097869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8814977, - "longitude": -76.2101155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8815251, - "longitude": -76.2103805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8815629, - "longitude": -76.2107188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8815973, - "longitude": -76.2110414 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8816411, - "longitude": -76.2113039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8817001, - "longitude": -76.2114746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.881768, - "longitude": -76.2116032 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8818351, - "longitude": -76.2116946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8819168, - "longitude": -76.211782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8866551, - "longitude": -76.2103572 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8813665, - "longitude": -76.2077036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8820095, - "longitude": -76.2059278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8886815, - "longitude": -76.208322 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8902082, - "longitude": -76.2090621 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8908346, - "longitude": -76.20973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8925692, - "longitude": -76.2102729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8932259, - "longitude": -76.2102905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8915384, - "longitude": -76.2102739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8917837, - "longitude": -76.2103401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8921828, - "longitude": -76.2103507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8913274, - "longitude": -76.2101643 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8910613, - "longitude": -76.2099608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8890792, - "longitude": -76.2079433 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8892781, - "longitude": -76.2082599 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.889392, - "longitude": -76.2082837 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8895389, - "longitude": -76.2083833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8896682, - "longitude": -76.2085058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8920088, - "longitude": -76.210356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8928806, - "longitude": -76.2102375 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.887787, - "longitude": -76.2092202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8878943, - "longitude": -76.2091867 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.888638, - "longitude": -76.2084714 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8891246, - "longitude": -76.2080222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8870008, - "longitude": -76.2100064 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8893375, - "longitude": -76.208269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8894429, - "longitude": -76.2083089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8953109, - "longitude": -76.2128912 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8962483, - "longitude": -76.2131098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8965432, - "longitude": -76.2131299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8975042, - "longitude": -76.2131151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8949159, - "longitude": -76.2121721 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8955844, - "longitude": -76.2129394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.897132, - "longitude": -76.2131822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973948, - "longitude": -76.2131607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8978538, - "longitude": -76.2120114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8977959, - "longitude": -76.2124526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8976382, - "longitude": -76.2129569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8977272, - "longitude": -76.2127691 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8951565, - "longitude": -76.2126392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8938075, - "longitude": -76.2105949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8942873, - "longitude": -76.2111789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8980372, - "longitude": -76.2117378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8984211, - "longitude": -76.2116493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8995183, - "longitude": -76.2097946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8935401, - "longitude": -76.2104127 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8940496, - "longitude": -76.2108267 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8985082, - "longitude": -76.2113539 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8989881, - "longitude": -76.2111011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8987061, - "longitude": -76.2111749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8998174, - "longitude": -76.2103008 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8992867, - "longitude": -76.21091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8996207, - "longitude": -76.210813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8997963, - "longitude": -76.2105731 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8999312, - "longitude": -76.2095202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8997101, - "longitude": -76.2096482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8996792, - "longitude": -76.2100162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8830492, - "longitude": -76.2034952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8838326, - "longitude": -76.20121 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8846167, - "longitude": -76.1994847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8835695, - "longitude": -76.2021943 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8834901, - "longitude": -76.2024394 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.885766, - "longitude": -76.1970792 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8855264, - "longitude": -76.1974629 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8852842, - "longitude": -76.1979184 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8860263, - "longitude": -76.1966623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8864779, - "longitude": -76.1960333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8868865, - "longitude": -76.1956658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8862687, - "longitude": -76.1962908 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8926411, - "longitude": -76.1941038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8886308, - "longitude": -76.1947921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8894121, - "longitude": -76.1946541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8933882, - "longitude": -76.1936445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8908799, - "longitude": -76.1944716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8891148, - "longitude": -76.1946983 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8874116, - "longitude": -76.1953044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8877166, - "longitude": -76.1951231 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8882118, - "longitude": -76.1949065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8910313, - "longitude": -76.1944441 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8915688, - "longitude": -76.1942245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8911962, - "longitude": -76.1943884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8913594, - "longitude": -76.194302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8875812, - "longitude": -76.1951958 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8872614, - "longitude": -76.1953934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8999593, - "longitude": -76.2042696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8981416, - "longitude": -76.1941776 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8993667, - "longitude": -76.1940667 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.896557, - "longitude": -76.1921829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8967789, - "longitude": -76.1923415 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8972719, - "longitude": -76.1928106 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.897354, - "longitude": -76.1930118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.89733, - "longitude": -76.1931592 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973495, - "longitude": -76.1933675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973984, - "longitude": -76.193513 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8974978, - "longitude": -76.1935779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8976762, - "longitude": -76.1935927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8977774, - "longitude": -76.1936496 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.897827, - "longitude": -76.1937045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8989762, - "longitude": -76.1941616 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973334, - "longitude": -76.1932843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973277, - "longitude": -76.1932281 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973346, - "longitude": -76.1929011 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.897319, - "longitude": -76.1928676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8972988, - "longitude": -76.1928404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973557, - "longitude": -76.1929824 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8973511, - "longitude": -76.1929492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8945098, - "longitude": -76.1929124 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8950235, - "longitude": -76.1925391 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8948296, - "longitude": -76.1927066 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8960446, - "longitude": -76.1916571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8961125, - "longitude": -76.1919924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.901568, - "longitude": -76.2073951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9009308, - "longitude": -76.2091733 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9011425, - "longitude": -76.2092434 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9018585, - "longitude": -76.2086005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9000838, - "longitude": -76.2096639 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.900526, - "longitude": -76.2098664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9009089, - "longitude": -76.209595 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9008949, - "longitude": -76.2056529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9011388, - "longitude": -76.2067868 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9009437, - "longitude": -76.2061129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9005636, - "longitude": -76.2015735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9007292, - "longitude": -76.2051232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9006701, - "longitude": -76.2035553 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9005438, - "longitude": -76.2000476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9005989, - "longitude": -76.2049421 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9001646, - "longitude": -76.2045838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9007741, - "longitude": -76.2027644 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9007474, - "longitude": -76.2033516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9007846, - "longitude": -76.2029324 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.900115, - "longitude": -76.2045079 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9005253, - "longitude": -76.1986102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9013584, - "longitude": -76.1978186 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.905523, - "longitude": -76.1935151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9056791, - "longitude": -76.1923457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9056602, - "longitude": -76.193161 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9057117, - "longitude": -76.192807 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9019331, - "longitude": -76.1972689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.905167, - "longitude": -76.1941214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9052788, - "longitude": -76.1938701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9017901, - "longitude": -76.1970364 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9024434, - "longitude": -76.1959932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9024176, - "longitude": -76.1958154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9025432, - "longitude": -76.1954832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9026801, - "longitude": -76.1952525 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9037667, - "longitude": -76.1941868 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9030164, - "longitude": -76.1949216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9047928, - "longitude": -76.1941804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.903875, - "longitude": -76.1941761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9046109, - "longitude": -76.1941775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9049273, - "longitude": -76.1941647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9050131, - "longitude": -76.1941566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9063695, - "longitude": -76.1915921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9061381, - "longitude": -76.1919233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062693, - "longitude": -76.1899389 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062912, - "longitude": -76.1902936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.906347, - "longitude": -76.1870039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.906433, - "longitude": -76.1906325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9060953, - "longitude": -76.1876051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062296, - "longitude": -76.1900851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062237, - "longitude": -76.1900516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062258, - "longitude": -76.19001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062398, - "longitude": -76.1899744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9064444, - "longitude": -76.1914233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9064932, - "longitude": -76.1912017 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9065005, - "longitude": -76.1909944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9064846, - "longitude": -76.1908053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9062301, - "longitude": -76.1918278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9063008, - "longitude": -76.1917329 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9070733, - "longitude": -76.1868189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9075989, - "longitude": -76.1870758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9078127, - "longitude": -76.1873554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9079994, - "longitude": -76.1882188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9079219, - "longitude": -76.18775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9077609, - "longitude": -76.1872579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9077054, - "longitude": -76.1871838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9076563, - "longitude": -76.1871301 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9072969, - "longitude": -76.1869584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9068003, - "longitude": -76.1865707 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9067827, - "longitude": -76.1894015 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7185509, - "longitude": -76.1139898 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7213201, - "longitude": -76.1118333 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7213631, - "longitude": -76.1112003 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7181983, - "longitude": -76.1078421 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7177425, - "longitude": -76.1052672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7876637, - "longitude": -76.0520344 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7853846, - "longitude": -76.0500125 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7900864, - "longitude": -76.0523321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7918824, - "longitude": -76.0523992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7918738, - "longitude": -76.0526245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7941935, - "longitude": -76.0526889 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7950441, - "longitude": -76.0525494 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.790282, - "longitude": -76.0523351 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.789236, - "longitude": -76.0523455 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7858842, - "longitude": -76.0462352 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7860741, - "longitude": -76.0386448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7863061, - "longitude": -76.0412734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7874231, - "longitude": -76.0413914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7862803, - "longitude": -76.0390954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7879128, - "longitude": -76.0381191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7897039, - "longitude": -76.0367479 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7903547, - "longitude": -76.0361753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7930596, - "longitude": -76.0338972 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7933493, - "longitude": -76.0333373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7940354, - "longitude": -76.0280462 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7941666, - "longitude": -76.0271511 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7950484, - "longitude": -76.0239378 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7944969, - "longitude": -76.0248132 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.794676, - "longitude": -76.0243835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7940506, - "longitude": -76.0279426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7978878, - "longitude": -76.0630422 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7981713, - "longitude": -76.0611432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7983088, - "longitude": -76.0616152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8011524, - "longitude": -76.0632138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7979909, - "longitude": -76.0624521 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.802581, - "longitude": -76.0611039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7960579, - "longitude": -76.0589652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7979737, - "longitude": -76.0585468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7981198, - "longitude": -76.0584717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7981627, - "longitude": -76.0598021 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7980253, - "longitude": -76.0593729 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7958774, - "longitude": -76.0578387 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.802563, - "longitude": -76.0606464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8026042, - "longitude": -76.0605902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029883, - "longitude": -76.0605613 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.803096, - "longitude": -76.0602576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8032795, - "longitude": -76.0600795 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8033946, - "longitude": -76.059956 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.811826, - "longitude": -76.0504789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8121494, - "longitude": -76.0503235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.81227, - "longitude": -76.0502474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.812663, - "longitude": -76.0500994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8128945, - "longitude": -76.0500381 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8129864, - "longitude": -76.0500189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8132249, - "longitude": -76.0499813 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8135951, - "longitude": -76.0499578 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8137594, - "longitude": -76.0499468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8140932, - "longitude": -76.0499652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8144605, - "longitude": -76.0500613 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8163772, - "longitude": -76.0504235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8177862, - "longitude": -76.0506829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8180303, - "longitude": -76.0507028 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7966762, - "longitude": -76.0220556 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7952308, - "longitude": -76.0236834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7964432, - "longitude": -76.0222043 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7952567, - "longitude": -76.0236518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7981893, - "longitude": -76.0201934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7982219, - "longitude": -76.0201515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7982531, - "longitude": -76.0201035 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7982935, - "longitude": -76.0200363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7983639, - "longitude": -76.0199138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7987808, - "longitude": -76.0189526 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7987964, - "longitude": -76.0189142 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7988095, - "longitude": -76.0188782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7988476, - "longitude": -76.0187681 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7989534, - "longitude": -76.0184467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7991663, - "longitude": -76.0176418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7993196, - "longitude": -76.0167278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8001788, - "longitude": -76.0120182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8010526, - "longitude": -76.0122722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8010652, - "longitude": -76.0123665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8011541, - "longitude": -76.0123886 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8011788, - "longitude": -76.0124055 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8012403, - "longitude": -76.0124175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8016605, - "longitude": -76.0125417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7998331, - "longitude": -76.0090814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7999984, - "longitude": -76.01009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8000994, - "longitude": -76.0106934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8001316, - "longitude": -76.0109295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8001466, - "longitude": -76.0112809 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8001509, - "longitude": -76.0115786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8001402, - "longitude": -76.0117207 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8002111, - "longitude": -76.0117717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.800922, - "longitude": -76.011989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8015641, - "longitude": -76.0121097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8020195, - "longitude": -76.0126388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8022404, - "longitude": -76.0127801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025918, - "longitude": -76.013047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.80293, - "longitude": -76.0133739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029608, - "longitude": -76.0108669 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029653, - "longitude": -76.0115756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029671, - "longitude": -76.0116065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029699, - "longitude": -76.01164 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.803035, - "longitude": -76.012271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029161, - "longitude": -76.0108262 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8032181, - "longitude": -76.0129331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8032422, - "longitude": -76.0138951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8033001, - "longitude": -76.0140039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8033098, - "longitude": -76.0131497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8033181, - "longitude": -76.0140148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8033322, - "longitude": -76.0140081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8034066, - "longitude": -76.0141191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8035427, - "longitude": -76.0137135 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8035797, - "longitude": -76.013672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8036119, - "longitude": -76.0136438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8036463, - "longitude": -76.0138606 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029118, - "longitude": -76.010279 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029118, - "longitude": -76.008895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8017875, - "longitude": -76.0122008 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8021376, - "longitude": -76.0123162 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025563, - "longitude": -76.01263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.802668, - "longitude": -76.0125576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8026358, - "longitude": -76.0122438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025585, - "longitude": -76.0110743 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025778, - "longitude": -76.0101516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8002776, - "longitude": -76.0046612 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7998975, - "longitude": -76.0050715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7997257, - "longitude": -76.0058547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.799599, - "longitude": -76.0065763 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.799571, - "longitude": -76.0070778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7996033, - "longitude": -76.0076143 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.7996763, - "longitude": -76.0081373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8016307, - "longitude": -76.0051171 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8011969, - "longitude": -76.0050125 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8007201, - "longitude": -76.0049401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8040888, - "longitude": -76.0051204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8028602, - "longitude": -76.0083747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8073749, - "longitude": -76.0051042 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8028731, - "longitude": -76.0061163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8029376, - "longitude": -76.005848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8031094, - "longitude": -76.0055584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8033284, - "longitude": -76.0053438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8035775, - "longitude": -76.0051721 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8038095, - "longitude": -76.0051185 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025198, - "longitude": -76.0085772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025069, - "longitude": -76.0083465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8025177, - "longitude": -76.0070161 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8024962, - "longitude": -76.0056053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8023824, - "longitude": -76.0053076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8021225, - "longitude": -76.0051735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8071763, - "longitude": -76.0051052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8028837, - "longitude": -76.0070613 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8167234, - "longitude": -76.0087027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.817481, - "longitude": -76.0087939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8103063, - "longitude": -76.0050408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8103152, - "longitude": -76.0056312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8104699, - "longitude": -76.0050538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8104784, - "longitude": -76.0056295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8110074, - "longitude": -76.0051313 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8110626, - "longitude": -76.0051411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8115487, - "longitude": -76.0052736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8133393, - "longitude": -76.0061289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8133422, - "longitude": -76.0059421 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8134277, - "longitude": -76.0061374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8134296, - "longitude": -76.0059752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8083596, - "longitude": -76.0050829 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8089887, - "longitude": -76.0050693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8095514, - "longitude": -76.0050571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8133828, - "longitude": -76.0061331 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8103936, - "longitude": -76.0056304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8190429, - "longitude": -76.0083311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8192158, - "longitude": -76.0081395 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8166337, - "longitude": -76.0074354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.81669, - "longitude": -76.0071972 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8167501, - "longitude": -76.0074787 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8174719, - "longitude": -76.0077548 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8174872, - "longitude": -76.0075027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8189999, - "longitude": -76.0080676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8190095, - "longitude": -76.0081911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8190109, - "longitude": -76.0081549 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8190115, - "longitude": -76.0082252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8190189, - "longitude": -76.0082608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8192164, - "longitude": -76.0083054 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8190817, - "longitude": -76.0083254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8220206, - "longitude": -76.0514631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.822047, - "longitude": -76.0514648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8223962, - "longitude": -76.0514218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8233546, - "longitude": -76.0516126 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8262876, - "longitude": -76.0521356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8267288, - "longitude": -76.052191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8272617, - "longitude": -76.0522368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8275705, - "longitude": -76.0522482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8278504, - "longitude": -76.0522349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8281202, - "longitude": -76.0519992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8283933, - "longitude": -76.0522259 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8288317, - "longitude": -76.0521915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8298675, - "longitude": -76.0520691 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8300209, - "longitude": -76.0520452 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8301712, - "longitude": -76.0520147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8304242, - "longitude": -76.0490464 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8307376, - "longitude": -76.0520934 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8309265, - "longitude": -76.0496633 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8307419, - "longitude": -76.0518466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8309909, - "longitude": -76.0508274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8308486, - "longitude": -76.0493202 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8304242, - "longitude": -76.0487675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8305916, - "longitude": -76.0470723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8305444, - "longitude": -76.0477697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8307548, - "longitude": -76.0458009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.830656, - "longitude": -76.0463374 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8306389, - "longitude": -76.0474264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8327428, - "longitude": -76.0461711 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8329059, - "longitude": -76.0461818 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8364208, - "longitude": -76.046719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8364894, - "longitude": -76.0461639 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8365562, - "longitude": -76.0457518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8352854, - "longitude": -76.046537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8346341, - "longitude": -76.0464304 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8353419, - "longitude": -76.0457949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8353402, - "longitude": -76.0459597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8353407, - "longitude": -76.0459113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8370533, - "longitude": -76.0418584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8353434, - "longitude": -76.0457273 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8374696, - "longitude": -76.0386896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8375049, - "longitude": -76.0386969 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8375116, - "longitude": -76.0383888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8373458, - "longitude": -76.0397276 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381271, - "longitude": -76.0284332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381557, - "longitude": -76.0286319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381799, - "longitude": -76.0288384 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382064, - "longitude": -76.0290924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.838224, - "longitude": -76.029316 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382494, - "longitude": -76.0296712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382526, - "longitude": -76.0301261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382563, - "longitude": -76.030094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382568, - "longitude": -76.0300645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380591, - "longitude": -76.0334977 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380883, - "longitude": -76.033286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381, - "longitude": -76.0335617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381395, - "longitude": -76.0332346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381771, - "longitude": -76.0329148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382177, - "longitude": -76.0309074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382269, - "longitude": -76.0323103 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8377578, - "longitude": -76.0303286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381475, - "longitude": -76.0308784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382, - "longitude": -76.0304506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8376741, - "longitude": -76.0307014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382936, - "longitude": -76.0310541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381507, - "longitude": -76.0304788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8377151, - "longitude": -76.030519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8369055, - "longitude": -76.0245876 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8361572, - "longitude": -76.0220603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8362541, - "longitude": -76.0218748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8365457, - "longitude": -76.0237263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8367744, - "longitude": -76.024177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8369162, - "longitude": -76.0218314 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8373644, - "longitude": -76.0257026 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8374717, - "longitude": -76.0259639 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8375436, - "longitude": -76.0261554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8376099, - "longitude": -76.0263376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8376883, - "longitude": -76.026569 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8377581, - "longitude": -76.0267955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378304, - "longitude": -76.0270417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378753, - "longitude": -76.0272023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379512, - "longitude": -76.0275128 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380074, - "longitude": -76.0277676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380505, - "longitude": -76.0279891 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380915, - "longitude": -76.0282103 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8275836, - "longitude": -76.0117875 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8276434, - "longitude": -76.010562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8277392, - "longitude": -76.0118717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8277396, - "longitude": -76.0107482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8278348, - "longitude": -76.0116501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8278539, - "longitude": -76.0115911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8279012, - "longitude": -76.0113954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8279199, - "longitude": -76.0107949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8254416, - "longitude": -76.0099432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8254515, - "longitude": -76.0099318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8276913, - "longitude": -76.0118458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8284973, - "longitude": -76.0107688 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8280831, - "longitude": -76.0108723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8281141, - "longitude": -76.0108522 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8284606, - "longitude": -76.0109475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8297521, - "longitude": -76.0110734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8303979, - "longitude": -76.0112753 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8307498, - "longitude": -76.01141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8314375, - "longitude": -76.0116105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8319748, - "longitude": -76.0117834 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8327038, - "longitude": -76.0120296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8333726, - "longitude": -76.0122258 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8335742, - "longitude": -76.0122913 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.833717, - "longitude": -76.0123446 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8338508, - "longitude": -76.0123726 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8339581, - "longitude": -76.0124041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8343602, - "longitude": -76.0125661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378246, - "longitude": -76.0211897 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378044, - "longitude": -76.0193981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381581, - "longitude": -76.0193399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381537, - "longitude": -76.0182873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379306, - "longitude": -76.0172896 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8369007, - "longitude": -76.0213192 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378933, - "longitude": -76.0155317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379196, - "longitude": -76.0158831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379311, - "longitude": -76.0163975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379366, - "longitude": -76.0173893 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379444, - "longitude": -76.0174873 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379598, - "longitude": -76.0175999 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379731, - "longitude": -76.0176885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8379896, - "longitude": -76.0177831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380124, - "longitude": -76.0178752 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380418, - "longitude": -76.0179801 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8380718, - "longitude": -76.0180771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8381941, - "longitude": -76.0185523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382488, - "longitude": -76.01855 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8382287, - "longitude": -76.0193383 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378623, - "longitude": -76.0147233 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8374144, - "longitude": -76.0137773 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8366585, - "longitude": -76.0133532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8355886, - "longitude": -76.013027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8376974, - "longitude": -76.0141356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.834942, - "longitude": -76.0127637 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8351143, - "longitude": -76.012837 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8370848, - "longitude": -76.0135541 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8372334, - "longitude": -76.013641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8373253, - "longitude": -76.0137005 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8375179, - "longitude": -76.0138768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8375833, - "longitude": -76.0139491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8376437, - "longitude": -76.0140356 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8377422, - "longitude": -76.0142326 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8377823, - "longitude": -76.0143327 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378134, - "longitude": -76.0144399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.8378806, - "longitude": -76.0149139 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.936902, - "longitude": -76.3124205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9374283, - "longitude": -76.3131138 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9369181, - "longitude": -76.3102318 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9385058, - "longitude": -76.3163141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9385733, - "longitude": -76.3163221 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9387095, - "longitude": -76.3163302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9388435, - "longitude": -76.3163261 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9389871, - "longitude": -76.316302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9391136, - "longitude": -76.3162725 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9392776, - "longitude": -76.3162081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9384895, - "longitude": -76.3163094 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9384863, - "longitude": -76.3161528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9384788, - "longitude": -76.3159778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9383282, - "longitude": -76.3151363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9383132, - "longitude": -76.3150625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9382687, - "longitude": -76.3149317 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9382162, - "longitude": -76.3147849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9381653, - "longitude": -76.3147232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9381133, - "longitude": -76.3146756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.938049, - "longitude": -76.3146347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9379702, - "longitude": -76.3146038 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9379032, - "longitude": -76.3145871 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9375211, - "longitude": -76.3145341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9374846, - "longitude": -76.3144691 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9374503, - "longitude": -76.3144074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9374107, - "longitude": -76.3143571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9373555, - "longitude": -76.3142994 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9395209, - "longitude": -76.3160566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9396774, - "longitude": -76.3159198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9401908, - "longitude": -76.3151647 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9402444, - "longitude": -76.3150789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9403516, - "longitude": -76.3149475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9403621, - "longitude": -76.3135775 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9404288, - "longitude": -76.3148791 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9404414, - "longitude": -76.3130022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9405028, - "longitude": -76.3148295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9405312, - "longitude": -76.3139349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9405754, - "longitude": -76.3120487 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9406295, - "longitude": -76.3120587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9406384, - "longitude": -76.314757 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9406796, - "longitude": -76.314226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408251, - "longitude": -76.3120862 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9409026, - "longitude": -76.3146062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9412903, - "longitude": -76.3121278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9412938, - "longitude": -76.3120736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.941297, - "longitude": -76.3120232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9416277, - "longitude": -76.312044 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9416288, - "longitude": -76.3120178 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9416888, - "longitude": -76.3119561 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9369481, - "longitude": -76.3060985 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9393347, - "longitude": -76.3035709 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9346319, - "longitude": -76.2974722 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9346881, - "longitude": -76.2976008 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9355556, - "longitude": -76.2989974 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9354388, - "longitude": -76.2988217 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9351962, - "longitude": -76.2992325 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9363135, - "longitude": -76.3001708 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9363382, - "longitude": -76.300148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9361273, - "longitude": -76.3020591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9351633, - "longitude": -76.2992696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9352287, - "longitude": -76.2991959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9360659, - "longitude": -76.300431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9361377, - "longitude": -76.3003573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9388807, - "longitude": -76.3032758 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.939167, - "longitude": -76.297199 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9391574, - "longitude": -76.2987339 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9389081, - "longitude": -76.299037 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9389098, - "longitude": -76.2998866 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9391703, - "longitude": -76.3026241 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.939115, - "longitude": -76.3027109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9307016, - "longitude": -76.2910697 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9312446, - "longitude": -76.2904955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9306302, - "longitude": -76.291144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9307371, - "longitude": -76.2912413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9308238, - "longitude": -76.2913421 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9310323, - "longitude": -76.2915225 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311657, - "longitude": -76.2916435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.93126, - "longitude": -76.2917571 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.930644, - "longitude": -76.2911703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9306693, - "longitude": -76.291145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9302991, - "longitude": -76.2861197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9305847, - "longitude": -76.2885802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9306547, - "longitude": -76.2888828 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.930733, - "longitude": -76.2889943 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9307351, - "longitude": -76.2887945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9308134, - "longitude": -76.288906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9309659, - "longitude": -76.2891234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311233, - "longitude": -76.2864848 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311339, - "longitude": -76.2861628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311716, - "longitude": -76.2864169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311891, - "longitude": -76.2863921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9312057, - "longitude": -76.2863747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9312183, - "longitude": -76.2863664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9312328, - "longitude": -76.286359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9312527, - "longitude": -76.286354 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9312719, - "longitude": -76.2863598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313023, - "longitude": -76.2863772 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313208, - "longitude": -76.2863962 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313305, - "longitude": -76.2864169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9323837, - "longitude": -76.2840495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.932388, - "longitude": -76.2848662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9320613, - "longitude": -76.2854076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9320613, - "longitude": -76.2851686 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317949, - "longitude": -76.285177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317949, - "longitude": -76.2851853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317638, - "longitude": -76.2852234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317638, - "longitude": -76.2851853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.931728, - "longitude": -76.2852234 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9315055, - "longitude": -76.2851518 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9315054, - "longitude": -76.2853349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314603, - "longitude": -76.2853349 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.931728, - "longitude": -76.285152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314602, - "longitude": -76.2857431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314644, - "longitude": -76.2857431 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314633, - "longitude": -76.2858639 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314719, - "longitude": -76.285864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314666, - "longitude": -76.2865452 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313305, - "longitude": -76.2865446 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311716, - "longitude": -76.2867303 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311069, - "longitude": -76.2867283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9311048, - "longitude": -76.2864838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9301196, - "longitude": -76.2858117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9298719, - "longitude": -76.2859156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.929873, - "longitude": -76.2877603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9301801, - "longitude": -76.2878924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.930082, - "longitude": -76.2882552 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9306123, - "longitude": -76.2884856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9306378, - "longitude": -76.2885219 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.931018, - "longitude": -76.2890661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9310308, - "longitude": -76.2890853 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9341451, - "longitude": -76.2962898 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9339736, - "longitude": -76.29588 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.93367, - "longitude": -76.295269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9337548, - "longitude": -76.2954039 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9338394, - "longitude": -76.2955605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9338002, - "longitude": -76.2954832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9339685, - "longitude": -76.2962222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9339194, - "longitude": -76.2960979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9330815, - "longitude": -76.2854163 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9333024, - "longitude": -76.2848756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9334278, - "longitude": -76.2850204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9334276, - "longitude": -76.285458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9330813, - "longitude": -76.2854603 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397372, - "longitude": -76.3038277 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9401536, - "longitude": -76.3041254 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9407496, - "longitude": -76.3048074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408077, - "longitude": -76.3076143 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408267, - "longitude": -76.3046156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408474, - "longitude": -76.3085584 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408482, - "longitude": -76.3048516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408506, - "longitude": -76.3068217 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408763, - "longitude": -76.3078718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408806, - "longitude": -76.3066782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408806, - "longitude": -76.3079147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9409181, - "longitude": -76.3059607 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9409535, - "longitude": -76.3053827 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9409556, - "longitude": -76.3085692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9410599, - "longitude": -76.305205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.941106, - "longitude": -76.3051232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.941158, - "longitude": -76.3051789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9411746, - "longitude": -76.305148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.941744, - "longitude": -76.3097795 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9417944, - "longitude": -76.3086342 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.941818, - "longitude": -76.3097903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9396182, - "longitude": -76.3009418 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9396664, - "longitude": -76.3011962 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.939708, - "longitude": -76.301239 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397146, - "longitude": -76.301123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397271, - "longitude": -76.3012098 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9398002, - "longitude": -76.3012851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9398363, - "longitude": -76.3006024 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.940126, - "longitude": -76.2972023 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9399066, - "longitude": -76.3004766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397478, - "longitude": -76.3010721 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9396338, - "longitude": -76.3013611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9395254, - "longitude": -76.3019248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9395127, - "longitude": -76.3019049 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9395706, - "longitude": -76.3019954 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9499121, - "longitude": -76.3068445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9496196, - "longitude": -76.305719 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9494063, - "longitude": -76.3041057 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9524135, - "longitude": -76.3080945 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9495618, - "longitude": -76.3060537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9502798, - "longitude": -76.3079869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9515423, - "longitude": -76.3083141 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9497057, - "longitude": -76.3041662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.949517, - "longitude": -76.3068115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.950298, - "longitude": -76.3076663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9496903, - "longitude": -76.3044088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.950895, - "longitude": -76.3080311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9524115, - "longitude": -76.3081169 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9498682, - "longitude": -76.3076167 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9495556, - "longitude": -76.306143 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9494363, - "longitude": -76.3041473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9513226, - "longitude": -76.3081907 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9511061, - "longitude": -76.3081022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9517331, - "longitude": -76.3080579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9514254, - "longitude": -76.3082434 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9497338, - "longitude": -76.3068283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9496011, - "longitude": -76.3068191 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9497259, - "longitude": -76.3069653 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9495933, - "longitude": -76.3069533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9495917, - "longitude": -76.3060074 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9504398, - "longitude": -76.302421 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9509046, - "longitude": -76.3024923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9518049, - "longitude": -76.3025742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9509099, - "longitude": -76.3024217 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9519196, - "longitude": -76.300482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9504309, - "longitude": -76.3025205 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9502251, - "longitude": -76.3026332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9507857, - "longitude": -76.3024105 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9507835, - "longitude": -76.3024494 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9494921, - "longitude": -76.3025661 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9514935, - "longitude": -76.3025459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9518408, - "longitude": -76.3019189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9430011, - "longitude": -76.2960598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9430011, - "longitude": -76.2951747 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9430011, - "longitude": -76.2927312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9420702, - "longitude": -76.2960538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9427685, - "longitude": -76.2960591 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9422658, - "longitude": -76.2960524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9427746, - "longitude": -76.2961554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9422626, - "longitude": -76.2961583 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9401269, - "longitude": -76.2966076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9400663, - "longitude": -76.2964902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.940315, - "longitude": -76.2963041 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9403531, - "longitude": -76.2963839 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9406712, - "longitude": -76.2961321 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408799, - "longitude": -76.2960497 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9414647, - "longitude": -76.2960543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9414643, - "longitude": -76.2959826 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9417958, - "longitude": -76.2959799 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9420713, - "longitude": -76.2959779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9431837, - "longitude": -76.2889905 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9422869, - "longitude": -76.2862031 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9435195, - "longitude": -76.2887754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9413333, - "longitude": -76.2847791 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9420686, - "longitude": -76.2857353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9410611, - "longitude": -76.2848139 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9432241, - "longitude": -76.2881251 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9423894, - "longitude": -76.2864196 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9429283, - "longitude": -76.2875283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9421201, - "longitude": -76.2856749 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9420912, - "longitude": -76.2857048 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9430008, - "longitude": -76.2891147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9457241, - "longitude": -76.2847368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9465532, - "longitude": -76.2874302 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.948005, - "longitude": -76.2867426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9460391, - "longitude": -76.2851863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.946864, - "longitude": -76.2862368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9467043, - "longitude": -76.285703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.946118, - "longitude": -76.2854509 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9461105, - "longitude": -76.2854885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9460655, - "longitude": -76.2854898 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9460098, - "longitude": -76.2848494 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9551465, - "longitude": -76.3079734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9558302, - "longitude": -76.3075429 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.954197, - "longitude": -76.3045107 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9544907, - "longitude": -76.3045365 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9528766, - "longitude": -76.3078152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.953422, - "longitude": -76.3078451 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9534606, - "longitude": -76.307847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9535012, - "longitude": -76.307849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9551429, - "longitude": -76.3079838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9553896, - "longitude": -76.3002786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9562373, - "longitude": -76.3003658 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9542579, - "longitude": -76.3033631 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9551143, - "longitude": -76.3015911 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.954559, - "longitude": -76.3033874 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9551902, - "longitude": -76.3002622 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9545584, - "longitude": -76.3033976 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9547874, - "longitude": -76.303406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9550092, - "longitude": -76.3034248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9550318, - "longitude": -76.3030811 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9527843, - "longitude": -76.3009183 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9537939, - "longitude": -76.3030439 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9526644, - "longitude": -76.3029523 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9539901, - "longitude": -76.3033426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9537833, - "longitude": -76.3033238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9528261, - "longitude": -76.3029662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9541513, - "longitude": -76.3033549 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313552, - "longitude": -76.2793662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9320413, - "longitude": -76.2780841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9315186, - "longitude": -76.2803239 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313245, - "longitude": -76.2795635 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317405, - "longitude": -76.280576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9316993, - "longitude": -76.2787895 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314253, - "longitude": -76.2801496 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9316654, - "longitude": -76.2805278 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317437, - "longitude": -76.2780226 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9314238, - "longitude": -76.2791543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.931599, - "longitude": -76.280454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9315046, - "longitude": -76.2790096 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9315943, - "longitude": -76.2788928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313406, - "longitude": -76.2798626 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317426, - "longitude": -76.2832971 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313756, - "longitude": -76.2800166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9313224, - "longitude": -76.2796882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9317412, - "longitude": -76.2787573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.934806, - "longitude": -76.2791771 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9333335, - "longitude": -76.279357 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9329064, - "longitude": -76.2785615 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9347792, - "longitude": -76.2791543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.934727, - "longitude": -76.279424 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.935298, - "longitude": -76.2775798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9335657, - "longitude": -76.2794198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9372869, - "longitude": -76.274474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.936708, - "longitude": -76.2740851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9358247, - "longitude": -76.2740274 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9371818, - "longitude": -76.274411 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9371539, - "longitude": -76.2743882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.935025, - "longitude": -76.2744311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9368677, - "longitude": -76.2741642 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9376095, - "longitude": -76.2747208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9367945, - "longitude": -76.2741144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9374187, - "longitude": -76.2745585 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9349082, - "longitude": -76.2744566 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9350508, - "longitude": -76.2772689 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9350508, - "longitude": -76.2761786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9349232, - "longitude": -76.2755509 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9359079, - "longitude": -76.2740328 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397101, - "longitude": -76.2831883 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9398037, - "longitude": -76.2816248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.939902, - "longitude": -76.2803009 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9408024, - "longitude": -76.2835021 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.940031, - "longitude": -76.2781165 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397401, - "longitude": -76.2826961 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9400284, - "longitude": -76.2786554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397512, - "longitude": -76.2773118 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9398595, - "longitude": -76.2773306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.939808, - "longitude": -76.2773198 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.939659, - "longitude": -76.2766855 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9395229, - "longitude": -76.2765675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9397798, - "longitude": -76.2771641 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9469764, - "longitude": -76.280992 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9496394, - "longitude": -76.2806982 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9463002, - "longitude": -76.2826287 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9471593, - "longitude": -76.2797292 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9474833, - "longitude": -76.2785368 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9476657, - "longitude": -76.2780802 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9476143, - "longitude": -76.2780547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.946879, - "longitude": -76.2807611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9470248, - "longitude": -76.280814 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9468072, - "longitude": -76.2816147 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9465323, - "longitude": -76.2817796 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9484555, - "longitude": -76.2760224 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9487066, - "longitude": -76.2750999 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9506263, - "longitude": -76.2771738 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9507995, - "longitude": -76.2758932 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9485227, - "longitude": -76.2749332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9481766, - "longitude": -76.2765854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9478871, - "longitude": -76.2772537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.948255, - "longitude": -76.2759154 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9504763, - "longitude": -76.2771117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.950597, - "longitude": -76.2771629 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9507682, - "longitude": -76.2760036 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9504716, - "longitude": -76.2770784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9507937, - "longitude": -76.2757129 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9507899, - "longitude": -76.275925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9508467, - "longitude": -76.2757353 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9485639, - "longitude": -76.2747703 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9485087, - "longitude": -76.2749889 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9487128, - "longitude": -76.2750761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9484481, - "longitude": -76.2760551 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9484015, - "longitude": -76.2760283 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9483581, - "longitude": -76.27597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9483195, - "longitude": -76.2759029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9482723, - "longitude": -76.27586 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9481979, - "longitude": -76.2760984 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9480773, - "longitude": -76.2765399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9482307, - "longitude": -76.2766102 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9482094, - "longitude": -76.2766936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9482327, - "longitude": -76.2767029 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9481143, - "longitude": -76.2771669 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9480982, - "longitude": -76.2772252 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 36.9479149, - "longitude": -76.2771501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1506491, - "longitude": -75.9580012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1506921, - "longitude": -75.9587835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1587863, - "longitude": -75.9580484 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.1587755, - "longitude": -75.9573471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2226829, - "longitude": -76.0117465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2224968, - "longitude": -76.0118562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2204844, - "longitude": -76.0054547 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2206135, - "longitude": -76.0054237 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2273914, - "longitude": -75.9826645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2266131, - "longitude": -75.9722742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2271636, - "longitude": -75.9721598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2279381, - "longitude": -75.9825214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2877295, - "longitude": -76.0029712 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2873766, - "longitude": -76.0028901 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2883592, - "longitude": -75.9964909 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2890231, - "longitude": -75.9969392 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2888334, - "longitude": -75.9975448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.2884996, - "longitude": -75.9978022 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3009434, - "longitude": -75.9359373 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3009371, - "longitude": -75.9356366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3057669, - "longitude": -75.9354778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3057849, - "longitude": -75.935784 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5022935, - "longitude": -77.1301067 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5023784, - "longitude": -77.130957 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5025632, - "longitude": -77.1328501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5024748, - "longitude": -77.1319408 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5024056, - "longitude": -77.131262 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5007709, - "longitude": -77.1276735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5009766, - "longitude": -77.1282031 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.500268, - "longitude": -77.126282 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5004964, - "longitude": -77.1269046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4999302, - "longitude": -77.1244397 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5018231, - "longitude": -77.1277739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5019052, - "longitude": -77.1276236 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5019564, - "longitude": -77.1274432 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.502026, - "longitude": -77.1273774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.502109, - "longitude": -77.1273555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5021921, - "longitude": -77.1273823 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5022203, - "longitude": -77.1275387 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5027837, - "longitude": -77.1288973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5022072, - "longitude": -77.1292101 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5027319, - "longitude": -77.1272573 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5029054, - "longitude": -77.1277515 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5013998, - "longitude": -77.1280123 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5003985, - "longitude": -77.1225543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4996059, - "longitude": -77.1227555 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4996421, - "longitude": -77.1167448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4999082, - "longitude": -77.1190891 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5022969, - "longitude": -77.1182976 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5027163, - "longitude": -77.1184939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5024413, - "longitude": -77.1184986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.499903, - "longitude": -77.1158811 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5004439, - "longitude": -77.1148065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5011783, - "longitude": -77.1152632 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5014949, - "longitude": -77.1153723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5018569, - "longitude": -77.1160655 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.501706, - "longitude": -77.1156382 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5033706, - "longitude": -77.1333906 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5039841, - "longitude": -77.1336973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5043656, - "longitude": -77.1298841 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5043987, - "longitude": -77.1309004 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5044223, - "longitude": -77.1325938 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5044485, - "longitude": -77.1336926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.504237, - "longitude": -77.133715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5036555, - "longitude": -77.1335694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5030069, - "longitude": -77.1287832 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5039212, - "longitude": -77.1228459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5039349, - "longitude": -77.1231903 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5040168, - "longitude": -77.1235552 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.504229, - "longitude": -77.1264485 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5041561, - "longitude": -77.1241061 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5043774, - "longitude": -77.1248189 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5043611, - "longitude": -77.1290466 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5045686, - "longitude": -77.1253388 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5047488, - "longitude": -77.1255901 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5048854, - "longitude": -77.1257072 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5050575, - "longitude": -77.1258208 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5052568, - "longitude": -77.1258728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5042323, - "longitude": -77.1268989 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.503547, - "longitude": -77.1223739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5035907, - "longitude": -77.12057 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5038194, - "longitude": -77.1194127 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5039868, - "longitude": -77.12245 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5035371, - "longitude": -77.1184699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5030941, - "longitude": -77.1185505 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5044316, - "longitude": -77.1181014 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.503946, - "longitude": -77.1194427 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5040855, - "longitude": -77.1187652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.504623, - "longitude": -77.1189338 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5049243, - "longitude": -77.1183051 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5050587, - "longitude": -77.1178536 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5182552, - "longitude": -76.7794385 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5204337, - "longitude": -76.7793097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5210634, - "longitude": -76.7792024 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.522595, - "longitude": -76.7793097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5226291, - "longitude": -76.7783012 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5194636, - "longitude": -76.7754473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5187318, - "longitude": -76.7754902 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5184935, - "longitude": -76.7752113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5223057, - "longitude": -76.7742672 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.522561, - "longitude": -76.7745676 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5188849, - "longitude": -76.7710914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5188509, - "longitude": -76.772293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5206039, - "longitude": -76.7735805 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5209783, - "longitude": -76.7740097 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5209783, - "longitude": -76.7743744 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5205698, - "longitude": -76.7748894 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5197529, - "longitude": -76.7748894 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.519021, - "longitude": -76.7691516 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5227992, - "longitude": -76.7745461 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5232417, - "longitude": -76.7739238 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.523514, - "longitude": -76.7743315 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5240586, - "longitude": -76.7737736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5241947, - "longitude": -76.7723145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5194309, - "longitude": -76.7616529 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.526914, - "longitude": -76.7630114 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5268977, - "longitude": -76.7632341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5273306, - "longitude": -76.7676457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5269102, - "longitude": -76.7674113 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5200805, - "longitude": -76.7496177 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5200185, - "longitude": -76.7508166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5197405, - "longitude": -76.7551845 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.525403, - "longitude": -76.7500844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5278667, - "longitude": -76.7500166 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5253773, - "longitude": -76.7512504 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.403896, - "longitude": -76.3917204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4036318, - "longitude": -76.3915542 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4061375, - "longitude": -76.384559 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4063889, - "longitude": -76.3846931 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6001903, - "longitude": -76.4516398 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6000098, - "longitude": -76.4517739 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.599598, - "longitude": -76.4495471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5985704, - "longitude": -76.4499047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5984646, - "longitude": -76.4464762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.598491, - "longitude": -76.4456608 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5986648, - "longitude": -76.4449885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5994242, - "longitude": -76.4450791 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.5996206, - "longitude": -76.4457562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6055823, - "longitude": -76.4488073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6036181, - "longitude": -76.4488498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.60338, - "longitude": -76.4489973 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6016504, - "longitude": -76.4500293 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6055502, - "longitude": -76.4456884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6014491, - "longitude": -76.4458993 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6022732, - "longitude": -76.4453473 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6030038, - "longitude": -76.4453554 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6030737, - "longitude": -76.4442888 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6049797, - "longitude": -76.4441925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6050369, - "longitude": -76.4456761 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.718653, - "longitude": -76.3637144 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7182533, - "longitude": -76.3638467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7166865, - "longitude": -76.3567109 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7172384, - "longitude": -76.3568312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.717454, - "longitude": -76.3573926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7170734, - "longitude": -76.357978 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7182089, - "longitude": -76.3615948 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7151513, - "longitude": -76.3554679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7151322, - "longitude": -76.3547863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.715608, - "longitude": -76.3545537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.819872, - "longitude": -77.1103347 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8195901, - "longitude": -77.1116659 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8181932, - "longitude": -77.1116058 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8181362, - "longitude": -77.1111367 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8190009, - "longitude": -77.1113692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8191941, - "longitude": -77.1100701 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8252659, - "longitude": -77.1135224 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8251487, - "longitude": -77.1139996 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8564953, - "longitude": -76.9069491 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8564491, - "longitude": -76.9049256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8564406, - "longitude": -76.9038312 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8555342, - "longitude": -76.8936818 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8549243, - "longitude": -76.893435 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8549921, - "longitude": -76.8930917 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8548057, - "longitude": -76.8919651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8548481, - "longitude": -76.8910746 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8550853, - "longitude": -76.8901949 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8550937, - "longitude": -76.8894975 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8552377, - "longitude": -76.888253 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8553648, - "longitude": -76.8879847 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8554665, - "longitude": -76.8875019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8556867, - "longitude": -76.886944 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8632595, - "longitude": -76.9066923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8625862, - "longitude": -76.9068742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8622809, - "longitude": -76.9068742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8612305, - "longitude": -76.9071358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8600543, - "longitude": -76.907386 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8593091, - "longitude": -76.9072495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8591385, - "longitude": -76.9073291 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8588706, - "longitude": -76.9075279 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8584947, - "longitude": -76.9078126 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8578026, - "longitude": -76.9083617 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.857501, - "longitude": -76.9081648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.857364, - "longitude": -76.9006448 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8640047, - "longitude": -76.9029736 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8647257, - "longitude": -76.9051981 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8649204, - "longitude": -76.9062715 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8642202, - "longitude": -76.9064762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8588209, - "longitude": -76.8955486 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8630094, - "longitude": -76.8936197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8628216, - "longitude": -76.8938915 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.862008, - "longitude": -76.8942539 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8618471, - "longitude": -76.8945257 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8618113, - "longitude": -76.8952844 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8616146, - "longitude": -76.8956921 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8615699, - "longitude": -76.8965188 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8617666, - "longitude": -76.8965528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8620885, - "longitude": -76.8964962 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8630273, - "longitude": -76.8969152 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8634121, - "longitude": -76.8971966 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8631967, - "longitude": -76.899562 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8633313, - "longitude": -76.8884216 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8630273, - "longitude": -76.889135 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.863072, - "longitude": -76.8899391 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8621243, - "longitude": -76.8915925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8621332, - "longitude": -76.8923286 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8639688, - "longitude": -76.8972193 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8642112, - "longitude": -76.897117 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8643818, - "longitude": -76.8972534 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8645882, - "longitude": -76.8977311 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8646511, - "longitude": -76.8986181 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8647768, - "longitude": -76.8990616 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8643638, - "longitude": -76.8991412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8640855, - "longitude": -76.8990047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8636815, - "longitude": -76.8990616 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.863519, - "longitude": -76.8874589 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8558053, - "longitude": -76.886472 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8560849, - "longitude": -76.8859463 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8564745, - "longitude": -76.8856995 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8566863, - "longitude": -76.8851416 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8567456, - "longitude": -76.8848197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8569235, - "longitude": -76.884412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8569235, - "longitude": -76.8840151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8571945, - "longitude": -76.8836503 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8573978, - "longitude": -76.8832533 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8578044, - "longitude": -76.8828027 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.858372, - "longitude": -76.8819766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8584143, - "longitude": -76.8817406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8583974, - "longitude": -76.8810754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8586685, - "longitude": -76.8803995 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8607692, - "longitude": -76.881923 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8620482, - "longitude": -76.8819766 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8638185, - "longitude": -76.883779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8637338, - "longitude": -76.8841438 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8639879, - "longitude": -76.8848197 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8640143, - "longitude": -76.8852269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8637677, - "longitude": -76.8859742 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8635036, - "longitude": -76.8865765 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3675921, - "longitude": -75.9472754 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3673382, - "longitude": -75.9467843 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3730946, - "longitude": -75.9420779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.37325, - "longitude": -75.9421256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3733295, - "longitude": -75.9422543 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.373322, - "longitude": -75.942445 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3857118, - "longitude": -75.8973065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3855583, - "longitude": -75.8972869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3863265, - "longitude": -75.8877656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3864834, - "longitude": -75.8877857 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3864179, - "longitude": -75.888596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3863768, - "longitude": -75.8890815 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3867315, - "longitude": -75.8891269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.3867707, - "longitude": -75.8886412 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4543003, - "longitude": -75.8821979 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4540461, - "longitude": -75.8817556 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4541781, - "longitude": -75.8821341 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.454061, - "longitude": -75.8819705 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.460827, - "longitude": -75.8797768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.46041, - "longitude": -75.8802155 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4587758, - "longitude": -75.8776366 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4606746, - "longitude": -75.8779652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4604602, - "longitude": -75.8781798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4609729, - "longitude": -75.8789925 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4605788, - "longitude": -75.8793871 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4585922, - "longitude": -75.8771846 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4579237, - "longitude": -75.8761256 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4582306, - "longitude": -75.8758182 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4588682, - "longitude": -75.8768284 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4601879, - "longitude": -75.8755066 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4604222, - "longitude": -75.8758779 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.4597698, - "longitude": -75.8765313 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6115276, - "longitude": -75.8029468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6100185, - "longitude": -75.8019218 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6109347, - "longitude": -75.8004821 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6121126, - "longitude": -75.8016083 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6115918, - "longitude": -75.8024579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6116211, - "longitude": -75.8025557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6115982, - "longitude": -75.8028025 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6163309, - "longitude": -75.7997284 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6164768, - "longitude": -75.7998673 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6355383, - "longitude": -75.7666235 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6359221, - "longitude": -75.767901 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.636384, - "longitude": -75.768062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6386689, - "longitude": -75.7668596 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6401102, - "longitude": -75.7677376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6401628, - "longitude": -75.7687717 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6400564, - "longitude": -75.762828 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6369829, - "longitude": -75.7634768 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6396001, - "longitude": -75.7630815 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6398473, - "longitude": -75.7629306 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6348831, - "longitude": -75.7646289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6374124, - "longitude": -75.7637789 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6351585, - "longitude": -75.7637527 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6354803, - "longitude": -75.7631403 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6356028, - "longitude": -75.7630955 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6361702, - "longitude": -75.7625406 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6414555, - "longitude": -75.7695696 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6406295, - "longitude": -75.7689537 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.64427, - "longitude": -75.763856 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6429542, - "longitude": -75.7660663 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6412983, - "longitude": -75.7611678 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6458477, - "longitude": -75.7630045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6418025, - "longitude": -75.7607748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6415783, - "longitude": -75.7619998 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6436811, - "longitude": -75.7645835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6439756, - "longitude": -75.7641326 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6447598, - "longitude": -75.7636045 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6467255, - "longitude": -75.7626068 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6479253, - "longitude": -75.7619864 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6489627, - "longitude": -75.762774 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6497152, - "longitude": -75.7623916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6510833, - "longitude": -75.7602572 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6508286, - "longitude": -75.7643648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6524739, - "longitude": -75.7628532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6550313, - "longitude": -75.7605296 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.647098, - "longitude": -75.7578364 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6445101, - "longitude": -75.7594808 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6444623, - "longitude": -75.7592879 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6532522, - "longitude": -75.7557289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6498174, - "longitude": -75.7563512 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6500974, - "longitude": -75.7571204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.650599, - "longitude": -75.7570818 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6525605, - "longitude": -75.7560266 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6590941, - "longitude": -75.7572121 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6551438, - "longitude": -75.7545963 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6556753, - "longitude": -75.754343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6539044, - "longitude": -75.7586959 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.656378, - "longitude": -75.7563787 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6577744, - "longitude": -75.755343 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6721934, - "longitude": -75.7140748 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6719821, - "longitude": -75.7138602 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6715556, - "longitude": -75.7144419 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.671967, - "longitude": -75.7149092 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7028926, - "longitude": -75.723557 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.703082, - "longitude": -75.7233614 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7065473, - "longitude": -75.7290678 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7065322, - "longitude": -75.729299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7064926, - "longitude": -75.7294206 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7233376, - "longitude": -75.7878156 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7235222, - "longitude": -75.7878756 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7242819, - "longitude": -75.7841358 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.7240967, - "longitude": -75.7840757 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6777905, - "longitude": -75.7067363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.6776055, - "longitude": -75.7065264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8256749, - "longitude": -76.2751207 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8254688, - "longitude": -76.2743835 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8316945, - "longitude": -76.2715199 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8314706, - "longitude": -76.27076 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8099982, - "longitude": -75.6158884 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8097585, - "longitude": -75.6165088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8117457, - "longitude": -75.6179788 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8121825, - "longitude": -75.6172977 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8074515, - "longitude": -75.6130831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.8080269, - "longitude": -75.612665 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9348498, - "longitude": -75.612673 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9343126, - "longitude": -75.6128483 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9332887, - "longitude": -75.6075952 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9337807, - "longitude": -75.6074434 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9931027, - "longitude": -75.594104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9886984, - "longitude": -75.5920598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9891766, - "longitude": -75.5916827 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9893889, - "longitude": -75.5921704 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9923742, - "longitude": -75.5936476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9924591, - "longitude": -75.5931797 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9927519, - "longitude": -75.5931769 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9928971, - "longitude": -75.5935228 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9931272, - "longitude": -75.5939509 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 37.9925161, - "longitude": -75.5929798 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2075723, - "longitude": -76.9999474 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2078495, - "longitude": -76.9992899 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2114791, - "longitude": -77.0024936 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.2111987, - "longitude": -77.0030149 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8393001, - "longitude": -77.0376735 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8392843, - "longitude": -77.0392657 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8393051, - "longitude": -77.0398504 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8393093, - "longitude": -77.0401401 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8394305, - "longitude": -77.0405692 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8394765, - "longitude": -77.0407248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8395266, - "longitude": -77.0410574 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8395122, - "longitude": -77.0416289 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8397272, - "longitude": -77.0427794 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8397731, - "longitude": -77.0429456 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8398859, - "longitude": -77.0430851 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8397587, - "longitude": -77.0355295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8395749, - "longitude": -77.0362806 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8394213, - "longitude": -77.0370458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8395487, - "longitude": -77.036492 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.840165, - "longitude": -77.0443782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.840281, - "longitude": -77.0447363 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.84073, - "longitude": -77.0451826 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8410642, - "longitude": -77.0457405 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8412817, - "longitude": -77.0465091 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8413298, - "longitude": -77.0471958 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8413152, - "longitude": -77.0476263 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.841574, - "longitude": -77.0477361 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8418038, - "longitude": -77.0479507 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8419458, - "longitude": -77.0480365 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8426478, - "longitude": -77.0483476 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8431909, - "longitude": -77.0485568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8435335, - "longitude": -77.048648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8440683, - "longitude": -77.0487499 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8446987, - "longitude": -77.048831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8454863, - "longitude": -77.0488605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8457453, - "longitude": -77.0487988 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.845973, - "longitude": -77.048662 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8463177, - "longitude": -77.0486459 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8464681, - "longitude": -77.0485145 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8413245, - "longitude": -77.0469073 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8413053, - "longitude": -77.0466618 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8411848, - "longitude": -77.0460577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8405147, - "longitude": -77.044942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8402365, - "longitude": -77.0446939 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8402257, - "longitude": -77.0445194 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8401628, - "longitude": -77.0442762 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8402073, - "longitude": -77.04413 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8465235, - "longitude": -77.048544 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8471094, - "longitude": -77.0479619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8475143, - "longitude": -77.047244 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8481617, - "longitude": -77.0476248 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8487903, - "longitude": -77.0474417 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8500903, - "longitude": -77.0474013 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8507023, - "longitude": -77.0474818 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8509697, - "longitude": -77.0472619 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8514632, - "longitude": -77.047087 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8523191, - "longitude": -77.04694 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8490799, - "longitude": -77.0477332 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8493229, - "longitude": -77.0477111 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8498552, - "longitude": -77.0473257 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8502929, - "longitude": -77.047404 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8504976, - "longitude": -77.0474577 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8466843, - "longitude": -77.0484501 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8469089, - "longitude": -77.0482288 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8493467, - "longitude": -77.0476645 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8477187, - "longitude": -77.0473822 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8482669, - "longitude": -77.0476111 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8479967, - "longitude": -77.0475605 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8473193, - "longitude": -77.0476625 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8489952, - "longitude": -77.0475221 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8486394, - "longitude": -77.0474587 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8488988, - "longitude": -77.047458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8498145, - "longitude": -77.0473741 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8497118, - "longitude": -77.0474611 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.849493, - "longitude": -77.0475706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8507452, - "longitude": -77.0474465 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8516368, - "longitude": -77.0470572 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8521371, - "longitude": -77.0469713 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8527238, - "longitude": -77.0467521 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8532089, - "longitude": -77.0465269 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.855281, - "longitude": -77.0461568 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8562799, - "longitude": -77.0461482 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8571404, - "longitude": -77.046336 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8577629, - "longitude": -77.0463628 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8586145, - "longitude": -77.0460951 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.859275, - "longitude": -77.0459175 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8594505, - "longitude": -77.0458532 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8545892, - "longitude": -77.0462804 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8596552, - "longitude": -77.0456869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8598879, - "longitude": -77.0454471 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8603244, - "longitude": -77.0452995 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8604769, - "longitude": -77.0451869 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8608737, - "longitude": -77.0451279 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8612768, - "longitude": -77.0448623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8618052, - "longitude": -77.0445137 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8621109, - "longitude": -77.044229 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8401157, - "longitude": -77.0432246 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8404542, - "longitude": -77.0433319 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8405503, - "longitude": -77.043301 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8405681, - "longitude": -77.0433104 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8405942, - "longitude": -77.043348 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8405077, - "longitude": -77.043493 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8403163, - "longitude": -77.0437449 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8402536, - "longitude": -77.043863 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8402319, - "longitude": -77.0439838 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8405739, - "longitude": -77.0434165 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8462012, - "longitude": -77.0327264 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8457981, - "longitude": -77.0328284 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8450293, - "longitude": -77.0330054 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8446324, - "longitude": -77.0331019 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8442814, - "longitude": -77.0332173 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8439367, - "longitude": -77.0333675 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8438281, - "longitude": -77.0334131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8433121, - "longitude": -77.0336706 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.84284, - "longitude": -77.0339173 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.842723, - "longitude": -77.0339629 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8426708, - "longitude": -77.0339683 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8420273, - "longitude": -77.0340219 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8416638, - "longitude": -77.034089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8412105, - "longitude": -77.0342285 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8410935, - "longitude": -77.0342928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.841035, - "longitude": -77.0342928 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8410015, - "longitude": -77.0343089 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8409556, - "longitude": -77.0343519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8409096, - "longitude": -77.0344538 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8408637, - "longitude": -77.0345718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.840801, - "longitude": -77.0345986 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8402411, - "longitude": -77.0345718 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8401492, - "longitude": -77.0345664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8401074, - "longitude": -77.0345879 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8400355, - "longitude": -77.034664 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8527332, - "longitude": -77.0324528 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8523029, - "longitude": -77.0322946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8522423, - "longitude": -77.0322919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8520669, - "longitude": -77.0323053 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8515363, - "longitude": -77.0322249 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8514611, - "longitude": -77.0322222 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8511178, - "longitude": -77.0322364 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8505636, - "longitude": -77.0316916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8498477, - "longitude": -77.0310519 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8496777, - "longitude": -77.0312288 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8490956, - "longitude": -77.0322926 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8489023, - "longitude": -77.0322946 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8487435, - "longitude": -77.032308 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8482108, - "longitude": -77.0322919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8481544, - "longitude": -77.0322919 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8481085, - "longitude": -77.0323 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8480291, - "longitude": -77.0323295 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8479769, - "longitude": -77.0323563 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8479121, - "longitude": -77.032359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8476969, - "longitude": -77.0323777 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8474985, - "longitude": -77.032426 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8472102, - "longitude": -77.032477 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8586631, - "longitude": -77.0348346 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8578777, - "longitude": -77.0344457 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8567749, - "longitude": -77.0338449 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8556575, - "longitude": -77.0332387 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8550893, - "longitude": -77.0329115 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8550329, - "longitude": -77.032882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.854987, - "longitude": -77.0328579 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8549431, - "longitude": -77.0328498 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8548867, - "longitude": -77.0328686 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.854847, - "longitude": -77.0328793 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8547551, - "longitude": -77.032882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8544982, - "longitude": -77.0328069 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8541724, - "longitude": -77.0326942 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.854093, - "longitude": -77.0326782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8540387, - "longitude": -77.0326782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8539698, - "longitude": -77.0326782 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8538862, - "longitude": -77.0326728 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633966, - "longitude": -77.0428131 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632976, - "longitude": -77.042656 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.863331, - "longitude": -77.042597 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633936, - "longitude": -77.0425648 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8634459, - "longitude": -77.042495 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8634417, - "longitude": -77.0424146 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8634145, - "longitude": -77.0422831 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.863354, - "longitude": -77.0420927 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633059, - "longitude": -77.0419854 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632621, - "longitude": -77.0418299 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632057, - "longitude": -77.0416904 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8629655, - "longitude": -77.0413524 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8628736, - "longitude": -77.0412693 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8628256, - "longitude": -77.0411673 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8627358, - "longitude": -77.041052 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8626042, - "longitude": -77.0408723 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8625395, - "longitude": -77.0407623 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8623912, - "longitude": -77.0404485 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8623661, - "longitude": -77.0403734 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8623661, - "longitude": -77.0403359 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8623682, - "longitude": -77.0402876 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8623891, - "longitude": -77.0402232 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8624288, - "longitude": -77.0401454 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8625979, - "longitude": -77.0399148 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8626689, - "longitude": -77.039845 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8627379, - "longitude": -77.0397941 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8628089, - "longitude": -77.0397833 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8629864, - "longitude": -77.0397914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8630825, - "longitude": -77.0397914 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8631827, - "longitude": -77.039786 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8631994, - "longitude": -77.039778 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.863214, - "longitude": -77.0397458 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632809, - "longitude": -77.0395151 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632997, - "longitude": -77.0392576 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633143, - "longitude": -77.0389062 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633352, - "longitude": -77.0385468 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633519, - "longitude": -77.0383081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633414, - "longitude": -77.0382652 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633206, - "longitude": -77.0382008 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632976, - "longitude": -77.0381472 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.86326, - "longitude": -77.0380882 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632412, - "longitude": -77.038056 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8632161, - "longitude": -77.0380399 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8630261, - "longitude": -77.0380157 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8627358, - "longitude": -77.0379702 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8625332, - "longitude": -77.0379272 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8622679, - "longitude": -77.0378924 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8618523, - "longitude": -77.0378065 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8616894, - "longitude": -77.0377475 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8615453, - "longitude": -77.0377046 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8614576, - "longitude": -77.0376671 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8614033, - "longitude": -77.037651 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8613469, - "longitude": -77.0376483 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8613051, - "longitude": -77.0376376 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8612613, - "longitude": -77.0376081 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8626866, - "longitude": -77.0436929 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8633215, - "longitude": -77.0429204 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8612007, - "longitude": -77.0375598 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611443, - "longitude": -77.0374874 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611151, - "longitude": -77.0374203 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611151, - "longitude": -77.0373506 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611297, - "longitude": -77.0371467 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611422, - "longitude": -77.0370716 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611318, - "longitude": -77.0369885 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611297, - "longitude": -77.0369214 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8611109, - "longitude": -77.036849 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8610984, - "longitude": -77.0368088 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8610837, - "longitude": -77.03679 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8610691, - "longitude": -77.0368007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8610441, - "longitude": -77.0368329 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8610211, - "longitude": -77.0368517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8609918, - "longitude": -77.0368624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8609584, - "longitude": -77.0368624 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8609208, - "longitude": -77.0368517 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8608477, - "longitude": -77.0368007 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8606807, - "longitude": -77.036629 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8605553, - "longitude": -77.0364601 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8604864, - "longitude": -77.0363823 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8601857, - "longitude": -77.036047 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8599893, - "longitude": -77.0358271 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8597408, - "longitude": -77.0354301 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": 38.8597032, - "longitude": -77.0353791 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": -34.6955228, - "longitude": 138.5799916 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": -34.694944, - "longitude": 138.5786699 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": -34.6893736, - "longitude": 138.5822783 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": -34.6899525, - "longitude": 138.5836001 - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - }, - { - "name": null, - "alt_name": null, - "icao": null, - "iata": null, - "faa": null, - "elevation": null, - "location": { - "latitude": null, - "longitude": null - }, - "state": null, - "type": null - } -] \ No newline at end of file diff --git a/data/airports_2024-1-5.json b/data/airports_2024-1-5.json deleted file mode 100644 index 24caa22..0000000 --- a/data/airports_2024-1-5.json +++ /dev/null @@ -1 +0,0 @@ -[{"icao":"KBUF","iata":"BUF","local":"BUF","name":"Buffalo Niagara International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NY","municipality":"Buffalo","elevation_ft":728,"latitude":42.94049835,"longitude":-78.73220062,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8829,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":7161,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"D-ATIS","frequency_mhz":135.35}],"has_metar":true,"public":true},{"icao":"KLBO","iata":"","local":"LBO","name":"Floyd W. Jones Lebanon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lebanon","elevation_ft":1321,"latitude":37.64830017,"longitude":-92.65239716,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPLL","iata":"LCJ","local":"","name":"Łódź Władysław Reymont Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-LD","municipality":"Łódź","elevation_ft":604,"latitude":51.7219009399,"longitude":19.3980998993,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBVN","iata":"","local":"BVN","name":"Albion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Albion","elevation_ft":1806,"latitude":41.72859954833984,"longitude":-98.05580139160156,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3700,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFRI","iata":"FRI","local":"FRI","name":"Marshall Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Fort Riley (Junction City)","elevation_ft":1065,"latitude":39.053021,"longitude":-96.764202,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4503,"width_ft":100,"surface":"C"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.025},{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KLAW","iata":"LAW","local":"LAW","name":"Lawton Fort Sill Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lawton","elevation_ft":1110,"latitude":34.5676994324,"longitude":-98.4166030884,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8599,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":120.75}],"has_metar":true,"public":true},{"icao":"EDDM","iata":"MUC","local":"","name":"Munich Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BY","municipality":"Munich","elevation_ft":1487,"latitude":48.353802,"longitude":11.7861,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"08R/26L","length_ft":13123,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.12},{"id":"TWR","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"EPGD","iata":"GDN","local":"","name":"Gdańsk Lech Wałęsa Airport","category":"large_airport","iso_country":"PL","iso_region":"PL-PM","municipality":"Gdańsk","elevation_ft":489,"latitude":54.377602,"longitude":18.4662,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALN","iata":"ALN","local":"ALN","name":"St Louis Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Alton/St Louis","elevation_ft":544,"latitude":38.89030075069999,"longitude":-90.0459976196,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":8099,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126},{"id":"ATIS","frequency_mhz":128}],"has_metar":true,"public":true},{"icao":"KBTR","iata":"BTR","local":"BTR","name":"Baton Rouge Metropolitan Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":70,"latitude":30.533199,"longitude":-91.149597,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":7500,"width_ft":150,"surface":"C"},{"id":"04R/22L","length_ft":3799,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":7005,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":125.2}],"has_metar":true,"public":true},{"icao":"KDRM","iata":"DRE","local":"DRM","name":"Drummond Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Drummond Island","elevation_ft":668,"latitude":46.0093002319,"longitude":-83.74389648440001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2500,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFPR","iata":"FPR","local":"FPR","name":"St Lucie County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":24,"latitude":27.49510002,"longitude":-80.36830139,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"10R/28L","length_ft":6492,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4755,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.2},{"id":"ATIS","frequency_mhz":134.825}],"has_metar":true,"public":true},{"icao":"KHQM","iata":"HQM","local":"HQM","name":"Bowerman Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Hoquiam","elevation_ft":18,"latitude":46.9711990356,"longitude":-123.93699646,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBB","iata":"LBB","local":"LBB","name":"Lubbock Preston Smith International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3282,"latitude":33.663601,"longitude":-101.822998,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":8003,"width_ft":150,"surface":"C"},{"id":"17L/35R","length_ft":2891,"width_ft":74,"surface":"A"},{"id":"17R/35L","length_ft":11500,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"ATIS","frequency_mhz":125.3}],"has_metar":true,"public":true},{"icao":"CYTE","iata":"YTE","local":"","name":"Cape Dorset Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Kinngait","elevation_ft":164,"latitude":64.230003,"longitude":-76.526703,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3988,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDL","iata":"DUS","local":"","name":"Düsseldorf Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Düsseldorf","elevation_ft":147,"latitude":51.289501,"longitude":6.76678,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"05L/23R","length_ft":8859,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":115.15},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"EGPI","iata":"ILY","local":"","name":"Islay Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Port Ellen","elevation_ft":56,"latitude":55.68190002441406,"longitude":-6.256669998168945,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5069,"width_ft":151,"surface":"H"},{"id":"08/26","length_ft":2083,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPSY","iata":"SZY","local":"","name":"Olsztyn-Mazury Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-WN","municipality":"Olsztyn","elevation_ft":463,"latitude":53.481899,"longitude":20.9377,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GLRB","iata":"ROB","local":"","name":"Roberts International Airport","category":"large_airport","iso_country":"LR","iso_region":"LR-MG","municipality":"Monrovia","elevation_ft":31,"latitude":6.23379,"longitude":-10.3623,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":11000,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJG","iata":"","local":"AJG","name":"Mount Carmel Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Carmel","elevation_ft":429,"latitude":38.60649872,"longitude":-87.72669983,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4000,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAZ","iata":"","local":"BAZ","name":"New Braunfels Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":651,"latitude":29.7045,"longitude":-98.042198,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6503,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5364,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.325},{"id":"LCL/P","frequency_mhz":127.05}],"has_metar":true,"public":true},{"icao":"KBTL","iata":"BTL","local":"BTL","name":"Battle Creek Executive Airport at Kellogg Field","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Battle Creek","elevation_ft":952,"latitude":42.307301,"longitude":-85.251503,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":10004,"width_ft":150,"surface":"A"},{"id":"05R/23L","length_ft":4100,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":4835,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.825},{"id":"ATIS","frequency_mhz":128.325}],"has_metar":true,"public":true},{"icao":"KCNU","iata":"CNU","local":"CNU","name":"Chanute Martin Johnson Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Chanute","elevation_ft":1002,"latitude":37.668173,"longitude":-95.486727,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4255,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDNN","iata":"DNN","local":"DNN","name":"Dalton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dalton","elevation_ft":709,"latitude":34.72290039,"longitude":-84.87020111,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5496,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELO","iata":"LYU","local":"ELO","name":"Ely Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ely","elevation_ft":1456,"latitude":47.82450104,"longitude":-91.83070374,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5596,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFRH","iata":"FRH","local":"FRH","name":"French Lick Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"French Lick","elevation_ft":792,"latitude":38.5061988831,"longitude":-86.63690185550001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGOP","iata":"","local":"GOP","name":"Gatesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gatesville","elevation_ft":905,"latitude":31.421301,"longitude":-97.796996,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHRO","iata":"HRO","local":"HRO","name":"Boone County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Harrison","elevation_ft":1365,"latitude":36.26150131225586,"longitude":-93.15470123291016,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6161,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KISQ","iata":"ISQ","local":"ISQ","name":"Schoolcraft County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Manistique","elevation_ft":684,"latitude":45.97460175,"longitude":-86.17179871,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2501,"width_ft":50,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBL","iata":"LBL","local":"LBL","name":"Liberal Mid-America Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Liberal","elevation_ft":2885,"latitude":37.0442009,"longitude":-100.9599991,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":7105,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLL","iata":"YLL","local":"","name":"Lloydminster Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Lloydminster","elevation_ft":2193,"latitude":53.309200286865234,"longitude":-110.072998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5579,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTS","iata":"YTS","local":"","name":"Timmins/Victor M. Power","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Timmins","elevation_ft":967,"latitude":48.5696983337,"longitude":-81.376701355,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":4903,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAY","iata":"MZW","local":"","name":"Mecheria Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-45","municipality":"Mecheria","elevation_ft":3855,"latitude":33.535900116,"longitude":-0.242353007197,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/34","length_ft":11750,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":9600,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDK","iata":"CGN","local":"","name":"Cologne Bonn Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Köln (Cologne)","elevation_ft":302,"latitude":50.865898,"longitude":7.14274,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":12517,"width_ft":197,"surface":"H"},{"id":"06/24","length_ft":8067,"width_ft":148,"surface":"H"},{"id":"14R/32L","length_ft":6113,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.12},{"id":"TWR","frequency_mhz":124.97}],"has_metar":true,"public":true},{"icao":"EFKT","iata":"KTT","local":"","name":"Kittilä Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Kittilä","elevation_ft":644,"latitude":67.700996398926,"longitude":24.846799850464,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPL","iata":"BEB","local":"","name":"Benbecula Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Balivanich","elevation_ft":19,"latitude":57.48109817504883,"longitude":-7.362780094146728,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6027,"width_ft":151,"surface":"H"},{"id":"17/35","length_ft":3963,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBO","iata":"BOO","local":"","name":"Bodø Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Bodø","elevation_ft":42,"latitude":67.269203,"longitude":14.3653,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9167,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPPO","iata":"POZ","local":"","name":"Poznań-Ławica Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-WP","municipality":"Poznań","elevation_ft":308,"latitude":52.421001,"longitude":16.8263,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8215,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSB","iata":"BMA","local":"","name":"Stockholm-Bromma Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AB","municipality":"Stockholm","elevation_ft":47,"latitude":59.354400634765625,"longitude":17.941699981689453,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5472,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCLA","iata":"SPC","local":"","name":"La Palma Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"Sta Cruz de la Palma, La Palma Island","elevation_ft":107,"latitude":28.626499,"longitude":-17.7556,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HUEN","iata":"EBB","local":"","name":"Entebbe International Airport","category":"large_airport","iso_country":"UG","iso_region":"UG-C","municipality":"Kampala","elevation_ft":3782,"latitude":0.042386,"longitude":32.443501,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":12001,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAKR","iata":"AKC","local":"AKR","name":"Akron Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":1067,"latitude":41.037498,"longitude":-81.466904,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6336,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASX","iata":"ASX","local":"ASX","name":"John F Kennedy Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ashland","elevation_ft":827,"latitude":46.54850006,"longitude":-90.91899872,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5197,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3498,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBBD","iata":"BBD","local":"BBD","name":"Curtis Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brady","elevation_ft":1827,"latitude":31.1793003082,"longitude":-99.3238983154,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3520,"width_ft":110,"surface":"T"},{"id":"17/35","length_ft":4605,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKD","iata":"BKD","local":"BKD","name":"Stephens County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Breckenridge","elevation_ft":1284,"latitude":32.71900177,"longitude":-98.8909988403,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2398,"width_ft":50,"surface":"A"},{"id":"13/31","length_ft":2401,"width_ft":50,"surface":"A"},{"id":"17/35","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBRO","iata":"BRO","local":"BRO","name":"Brownsville South Padre Island International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownsville","elevation_ft":22,"latitude":25.90679931640625,"longitude":-97.4259033203125,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7399,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KCFE","iata":"","local":"CFE","name":"Buffalo Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Buffalo","elevation_ft":967,"latitude":45.15900039672852,"longitude":-93.84329986572266,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOF","iata":"COF","local":"COF","name":"Patrick Space Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cocoa Beach","elevation_ft":8,"latitude":28.2349,"longitude":-80.6101,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9003,"width_ft":200,"surface":"A"},{"id":"11/29","length_ft":3992,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.175},{"id":"LCL/P","frequency_mhz":133.75}],"has_metar":true,"public":true},{"icao":"KCYS","iata":"CYS","local":"CYS","name":"Cheyenne Regional Jerry Olson Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cheyenne","elevation_ft":6159,"latitude":41.155701,"longitude":-104.811997,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":9270,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":6690,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":134.425}],"has_metar":true,"public":true},{"icao":"KDMN","iata":"DMN","local":"DMN","name":"Deming Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Deming","elevation_ft":4314,"latitude":32.262298584,"longitude":-107.721000671,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5675,"width_ft":60,"surface":"A"},{"id":"08/26","length_ft":8018,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEAT","iata":"EAT","local":"EAT","name":"Pangborn Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Wenatchee","elevation_ft":1249,"latitude":47.3988990784,"longitude":-120.207000732,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELP","iata":"ELP","local":"ELP","name":"El Paso International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3959,"latitude":31.80719948,"longitude":-106.3779984,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":12020,"width_ft":150,"surface":"A"},{"id":"08L/26R","length_ft":5499,"width_ft":75,"surface":"C"},{"id":"08R/26L","length_ft":9025,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"D-ATIS","frequency_mhz":120}],"has_metar":true,"public":true},{"icao":"KFAT","iata":"FAT","local":"FAT","name":"Fresno Yosemite International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fresno","elevation_ft":336,"latitude":36.776199,"longitude":-119.718002,"has_tower":true,"has_beacon":true,"runways":[{"id":"11L/29R","length_ft":9539,"width_ft":150,"surface":"A"},{"id":"11R/29L","length_ft":8008,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":121.35}],"has_metar":true,"public":true},{"icao":"KFRM","iata":"FRM","local":"FRM","name":"Fairmont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Fairmont","elevation_ft":1162,"latitude":43.643901825,"longitude":-94.4156036377,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3300,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCK","iata":"GCK","local":"GCK","name":"Garden City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Garden City","elevation_ft":2891,"latitude":37.9275016785,"longitude":-100.723999023,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5700,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":7299,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.15}],"has_metar":true,"public":true},{"icao":"KGOO","iata":"","local":"GOO","name":"Nevada County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Grass Valley","elevation_ft":3152,"latitude":39.223998,"longitude":-121.002997,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4657,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHAO","iata":"HAO","local":"HAO","name":"Butler Co Regional Airport - Hogan Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hamilton","elevation_ft":633,"latitude":39.3638000488,"longitude":-84.5220031738,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHRT","iata":"","local":"HRT","name":"Hurlburt Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mary Esther","elevation_ft":38,"latitude":30.42779922485352,"longitude":-86.68930053710938,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":9600,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.5},{"id":"ATIS","frequency_mhz":134.475}],"has_metar":true,"public":true},{"icao":"KIDA","iata":"IDA","local":"IDA","name":"Idaho Falls Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Idaho Falls","elevation_ft":4744,"latitude":43.514599,"longitude":-112.070999,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":3964,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":135.325}],"has_metar":true,"public":true},{"icao":"KITH","iata":"ITH","local":"ITH","name":"Ithaca Tompkins Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ithaca","elevation_ft":1099,"latitude":42.49100112915039,"longitude":-76.4583969116211,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6977,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":2018,"width_ft":50,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.6},{"id":"ATIS","frequency_mhz":125.175}],"has_metar":true,"public":true},{"icao":"KJZI","iata":"","local":"JZI","name":"Charleston Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Johns Island","elevation_ft":17,"latitude":32.698238,"longitude":-80.005675,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4313,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":5350,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBF","iata":"LBF","local":"LBF","name":"North Platte Regional Airport Lee Bird Field","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"North Platte","elevation_ft":2777,"latitude":41.12620163,"longitude":-100.6839981,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":4436,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBB","iata":"YBB","local":"","name":"Kugaaruk Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Kugaaruk","elevation_ft":56,"latitude":68.534401,"longitude":-89.808098,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKY","iata":"YKY","local":"YKY","name":"Kindersley Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Kindersley","elevation_ft":2277,"latitude":51.5175018311,"longitude":-109.180999756,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3507,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":2281,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPY","iata":"YPY","local":"","name":"Fort Chipewyan Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Fort Chipewyan","elevation_ft":761,"latitude":58.7672004699707,"longitude":-111.11699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRT","iata":"YRT","local":"","name":"Rankin Inlet Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Rankin Inlet","elevation_ft":94,"latitude":62.8114013672,"longitude":-92.1157989502,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYL","iata":"YYL","local":"","name":"Lynn Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Lynn Lake","elevation_ft":1170,"latitude":56.86389923095703,"longitude":-101.07599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5004,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2521,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAT","iata":"TMR","local":"","name":"Aguenar – Hadj Bey Akhamok Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-11","municipality":"Tamanrasset","elevation_ft":4518,"latitude":22.811501,"longitude":5.45108,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":10335,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DFOO","iata":"BOY","local":"","name":"Bobo Dioulasso Airport","category":"medium_airport","iso_country":"BF","iso_region":"BF-HOU","municipality":"Bobo Dioulasso","elevation_ft":1511,"latitude":11.160099983215332,"longitude":-4.33096981048584,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDH","iata":"HAM","local":"","name":"Hamburg Helmut Schmidt Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-HH","municipality":"Hamburg","elevation_ft":53,"latitude":53.630402,"longitude":9.98823,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":12024,"width_ft":150,"surface":"H"},{"id":"05/23","length_ft":10663,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.12},{"id":"TWR","frequency_mhz":121.27}],"has_metar":true,"public":true},{"icao":"EDHL","iata":"LBC","local":"","name":"Lübeck Blankensee Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SH","municipality":"Lübeck","elevation_ft":53,"latitude":53.8054008484,"longitude":10.7192001343,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6896,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKU","iata":"KUO","local":"","name":"Kuopio Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-15","municipality":"Kuopio / Siilinjärvi","elevation_ft":323,"latitude":63.007099,"longitude":27.7978,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9186,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFOU","iata":"OUL","local":"","name":"Oulu Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-14","municipality":"Oulu / Oulunsalo","elevation_ft":47,"latitude":64.930099,"longitude":25.354601,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8205,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPA","iata":"KOI","local":"","name":"Kirkwall Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Orkney Islands","elevation_ft":50,"latitude":58.957801818847656,"longitude":-2.9049999713897705,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4685,"width_ft":151,"surface":"H"},{"id":"14/32","length_ft":2231,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHVK","iata":"UDE","local":"","name":"Volkel Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-NB","municipality":"Uden","elevation_ft":72,"latitude":51.657222,"longitude":5.707778,"has_tower":true,"has_beacon":false,"runways":[{"id":"06R/24L","length_ft":9931,"width_ft":74,"surface":"H"},{"id":"06L/24R","length_ft":9922,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKVG","iata":"FAE","local":"","name":"Vágar Airport","category":"medium_airport","iso_country":"FO","iso_region":"FO-U-A","municipality":"Vágar","elevation_ft":280,"latitude":62.063256,"longitude":-7.275782,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5902,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENHV","iata":"HVG","local":"","name":"Honningsvåg Airport, Valan","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Honningsvåg","elevation_ft":44,"latitude":71.009697,"longitude":25.983601,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3022,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPSC","iata":"SZZ","local":"","name":"Szczecin-Goleniów \"Solidarność\" Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-ZP","municipality":"Goleniow","elevation_ft":154,"latitude":53.584702,"longitude":14.9022,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMX","iata":"VXO","local":"","name":"Växjö Kronoberg Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-G","municipality":"Växjö","elevation_ft":610,"latitude":56.92910003662109,"longitude":14.727999687194824,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6909,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSV","iata":"VBY","local":"","name":"Visby Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-I","municipality":"Visby","elevation_ft":164,"latitude":57.662799835205,"longitude":18.346200942993,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6562,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":3609,"width_ft":131,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FBMN","iata":"MUB","local":"","name":"Maun Airport","category":"medium_airport","iso_country":"BW","iso_region":"BW-NW","municipality":"Maun","elevation_ft":3093,"latitude":-19.97260093688965,"longitude":23.43110084533692,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":12139,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCHI","iata":"VDE","local":"","name":"El Hierro Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"El Hierro Island","elevation_ft":103,"latitude":27.8148,"longitude":-17.8871,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4101,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GQPP","iata":"NDB","local":"","name":"Nouadhibou International Airport","category":"medium_airport","iso_country":"MR","iso_region":"MR-08","municipality":"Nouadhibou","elevation_ft":24,"latitude":20.9330997467041,"longitude":-17.030000686645508,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7956,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKNK","iata":"NUU","local":"","name":"Nakuru Airport","category":"small_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Nakuru","elevation_ft":6234,"latitude":-0.298067,"longitude":36.159302,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5607,"width_ft":80,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAFF","iata":"AFF","local":"AFF","name":"USAF Academy Airfield","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6572,"latitude":38.972497,"longitude":-104.821125,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2485,"width_ft":75,"surface":"A"},{"id":"16C/34C","length_ft":4480,"width_ft":75,"surface":"A"},{"id":"16L/34R","length_ft":3534,"width_ft":75,"surface":"A"},{"id":"16R/34L","length_ft":4500,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.15},{"id":"ATIS","frequency_mhz":128.525}],"has_metar":true,"public":true},{"icao":"KALM","iata":"ALM","local":"ALM","name":"Alamogordo White Sands Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4200,"latitude":32.84051,"longitude":-105.98794,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":9207,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":3257,"width_ft":190,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANQ","iata":"ANQ","local":"ANQ","name":"Tri State Steuben County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Angola","elevation_ft":995,"latitude":41.639702,"longitude":-85.083504,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4540,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARM","iata":"WHT","local":"ARM","name":"Wharton Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wharton","elevation_ft":100,"latitude":29.254299,"longitude":-96.154404,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAVQ","iata":"AVW","local":"AVQ","name":"Marana Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Marana","elevation_ft":2031,"latitude":32.409065,"longitude":-111.216199,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3892,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":6901,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAB","iata":"BAB","local":"BAB","name":"Beale Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Marysville","elevation_ft":113,"latitude":39.136101,"longitude":-121.436996,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":12001,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4},{"id":"ATIS","frequency_mhz":124.55}],"has_metar":true,"public":true},{"icao":"KBEA","iata":"","local":"BEA","name":"Beeville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beeville","elevation_ft":268,"latitude":28.361900329589844,"longitude":-97.79100036621094,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4553,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2251,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKN","iata":"","local":"BKN","name":"Blackwell Tonkawa Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Blackwell","elevation_ft":1030,"latitude":36.74509811,"longitude":-97.34960175,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3501,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBRL","iata":"BRL","local":"BRL","name":"Southeast Iowa Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Burlington","elevation_ft":698,"latitude":40.783199310302734,"longitude":-91.12550354003906,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5351,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":6102,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTM","iata":"BTM","local":"BTM","name":"Bert Mooney Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Butte","elevation_ft":5550,"latitude":45.95479965209961,"longitude":-112.49700164794922,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5100,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":9000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAG","iata":"CIG","local":"CAG","name":"Craig Moffat Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Craig","elevation_ft":6193,"latitude":40.4952011108,"longitude":-107.522003174,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5606,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFS","iata":"TZC","local":"CFS","name":"Tuscola Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Caro","elevation_ft":701,"latitude":43.458801,"longitude":-83.445503,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4302,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":2277,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKV","iata":"CKV","local":"CKV","name":"Clarksville–Montgomery County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":550,"latitude":36.6218986511,"longitude":-87.4150009155,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4004,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOM","iata":"COM","local":"COM","name":"Coleman Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Coleman","elevation_ft":1697,"latitude":31.8411006927,"longitude":-99.4036026001,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4506,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCSM","iata":"CSM","local":"CSM","name":"Clinton Sherman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Clinton","elevation_ft":1922,"latitude":35.3398017883,"longitude":-99.2005004883,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":5193,"width_ft":75,"surface":"C"},{"id":"17R/35L","length_ft":13503,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.6}],"has_metar":true,"public":true},{"icao":"KCXP","iata":"CSN","local":"CXP","name":"Carson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Carson City","elevation_ft":4697,"latitude":39.1922,"longitude":-119.734001,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEW","iata":"","local":"DEW","name":"Deer Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Deer Park","elevation_ft":2211,"latitude":47.96659851,"longitude":-117.427002,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3200,"width_ft":60,"surface":"A"},{"id":"16/34","length_ft":6101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDMA","iata":"DMA","local":"DMA","name":"Davis Monthan Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2704,"latitude":32.1665000916,"longitude":-110.883003235,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":13645,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"KDUX","iata":"","local":"DUX","name":"Moore County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dumas","elevation_ft":3705,"latitude":35.8578987121582,"longitude":-102.01300048828124,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECP","iata":"ECP","local":"ECP","name":"Northwest Florida Beaches International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City Beach","elevation_ft":69,"latitude":30.357106,"longitude":-85.795414,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":10000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.95},{"id":"ATIS","frequency_mhz":119.975}],"has_metar":true,"public":true},{"icao":"KEGI","iata":"EGI","local":"EGI","name":"Duke Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":191,"latitude":30.65040016,"longitude":-86.52290344,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8025,"width_ft":150,"surface":"A"},{"id":"180/360","length_ft":3500,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.2}],"has_metar":true,"public":true},{"icao":"KELY","iata":"ELY","local":"ELY","name":"Ely Airport Yelland Field","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Ely","elevation_ft":6259,"latitude":39.29970169,"longitude":-114.8420029,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4825,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":6017,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVU","iata":"","local":"EVU","name":"Northwest Missouri Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Maryville","elevation_ft":1145,"latitude":40.35250092,"longitude":-94.91500092,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4600,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEYW","iata":"EYW","local":"EYW","name":"Key West International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Key West","elevation_ft":3,"latitude":24.556101,"longitude":-81.759598,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5076,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":119.675}],"has_metar":true,"public":true},{"icao":"KFHR","iata":"FRD","local":"FHR","name":"Friday Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Friday Harbor","elevation_ft":113,"latitude":48.5219993591,"longitude":-123.024002075,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3402,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFNL","iata":"FNL","local":"FNL","name":"Northern Colorado Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Loveland","elevation_ft":5016,"latitude":40.448763,"longitude":-105.011244,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2189,"width_ft":40,"surface":"A"},{"id":"15/33","length_ft":8500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":135.075}],"has_metar":true,"public":true},{"icao":"KFUL","iata":"FUL","local":"FUL","name":"Fullerton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fullerton","elevation_ft":96,"latitude":33.8720016479,"longitude":-117.980003357,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3121,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":125.05}],"has_metar":true,"public":true},{"icao":"KGCN","iata":"GCN","local":"GCN","name":"Grand Canyon National Park Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Grand Canyon - Tusayan","elevation_ft":6609,"latitude":35.9524,"longitude":-112.147003,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8999,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119},{"id":"ATIS","frequency_mhz":124.3}],"has_metar":true,"public":true},{"icao":"KGHW","iata":"","local":"GHW","name":"Glenwood Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Glenwood","elevation_ft":1393,"latitude":45.64390182495117,"longitude":-95.32039642333984,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2778,"width_ft":196,"surface":"T"},{"id":"15/33","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGNT","iata":"GNT","local":"GNT","name":"Grants-Milan Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Grants","elevation_ft":6537,"latitude":35.167301178,"longitude":-107.902000427,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7172,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGTB","iata":"","local":"GTB","name":"Wheeler Sack Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Drum","elevation_ft":688,"latitude":44.05559921,"longitude":-75.71949768,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"08/26","length_ft":4501,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5002,"width_ft":144,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.75},{"id":"ATIS","frequency_mhz":119.525},{"id":"LCL/P","frequency_mhz":49.8}],"has_metar":true,"public":true},{"icao":"KGZN","iata":"","local":"GZN","name":"Gregory M. Simmons Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cisco","elevation_ft":1711,"latitude":32.367348,"longitude":-99.023642,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6536,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHIB","iata":"HIB","local":"HIB","name":"Range Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hibbing","elevation_ft":1354,"latitude":47.3866,"longitude":-92.838997,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3075,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6758,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHQG","iata":"","local":"HQG","name":"Hugoton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hugoton","elevation_ft":3134,"latitude":37.1631012,"longitude":-101.3710022,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":3039,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHVR","iata":"HVR","local":"HVR","name":"Havre City County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Havre","elevation_ft":2591,"latitude":48.542999,"longitude":-109.762001,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3699,"width_ft":60,"surface":"A"},{"id":"08/26","length_ft":5205,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KICT","iata":"ICT","local":"ICT","name":"Wichita Eisenhower National Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1333,"latitude":37.649899,"longitude":-97.433098,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":10302,"width_ft":150,"surface":"C"},{"id":"01R/19L","length_ft":7302,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":6301,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":125.15}],"has_metar":true,"public":true},{"icao":"KIOB","iata":"","local":"IOB","name":"Mount Sterling Montgomery County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Mount Sterling","elevation_ft":1019,"latitude":38.05810165,"longitude":-83.979599,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KITR","iata":"","local":"ITR","name":"Kit Carson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Burlington","elevation_ft":4219,"latitude":39.24250030517578,"longitude":-102.28500366210938,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5199,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJKA","iata":"GUF","local":"JKA","name":"Jack Edwards National Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Gulf Shores","elevation_ft":17,"latitude":30.290501,"longitude":-87.671799,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6962,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3596,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.65},{"id":"ATIS","frequency_mhz":134.525}],"has_metar":true,"public":true},{"icao":"KJYM","iata":"","local":"JYM","name":"Hillsdale Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Hillsdale","elevation_ft":1182,"latitude":41.92129898071289,"longitude":-84.58580017089844,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KKLS","iata":"KLS","local":"KLS","name":"Southwest Washington Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kelso","elevation_ft":20,"latitude":46.11800003049999,"longitude":-122.898002625,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4391,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAX","iata":"LAX","local":"LAX","name":"Los Angeles / Tom Bradley International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":125,"latitude":33.942501,"longitude":-118.407997,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":8926,"width_ft":150,"surface":"A"},{"id":"06R/24L","length_ft":10885,"width_ft":150,"surface":"C"},{"id":"07L/25R","length_ft":12923,"width_ft":150,"surface":"C"},{"id":"07R/25L","length_ft":11095,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"D-ATIS","frequency_mhz":133.8},{"id":"D-ATIS","frequency_mhz":135.65}],"has_metar":true,"public":true},{"icao":"BIKF","iata":"KEF","local":"","name":"Keflavik International Airport","category":"large_airport","iso_country":"IS","iso_region":"IS-2","municipality":"Reykjavík","elevation_ft":171,"latitude":63.985001,"longitude":-22.6056,"has_tower":true,"has_beacon":false,"runways":[{"id":"0/28","length_ft":10056,"width_ft":197,"surface":"H"},{"id":"01/19","length_ft":10020,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBK","iata":"YBK","local":"","name":"Baker Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Baker Lake","elevation_ft":59,"latitude":64.29889678960001,"longitude":-96.077796936,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4195,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYEV","iata":"YEV","local":"","name":"Inuvik Mike Zubko Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Inuvik","elevation_ft":224,"latitude":68.30419921880001,"longitude":-133.483001709,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6006,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLH","iata":"YLH","local":"","name":"Lansdowne House Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Lansdowne House","elevation_ft":834,"latitude":52.19559860229492,"longitude":-87.93419647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3484,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOJ","iata":"YOJ","local":"","name":"High Level Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"High Level","elevation_ft":1110,"latitude":58.62139892578125,"longitude":-117.16500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQB","iata":"YQB","local":"YQB","name":"Quebec Jean Lesage International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Quebec","elevation_ft":244,"latitude":46.7911,"longitude":-71.393303,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":5700,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":134.6},{"id":"TWR","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"CYQW","iata":"YQW","local":"","name":"North Battleford Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"North Battleford","elevation_ft":1799,"latitude":52.769409,"longitude":-108.243742,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSF","iata":"YSF","local":"","name":"Stony Rapids Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Stony Rapids","elevation_ft":805,"latitude":59.250301361083984,"longitude":-105.84100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5052,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXL","iata":"YXL","local":"","name":"Sioux Lookout Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sioux Lookout","elevation_ft":1258,"latitude":50.11389923095703,"longitude":-91.9052963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYN","iata":"YYN","local":"","name":"Swift Current Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Swift Current","elevation_ft":2680,"latitude":50.2919006348,"longitude":-107.691001892,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4250,"width_ft":150,"surface":"A"},{"id":"04/22","length_ft":2495,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZF","iata":"YZF","local":"","name":"Yellowknife International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Yellowknife","elevation_ft":675,"latitude":62.462799,"longitude":-114.440002,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7503,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZVL","iata":"","local":"","name":"Edmonton / Villeneuve Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Edmonton","elevation_ft":2256,"latitude":53.6674995422,"longitude":-113.853996277,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":3496,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUH","iata":"HME","local":"","name":"Hassi Messaoud-Oued Irara Krim Belkacem Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-30","municipality":"Hassi Messaoud","elevation_ft":463,"latitude":31.673,"longitude":6.14044,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DFFD","iata":"OUA","local":"","name":"Ouagadougou Airport","category":"medium_airport","iso_country":"BF","iso_region":"BF-KAD","municipality":"Ouagadougou","elevation_ft":1037,"latitude":12.3532,"longitude":-1.51242,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9888,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTA","iata":"TUN","local":"","name":"Tunis Carthage International Airport","category":"large_airport","iso_country":"TN","iso_region":"TN-11","municipality":"Tunis","elevation_ft":22,"latitude":36.851002,"longitude":10.2272,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"11/29","length_ft":9350,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDAH","iata":"HDF","local":"","name":"Heringsdorf Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-MV","municipality":"Heringsdorf","elevation_ft":93,"latitude":53.8787002563,"longitude":14.152299881,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7562,"width_ft":115,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDS","iata":"STR","local":"","name":"Stuttgart Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Stuttgart","elevation_ft":1276,"latitude":48.689899,"longitude":9.22196,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":10974,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.12},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"EDGS","iata":"SGE","local":"","name":"Siegerland Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Burbach","elevation_ft":1966,"latitude":50.707699,"longitude":8.08297,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5315,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDNY","iata":"FDH","local":"","name":"Friedrichshafen Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Friedrichshafen","elevation_ft":1367,"latitude":47.671299,"longitude":9.51149,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7730,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKI","iata":"KAJ","local":"","name":"Kajaani Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-05","municipality":"Kajaani","elevation_ft":483,"latitude":64.2855,"longitude":27.6924,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8199,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFLP","iata":"LPP","local":"","name":"Lappeenranta Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-02","municipality":"Lappeenranta","elevation_ft":349,"latitude":61.044601,"longitude":28.144743,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFPO","iata":"POR","local":"","name":"Pori Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-17","municipality":"Pori","elevation_ft":44,"latitude":61.4617,"longitude":21.799999,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7713,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNT","iata":"NCL","local":"","name":"Newcastle Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Newcastle","elevation_ft":266,"latitude":55.037958,"longitude":-1.689577,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7644,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPB","iata":"LSI","local":"","name":"Sumburgh Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Lerwick","elevation_ft":20,"latitude":59.87889862060547,"longitude":-1.295560002326965,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4915,"width_ft":144,"surface":"H"},{"id":"15/33","length_ft":4672,"width_ft":141,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGYM","iata":"KNF","local":"","name":"RAF Marham","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Marham","elevation_ft":75,"latitude":52.648395,"longitude":0.550692,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9131,"width_ft":148,"surface":"H"},{"id":"01/19","length_ft":6115,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHRD","iata":"RTM","local":"","name":"Rotterdam The Hague Airport","category":"medium_airport","iso_country":"NL","iso_region":"NL-ZH","municipality":"Rotterdam","elevation_ft":-15,"latitude":51.956902,"longitude":4.43722,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKSB","iata":"SGD","local":"","name":"Sønderborg Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-83","municipality":"Sønderborg","elevation_ft":24,"latitude":54.96440124511719,"longitude":9.791729927062988,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5896,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKYT","iata":"AAL","local":"","name":"Aalborg Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-81","municipality":"Aalborg","elevation_ft":10,"latitude":57.094763,"longitude":9.84993,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":5902,"width_ft":98,"surface":"H"},{"id":"08R/26L","length_ft":8363,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENOL","iata":"OLA","local":"","name":"Ørland Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Ørland","elevation_ft":28,"latitude":63.69889831542969,"longitude":9.604000091552734,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENNA","iata":"LKL","local":"","name":"Lakselv Airport, Banak","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Lakselv","elevation_ft":25,"latitude":70.068802,"longitude":24.973499,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9137,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRY","iata":"RYG","local":"","name":"Moss Airport, Rygge","category":"medium_airport","iso_country":"NO","iso_region":"NO-30","municipality":"Oslo","elevation_ft":174,"latitude":59.378817,"longitude":10.785439,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8012,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPBY","iata":"BZG","local":"","name":"Bydgoszcz Ignacy Jan Paderewski Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-KP","municipality":"Bydgoszcz","elevation_ft":235,"latitude":53.096802,"longitude":17.977699,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESGJ","iata":"JKG","local":"","name":"Jönköping Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-F","municipality":"Jönköping","elevation_ft":741,"latitude":57.757598876953125,"longitude":14.068699836730955,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7228,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESKS","iata":"SCR","local":"","name":"Scandinavian Mountains Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-W","municipality":"Malung-Sälen","elevation_ft":1608,"latitude":61.158393,"longitude":12.842503,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNZ","iata":"OSD","local":"","name":"Åre Östersund Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Z","municipality":"Östersund","elevation_ft":1233,"latitude":63.194400787354,"longitude":14.50030040741,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSA","iata":"ARN","local":"","name":"Stockholm-Arlanda Airport","category":"large_airport","iso_country":"SE","iso_region":"SE-AB","municipality":"Stockholm","elevation_ft":137,"latitude":59.651901245117,"longitude":17.918600082397,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":10830,"width_ft":148,"surface":"H"},{"id":"01R/19L","length_ft":8202,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.62},{"id":"TWR","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"ETSH","iata":"","local":"","name":"Holzdorf Air Base","category":"medium_airport","iso_country":"DE","iso_region":"DE-BR","municipality":"Holzdorf","elevation_ft":265,"latitude":51.767799,"longitude":13.1677,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7936,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FAKN","iata":"MQP","local":"","name":"Kruger Mpumalanga International Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-MP","municipality":"Mpumalanga","elevation_ft":2829,"latitude":-25.3831996918,"longitude":31.1056003571,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10696,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FMEE","iata":"RUN","local":"","name":"Roland Garros Airport","category":"large_airport","iso_country":"RE","iso_region":"RE-SD","municipality":"Sainte-Marie","elevation_ft":66,"latitude":-20.890087,"longitude":55.518894,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"14/32","length_ft":8760,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCTS","iata":"TFS","local":"","name":"Tenerife Sur Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"Tenerife","elevation_ft":209,"latitude":28.0445,"longitude":-16.5725,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.9},{"id":"TWR","frequency_mhz":119}],"has_metar":true,"public":true},{"icao":"GMFF","iata":"FEZ","local":"","name":"Fes Saïss International Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-FES","municipality":"Saïss","elevation_ft":1900,"latitude":33.927299,"longitude":-4.97796,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMTT","iata":"TNG","local":"","name":"Tangier Ibn Battuta Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-TNG","municipality":"Tangier","elevation_ft":62,"latitude":35.731741,"longitude":-5.921459,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEGN","iata":"HRG","local":"","name":"Hurghada International Airport","category":"large_airport","iso_country":"EG","iso_region":"EG-BA","municipality":"Hurghada","elevation_ft":32,"latitude":27.176776,"longitude":33.796692,"has_tower":true,"has_beacon":false,"runways":[{"id":"16R/34L","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"16L/34R","length_ft":13123,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKLO","iata":"LOK","local":"","name":"Lodwar Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Lodwar","elevation_ft":1715,"latitude":3.1219699382781982,"longitude":35.608699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3281,"width_ft":64,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAT","iata":"","local":"AAT","name":"Alturas Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Alturas","elevation_ft":4378,"latitude":41.482736,"longitude":-120.565671,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2506,"width_ft":60,"surface":"A"},{"id":"13/31","length_ft":4228,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACP","iata":"","local":"ACP","name":"Allen Parish Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Oakdale","elevation_ft":107,"latitude":30.75029945373535,"longitude":-92.68830108642578,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAFO","iata":"AFO","local":"AFO","name":"Afton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Afton","elevation_ft":6221,"latitude":42.7112007141,"longitude":-110.942001343,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7025,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIA","iata":"AIA","local":"AIA","name":"Alliance Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Alliance","elevation_ft":3931,"latitude":42.0531997681,"longitude":-102.804000854,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6190,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":9203,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6311,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANB","iata":"ANB","local":"ANB","name":"Anniston Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Anniston","elevation_ft":612,"latitude":33.5882,"longitude":-85.8581,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAOH","iata":"AOH","local":"AOH","name":"Lima Allen County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lima","elevation_ft":975,"latitude":40.706902,"longitude":-84.026703,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAPY","iata":"","local":"APY","name":"Zapata County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Zapata","elevation_ft":422,"latitude":26.9687995911,"longitude":-99.2489013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KART","iata":"ART","local":"ART","name":"Watertown International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Watertown","elevation_ft":325,"latitude":43.991901,"longitude":-76.021698,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4999,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":7001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KATS","iata":"ATS","local":"ATS","name":"Artesia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Artesia","elevation_ft":3541,"latitude":32.8525009155,"longitude":-104.468002319,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6800,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":6132,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAWO","iata":"","local":"AWO","name":"Arlington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Arlington","elevation_ft":142,"latitude":48.16070175,"longitude":-122.1589966,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3498,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":5332,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXH","iata":"","local":"AXH","name":"Houston Southwest Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rosharon","elevation_ft":68,"latitude":29.5061,"longitude":-95.476898,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAM","iata":"BAM","local":"BAM","name":"Battle Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Battle Mountain","elevation_ft":4532,"latitude":40.598999023400005,"longitude":-116.874000549,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7300,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":7299,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBDE","iata":"BDE","local":"BDE","name":"Baudette International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Baudette","elevation_ft":1086,"latitude":48.7284011841,"longitude":-94.612197876,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5498,"width_ft":100,"surface":"A"},{"id":"13W/31W","length_ft":6000,"width_ft":120,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFF","iata":"BFF","local":"BFF","name":"Western Neb. Rgnl/William B. Heilig Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Scottsbluff","elevation_ft":3967,"latitude":41.87400055,"longitude":-103.5960007,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8002,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":8279,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFR","iata":"BFR","local":"BFR","name":"Virgil I Grissom Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bedford","elevation_ft":727,"latitude":38.84000015,"longitude":-86.44539642,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3089,"width_ft":70,"surface":"A"},{"id":"13/31","length_ft":4501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBHC","iata":"","local":"BHC","name":"Baxley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Baxley","elevation_ft":201,"latitude":31.71380043029785,"longitude":-82.393798828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKX","iata":"BKX","local":"BKX","name":"Brookings Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Brookings","elevation_ft":1648,"latitude":44.304798,"longitude":-96.816902,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNA","iata":"BNA","local":"BNA","name":"Nashville International Airport","category":"large_airport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":599,"latitude":36.1245002746582,"longitude":-86.6781997680664,"has_tower":true,"has_beacon":true,"runways":[{"id":"02C/20C","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"02L/20R","length_ft":7704,"width_ft":150,"surface":"C"},{"id":"02R/20L","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":11030,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6},{"id":"D-ATIS","frequency_mhz":135.1}],"has_metar":true,"public":true},{"icao":"KBRD","iata":"BRD","local":"BRD","name":"Brainerd Lakes Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Brainerd","elevation_ft":1232,"latitude":46.402861,"longitude":-94.129727,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6512,"width_ft":150,"surface":"C"},{"id":"16/34","length_ft":7100,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBRY","iata":"BRY","local":"BRY","name":"Samuels Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Bardstown","elevation_ft":669,"latitude":37.8143005371,"longitude":-85.4996032715,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBXA","iata":"BXA","local":"BXA","name":"George R Carr Memorial Air Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bogalusa","elevation_ft":119,"latitude":30.8136997223,"longitude":-89.8649978638,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYY","iata":"BBC","local":"BYY","name":"Bay City Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bay City","elevation_ft":45,"latitude":28.973301,"longitude":-95.863503,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5107,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDI","iata":"","local":"CDI","name":"Cambridge Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cambridge","elevation_ft":799,"latitude":39.97499847412109,"longitude":-81.57759857177734,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4298,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDH","iata":"CDH","local":"CDH","name":"Harrell Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Camden","elevation_ft":130,"latitude":33.6227989197,"longitude":-92.7633972168,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCGZ","iata":"CGZ","local":"CGZ","name":"Casa Grande Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Casa Grande","elevation_ft":1464,"latitude":32.954899,"longitude":-111.766998,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKC","iata":"GRM","local":"CKC","name":"Grand Marais Cook County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Grand Marais","elevation_ft":1799,"latitude":47.8382987976,"longitude":-90.3828964233,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCMA","iata":"","local":"CMA","name":"Camarillo International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Camarillo","elevation_ft":77,"latitude":34.213699,"longitude":-119.094002,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6013,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.025},{"id":"LCL/P","frequency_mhz":128.2}],"has_metar":true,"public":true},{"icao":"KCNM","iata":"CNM","local":"CNM","name":"Cavern City Air Terminal","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Carlsbad","elevation_ft":3295,"latitude":32.337501525878906,"longitude":-104.26300048828124,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7854,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":5334,"width_ft":75,"surface":"A"},{"id":"14L/32R","length_ft":4616,"width_ft":150,"surface":"A"},{"id":"14R/32L","length_ft":5837,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOT","iata":"COT","local":"COT","name":"Cotulla-La Salle County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":474,"latitude":28.45669937,"longitude":-99.22029877,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCQB","iata":"","local":"CQB","name":"Chandler Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chandler","elevation_ft":984,"latitude":35.72380065917969,"longitude":-96.82029724121094,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCWC","iata":"KIP","local":"CWC","name":"Kickapoo Downtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wichita Falls","elevation_ft":1003,"latitude":33.85779953,"longitude":-98.49040222,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4450,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVN","iata":"CVN","local":"CVN","name":"Clovis Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clovis","elevation_ft":4216,"latitude":34.4250984192,"longitude":-103.07900238,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7200,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2442,"width_ft":75,"surface":"T"},{"id":"12/30","length_ft":5697,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDBN","iata":"DBN","local":"DBN","name":"W H 'Bud' Barron Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dublin","elevation_ft":309,"latitude":32.5644,"longitude":-82.985298,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5171,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDFI","iata":"DFI","local":"DFI","name":"Defiance Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Defiance","elevation_ft":707,"latitude":41.3375015259,"longitude":-84.4288024902,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4199,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDKB","iata":"","local":"DKB","name":"DeKalb Taylor Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"DeKalb","elevation_ft":914,"latitude":41.936316,"longitude":-88.704128,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7026,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":4201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLS","iata":"DLS","local":"DLS","name":"Columbia Gorge Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Dallesport / The Dalles","elevation_ft":247,"latitude":45.620979,"longitude":-121.170777,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4647,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5097,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTL","iata":"DTL","local":"DTL","name":"Detroit Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Detroit Lakes","elevation_ft":1397,"latitude":46.824301,"longitude":-95.883322,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5201,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":1890,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDVP","iata":"NSL","local":"DVP","name":"Slayton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Slayton","elevation_ft":1623,"latitude":43.986801,"longitude":-95.7826,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3005,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECS","iata":"ECS","local":"ECS","name":"Mondell Field","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Newcastle","elevation_ft":4174,"latitude":43.88379,"longitude":-104.314156,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5310,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEAN","iata":"EAN","local":"EAN","name":"Phifer Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Wheatland","elevation_ft":4776,"latitude":42.0555,"longitude":-104.929001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDU","iata":"","local":"EDU","name":"University Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Davis","elevation_ft":69,"latitude":38.53150177001953,"longitude":-121.78600311279295,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3176,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEFT","iata":"","local":"EFT","name":"Monroe Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Monroe","elevation_ft":1086,"latitude":42.61489868164063,"longitude":-89.59040069580078,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3000,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKM","iata":"EKI","local":"EKM","name":"Elkhart Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Elkhart","elevation_ft":778,"latitude":41.7193984985,"longitude":-86.00319671630001,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2480,"width_ft":250,"surface":"T"},{"id":"09/27","length_ft":6500,"width_ft":120,"surface":"C"},{"id":"18/36","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5}],"has_metar":true,"public":true},{"icao":"KELN","iata":"ELN","local":"ELN","name":"Bowers Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":1764,"latitude":47.03300095,"longitude":-120.5309982,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4300,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEMT","iata":"EMT","local":"EMT","name":"San Gabriel Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"El Monte","elevation_ft":296,"latitude":34.086102,"longitude":-118.035004,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3995,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.75},{"id":"LCL/P","frequency_mhz":121.2}],"has_metar":true,"public":true},{"icao":"KEST","iata":"EST","local":"EST","name":"Estherville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Estherville","elevation_ft":1319,"latitude":43.40739822,"longitude":-94.74639893,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2989,"width_ft":90,"surface":"T"},{"id":"16/34","length_ft":4797,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEWK","iata":"EWK","local":"EWK","name":"Newton City-County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Newton","elevation_ft":1533,"latitude":38.0582008362,"longitude":-97.2744979858,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3501,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":7003,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFAM","iata":"FAM","local":"FAM","name":"Farmington Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Farmington","elevation_ft":946,"latitude":37.76110077,"longitude":-90.4285965,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4222,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFDR","iata":"FDR","local":"FDR","name":"Frederick Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Frederick","elevation_ft":1258,"latitude":34.35200119,"longitude":-98.98390198,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4812,"width_ft":60,"surface":"C"},{"id":"12/30","length_ft":4578,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":6099,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKA","iata":"","local":"FKA","name":"Fillmore County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Preston","elevation_ft":1277,"latitude":43.67679977,"longitude":-92.17970276,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLP","iata":"FLP","local":"FLP","name":"Marion County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Flippin","elevation_ft":719,"latitude":36.29090118,"longitude":-92.59030151,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFNT","iata":"FNT","local":"FNT","name":"Bishop International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Flint","elevation_ft":782,"latitude":42.96540069580078,"longitude":-83.74359893798828,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":7201,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":7852,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.3},{"id":"ATIS","frequency_mhz":133.15}],"has_metar":true,"public":true},{"icao":"KFSD","iata":"FSD","local":"FSD","name":"Sioux Falls Regional Airport / Joe Foss Field","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Sioux Falls","elevation_ft":1429,"latitude":43.585463,"longitude":-96.741152,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":3151,"width_ft":75,"surface":"C"},{"id":"15/33","length_ft":8000,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":126.6}],"has_metar":true,"public":true},{"icao":"KFTW","iata":"FTW","local":"FTW","name":"Fort Worth Meacham International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":710,"latitude":32.819801,"longitude":-97.362396,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7502,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":4005,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.7}],"has_metar":true,"public":true},{"icao":"KGBG","iata":"GBG","local":"GBG","name":"Galesburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Galesburg","elevation_ft":764,"latitude":40.9379997253,"longitude":-90.431098938,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5792,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":3600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGDV","iata":"GDV","local":"GDV","name":"Dawson Community Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Glendive","elevation_ft":2458,"latitude":47.13869858,"longitude":-104.8069992,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3002,"width_ft":60,"surface":"A"},{"id":"12/30","length_ft":5704,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEG","iata":"GEG","local":"GEG","name":"Spokane International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2376,"latitude":47.6199,"longitude":-117.533997,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":11002,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":8199,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":124.325}],"has_metar":true,"public":true},{"icao":"KGGI","iata":"","local":"GGI","name":"Grinnell Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Grinnell","elevation_ft":1008,"latitude":41.70991,"longitude":-92.736052,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLS","iata":"GLS","local":"GLS","name":"Scholes International At Galveston Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":6,"latitude":29.265300750732425,"longitude":-94.8603973388672,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"KGNV","iata":"GNV","local":"GNV","name":"Gainesville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":152,"latitude":29.6900997162,"longitude":-82.2717971802,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4158,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":7504,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.55},{"id":"ATIS","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KGRF","iata":"GRF","local":"GRF","name":"Gray Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Fort Lewis/Tacoma","elevation_ft":300,"latitude":47.07920074,"longitude":-122.5810013,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":6124,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.325},{"id":"ATIS","frequency_mhz":124.65},{"id":"LCL/P","frequency_mhz":41.5}],"has_metar":true,"public":true},{"icao":"KGSH","iata":"GSH","local":"GSH","name":"Goshen Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Goshen","elevation_ft":827,"latitude":41.5264015198,"longitude":-85.79290008539999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2267,"width_ft":180,"surface":"T"},{"id":"09/27","length_ft":6050,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGVL","iata":"GVL","local":"GVL","name":"Lee Gilmer Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Gainesville","elevation_ft":1276,"latitude":34.27259827,"longitude":-83.8302002,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5496,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGYH","iata":"GDC","local":"GYH","name":"Donaldson Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":955,"latitude":34.758301,"longitude":-82.376404,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.325}],"has_metar":true,"public":true},{"icao":"KHDN","iata":"HDN","local":"HDN","name":"Yampa Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hayden","elevation_ft":6606,"latitude":40.481201,"longitude":-107.218002,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHW","iata":"HUJ","local":"HHW","name":"Stan Stamper Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hugo","elevation_ft":572,"latitude":34.03480148,"longitude":-95.54190063,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHMT","iata":"HMT","local":"HMT","name":"Hemet Ryan Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hemet","elevation_ft":1512,"latitude":33.7340011597,"longitude":-117.023002625,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2014,"width_ft":25,"surface":"A"},{"id":"05/23","length_ft":4315,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHOU","iata":"HOU","local":"HOU","name":"William P Hobby Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":46,"latitude":29.645399,"longitude":-95.2789,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7602,"width_ft":150,"surface":"C"},{"id":"13L/31R","length_ft":5148,"width_ft":100,"surface":"C"},{"id":"13R/31L","length_ft":7602,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"D-ATIS","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KHSG","iata":"THP","local":"HSG","name":"Hot Springs County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Thermopolis","elevation_ft":4895,"latitude":43.713602,"longitude":-108.389687,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6370,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHVN","iata":"HVN","local":"HVN","name":"Tweed New Haven Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CT","municipality":"New Haven","elevation_ft":12,"latitude":41.26369858,"longitude":-72.88680267,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5600,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.8},{"id":"ATIS","frequency_mhz":133.65}],"has_metar":true,"public":true},{"icao":"KHZX","iata":"","local":"HZX","name":"Isedor Iverson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Mc Gregor","elevation_ft":1228,"latitude":46.61880111694336,"longitude":-93.30979919433594,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIAB","iata":"IAB","local":"IAB","name":"McConnell Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1371,"latitude":37.621899,"longitude":-97.268204,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":12000,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":12007,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":124.65},{"id":"LCL/P","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KIFA","iata":"IFA","local":"IFA","name":"Iowa Falls Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Iowa Falls","elevation_ft":1137,"latitude":42.4707984924,"longitude":-93.2699966431,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4600,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIND","iata":"IND","local":"IND","name":"Indianapolis International Airport","category":"large_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":797,"latitude":39.7173,"longitude":-86.294403,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":11200,"width_ft":150,"surface":"C"},{"id":"05R/23L","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":7278,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"D-ATIS","frequency_mhz":134.25}],"has_metar":true,"public":true},{"icao":"KIPT","iata":"IPT","local":"IPT","name":"Williamsport Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Williamsport","elevation_ft":529,"latitude":41.241798,"longitude":-76.921097,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6825,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":4273,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1}],"has_metar":true,"public":true},{"icao":"KIXD","iata":"JCI","local":"IXD","name":"New Century AirCenter Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"New Century","elevation_ft":1087,"latitude":38.830898,"longitude":-94.890297,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5132,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":7339,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133}],"has_metar":true,"public":true},{"icao":"KIZA","iata":"SQA","local":"IZA","name":"Santa Ynez Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ynez","elevation_ft":674,"latitude":34.60680008,"longitude":-120.0759964,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2803,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJKJ","iata":"","local":"JKJ","name":"Moorhead Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Moorhead","elevation_ft":918,"latitude":46.83929825,"longitude":-96.66369629,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJSV","iata":"","local":"JSV","name":"Sallisaw Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sallisaw","elevation_ft":527,"latitude":35.4382019,"longitude":-94.80280304,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJYG","iata":"","local":"JYG","name":"St James Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"St James","elevation_ft":1067,"latitude":43.98630142211914,"longitude":-94.55789947509766,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJWY","iata":"","local":"JWY","name":"Mid-Way Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Midlothian/Waxahachie","elevation_ft":713,"latitude":32.4587,"longitude":-96.912399,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAL","iata":"LAL","local":"LAL","name":"Lakeland Linder International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":142,"latitude":27.988899,"longitude":-82.018602,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2208,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":8500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.025},{"id":"LCL/P","frequency_mhz":124.5}],"has_metar":true,"public":true},{"icao":"KLBX","iata":"LJN","local":"LBX","name":"Texas Gulf Coast Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Angleton","elevation_ft":25,"latitude":29.108601,"longitude":-95.462097,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":7000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJZP","iata":"","local":"JZP","name":"Pickens County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Jasper","elevation_ft":1535,"latitude":34.453399658203125,"longitude":-84.4573974609375,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGKK","iata":"KUS","local":"","name":"Kulusuk Airport","category":"medium_airport","iso_country":"GL","iso_region":"GL-SE","municipality":"Kulusuk","elevation_ft":117,"latitude":65.573601,"longitude":-37.1236,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3934,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BIEG","iata":"EGS","local":"","name":"Egilsstaðir Airport","category":"medium_airport","iso_country":"IS","iso_region":"IS-7","municipality":"Egilsstaðir","elevation_ft":76,"latitude":65.2833023071289,"longitude":-14.401399612426758,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6070,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBL","iata":"YBL","local":"YBL","name":"Campbell River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Campbell River","elevation_ft":346,"latitude":49.950802,"longitude":-125.271004,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6499,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBQ","iata":"XTL","local":"","name":"Tadoule Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Tadoule Lake","elevation_ft":923,"latitude":58.7061,"longitude":-98.512199,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3201,"width_ft":102,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDC","iata":"","local":"","name":"Princeton Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Town of Princeton","elevation_ft":2298,"latitude":49.4681015015,"longitude":-120.511001587,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3932,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDB","iata":"YDB","local":"","name":"Burwash Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Burwash Landing","elevation_ft":2647,"latitude":61.371101,"longitude":-139.041,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5007,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHK","iata":"YHK","local":"","name":"Gjoa Haven Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Gjoa Haven","elevation_ft":152,"latitude":68.635597229,"longitude":-95.8497009277,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKJ","iata":"YKJ","local":"","name":"Key Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Key Lake","elevation_ft":1679,"latitude":57.25609970092773,"longitude":-105.61799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5281,"width_ft":178,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMA","iata":"YMA","local":"","name":"Mayo Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Mayo","elevation_ft":1653,"latitude":63.61640167236328,"longitude":-135.8679962158203,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4843,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYND","iata":"YND","local":"CYND","name":"Ottawa / Gatineau Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Gatineau","elevation_ft":211,"latitude":45.521702,"longitude":-75.563599,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOW","iata":"YOW","local":"YOW","name":"Ottawa Macdonald-Cartier International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Ottawa","elevation_ft":374,"latitude":45.322498,"longitude":-75.669197,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":10005,"width_ft":200,"surface":"A"},{"id":"07/25","length_ft":8000,"width_ft":200,"surface":"A"},{"id":"04/22","length_ft":3300,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":121.15},{"id":"ATIS-F","frequency_mhz":132.95},{"id":"TWR","frequency_mhz":118.8},{"id":"TWR","frequency_mhz":120.1}],"has_metar":true,"public":true},{"icao":"CYQF","iata":"YQF","local":"","name":"Red Deer Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Springbrook","elevation_ft":2968,"latitude":52.182201,"longitude":-113.893997,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":7500,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3454,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQL","iata":"YQL","local":"","name":"Lethbridge County Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Lethbridge","elevation_ft":3048,"latitude":49.6302986145,"longitude":-112.800003052,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6500,"width_ft":200,"surface":"A"},{"id":"13/31","length_ft":5500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQK","iata":"YQK","local":"","name":"Kenora Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Kenora","elevation_ft":1332,"latitude":49.78829956054688,"longitude":-94.36309814453124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5800,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRQ","iata":"YRQ","local":"","name":"Trois-Rivières Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Trois-Rivières","elevation_ft":199,"latitude":46.35279846191406,"longitude":-72.67939758300781,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSC","iata":"YSC","local":"","name":"Sherbrooke Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Sherbrooke","elevation_ft":792,"latitude":45.438599,"longitude":-71.691399,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVC","iata":"YVC","local":"","name":"La Ronge Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"La Ronge","elevation_ft":1242,"latitude":55.1514015198,"longitude":-105.262001038,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/38","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUX","iata":"YUX","local":"","name":"Hall Beach Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Sanirajak","elevation_ft":30,"latitude":68.7761,"longitude":-81.2425,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5410,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXH","iata":"YXH","local":"","name":"Medicine Hat Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Medicine Hat","elevation_ft":2352,"latitude":50.018902,"longitude":-110.721001,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5003,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":2850,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYJ","iata":"YYJ","local":"","name":"Victoria International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Victoria","elevation_ft":63,"latitude":48.6469,"longitude":-123.426003,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6998,"width_ft":200,"surface":"A"},{"id":"03/21","length_ft":5027,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":5001,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.8},{"id":"TWR","frequency_mhz":119.7}],"has_metar":true,"public":true},{"icao":"CYYW","iata":"YYW","local":"","name":"Armstrong Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Armstrong","elevation_ft":1058,"latitude":50.29029846191406,"longitude":-88.90969848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4006,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZS","iata":"YZS","local":"","name":"Coral Harbour Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Coral Harbour","elevation_ft":210,"latitude":64.1932983398,"longitude":-83.3593978882,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5006,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZST","iata":"ZST","local":"CZST","name":"Stewart Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Stewart","elevation_ft":24,"latitude":55.935410448,"longitude":-129.982434511,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAE","iata":"BJA","local":"BJ1","name":"Soummam–Abane Ramdane Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-06","municipality":"Béjaïa","elevation_ft":20,"latitude":36.711952,"longitude":5.069804,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAV","iata":"GJL","local":"","name":"Jijel Ferhat Abbas Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-18","municipality":"Tahir","elevation_ft":36,"latitude":36.795101,"longitude":5.87361,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUG","iata":"GHA","local":"","name":"Noumérat - Moufdi Zakaria Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-47","municipality":"El Atteuf","elevation_ft":1512,"latitude":32.384102,"longitude":3.79411,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10171,"width_ft":197,"surface":"H"},{"id":"18/36","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOO","iata":"ORN","local":"","name":"Oran Es-Sénia (Ahmed Ben Bella) International Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-31","municipality":"Es-Sénia","elevation_ft":295,"latitude":35.623901,"longitude":-0.621183,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/25R","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUZ","iata":"IAM","local":"","name":"Zarzaitine - In Aménas Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-33","municipality":"In Aménas","elevation_ft":1847,"latitude":28.0515,"longitude":9.64291,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"14/32","length_ft":7218,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNPO","iata":"PHC","local":"","name":"Port Harcourt International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-RI","municipality":"Port Harcourt","elevation_ft":87,"latitude":5.0154900550842285,"longitude":6.94959020614624,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTKA","iata":"TBJ","local":"","name":"Tabarka-Aïn Draham International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-32","municipality":"Tabarka","elevation_ft":230,"latitude":36.98,"longitude":8.87694,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9416,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBOS","iata":"OST","local":"","name":"Oostende-Brugge International Airport","category":"medium_airport","iso_country":"BE","iso_region":"BE-VWV","municipality":"Oostende","elevation_ft":13,"latitude":51.1998,"longitude":2.874673,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBFS","iata":"","local":"","name":"Florennes Air Base","category":"medium_airport","iso_country":"BE","iso_region":"BE-WNA","municipality":"Florennes","elevation_ft":935,"latitude":50.2433013916,"longitude":4.64583015442,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":11106,"width_ft":148,"surface":"H"},{"id":"08R/26L","length_ft":7382,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDG","iata":"FMO","local":"","name":"Münster Osnabrück Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Greven","elevation_ft":160,"latitude":52.134602,"longitude":7.68483,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7119,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDBC","iata":"CSO","local":"","name":"Cochstedt Airport","category":"small_airport","iso_country":"DE","iso_region":"DE-ST","municipality":"Hecklingen","elevation_ft":594,"latitude":51.8564,"longitude":11.4203,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8200,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDFH","iata":"HHN","local":"","name":"Frankfurt-Hahn Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-RP","municipality":"Frankfurt am Main (Lautzenhausen)","elevation_ft":1649,"latitude":49.9487,"longitude":7.26389,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/31","length_ft":12467,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDR","iata":"SCN","local":"","name":"Saarbrücken Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SL","municipality":"Saarbrücken","elevation_ft":1058,"latitude":49.2145996094,"longitude":7.10950994492,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6529,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDLW","iata":"DTM","local":"","name":"Dortmund Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Dortmund","elevation_ft":425,"latitude":51.518299,"longitude":7.61224,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDVK","iata":"KSF","local":"","name":"Kassel Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-HE","municipality":"Calden","elevation_ft":820,"latitude":51.420699,"longitude":9.392152,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EEPU","iata":"EPU","local":"","name":"Pärnu Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-67","municipality":"Pärnu","elevation_ft":47,"latitude":58.41899871826172,"longitude":24.47279930114746,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6463,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EETU","iata":"TAY","local":"","name":"Tartu Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-7B","municipality":"Tartu","elevation_ft":220,"latitude":58.307499,"longitude":26.690399,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5906,"width_ft":102,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFJY","iata":"JYV","local":"","name":"Jyväskylä Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-08","municipality":"Jyväskylän Maalaiskunta","elevation_ft":459,"latitude":62.399502,"longitude":25.678301,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8533,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFET","iata":"ENF","local":"","name":"Enontekio Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Enontekio","elevation_ft":1005,"latitude":68.362602233887,"longitude":23.424299240112,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6565,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFMA","iata":"MHQ","local":"","name":"Mariehamn Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-01","municipality":"Mariehamn","elevation_ft":17,"latitude":60.1222,"longitude":19.898199,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6243,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFTU","iata":"TKU","local":"","name":"Turku Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-19","municipality":"Turku","elevation_ft":161,"latitude":60.514099,"longitude":22.2628,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGGP","iata":"LPL","local":"","name":"Liverpool John Lennon Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Liverpool","elevation_ft":80,"latitude":53.333599,"longitude":-2.84972,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7500,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGJB","iata":"GCI","local":"","name":"Guernsey Airport","category":"medium_airport","iso_country":"GG","iso_region":"GG-U-A","municipality":"Saint Peter Port","elevation_ft":336,"latitude":49.435001,"longitude":-2.60197,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5194,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGLC","iata":"LCY","local":"","name":"London City Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"London","elevation_ft":19,"latitude":51.505299,"longitude":0.055278,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4948,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPO","iata":"SYY","local":"","name":"Stornoway Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Stornoway, Western Isles","elevation_ft":26,"latitude":58.215599,"longitude":-6.33111,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7595,"width_ft":151,"surface":"H"},{"id":"06/24","length_ft":3281,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGTE","iata":"EXT","local":"","name":"Exeter International Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Exeter","elevation_ft":102,"latitude":50.734402,"longitude":-3.41389,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGXT","iata":"","local":"","name":"RAF Wittering","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Wittering","elevation_ft":273,"latitude":52.612598,"longitude":-0.476453,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/23","length_ft":9045,"width_ft":184,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHBK","iata":"MST","local":"","name":"Maastricht Aachen Airport","category":"medium_airport","iso_country":"NL","iso_region":"NL-LI","municipality":"Maastricht","elevation_ft":375,"latitude":50.911701,"longitude":5.77014,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9022,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHLE","iata":"LEY","local":"","name":"Lelystad Airport","category":"medium_airport","iso_country":"NL","iso_region":"NL-FL","municipality":"Lelystad","elevation_ft":-13,"latitude":52.453188,"longitude":5.514622,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHLW","iata":"LWR","local":"","name":"Leeuwarden Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-FR","municipality":"Leeuwarden","elevation_ft":3,"latitude":53.22859954833984,"longitude":5.760560035705566,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8045,"width_ft":164,"surface":"H"},{"id":"09/27","length_ft":6561,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKCH","iata":"CPH","local":"","name":"Copenhagen Kastrup Airport","category":"large_airport","iso_country":"DK","iso_region":"DK-84","municipality":"Copenhagen","elevation_ft":17,"latitude":55.617900848389,"longitude":12.656000137329,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":11811,"width_ft":150,"surface":"H"},{"id":"04R/22L","length_ft":10827,"width_ft":150,"surface":"H"},{"id":"12/30","length_ft":9186,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.85},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"EKBI","iata":"BLL","local":"","name":"Billund Airport","category":"large_airport","iso_country":"DK","iso_region":"DK-83","municipality":"Billund","elevation_ft":247,"latitude":55.740496,"longitude":9.160452,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBR","iata":"BGO","local":"","name":"Bergen Airport, Flesland","category":"large_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Bergen","elevation_ft":170,"latitude":60.2934,"longitude":5.21814,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9810,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENEV","iata":"EVE","local":"","name":"Harstad/Narvik Airport, Evenes","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Evenes","elevation_ft":84,"latitude":68.491302490234,"longitude":16.678100585938,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9226,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBS","iata":"BJF","local":"","name":"Båtsfjord Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Båtsfjord","elevation_ft":490,"latitude":70.60050201416,"longitude":29.691400527954,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3281,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENFL","iata":"FRO","local":"","name":"Florø Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Florø","elevation_ft":37,"latitude":61.583599090576,"longitude":5.0247201919556,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4144,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRA","iata":"MQN","local":"","name":"Mo i Rana Airport, Røssvoll","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Mo i Rana","elevation_ft":229,"latitude":66.363899230957,"longitude":14.301400184631,"has_tower":false,"has_beacon":false,"runways":[{"id":"3/31","length_ft":2861,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENZV","iata":"SVG","local":"","name":"Stavanger Airport, Sola","category":"large_airport","iso_country":"NO","iso_region":"NO-11","municipality":"Stavanger","elevation_ft":29,"latitude":58.876701,"longitude":5.63778,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8875,"width_ft":197,"surface":"H"},{"id":"11/29","length_ft":8045,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSD","iata":"SDN","local":"","name":"Sandane Airport, Anda","category":"small_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Sandane","elevation_ft":196,"latitude":61.830002,"longitude":6.10583,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3182,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSR","iata":"SOJ","local":"","name":"Sørkjosen Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Sørkjosen","elevation_ft":16,"latitude":69.786796569824,"longitude":20.959400177002,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3327,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPKK","iata":"KRK","local":"","name":"Kraków John Paul II International Airport","category":"large_airport","iso_country":"PL","iso_region":"PL-MA","municipality":"Balice","elevation_ft":791,"latitude":50.077702,"longitude":19.7848,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8366,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPRZ","iata":"RZE","local":"","name":"Rzeszów-Jasionka Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-PK","municipality":"Jasionka","elevation_ft":693,"latitude":50.109791,"longitude":22.024155,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESDF","iata":"RNB","local":"","name":"Ronneby Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-K","municipality":"Ronneby","elevation_ft":191,"latitude":56.266701,"longitude":15.265,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7648,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESKN","iata":"NYO","local":"","name":"Stockholm Skavsta Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-D","municipality":"Nyköping","elevation_ft":140,"latitude":58.788601,"longitude":16.912201,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9442,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":6703,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMQ","iata":"KLR","local":"","name":"Kalmar Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-H","municipality":"Kalmar","elevation_ft":17,"latitude":56.685501,"longitude":16.2876,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6726,"width_ft":148,"surface":"H"},{"id":"05/23","length_ft":2152,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESND","iata":"EVG","local":"","name":"Sveg Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Z","municipality":"Sveg","elevation_ft":1178,"latitude":62.047798,"longitude":14.4229,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5581,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNS","iata":"SFT","local":"","name":"Skellefteå Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Skellefteå","elevation_ft":157,"latitude":64.62480163574219,"longitude":21.07690048217773,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNU","iata":"UME","local":"","name":"Umeå Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Umeå","elevation_ft":24,"latitude":63.791801452637,"longitude":20.282800674438,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7552,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESUT","iata":"HMV","local":"","name":"Hemavan Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Hemavan","elevation_ft":1503,"latitude":65.806099,"longitude":15.0828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4741,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSD","iata":"BLE","local":"","name":"Dala Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-W","municipality":"Borlange","elevation_ft":503,"latitude":60.422001,"longitude":15.5152,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7589,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ETNL","iata":"RLG","local":"","name":"Rostock-Laage Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-MV","municipality":"Rostock","elevation_ft":138,"latitude":53.9182014465,"longitude":12.2783002853,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EVRA","iata":"RIX","local":"","name":"Riga International Airport","category":"large_airport","iso_country":"LV","iso_region":"LV-062","municipality":"Riga","elevation_ft":36,"latitude":56.923599,"longitude":23.9711,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FALE","iata":"DUR","local":"","name":"King Shaka International Airport","category":"large_airport","iso_country":"ZA","iso_region":"ZA-NL","municipality":"Durban","elevation_ft":295,"latitude":-29.6144444444,"longitude":31.1197222222,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":12139,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FGSL","iata":"SSG","local":"","name":"Malabo Airport","category":"medium_airport","iso_country":"GQ","iso_region":"GQ-BN","municipality":"Malabo","elevation_ft":76,"latitude":3.755270004272461,"longitude":8.708720207214355,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9646,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FKYS","iata":"NSI","local":"","name":"Yaoundé Nsimalen International Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-CE","municipality":"Yaoundé","elevation_ft":2278,"latitude":3.722559928894043,"longitude":11.553299903869627,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":11161,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FSIA","iata":"SEZ","local":"","name":"Seychelles International Airport","category":"large_airport","iso_country":"SC","iso_region":"SC-20","municipality":"Mahe Island","elevation_ft":10,"latitude":-4.67434,"longitude":55.521801,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9800,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCRR","iata":"ACE","local":"","name":"César Manrique-Lanzarote Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"San Bartolomé","elevation_ft":46,"latitude":28.945499,"longitude":-13.6052,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMI","iata":"ESU","local":"","name":"Essaouira-Mogador Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-ESI","municipality":"Essaouira","elevation_ft":384,"latitude":31.397499,"longitude":-9.68167,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8553,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMZ","iata":"OZZ","local":"","name":"Ouarzazate Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-OUA","municipality":"Ouarzazate","elevation_ft":3782,"latitude":30.9391002655,"longitude":-6.909430027010001,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GOOY","iata":"DKR","local":"","name":"Léopold Sédar Senghor International Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-DK","municipality":"Dakar","elevation_ft":85,"latitude":14.7397,"longitude":-17.4902,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":11450,"width_ft":148,"surface":"H"},{"id":"03/21","length_ft":4898,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMTA","iata":"AHU","local":"","name":"Cherif Al Idrissi Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-HOC","municipality":"Al Hoceima","elevation_ft":95,"latitude":35.177101135253906,"longitude":-3.83951997756958,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GVSV","iata":"VXE","local":"","name":"São Pedro Airport","category":"medium_airport","iso_country":"CV","iso_region":"CV-B","municipality":"São Pedro","elevation_ft":66,"latitude":16.8332,"longitude":-25.0553,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HECA","iata":"CAI","local":"","name":"Cairo International Airport","category":"large_airport","iso_country":"EG","iso_region":"EG-C","municipality":"Cairo","elevation_ft":322,"latitude":30.111534,"longitude":31.396694,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"05C/23C","length_ft":13120,"width_ft":197,"surface":"H"},{"id":"05L/23R","length_ft":10830,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.6},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"HESG","iata":"HMB","local":"","name":"Suhaj Mubarak International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-SHG","municipality":"Suhaj","elevation_ft":322,"latitude":26.339115,"longitude":31.737624,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKKT","iata":"KTL","local":"","name":"Kitale Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Kitale","elevation_ft":6070,"latitude":0.9719889760017396,"longitude":34.95859909057617,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4757,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACB","iata":"ACB","local":"ACB","name":"Antrim County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bellaire","elevation_ft":623,"latitude":44.988602,"longitude":-85.198402,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KABR","iata":"ABR","local":"ABR","name":"Aberdeen Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Aberdeen","elevation_ft":1302,"latitude":45.449100494384766,"longitude":-98.42179870605467,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6901,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADC","iata":"","local":"ADC","name":"Wadena Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wadena","elevation_ft":1369,"latitude":46.45029830932617,"longitude":-95.21099853515624,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADM","iata":"ADM","local":"ADM","name":"Ardmore Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ardmore","elevation_ft":777,"latitude":34.30301,"longitude":-97.0196342,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":9002,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":5404,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":125.6}],"has_metar":true,"public":true},{"icao":"KAEX","iata":"AEX","local":"AEX","name":"Alexandria International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":89,"latitude":31.3274,"longitude":-92.549797,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9352,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":7001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.35}],"has_metar":true,"public":true},{"icao":"KAFK","iata":"","local":"AFK","name":"Nebraska City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Nebraska City","elevation_ft":1165,"latitude":40.606899,"longitude":-95.8657,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2550,"width_ft":151,"surface":"T"},{"id":"15/33","length_ft":4501,"width_ft":76,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAID","iata":"AID","local":"AID","name":"Anderson Municipal Darlington Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Anderson","elevation_ft":919,"latitude":40.10860061649999,"longitude":-85.6129989624,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5400,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":3399,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126}],"has_metar":true,"public":true},{"icao":"KAIZ","iata":"AIZ","local":"AIZ","name":"Lee C Fine Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kaiser Lake Ozark","elevation_ft":869,"latitude":38.0960006714,"longitude":-92.54949951170002,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6497,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJO","iata":"","local":"AJO","name":"Corona Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Corona","elevation_ft":533,"latitude":33.897701,"longitude":-117.601997,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAND","iata":"AND","local":"AND","name":"Anderson Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Anderson","elevation_ft":782,"latitude":34.4945983887,"longitude":-82.70939636230001,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6002,"width_ft":149,"surface":"A"},{"id":"17/35","length_ft":4996,"width_ft":149,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALS","iata":"ALS","local":"ALS","name":"San Luis Valley Regional Airport/Bergman Field","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Alamosa","elevation_ft":7539,"latitude":37.434898,"longitude":-105.866997,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8521,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANW","iata":"ANW","local":"ANW","name":"Ainsworth Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ainsworth","elevation_ft":2589,"latitude":42.579201,"longitude":-99.992995,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5501,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":6824,"width_ft":110,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAPN","iata":"APN","local":"APN","name":"Alpena County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Alpena","elevation_ft":690,"latitude":45.0780983,"longitude":-83.56030273,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":9001,"width_ft":150,"surface":"C"},{"id":"07/25","length_ft":5028,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.675},{"id":"LCL/P","frequency_mhz":121.35}],"has_metar":true,"public":true},{"icao":"KAPA","iata":"APA","local":"APA","name":"Centennial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5885,"latitude":39.57009888,"longitude":-104.848999,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4800,"width_ft":75,"surface":"A"},{"id":"17L/35R","length_ft":10001,"width_ft":100,"surface":"A"},{"id":"17R/35L","length_ft":7001,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KAQP","iata":"","local":"AQP","name":"Appleton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Appleton","elevation_ft":1020,"latitude":45.228239,"longitude":-96.005856,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2770,"width_ft":157,"surface":"T"},{"id":"13/31","length_ft":3500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARA","iata":"ARA","local":"ARA","name":"Acadiana Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":24,"latitude":30.0378,"longitude":-91.883904,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8002,"width_ft":200,"surface":"C"},{"id":"17W/35W","length_ft":5000,"width_ft":150,"surface":"W"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125}],"has_metar":true,"public":true},{"icao":"KASG","iata":"SPZ","local":"ASG","name":"Springdale Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Springdale","elevation_ft":1353,"latitude":36.176399231,"longitude":-94.1193008423,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5302,"width_ft":76,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KAUH","iata":"","local":"AUH","name":"Aurora Municipal Al Potter Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Aurora","elevation_ft":1803,"latitude":40.89410019,"longitude":-97.99459839,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4301,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUN","iata":"AUN","local":"AUN","name":"Auburn Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Auburn","elevation_ft":1539,"latitude":38.95479965,"longitude":-121.0820007,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUW","iata":"AUW","local":"AUW","name":"Wausau Downtown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wausau","elevation_ft":1201,"latitude":44.9262008667,"longitude":-89.6266021729,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3041,"width_ft":100,"surface":"A"},{"id":"12W/30W","length_ft":8000,"width_ft":300,"surface":"W"},{"id":"13/31","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXA","iata":"AXG","local":"AXA","name":"Algona Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Algona","elevation_ft":1219,"latitude":43.078104,"longitude":-94.271836,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3960,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":2895,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAZE","iata":"","local":"AZE","name":"Hazlehurst Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hazlehurst","elevation_ft":255,"latitude":31.884700775146484,"longitude":-82.64739990234375,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5012,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAX","iata":"","local":"BAX","name":"Huron County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bad Axe","elevation_ft":763,"latitude":43.78020096,"longitude":-82.98539734,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3495,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBBB","iata":"BBB","local":"BBB","name":"Benson Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Benson","elevation_ft":1039,"latitude":45.3319015503,"longitude":-95.6505966187,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCK","iata":"","local":"BCK","name":"Black River Falls Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Black River Falls","elevation_ft":836,"latitude":44.250702,"longitude":-90.855301,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4601,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCE","iata":"BCE","local":"BCE","name":"Bryce Canyon Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Bryce Canyon","elevation_ft":7590,"latitude":37.706401825,"longitude":-112.144996643,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7395,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBHB","iata":"BHB","local":"BHB","name":"Hancock County-Bar Harbor Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ME","municipality":"Bar Harbor","elevation_ft":83,"latitude":44.45000076,"longitude":-68.3615036,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5200,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3363,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBEH","iata":"BEH","local":"BEH","name":"Southwest Michigan Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Benton Harbor","elevation_ft":643,"latitude":42.128601074200006,"longitude":-86.4284973145,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6006,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3205,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBGM","iata":"BGM","local":"BGM","name":"Greater Binghamton/Edwin A Link field","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Binghamton","elevation_ft":1636,"latitude":42.20869827,"longitude":-75.97979736,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":7305,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":54,"width_ft":54,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":128.15}],"has_metar":true,"public":true},{"icao":"KBFL","iata":"BFL","local":"BFL","name":"Meadows Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":510,"latitude":35.433601,"longitude":-119.056999,"has_tower":true,"has_beacon":true,"runways":[{"id":"12L/30R","length_ft":10849,"width_ft":150,"surface":"A"},{"id":"12R/30L","length_ft":7700,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KBIS","iata":"BIS","local":"BIS","name":"Bismarck Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bismarck","elevation_ft":1661,"latitude":46.77270126342773,"longitude":-100.74600219726562,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6600,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":8794,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":119.35}],"has_metar":true,"public":true},{"icao":"KBIF","iata":"BIF","local":"BIF","name":"Biggs Army Air Field (Fort Bliss)","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Bliss/El Paso","elevation_ft":3946,"latitude":31.84950066,"longitude":-106.3799973,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":13554,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.9}],"has_metar":true,"public":true},{"icao":"KBJI","iata":"BJI","local":"BJI","name":"Bemidji Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1391,"latitude":47.50939941,"longitude":-94.93370056,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5700,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":7004,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKS","iata":"","local":"BKS","name":"Brooks County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Falfurrias","elevation_ft":113,"latitude":27.20680046,"longitude":-98.12120056,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3018,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBLI","iata":"BLI","local":"BLI","name":"Bellingham International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Bellingham","elevation_ft":170,"latitude":48.79280090332031,"longitude":-122.53800201416016,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6700,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.9},{"id":"ATIS","frequency_mhz":134.45}],"has_metar":true,"public":true},{"icao":"KBMC","iata":"BMC","local":"BMC","name":"Brigham City Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Brigham City","elevation_ft":4229,"latitude":41.552399,"longitude":-112.061996,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBOI","iata":"BOI","local":"BOI","name":"Boise Air Terminal/Gowen Field","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2871,"latitude":43.5644,"longitude":-116.223,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":9763,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":123.9}],"has_metar":true,"public":true},{"icao":"KBPG","iata":"HCA","local":"BPG","name":"Big Spring Mc Mahon-Wrinkle Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Big Spring","elevation_ft":2573,"latitude":32.212601,"longitude":-101.522003,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4601,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":8802,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPI","iata":"BPI","local":"BPI","name":"Miley Memorial Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Big Piney","elevation_ft":6990,"latitude":42.58509827,"longitude":-110.1110001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3301,"width_ft":60,"surface":"T"},{"id":"13/31","length_ft":6803,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTA","iata":"","local":"BTA","name":"Blair Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Blair","elevation_ft":1325,"latitude":41.414908,"longitude":-96.109136,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4201,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBUR","iata":"BUR","local":"BUR","name":"Bob Hope Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Burbank","elevation_ft":778,"latitude":34.197703,"longitude":-118.356378,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5802,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":6886,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"LCL/P","frequency_mhz":132.325},{"id":"D-ATIS","frequency_mhz":134.5},{"id":"D-ATIS","frequency_mhz":135.125}],"has_metar":true,"public":true},{"icao":"KBWP","iata":"WAH","local":"BWP","name":"Harry Stern Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wahpeton","elevation_ft":968,"latitude":46.2440986633,"longitude":-96.6073989868,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3254,"width_ft":150,"surface":"T"},{"id":"15/33","length_ft":5100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYG","iata":"BYG","local":"BYG","name":"Johnson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Buffalo","elevation_ft":4968,"latitude":44.3810997009,"longitude":-106.722000122,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6143,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYI","iata":"BYI","local":"BYI","name":"Burley Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Burley","elevation_ft":4150,"latitude":42.5425987244,"longitude":-113.772003174,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4092,"width_ft":80,"surface":"A"},{"id":"06/24","length_ft":4072,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAV","iata":"","local":"CAV","name":"Clarion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clarion","elevation_ft":1162,"latitude":42.74190139770508,"longitude":-93.75890350341795,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3455,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCO","iata":"","local":"CCO","name":"Newnan Coweta County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":970,"latitude":33.31159973144531,"longitude":-84.7697982788086,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEC","iata":"CEC","local":"CEC","name":"Jack Mc Namara Field Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Crescent City","elevation_ft":61,"latitude":41.78020096,"longitude":-124.2369995,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5002,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDR","iata":"CDR","local":"CDR","name":"Chadron Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Chadron","elevation_ft":3297,"latitude":42.837600708,"longitude":-103.095001221,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5998,"width_ft":100,"surface":"C"},{"id":"12/30","length_ft":4400,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEY","iata":"CEY","local":"CEY","name":"Kyle Oakley Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Murray","elevation_ft":577,"latitude":36.66460037,"longitude":-88.37280273,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6202,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHA","iata":"CHA","local":"CHA","name":"Chattanooga Metropolitan Airport (Lovell Field)","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Chattanooga","elevation_ft":683,"latitude":35.035301,"longitude":-85.203796,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7400,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5575,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":119.85}],"has_metar":true,"public":true},{"icao":"KCIR","iata":"CIR","local":"CIR","name":"Cairo Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Cairo","elevation_ft":321,"latitude":37.064499,"longitude":-89.219597,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3200,"width_ft":60,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKP","iata":"","local":"CKP","name":"Cherokee County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cherokee","elevation_ft":1227,"latitude":42.7317009,"longitude":-95.55590057,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2621,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLK","iata":"CLK","local":"CLK","name":"Clinton Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Clinton","elevation_ft":1616,"latitude":35.53829956,"longitude":-98.93270111,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":1348,"width_ft":245,"surface":"T"},{"id":"17/35","length_ft":4305,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLS","iata":"CLS","local":"CLS","name":"Chehalis Centralia Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Chehalis","elevation_ft":176,"latitude":46.6769981384,"longitude":-122.983001709,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":140,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNB","iata":"","local":"CNB","name":"Myers Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Canby","elevation_ft":1194,"latitude":44.7295,"longitude":-96.265999,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4648,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCMR","iata":"","local":"CMR","name":"H.A. Clark Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Williams","elevation_ft":6680,"latitude":35.305555,"longitude":-112.194393,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNO","iata":"CNO","local":"CNO","name":"Chino Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Chino","elevation_ft":650,"latitude":33.97470093,"longitude":-117.637001,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4919,"width_ft":150,"surface":"A"},{"id":"08L/26R","length_ft":4858,"width_ft":150,"surface":"A"},{"id":"08R/26L","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"KCOU","iata":"COU","local":"COU","name":"Columbia Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":889,"latitude":38.8181,"longitude":-92.219597,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7401,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":128.45}],"has_metar":true,"public":true},{"icao":"KCPU","iata":"","local":"CPU","name":"Calaveras Co Maury Rasmussen Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Andreas","elevation_ft":1325,"latitude":38.14609909057617,"longitude":-120.64800262451172,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3602,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCQM","iata":"","local":"CQM","name":"Cook Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cook","elevation_ft":1327,"latitude":47.8218994140625,"longitude":-92.68939971923828,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRS","iata":"CRS","local":"CRS","name":"C David Campbell Field Corsicana Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corsicana","elevation_ft":449,"latitude":32.0280990601,"longitude":-96.4005966187,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3200,"width_ft":75,"surface":"T"},{"id":"14/32","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCTJ","iata":"","local":"CTJ","name":"West Georgia Regional Airport / O V Gray Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1161,"latitude":33.631001,"longitude":-85.152,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVO","iata":"CVO","local":"CVO","name":"Corvallis Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":250,"latitude":44.49720001,"longitude":-123.2900009,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3100,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5900,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCWF","iata":"CWF","local":"CWF","name":"Chennault International Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":17,"latitude":30.2106,"longitude":-93.143204,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":10702,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120},{"id":"LCL/P","frequency_mhz":124.2}],"has_metar":true,"public":true},{"icao":"KDBQ","iata":"DBQ","local":"DBQ","name":"Dubuque Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Dubuque","elevation_ft":1077,"latitude":42.402,"longitude":-90.709503,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6502,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":6327,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KDAG","iata":"DAG","local":"DAG","name":"Barstow Daggett Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Daggett","elevation_ft":1930,"latitude":34.85369873,"longitude":-116.7870026,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5123,"width_ft":100,"surface":"A"},{"id":"08/26","length_ft":6402,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEH","iata":"DEH","local":"DEH","name":"Decorah Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Decorah","elevation_ft":1158,"latitude":43.275501,"longitude":-91.739403,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDHN","iata":"DHN","local":"DHN","name":"Dothan Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Dothan","elevation_ft":401,"latitude":31.3213005065918,"longitude":-85.44960021972656,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":8499,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5498,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":135.725}],"has_metar":true,"public":true},{"icao":"KDIJ","iata":"","local":"DIJ","name":"Driggs/Reed Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Driggs","elevation_ft":6229,"latitude":43.742667,"longitude":-111.096829,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLL","iata":"","local":"DLL","name":"Baraboo Wisconsin Dells Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Baraboo","elevation_ft":979,"latitude":43.522701,"longitude":-89.770203,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5010,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":2746,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLF","iata":"DLF","local":"DLF","name":"Laughlin Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1082,"latitude":29.359501,"longitude":-100.778002,"has_tower":true,"has_beacon":true,"runways":[{"id":"13C/31C","length_ft":8852,"width_ft":150,"surface":"A"},{"id":"13L/31R","length_ft":8316,"width_ft":150,"surface":"A"},{"id":"13R/31L","length_ft":6571,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":114.4},{"id":"LCL/P","frequency_mhz":125.2}],"has_metar":true,"public":true},{"icao":"KDNS","iata":"DNS","local":"DNS","name":"Denison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Denison","elevation_ft":1274,"latitude":41.9864006,"longitude":-95.38069916,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":2019,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDRO","iata":"DRO","local":"DRO","name":"Durango La Plata County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Durango","elevation_ft":6685,"latitude":37.151501,"longitude":-107.753998,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9201,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUC","iata":"DUC","local":"DUC","name":"Halliburton Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Duncan","elevation_ft":1114,"latitude":34.47090149,"longitude":-97.9598999,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6650,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUA","iata":"DUA","local":"DUA","name":"Durant Regional Airport - Eaker Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Durant","elevation_ft":699,"latitude":33.942299,"longitude":-96.395057,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTO","iata":"","local":"DTO","name":"Denton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":642,"latitude":33.2006988525,"longitude":-97.1979980469,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":7002,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.325},{"id":"LCL/P","frequency_mhz":119.95}],"has_metar":true,"public":true},{"icao":"KDVL","iata":"DVL","local":"DVL","name":"Devils Lake Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Devils Lake","elevation_ft":1456,"latitude":48.114201,"longitude":-98.908798,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4314,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDXX","iata":"","local":"DXX","name":"Lac Qui Parle County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Louisburg","elevation_ft":1082,"latitude":44.986198,"longitude":-96.177696,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3003,"width_ft":135,"surface":"T"},{"id":"14/32","length_ft":3300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYB","iata":"","local":"DYB","name":"Summerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Summerville","elevation_ft":56,"latitude":33.0634,"longitude":-80.279297,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDZB","iata":"","local":"DZB","name":"Horseshoe Bay Resort Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Horseshoe Bay","elevation_ft":1093,"latitude":30.52709961,"longitude":-98.35870361,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5977,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEBS","iata":"EBS","local":"EBS","name":"Webster City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Webster City","elevation_ft":1122,"latitude":42.43659973,"longitude":-93.86889648,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2663,"width_ft":90,"surface":"T"},{"id":"14/32","length_ft":3851,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEET","iata":"","local":"EET","name":"Shelby County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Alabaster","elevation_ft":586,"latitude":33.17699814,"longitude":-86.78279877,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECU","iata":"","local":"ECU","name":"Edwards County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rocksprings","elevation_ft":2372,"latitude":29.9468994140625,"longitude":-100.17400360107422,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4050,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEGT","iata":"","local":"EGT","name":"Wellington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wellington","elevation_ft":1277,"latitude":37.32360076904297,"longitude":-97.38829803466795,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5201,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEFK","iata":"EFK","local":"EFK","name":"Northeast Kingdom International Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Newport","elevation_ft":930,"latitude":44.888802,"longitude":-72.229202,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3996,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKO","iata":"EKO","local":"EKO","name":"Elko Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Elko","elevation_ft":5140,"latitude":40.82490158081055,"longitude":-115.79199981689452,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7454,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3015,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEIK","iata":"","local":"EIK","name":"Erie Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Erie","elevation_ft":5130,"latitude":40.010200500488,"longitude":-105.047996521,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4700,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELD","iata":"ELD","local":"ELD","name":"South Arkansas Regional Airport at Goodwin Field","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"El Dorado","elevation_ft":277,"latitude":33.221001,"longitude":-92.813301,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6601,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KENL","iata":"ENL","local":"ENL","name":"Centralia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Centralia","elevation_ft":534,"latitude":38.515099,"longitude":-89.091103,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3300,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KENV","iata":"ENV","local":"ENV","name":"Wendover Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Wendover","elevation_ft":4237,"latitude":40.7187004089,"longitude":-114.03099823,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10002,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":8002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KESC","iata":"ESC","local":"ESC","name":"Delta County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Escanaba","elevation_ft":609,"latitude":45.7226982117,"longitude":-87.0936965942,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5016,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":6498,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KESF","iata":"ESF","local":"ESF","name":"Esler Army Airfield / Esler Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":112,"latitude":31.394266,"longitude":-92.294082,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5999,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5601,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEUF","iata":"EUF","local":"EUF","name":"Weedon Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Eufaula","elevation_ft":285,"latitude":31.9512996674,"longitude":-85.1288986206,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KETN","iata":"ETN","local":"ETN","name":"Eastland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eastland","elevation_ft":1464,"latitude":32.4135017395,"longitude":-98.8097991943,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVV","iata":"EVV","local":"EVV","name":"Evansville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Evansville","elevation_ft":418,"latitude":38.0369987488,"longitude":-87.5324020386,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8021,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":3497,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":6286,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":120.2}],"has_metar":true,"public":true},{"icao":"KEZZ","iata":"","local":"EZZ","name":"Cameron Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Shoal Township","elevation_ft":1040,"latitude":39.7276,"longitude":-94.276398,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFBL","iata":"FBL","local":"FBL","name":"Faribault Municipal Airport-Liz Wall Strohfus Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Faribault","elevation_ft":1060,"latitude":44.32844,"longitude":-93.312534,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2300,"width_ft":175,"surface":"T"},{"id":"12/30","length_ft":4257,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFCS","iata":"FCS","local":"FCS","name":"Butts AAF (Fort Carson) Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Carson","elevation_ft":5838,"latitude":38.67839813,"longitude":-104.7570038,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4500,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":108.8},{"id":"LCL/P","frequency_mhz":125.5},{"id":"LCL/P","frequency_mhz":41.5}],"has_metar":true,"public":true},{"icao":"KFFL","iata":"FFL","local":"FFL","name":"Fairfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Fairfield","elevation_ft":799,"latitude":41.053024,"longitude":-91.980114,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2505,"width_ft":140,"surface":"T"},{"id":"18/36","length_ft":5503,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKL","iata":"FKL","local":"FKL","name":"Venango Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Franklin","elevation_ft":1540,"latitude":41.3778991699,"longitude":-79.8603973389,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5200,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3593,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKS","iata":"","local":"FKS","name":"Frankfort Dow Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Frankfort","elevation_ft":633,"latitude":44.62519836425781,"longitude":-86.20079803466797,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4050,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLG","iata":"FLG","local":"FLG","name":"Flagstaff Pulliam International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Flagstaff","elevation_ft":7014,"latitude":35.1385,"longitude":-111.670998,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.8},{"id":"LCL/P","frequency_mhz":134.55}],"has_metar":true,"public":true},{"icao":"KFMY","iata":"FMY","local":"FMY","name":"Page Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":17,"latitude":26.58659935,"longitude":-81.86329650879999,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6406,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4910,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119},{"id":"ATIS","frequency_mhz":123.725}],"has_metar":true,"public":true},{"icao":"KFMN","iata":"FMN","local":"FMN","name":"Four Corners Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Farmington","elevation_ft":5506,"latitude":36.741199,"longitude":-108.230003,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"07/25","length_ft":6704,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KFOZ","iata":"","local":"FOZ","name":"Bigfork Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bigfork","elevation_ft":1348,"latitude":47.78279876708984,"longitude":-93.65019989013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3998,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSM","iata":"FSM","local":"FSM","name":"Fort Smith Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fort Smith","elevation_ft":469,"latitude":35.336601,"longitude":-94.367401,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":9318,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KFSO","iata":"","local":"FSO","name":"Franklin County State Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Swanton","elevation_ft":228,"latitude":44.9403,"longitude":-73.097504,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFTY","iata":"FTY","local":"FTY","name":"Fulton County Airport Brown Field","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":841,"latitude":33.7790985107,"longitude":-84.5214004517,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5797,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4158,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":120.175}],"has_metar":true,"public":true},{"icao":"KFYV","iata":"FYV","local":"FYV","name":"Drake Field","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fayetteville","elevation_ft":1251,"latitude":36.00510025024414,"longitude":-94.17009735107422,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6005,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.575},{"id":"LCL/P","frequency_mhz":128}],"has_metar":true,"public":true},{"icao":"KFWS","iata":"","local":"FWS","name":"Fort Worth Spinks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":700,"latitude":32.56520080566406,"longitude":-97.30809783935548,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":3660,"width_ft":60,"surface":"T"},{"id":"18R/36L","length_ft":6002,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.025},{"id":"LCL/P","frequency_mhz":124.625}],"has_metar":true,"public":true},{"icao":"KGCC","iata":"GCC","local":"GCC","name":"Northeast Wyoming Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Gillette","elevation_ft":4365,"latitude":44.3489,"longitude":-105.539001,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5804,"width_ft":75,"surface":"C"},{"id":"16/34","length_ft":7501,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGDB","iata":"","local":"GDB","name":"Granite Falls Municipal Airport / Lenzen-Roe Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Granite Falls","elevation_ft":1047,"latitude":44.7533,"longitude":-95.556,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4357,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCY","iata":"GCY","local":"GCY","name":"Greeneville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Greeneville","elevation_ft":1608,"latitude":36.195648,"longitude":-82.811482,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGFK","iata":"GFK","local":"GFK","name":"Grand Forks International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grand Forks","elevation_ft":845,"latitude":47.949299,"longitude":-97.176102,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":4206,"width_ft":100,"surface":"C"},{"id":"09R/27L","length_ft":3300,"width_ft":60,"surface":"C"},{"id":"17L/35R","length_ft":3901,"width_ft":75,"surface":"C"},{"id":"17R/35L","length_ft":7351,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H10","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H11","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H12","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H3","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H4","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H5","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H6","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H7","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H8","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H9","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":119.4}],"has_metar":true,"public":true},{"icao":"KGKJ","iata":"MEJ","local":"GKJ","name":"Port Meadville Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Meadville","elevation_ft":1399,"latitude":41.626499,"longitude":-80.214699,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGJT","iata":"GJT","local":"GJT","name":"Grand Junction Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4858,"latitude":39.126663,"longitude":-108.529387,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5501,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":10503,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":118.55}],"has_metar":true,"public":true},{"icao":"KGLW","iata":"GLW","local":"GLW","name":"Glasgow Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Glasgow","elevation_ft":716,"latitude":37.03179932,"longitude":-85.9536972,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5302,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLD","iata":"GLD","local":"GLD","name":"Goodland Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Goodland","elevation_ft":3656,"latitude":39.370701,"longitude":-101.699753,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4001,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5499,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":1754,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLE","iata":"GLE","local":"GLE","name":"Gainesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gainesville","elevation_ft":845,"latitude":33.651401519800004,"longitude":-97.1969985962,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4307,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGOV","iata":"","local":"GOV","name":"Grayling Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Grayling","elevation_ft":1158,"latitude":44.680302,"longitude":-84.728897,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":5005,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.075},{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KGNC","iata":"","local":"GNC","name":"Gaines County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seminole","elevation_ft":3315,"latitude":32.676807,"longitude":-102.649927,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5381,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGPI","iata":"FCA","local":"GPI","name":"Glacier Park International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2977,"latitude":48.31050109863281,"longitude":-114.25599670410156,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":9007,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3510,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.55},{"id":"ATIS","frequency_mhz":132.625}],"has_metar":true,"public":true},{"icao":"KGRD","iata":"GRD","local":"GRD","name":"Greenwood County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greenwood","elevation_ft":631,"latitude":34.2486991882,"longitude":-82.15910339359999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"09/27","length_ft":5001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGRK","iata":"GRK","local":"GRK","name":"Killeen-Fort Hood Regional Airport / Robert Gray Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":1015,"latitude":31.0672,"longitude":-97.828903,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":9997,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75},{"id":"ATIS","frequency_mhz":124.9}],"has_metar":true,"public":true},{"icao":"KGTR","iata":"GTR","local":"GTR","name":"Golden Triangle Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Columbus/W Point/Starkville","elevation_ft":264,"latitude":33.450298309299995,"longitude":-88.5914001465,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":126.375}],"has_metar":true,"public":true},{"icao":"KGUY","iata":"GUY","local":"GUY","name":"Guymon Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guymon","elevation_ft":3123,"latitude":36.6851005554,"longitude":-101.508003235,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":1795,"width_ft":200,"surface":"T"},{"id":"18/36","length_ft":5904,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGWR","iata":"","local":"GWR","name":"Gwinner Roger Melroe Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Gwinner","elevation_ft":1266,"latitude":46.21870040893555,"longitude":-97.64320373535156,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2991,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGYI","iata":"PNX","local":"GYI","name":"North Texas Regional Airport/Perrin Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman/Denison","elevation_ft":749,"latitude":33.7141,"longitude":-96.673698,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2277,"width_ft":60,"surface":"A"},{"id":"17L/35R","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":4008,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.775},{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"KHAI","iata":"HAI","local":"HAI","name":"Three Rivers Municipal Dr Haines Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Three Rivers","elevation_ft":824,"latitude":41.9598007202,"longitude":-85.59339904790001,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2719,"width_ft":60,"surface":"A"},{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHEI","iata":"","local":"HEI","name":"Hettinger Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hettinger","elevation_ft":2705,"latitude":46.01490020751953,"longitude":-102.65599822998048,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4652,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":2020,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHF","iata":"","local":"HHF","name":"Hemphill County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canadian","elevation_ft":2396,"latitude":35.89530182,"longitude":-100.4039993,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5004,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":3001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHFJ","iata":"","local":"HFJ","name":"Monett Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pierce City","elevation_ft":1314,"latitude":36.9062,"longitude":-94.012802,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHII","iata":"HII","local":"HII","name":"Lake Havasu City International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Lake Havasu City","elevation_ft":783,"latitude":34.571098,"longitude":-114.358002,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":8000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHNB","iata":"HNB","local":"HNB","name":"Huntingburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Huntingburg","elevation_ft":529,"latitude":38.2490005493,"longitude":-86.95369720459999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHOT","iata":"HOT","local":"HOT","name":"Memorial Field Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Hot Springs","elevation_ft":540,"latitude":34.4788,"longitude":-93.096262,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6595,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4098,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHOB","iata":"HOB","local":"HOB","name":"Lea County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Hobbs","elevation_ft":3661,"latitude":32.6875,"longitude":-103.217003,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7398,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":6002,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":4998,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.75},{"id":"LCL/P","frequency_mhz":120.65}],"has_metar":true,"public":true},{"icao":"KHQZ","iata":"","local":"HQZ","name":"Mesquite Metro Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mesquite","elevation_ft":447,"latitude":32.74700164794922,"longitude":-96.53040313720705,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KHSA","iata":"","local":"HSA","name":"Stennis International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Bay St Louis","elevation_ft":23,"latitude":30.367799758911133,"longitude":-89.45459747314453,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8498,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KHUF","iata":"HUF","local":"HUF","name":"Terre Haute Regional Airport, Hulman Field","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Terre Haute","elevation_ft":589,"latitude":39.4515,"longitude":-87.307602,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":9021,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":7200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.5},{"id":"LCL/P","frequency_mhz":134.725}],"has_metar":true,"public":true},{"icao":"KHUM","iata":"HUM","local":"HUM","name":"Houma Terrebonne Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Houma","elevation_ft":10,"latitude":29.5664997101,"longitude":-90.6604003906,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4999,"width_ft":185,"surface":"C"},{"id":"18/36","length_ft":6508,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.25},{"id":"LCL/P","frequency_mhz":125.3}],"has_metar":true,"public":true},{"icao":"KHXD","iata":"HHH","local":"HXD","name":"Hilton Head Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Hilton Head Island","elevation_ft":19,"latitude":32.2244,"longitude":-80.697502,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.975},{"id":"ATIS","frequency_mhz":121.4}],"has_metar":true,"public":true},{"icao":"KHYR","iata":"HYR","local":"HYR","name":"Sawyer County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hayward","elevation_ft":1216,"latitude":46.025199890100005,"longitude":-91.44429779050002,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5002,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":1088,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYI","iata":"","local":"HYI","name":"San Marcos Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Marcos","elevation_ft":597,"latitude":29.8927,"longitude":-97.862999,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6330,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5601,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5214,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.825},{"id":"LCL/P","frequency_mhz":126.825}],"has_metar":true,"public":true},{"icao":"KICR","iata":"","local":"ICR","name":"Winner Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Winner","elevation_ft":2033,"latitude":43.39020157,"longitude":-99.84210205,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2751,"width_ft":150,"surface":"T"},{"id":"13/31","length_ft":5500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIGQ","iata":"","local":"IGQ","name":"Lansing Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":620,"latitude":41.5349006652832,"longitude":-87.52950286865234,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3395,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIIB","iata":"","local":"IIB","name":"Independence Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Independence","elevation_ft":979,"latitude":42.456836,"longitude":-91.94767,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIKK","iata":"IKK","local":"IKK","name":"Greater Kankakee Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kankakee","elevation_ft":630,"latitude":41.07139968869999,"longitude":-87.8462982178,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5981,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":4398,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KILE","iata":"ILE","local":"ILE","name":"Skylark Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":848,"latitude":31.0858001709,"longitude":-97.6865005493,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5495,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINK","iata":"INK","local":"INK","name":"Winkler County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wink","elevation_ft":2822,"latitude":31.7796001434,"longitude":-103.200996399,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3514,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINJ","iata":"","local":"INJ","name":"Hillsboro Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hillsboro","elevation_ft":686,"latitude":32.0835,"longitude":-97.097198,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3998,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJDN","iata":"JDN","local":"JDN","name":"Jordan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Jordan","elevation_ft":2662,"latitude":47.3288002014,"longitude":-106.95300293,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIPJ","iata":"","local":"IPJ","name":"Lincolnton Lincoln County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lincolnton","elevation_ft":877,"latitude":35.483299,"longitude":-81.161301,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5700,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAX","iata":"JAX","local":"JAX","name":"Jacksonville International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":30,"latitude":30.49410057067871,"longitude":-81.68789672851562,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":7701,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"D-ATIS","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"KJCT","iata":"JCT","local":"JCT","name":"Kimble County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Junction","elevation_ft":1749,"latitude":30.5112991333,"longitude":-99.7634963989,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2255,"width_ft":130,"surface":"T"},{"id":"17/35","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAS","iata":"JAS","local":"JAS","name":"Jasper County Airport Bell Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jasper","elevation_ft":213,"latitude":30.8857,"longitude":-94.034897,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJEF","iata":"JEF","local":"JEF","name":"Jefferson City Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jefferson City","elevation_ft":549,"latitude":38.5912017822,"longitude":-92.1560974121,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3401,"width_ft":75,"surface":"C"},{"id":"12/30","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.6}],"has_metar":true,"public":true},{"icao":"KJLN","iata":"JLN","local":"JLN","name":"Joplin Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Joplin","elevation_ft":981,"latitude":37.151798,"longitude":-94.498299,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":120.85}],"has_metar":true,"public":true},{"icao":"KJMS","iata":"JMS","local":"JMS","name":"Jamestown Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Jamestown","elevation_ft":1500,"latitude":46.92969894,"longitude":-98.67819977,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5750,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJSO","iata":"JKV","local":"JSO","name":"Cherokee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jacksonville","elevation_ft":677,"latitude":31.8693008423,"longitude":-95.2173995972,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJWG","iata":"","local":"JWG","name":"Watonga Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Watonga","elevation_ft":1550,"latitude":35.8647,"longitude":-98.420799,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJXI","iata":"","local":"JXI","name":"Fox Stephens Field Gilmer Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gilmer","elevation_ft":415,"latitude":32.699001,"longitude":-94.948898,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3998,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJWN","iata":"","local":"JWN","name":"John C Tune Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":495,"latitude":36.18239974975586,"longitude":-86.88670349121094,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.45},{"id":"ATIS","frequency_mhz":127.075}],"has_metar":true,"public":true},{"icao":"KJYR","iata":"","local":"JYR","name":"York Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"York","elevation_ft":1670,"latitude":40.89680099487305,"longitude":-97.622802734375,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4500,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":5898,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAM","iata":"LAM","local":"LAM","name":"Los Alamos Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Los Alamos","elevation_ft":7171,"latitude":35.8797988892,"longitude":-106.268997192,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6000,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KKNB","iata":"","local":"KNB","name":"Kanab Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Kanab","elevation_ft":4868,"latitude":37.01110076904297,"longitude":-112.53099822998048,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAR","iata":"LAR","local":"LAR","name":"Laramie Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Laramie","elevation_ft":7284,"latitude":41.31209945678711,"longitude":-105.6750030517578,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8503,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":6301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAA","iata":"LAA","local":"LAA","name":"Southeast Colorado Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Lamar","elevation_ft":3706,"latitude":38.066407,"longitude":-102.691373,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":6304,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAN","iata":"LAN","local":"LAN","name":"Capital City Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lansing","elevation_ft":861,"latitude":42.77870178222656,"longitude":-84.58740234375,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5003,"width_ft":120,"surface":"A"},{"id":"10L/28R","length_ft":3601,"width_ft":75,"surface":"A"},{"id":"10R/28L","length_ft":8506,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.75},{"id":"LCL/P","frequency_mhz":119.9}],"has_metar":true,"public":true},{"icao":"AYPY","iata":"POM","local":"","name":"Port Moresby Jacksons International Airport","category":"large_airport","iso_country":"PG","iso_region":"PG-NCD","municipality":"Port Moresby","elevation_ft":146,"latitude":-9.44338035583496,"longitude":147.22000122070312,"has_tower":true,"has_beacon":false,"runways":[{"id":"14L/32R","length_ft":9022,"width_ft":148,"surface":"H"},{"id":"14R/32L","length_ft":4265,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGBW","iata":"UAK","local":"","name":"Narsarsuaq Airport","category":"medium_airport","iso_country":"GL","iso_region":"GL-KU","municipality":"Narsarsuaq","elevation_ft":112,"latitude":61.1605,"longitude":-45.425999,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6004,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGSF","iata":"SFJ","local":"","name":"Kangerlussuaq Airport","category":"medium_airport","iso_country":"GL","iso_region":"GL-QA","municipality":"Kangerlussuaq","elevation_ft":165,"latitude":67.010446,"longitude":-50.715294,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9219,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BIAR","iata":"AEY","local":"","name":"Akureyri Airport","category":"medium_airport","iso_country":"IS","iso_region":"IS-6","municipality":"Akureyri","elevation_ft":6,"latitude":65.66000366210938,"longitude":-18.07270050048828,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BIRK","iata":"RKV","local":"","name":"Reykjavik Airport","category":"medium_airport","iso_country":"IS","iso_region":"IS-1","municipality":"Reykjavik","elevation_ft":48,"latitude":64.1299972534,"longitude":-21.9405994415,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5141,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":4035,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CBBC","iata":"ZEL","local":"CBBC","name":"Bella Bella (Campbell Island) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Bella Bella","elevation_ft":141,"latitude":52.185001,"longitude":-128.156994,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3697,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAT","iata":"YAT","local":"","name":"Attawapiskat Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Attawapiskat","elevation_ft":31,"latitude":52.9275016784668,"longitude":-82.43190002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3495,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBD","iata":"QBC","local":"","name":"Bella Coola Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Bella Coola","elevation_ft":117,"latitude":52.387501,"longitude":-126.596001,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYCD","iata":"YCD","local":"","name":"Nanaimo Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Nanaimo","elevation_ft":92,"latitude":49.05497,"longitude":-123.869863,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6602,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYCY","iata":"YCY","local":"","name":"Clyde River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Clyde River","elevation_ft":87,"latitude":70.4860992432,"longitude":-68.5167007446,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3501,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYEG","iata":"YEG","local":"CYEG","name":"Edmonton International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Edmonton","elevation_ft":2373,"latitude":53.3097,"longitude":-113.580002,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":10995,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":10200,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"CYEK","iata":"YEK","local":"","name":"Arviat Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Arviat","elevation_ft":32,"latitude":61.0942001343,"longitude":-94.0708007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYET","iata":"YET","local":"","name":"Edson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Edson","elevation_ft":3043,"latitude":53.5788993835,"longitude":-116.464996338,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYFS","iata":"YFS","local":"","name":"Fort Simpson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Simpson","elevation_ft":555,"latitude":61.76020050048828,"longitude":-121.23699951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/32","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHY","iata":"YHY","local":"","name":"Hay River / Merlyn Carter Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Hay River","elevation_ft":541,"latitude":60.8396987915,"longitude":-115.782997131,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":4001,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYIO","iata":"YIO","local":"","name":"Pond Inlet Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Pond Inlet","elevation_ft":181,"latitude":72.6832962036,"longitude":-77.9666976929,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4006,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLK","iata":"YSG","local":"","name":"Lutselk'e Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Lutselk'e","elevation_ft":596,"latitude":62.418303,"longitude":-110.681998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3003,"width_ft":103,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMM","iata":"YMM","local":"","name":"Fort McMurray Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Fort McMurray","elevation_ft":1211,"latitude":56.653301239,"longitude":-111.222000122,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7503,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMX","iata":"YMX","local":"","name":"Montreal International (Mirabel) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Montréal","elevation_ft":270,"latitude":45.679501,"longitude":-74.038696,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":12000,"width_ft":200,"surface":"C"},{"id":"11/29","length_ft":12000,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOD","iata":"YOD","local":"","name":"CFB Cold Lake","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Cold Lake","elevation_ft":1775,"latitude":54.40499877929688,"longitude":-110.27899932861328,"has_tower":true,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":12599,"width_ft":200,"surface":"A"},{"id":"13R/31L","length_ft":9999,"width_ft":150,"surface":"A"},{"id":"04/22","length_ft":8273,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPL","iata":"YPL","local":"","name":"Pickle Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Pickle Lake","elevation_ft":1267,"latitude":51.4463996887207,"longitude":-90.21420288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5217,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPE","iata":"YPE","local":"","name":"Peace River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Peace River","elevation_ft":1873,"latitude":56.226898,"longitude":-117.446999,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQG","iata":"YQG","local":"","name":"Windsor Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Windsor","elevation_ft":622,"latitude":42.27560043334961,"longitude":-82.95559692382812,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":9000,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":5150,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":134.5},{"id":"TWR","frequency_mhz":124.7}],"has_metar":true,"public":true},{"icao":"CYPW","iata":"YPW","local":"","name":"Powell River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Powell River","elevation_ft":425,"latitude":49.83420181274414,"longitude":-124.5,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3621,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQD","iata":"YQD","local":"","name":"The Pas Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"The Pas","elevation_ft":887,"latitude":53.97140121459961,"longitude":-101.09100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5901,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPX","iata":"YPX","local":"","name":"Puvirnituq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Puvirnituq","elevation_ft":74,"latitude":60.05059814453125,"longitude":-77.28690338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6299,"width_ft":148,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQQ","iata":"YQQ","local":"","name":"Comox Valley Airport / CFB Comox","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Comox","elevation_ft":84,"latitude":49.7108,"longitude":-124.887001,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9960,"width_ft":200,"surface":"C"},{"id":"18/36","length_ft":4970,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQT","iata":"YQT","local":"","name":"Thunder Bay Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Thunder Bay","elevation_ft":653,"latitude":48.37189865112305,"longitude":-89.32389831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6200,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":5300,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQU","iata":"YQU","local":"","name":"Grande Prairie Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Grande Prairie","elevation_ft":2195,"latitude":55.1796989441,"longitude":-118.885002136,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8502,"width_ft":148,"surface":"A"},{"id":"07/25","length_ft":6200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQZ","iata":"YQZ","local":"","name":"Quesnel Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Quesnel","elevation_ft":1789,"latitude":53.026100158691406,"longitude":-122.51000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5501,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRA","iata":"YRA","local":"","name":"Rae Lakes Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Gamètì","elevation_ft":723,"latitude":64.11609649658203,"longitude":-117.30999755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRV","iata":"YRV","local":"","name":"Revelstoke Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Revelstoke","elevation_ft":1459,"latitude":50.962245,"longitude":-118.184258,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5155,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVT","iata":"YVT","local":"","name":"Buffalo Narrows Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Buffalo Narrows","elevation_ft":1423,"latitude":55.8418998718,"longitude":-108.417999268,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5006,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":2297,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUL","iata":"YUL","local":"YUL","name":"Montreal / Pierre Elliott Trudeau International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Montréal","elevation_ft":118,"latitude":45.4706001282,"longitude":-73.7407989502,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":11000,"width_ft":200,"surface":"A"},{"id":"06R/24L","length_ft":9600,"width_ft":200,"surface":"C"},{"id":"10/28","length_ft":7000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":133.7},{"id":"ATIS-F","frequency_mhz":127.5},{"id":"TWR","frequency_mhz":119.3},{"id":"TWR","frequency_mhz":119.9}],"has_metar":true,"public":true},{"icao":"CYVL","iata":"YCK","local":"","name":"Tommy Kochon Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Colville Lake","elevation_ft":870,"latitude":67.02,"longitude":-126.126,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3935,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVQ","iata":"YVQ","local":"","name":"Norman Wells Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Norman Wells","elevation_ft":238,"latitude":65.28160095214844,"longitude":-126.7979965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5998,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYWL","iata":"YWL","local":"","name":"Williams Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Williams Lake","elevation_ft":3085,"latitude":52.1831016541,"longitude":-122.054000854,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6966,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXE","iata":"YXE","local":"","name":"Saskatoon John G. Diefenbaker International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Saskatoon","elevation_ft":1653,"latitude":52.17079925537109,"longitude":-106.6999969482422,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":8300,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":6200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.4},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"CYYC","iata":"YYC","local":"","name":"Calgary International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Calgary","elevation_ft":3557,"latitude":51.113899231,"longitude":-114.019996643,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":14000,"width_ft":200,"surface":"C"},{"id":"17R/35L","length_ft":12675,"width_ft":200,"surface":"A"},{"id":"11/29","length_ft":8000,"width_ft":200,"surface":"A"},{"id":"08/26","length_ft":6200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.225},{"id":"TWR","frequency_mhz":118.4},{"id":"TWR","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"CYXS","iata":"YXS","local":"","name":"Prince George Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Prince George","elevation_ft":2267,"latitude":53.884311,"longitude":-122.666554,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":11450,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":5624,"width_ft":150,"surface":"A"},{"id":"01/19","length_ft":3769,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYQ","iata":"YYQ","local":"","name":"Churchill Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Churchill","elevation_ft":94,"latitude":58.739200592041016,"longitude":-94.06500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9195,"width_ft":160,"surface":"A"},{"id":"07/25","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZP","iata":"YZP","local":"","name":"Sandspit Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Sandspit","elevation_ft":21,"latitude":53.25429916379999,"longitude":-131.813995361,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5112,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYU","iata":"YYU","local":"","name":"Kapuskasing Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Kapuskasing","elevation_ft":743,"latitude":49.41389846801758,"longitude":-82.46749877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZH","iata":"YZH","local":"","name":"Slave Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Slave Lake","elevation_ft":1912,"latitude":55.2930984497,"longitude":-114.777000427,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5569,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYZ","iata":"YYZ","local":"YYZ","name":"Toronto Lester B. Pearson International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Toronto","elevation_ft":569,"latitude":43.6772,"longitude":-79.6306,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":11120,"width_ft":200,"surface":"A"},{"id":"06L/24R","length_ft":9697,"width_ft":200,"surface":"A"},{"id":"06R/24L","length_ft":9000,"width_ft":200,"surface":"A"},{"id":"15L/33R","length_ft":11050,"width_ft":300,"surface":"A"},{"id":"15R/33L","length_ft":9088,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.825},{"id":"TWR","frequency_mhz":118.35}],"has_metar":true,"public":true},{"icao":"CYZU","iata":"YZU","local":"","name":"Whitecourt Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Whitecourt","elevation_ft":2567,"latitude":54.14390182495117,"longitude":-115.78700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5797,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZSJ","iata":"ZSJ","local":"","name":"Sandy Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sandy Lake","elevation_ft":951,"latitude":53.06420135498047,"longitude":-93.34439849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3507,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUI","iata":"INZ","local":"","name":"In Salah Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-57","municipality":"In Salah","elevation_ft":896,"latitude":27.250999,"longitude":2.51202,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAG","iata":"ALG","local":"","name":"Houari Boumediene Airport","category":"large_airport","iso_country":"DZ","iso_region":"DZ-16","municipality":"Algiers","elevation_ft":82,"latitude":36.693886,"longitude":3.214531,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":11483,"width_ft":197,"surface":"H"},{"id":"09/27","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAS","iata":"QSF","local":"","name":"Ain Arnat Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-19","municipality":"Sétif","elevation_ft":3360,"latitude":36.178100585900005,"longitude":5.32449007034,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9514,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOB","iata":"TID","local":"","name":"Abdelhafid Boussouf Bou Chekif Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-14","municipality":"Tiaret","elevation_ft":3245,"latitude":35.341099,"longitude":1.46315,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAJ","iata":"DJG","local":"","name":"Djanet Inedbirene Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-56","municipality":"Djanet","elevation_ft":3176,"latitude":24.292801,"longitude":9.45244,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOI","iata":"CFK","local":"","name":"Chlef Aboubakr Belkaid International Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-02","municipality":"Chlef","elevation_ft":463,"latitude":36.217166,"longitude":1.342237,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9186,"width_ft":148,"surface":"H"},{"id":"07/25","length_ft":5400,"width_ft":90,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAON","iata":"TLM","local":"","name":"Zenata – Messali El Hadj Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-13","municipality":"Zenata","elevation_ft":814,"latitude":35.013426,"longitude":-1.457191,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOV","iata":"MUW","local":"","name":"Ghriss Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-29","municipality":"Ghriss","elevation_ft":1686,"latitude":35.207699,"longitude":0.147142,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5577,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUO","iata":"ELU","local":"","name":"Guemar Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-39","municipality":"Guemar","elevation_ft":203,"latitude":33.5113983154,"longitude":6.77679014206,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNAA","iata":"ABV","local":"","name":"Nnamdi Azikiwe International Airport","category":"large_airport","iso_country":"NG","iso_region":"NG-FC","municipality":"Abuja","elevation_ft":1123,"latitude":9.00679,"longitude":7.26317,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":11844,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNEN","iata":"ENU","local":"","name":"Akanu Ibiam International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-EN","municipality":"Enegu","elevation_ft":466,"latitude":6.474269866943359,"longitude":7.561960220336914,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTD","iata":"","local":"","name":"Remada Air Base","category":"medium_airport","iso_country":"TN","iso_region":"TN-83","municipality":"Remada","elevation_ft":1004,"latitude":32.30619812011719,"longitude":10.382100105285645,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7800,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTMB","iata":"MIR","local":"","name":"Monastir Habib Bourguiba International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-52","municipality":"Monastir","elevation_ft":9,"latitude":35.75809860229492,"longitude":10.75469970703125,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9744,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBBR","iata":"BRU","local":"","name":"Brussels Airport","category":"large_airport","iso_country":"BE","iso_region":"BE-BRU","municipality":"Zaventem","elevation_ft":175,"latitude":50.901402,"longitude":4.48444,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":11936,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":10535,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":9800,"width_ft":164,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.47}],"has_metar":true,"public":true},{"icao":"EBLG","iata":"LGG","local":"","name":"Liège Airport","category":"medium_airport","iso_country":"BE","iso_region":"BE-WLG","municipality":"Grâce-Hollogne","elevation_ft":659,"latitude":50.638574,"longitude":5.443897,"has_tower":true,"has_beacon":false,"runways":[{"id":"04R/22L","length_ft":12106,"width_ft":148,"surface":"H"},{"id":"04L/23R","length_ft":7677,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBAW","iata":"ANR","local":"","name":"Antwerp International Airport (Deurne)","category":"medium_airport","iso_country":"BE","iso_region":"BE-VAN","municipality":"Antwerp","elevation_ft":39,"latitude":51.190667,"longitude":4.463153,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4954,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBCV","iata":"","local":"","name":"Chièvres Air Base","category":"medium_airport","iso_country":"BE","iso_region":"BE-WHT","municipality":"Chièvres","elevation_ft":194,"latitude":50.575801849365234,"longitude":3.8310000896453857,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8196,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDN","iata":"NUE","local":"","name":"Nuremberg Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BY","municipality":"Nuremberg","elevation_ft":1046,"latitude":49.498699,"longitude":11.078056,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDE","iata":"ERF","local":"","name":"Erfurt-Weimar Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-TH","municipality":"Erfurt","elevation_ft":1036,"latitude":50.979801,"longitude":10.9581,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/278","length_ft":8530,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDB","iata":"BER","local":"","name":"Berlin Brandenburg Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BR","municipality":"Berlin","elevation_ft":157,"latitude":52.362247,"longitude":13.500672,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.95},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"EDDC","iata":"DRS","local":"","name":"Dresden Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SN","municipality":"Dresden","elevation_ft":755,"latitude":51.134123,"longitude":13.767831,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9350,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDV","iata":"HAJ","local":"","name":"Hannover Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Hannover","elevation_ft":183,"latitude":52.461102,"longitude":9.68508,"has_tower":true,"has_beacon":false,"runways":[{"id":"09L/27R","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"09R/27L","length_ft":7677,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDLP","iata":"PAD","local":"","name":"Paderborn Lippstadt Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Büren","elevation_ft":699,"latitude":51.614101,"longitude":8.61632,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7152,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDJA","iata":"FMM","local":"","name":"Memmingen Allgau Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BY","municipality":"Memmingen","elevation_ft":2077,"latitude":47.9888000488,"longitude":10.2395000458,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8629,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDFM","iata":"MHG","local":"","name":"Mannheim-City Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Mannheim","elevation_ft":308,"latitude":49.473057,"longitude":8.514167,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3497,"width_ft":82,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDW","iata":"BRE","local":"","name":"Bremen Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-HB","municipality":"Bremen","elevation_ft":14,"latitude":53.046786,"longitude":8.78932,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6693,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDHK","iata":"KEL","local":"","name":"Kiel-Holtenau Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SH","municipality":"Kiel","elevation_ft":102,"latitude":54.379444,"longitude":10.145278,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4134,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDTY","iata":"","local":"","name":"Adolf Würth Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Schwäbisch Hall","elevation_ft":1299,"latitude":49.1183319092,"longitude":9.783888816829998,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5052,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDVE","iata":"BWE","local":"","name":"Braunschweig-Wolfsburg Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Braunschweig","elevation_ft":295,"latitude":52.319199,"longitude":10.5561,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDWE","iata":"EME","local":"","name":"Emden Airport","category":"small_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Emden","elevation_ft":3,"latitude":53.391109,"longitude":7.2275,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4265,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EETN","iata":"TLL","local":"","name":"Lennart Meri Tallinn Airport","category":"large_airport","iso_country":"EE","iso_region":"EE-37","municipality":"Tallinn","elevation_ft":131,"latitude":59.41329956049999,"longitude":24.8327999115,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":11417,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EEKE","iata":"URE","local":"","name":"Kuressaare Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-74","municipality":"Kuressaare","elevation_ft":14,"latitude":58.22990036010742,"longitude":22.50950050354004,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6562,"width_ft":98,"surface":"H"},{"id":"05/23","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDXW","iata":"GWT","local":"","name":"Westerland Sylt Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SH","municipality":"Westerland","elevation_ft":51,"latitude":54.9132,"longitude":8.34047,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6955,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":5564,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFIV","iata":"IVL","local":"","name":"Ivalo Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Ivalo","elevation_ft":481,"latitude":68.607299804688,"longitude":27.405300140381,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8199,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKE","iata":"KEM","local":"","name":"Kemi-Tornio Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Kemi / Tornio","elevation_ft":61,"latitude":65.778701782227,"longitude":24.582099914551,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8212,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKK","iata":"KOK","local":"","name":"Kokkola-Pietarsaari Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-07","municipality":"Kokkola / Kruunupyy","elevation_ft":84,"latitude":63.721199,"longitude":23.143101,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":197,"surface":"H"},{"id":"11/29","length_ft":2297,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFHK","iata":"HEL","local":"","name":"Helsinki Vantaa Airport","category":"large_airport","iso_country":"FI","iso_region":"FI-18","municipality":"Helsinki","elevation_ft":179,"latitude":60.3172,"longitude":24.963301,"has_tower":true,"has_beacon":true,"runways":[{"id":"04R/22L","length_ft":11286,"width_ft":197,"surface":"H"},{"id":"04L/22R","length_ft":10039,"width_ft":197,"surface":"H"},{"id":"15/33","length_ft":9518,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":135.1},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"EGAA","iata":"BFS","local":"","name":"Belfast International Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-NIR","municipality":"Belfast","elevation_ft":268,"latitude":54.6575012207,"longitude":-6.21582984924,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9121,"width_ft":148,"surface":"H"},{"id":"17/35","length_ft":6204,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGCC","iata":"MAN","local":"","name":"Manchester Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Manchester","elevation_ft":257,"latitude":53.349375,"longitude":-2.279521,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":10007,"width_ft":148,"surface":"H"},{"id":"05L/23R","length_ft":10000,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.18},{"id":"TWR","frequency_mhz":118.62}],"has_metar":true,"public":true},{"icao":"EFTP","iata":"TMP","local":"","name":"Tampere-Pirkkala Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-11","municipality":"Tampere / Pirkkala","elevation_ft":390,"latitude":61.414101,"longitude":23.604401,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFVA","iata":"VAA","local":"","name":"Vaasa Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-12","municipality":"Vaasa","elevation_ft":19,"latitude":63.050701,"longitude":21.762199,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFRO","iata":"RVN","local":"","name":"Rovaniemi Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Rovaniemi","elevation_ft":642,"latitude":66.564796447754,"longitude":25.830400466919,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9849,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGCK","iata":"","local":"","name":"Caernarfon Airport","category":"small_airport","iso_country":"GB","iso_region":"GB-WLS","municipality":"Caernarfon","elevation_ft":1,"latitude":53.101819,"longitude":-4.337614,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3058,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGDY","iata":"YEO","local":"","name":"RNAS Yeovilton","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Yeovil","elevation_ft":75,"latitude":51.0093994140625,"longitude":-2.638819932937622,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7523,"width_ft":148,"surface":"H"},{"id":"04/22","length_ft":4803,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGMD","iata":"LYX","local":"","name":"Lydd London Ashford Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Romney Marsh, Kent","elevation_ft":13,"latitude":50.956246,"longitude":0.939074,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4938,"width_ft":105,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNS","iata":"IOM","local":"","name":"Isle of Man Airport","category":"medium_airport","iso_country":"IM","iso_region":"IM-U-A","municipality":"Castletown","elevation_ft":52,"latitude":54.083302,"longitude":-4.62389,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6027,"width_ft":151,"surface":"H"},{"id":"03/21","length_ft":3934,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNJ","iata":"HUY","local":"","name":"Humberside Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Grimsby","elevation_ft":121,"latitude":53.57440185546875,"longitude":-0.350832998752594,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7205,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":3245,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPC","iata":"WIC","local":"","name":"Wick Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Wick","elevation_ft":126,"latitude":58.45890045166016,"longitude":-3.09306001663208,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5988,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPD","iata":"ABZ","local":"","name":"Aberdeen Dyce Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Aberdeen","elevation_ft":215,"latitude":57.2019,"longitude":-2.19778,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6407,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPF","iata":"GLA","local":"","name":"Glasgow International Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Paisley, Renfrewshire","elevation_ft":26,"latitude":55.871899,"longitude":-4.43306,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8743,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNX","iata":"EMA","local":"","name":"East Midlands Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Nottingham","elevation_ft":306,"latitude":52.8311,"longitude":-1.32806,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9495,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGUW","iata":"","local":"","name":"Wattisham Airfield","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Stowmarket","elevation_ft":284,"latitude":52.127451,"longitude":0.956189,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7949,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGWU","iata":"NHT","local":"","name":"RAF Northolt","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"London","elevation_ft":124,"latitude":51.5530014038,"longitude":-0.418166995049,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5522,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGQL","iata":"ADX","local":"","name":"Leuchars Station Airfield","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Leuchars, Fife","elevation_ft":38,"latitude":56.37398,"longitude":-2.868862,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8484,"width_ft":148,"surface":"H"},{"id":"04/22","length_ft":4803,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGXW","iata":"WTN","local":"","name":"RAF Waddington","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Waddington","elevation_ft":231,"latitude":53.1661987305,"longitude":-0.523810982704,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9314,"width_ft":190,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHDL","iata":"","local":"","name":"Deelen Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-GE","municipality":"Arnhem","elevation_ft":158,"latitude":52.0606,"longitude":5.87306,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3431,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHGR","iata":"GLZ","local":"","name":"Gilze Rijen Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-NB","municipality":"Rijen","elevation_ft":49,"latitude":51.567402,"longitude":4.93183,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9080,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":6548,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHKD","iata":"DHR","local":"","name":"De Kooy Airfield / Den Helder Naval Air Station","category":"medium_airport","iso_country":"NL","iso_region":"NL-NH","municipality":"Den Helder","elevation_ft":3,"latitude":52.923401,"longitude":4.78062,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4183,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHGG","iata":"GRQ","local":"","name":"Groningen Airport Eelde","category":"medium_airport","iso_country":"NL","iso_region":"NL-DR","municipality":"Groningen","elevation_ft":17,"latitude":53.119701,"longitude":6.57944,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EINN","iata":"SNN","local":"","name":"Shannon Airport","category":"large_airport","iso_country":"IE","iso_region":"IE-CE","municipality":"Shannon","elevation_ft":46,"latitude":52.702,"longitude":-8.92482,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10495,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EIDW","iata":"DUB","local":"","name":"Dublin Airport","category":"large_airport","iso_country":"IE","iso_region":"IE-D","municipality":"Dublin","elevation_ft":242,"latitude":53.428713,"longitude":-6.262121,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":8652,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":6800,"width_ft":200,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.52},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"EKRN","iata":"RNN","local":"","name":"Bornholm Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-84","municipality":"Rønne","elevation_ft":52,"latitude":55.06330108642578,"longitude":14.759599685668944,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6568,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKAH","iata":"AAR","local":"","name":"Aarhus Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-82","municipality":"Aarhus","elevation_ft":82,"latitude":56.303331,"longitude":10.618286,"has_tower":true,"has_beacon":false,"runways":[{"id":"10L/28R","length_ft":9110,"width_ft":75,"surface":"H"},{"id":"10R/28L","length_ft":8865,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENAL","iata":"AES","local":"","name":"Ålesund Airport, Vigra","category":"medium_airport","iso_country":"NO","iso_region":"NO-15","municipality":"Ålesund","elevation_ft":69,"latitude":62.5625,"longitude":6.1197,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7592,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENCN","iata":"KRS","local":"","name":"Kristiansand Airport, Kjevik","category":"medium_airport","iso_country":"NO","iso_region":"NO-42","municipality":"Kjevik","elevation_ft":57,"latitude":58.204201,"longitude":8.08537,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6680,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENDU","iata":"BDU","local":"","name":"Bardufoss Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Målselv","elevation_ft":252,"latitude":69.055801391602,"longitude":18.540399551392,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9826,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENAN","iata":"ANX","local":"","name":"Andøya Airport, Andenes","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Andenes","elevation_ft":43,"latitude":69.292503,"longitude":16.144199,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":9849,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBN","iata":"BNN","local":"","name":"Brønnøysund Airport, Brønnøy","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Brønnøy","elevation_ft":25,"latitude":65.461098,"longitude":12.2175,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4718,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENAT","iata":"ALF","local":"","name":"Alta Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Alta","elevation_ft":9,"latitude":69.976097106934,"longitude":23.371700286865,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7395,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRM","iata":"RVK","local":"","name":"Rørvik Airport, Ryum","category":"medium_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Rørvik","elevation_ft":14,"latitude":64.838302612305,"longitude":11.14610004425,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3123,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENHD","iata":"HAU","local":"","name":"Haugesund Airport, Karmøy","category":"medium_airport","iso_country":"NO","iso_region":"NO-11","municipality":"Karmøy","elevation_ft":86,"latitude":59.345299,"longitude":5.20836,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6955,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENNM","iata":"OSY","local":"","name":"Namsos Airport","category":"small_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Namsos","elevation_ft":7,"latitude":64.472198,"longitude":11.5786,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3074,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENHF","iata":"HFT","local":"","name":"Hammerfest Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Hammerfest","elevation_ft":266,"latitude":70.679702758789,"longitude":23.668600082397,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3061,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENKR","iata":"KKN","local":"","name":"Kirkenes Airport, Høybuktmoen","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Kirkenes","elevation_ft":283,"latitude":69.7258,"longitude":29.8913,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7726,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENMH","iata":"MEH","local":"","name":"Mehamn Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Mehamn","elevation_ft":39,"latitude":71.02970123291,"longitude":27.826700210571,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3182,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSG","iata":"SOG","local":"","name":"Sogndal Airport, Haukåsen","category":"small_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Sogndal","elevation_ft":1633,"latitude":61.156101,"longitude":7.13778,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3642,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRO","iata":"RRS","local":"","name":"Røros Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Røros","elevation_ft":2054,"latitude":62.578399658203,"longitude":11.342300415039,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5643,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENTC","iata":"TOS","local":"","name":"Tromsø Airport, Langnes","category":"large_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Tromsø","elevation_ft":31,"latitude":69.683296,"longitude":18.9189,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8041,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSK","iata":"SKN","local":"","name":"Stokmarknes Airport, Skagen","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Hadsel","elevation_ft":11,"latitude":68.578827,"longitude":15.033417,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3031,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSS","iata":"VAW","local":"","name":"Vardø Airport, Svartnes","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Vardø","elevation_ft":42,"latitude":70.355400085449,"longitude":31.044900894165,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3760,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRS","iata":"RET","local":"","name":"Røst Airport","category":"small_airport","iso_country":"NO","iso_region":"NO-18","municipality":"UNKNOWN","elevation_ft":7,"latitude":67.527801513672,"longitude":12.103300094604,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3386,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPLB","iata":"LUZ","local":"","name":"Lublin Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-LU","municipality":"Lublin","elevation_ft":633,"latitude":51.240278,"longitude":22.713611,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPRA","iata":"RDO","local":"","name":"Radom Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-MZ","municipality":"Radom","elevation_ft":610,"latitude":51.389198,"longitude":21.213301,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPKT","iata":"KTW","local":"","name":"Katowice Wojciech Korfanty International Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-SL","municipality":"Ożarowice","elevation_ft":995,"latitude":50.476015,"longitude":19.080705,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESGG","iata":"GOT","local":"","name":"Gothenburg-Landvetter Airport","category":"large_airport","iso_country":"SE","iso_region":"SE-Q","municipality":"Gothenburg","elevation_ft":506,"latitude":57.662799835205,"longitude":12.279800415039,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10823,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESKM","iata":"MXX","local":"","name":"Mora Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-W","municipality":"Mora","elevation_ft":634,"latitude":60.957901,"longitude":14.5114,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5951,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESOK","iata":"KSD","local":"","name":"Karlstad Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-S","municipality":"Karlstad","elevation_ft":352,"latitude":59.4446983337,"longitude":13.3374004364,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8255,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESIA","iata":"","local":"","name":"Karlsborg Air Base","category":"small_airport","iso_country":"SE","iso_region":"SE-Q","municipality":"Karlsborg","elevation_ft":308,"latitude":58.51380157470703,"longitude":14.507100105285645,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7510,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMK","iata":"KID","local":"","name":"Kristianstad Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-M","municipality":"Kristianstad","elevation_ft":76,"latitude":55.92169952392578,"longitude":14.08549976348877,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7267,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESOE","iata":"ORB","local":"","name":"Örebro Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-T","municipality":"Örebro","elevation_ft":188,"latitude":59.22370147705078,"longitude":15.038000106811523,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10728,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMT","iata":"HAD","local":"","name":"Halmstad Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-N","municipality":"Halmstad","elevation_ft":101,"latitude":56.69110107421875,"longitude":12.820199966430664,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7441,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":1998,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNX","iata":"AJR","local":"","name":"Arvidsjaur Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Arvidsjaur","elevation_ft":1245,"latitude":65.59030151367188,"longitude":19.28190040588379,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNQ","iata":"KRN","local":"","name":"Kiruna Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Kiruna","elevation_ft":1508,"latitude":67.821998596191,"longitude":20.336799621582,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8209,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNL","iata":"LYC","local":"","name":"Lycksele Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Lycksele","elevation_ft":705,"latitude":64.548302,"longitude":18.7162,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6864,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNO","iata":"OER","local":"","name":"Örnsköldsvik Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Y","municipality":"Örnsköldsvik","elevation_ft":354,"latitude":63.40829849243164,"longitude":18.989999771118164,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6614,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ETHS","iata":"","local":"","name":"Fassberg Air Base","category":"medium_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"UNKNOWN","elevation_ft":245,"latitude":52.919399,"longitude":10.185827,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8005,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESUP","iata":"PJA","local":"","name":"Pajala Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"UNKNOWN","elevation_ft":542,"latitude":67.24559783935547,"longitude":23.06889915466309,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSL","iata":"LPI","local":"","name":"Linköping City Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-E","municipality":"Linköping","elevation_ft":172,"latitude":58.4062004089,"longitude":15.6805000305,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7005,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESOW","iata":"VST","local":"","name":"Stockholm Västerås Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-U","municipality":"Stockholm / Västerås","elevation_ft":21,"latitude":59.58940124511719,"longitude":16.63360023498535,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8468,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESST","iata":"TYF","local":"","name":"Torsby Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-S","municipality":"Torsby","elevation_ft":393,"latitude":60.1576,"longitude":12.9913,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5217,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESPA","iata":"LLA","local":"","name":"Luleå Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Luleå","elevation_ft":65,"latitude":65.5438,"longitude":22.122,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":10991,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EYVI","iata":"VNO","local":"","name":"Vilnius International Airport","category":"large_airport","iso_country":"LT","iso_region":"LT-VL","municipality":"Vilnius","elevation_ft":648,"latitude":54.634102,"longitude":25.285801,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8251,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EVLA","iata":"LPX","local":"","name":"Liepāja International Airport","category":"medium_airport","iso_country":"LV","iso_region":"LV-112","municipality":"Liepāja","elevation_ft":16,"latitude":56.51750183105469,"longitude":21.096900939941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6568,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EVVA","iata":"VNT","local":"","name":"Ventspils International Airport","category":"medium_airport","iso_country":"LV","iso_region":"LV-VEN","municipality":"Ventspils","elevation_ft":19,"latitude":57.35779953,"longitude":21.5442008972,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/31","length_ft":4259,"width_ft":105,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FAMM","iata":"MBD","local":"","name":"Mmabatho International Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-NW","municipality":"Mafeking","elevation_ft":4181,"latitude":-25.798400878900004,"longitude":25.5480003357,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":14761,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FCPP","iata":"PNR","local":"","name":"Antonio Agostinho-Neto International Airport","category":"medium_airport","iso_country":"CG","iso_region":"CG-5","municipality":"Pointe Noire","elevation_ft":55,"latitude":-4.81603,"longitude":11.8866,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8596,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FCBB","iata":"BZV","local":"","name":"Maya-Maya Airport","category":"medium_airport","iso_country":"CG","iso_region":"CG-12","municipality":"Brazzaville","elevation_ft":1048,"latitude":-4.251699924468994,"longitude":15.253000259399414,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FEFF","iata":"BGF","local":"","name":"Bangui M'Poko International Airport","category":"medium_airport","iso_country":"CF","iso_region":"CF-MP","municipality":"Bangui","elevation_ft":1208,"latitude":4.39847993850708,"longitude":18.518800735473636,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FKKD","iata":"DLA","local":"","name":"Douala International Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-LT","municipality":"Douala","elevation_ft":33,"latitude":4.0060801506,"longitude":9.71947956085,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9350,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FNCA","iata":"CAB","local":"","name":"Cabinda Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-CAB","municipality":"Cabinda","elevation_ft":66,"latitude":-5.59699010848999,"longitude":12.188400268554688,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8202,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FOOL","iata":"LBV","local":"","name":"Libreville Leon M'ba International Airport","category":"medium_airport","iso_country":"GA","iso_region":"GA-1","municipality":"Libreville","elevation_ft":39,"latitude":0.458600014448,"longitude":9.4122800827,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FTTJ","iata":"NDJ","local":"","name":"N'Djamena International Airport","category":"large_airport","iso_country":"TD","iso_region":"TD-ND","municipality":"N'Djamena","elevation_ft":968,"latitude":12.1337,"longitude":15.034,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCLP","iata":"LPA","local":"","name":"Gran Canaria Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"Gran Canaria Island","elevation_ft":78,"latitude":27.9319,"longitude":-15.3866,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":10171,"width_ft":148,"surface":"H"},{"id":"03R/21L","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.6},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"GEML","iata":"MLN","local":"","name":"Melilla Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-ML","municipality":"Melilla","elevation_ft":156,"latitude":35.2798,"longitude":-2.95626,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4701,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMAD","iata":"AGA","local":"","name":"Al Massira Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-AGD","municipality":"Agadir (Temsia)","elevation_ft":250,"latitude":30.322478,"longitude":-9.412003,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMN","iata":"CMN","local":"","name":"Mohammed V International Airport","category":"large_airport","iso_country":"MA","iso_region":"MA-CAS","municipality":"Casablanca","elevation_ft":656,"latitude":33.3675,"longitude":-7.58997,"has_tower":true,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":12195,"width_ft":148,"surface":"H"},{"id":"17R/35L","length_ft":12175,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMX","iata":"RAK","local":"","name":"Menara Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-MAR","municipality":"Marrakech","elevation_ft":1545,"latitude":31.6068992615,"longitude":-8.03629970551,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMFO","iata":"OUD","local":"","name":"Oujda Angads Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-OUJ","municipality":"Ahl Angad","elevation_ft":1535,"latitude":34.789558,"longitude":-1.926041,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMME","iata":"RBA","local":"","name":"Rabat-Salé Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-RBA","municipality":"Rabat","elevation_ft":276,"latitude":34.051498,"longitude":-6.75152,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GOSS","iata":"XLS","local":"","name":"Saint Louis Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-SL","municipality":"Saint Louis","elevation_ft":9,"latitude":16.049814,"longitude":-16.461039,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6234,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GQNO","iata":"NKC","local":"","name":"Nouakchott–Oumtounsy International Airport","category":"large_airport","iso_country":"MR","iso_region":"MR-NKC","municipality":"Nouakchott","elevation_ft":9,"latitude":18.31,"longitude":-15.969722,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":11155,"width_ft":197,"surface":"H"},{"id":"06/24","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GVAC","iata":"SID","local":"","name":"Amílcar Cabral International Airport","category":"large_airport","iso_country":"CV","iso_region":"CV-B","municipality":"Espargos","elevation_ft":177,"latitude":16.7414,"longitude":-22.9494,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GVNP","iata":"RAI","local":"","name":"Praia International Airport","category":"medium_airport","iso_country":"CV","iso_region":"CV-S","municipality":"Praia","elevation_ft":230,"latitude":14.924500465393066,"longitude":-23.49349975585937,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEAT","iata":"ATZ","local":"","name":"Asyut International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-AST","municipality":"Asyut","elevation_ft":748,"latitude":27.050818,"longitude":31.016309,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9905,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEBL","iata":"ABS","local":"","name":"Abu Simbel Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-ASN","municipality":"Abu Simbel","elevation_ft":614,"latitude":22.367657,"longitude":31.609962,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HELX","iata":"LXR","local":"","name":"Luxor International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-LX","municipality":"Luxor","elevation_ft":276,"latitude":25.674629,"longitude":32.700012,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEMA","iata":"RMF","local":"","name":"Marsa Alam International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-BA","municipality":"Marsa Alam","elevation_ft":213,"latitude":25.555548,"longitude":34.59245,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":10640,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESH","iata":"SSH","local":"","name":"Sharm El Sheikh International Airport","category":"large_airport","iso_country":"EG","iso_region":"EG-JS","municipality":"Sharm El Sheikh","elevation_ft":191,"latitude":27.977272,"longitude":34.394717,"has_tower":true,"has_beacon":false,"runways":[{"id":"04L/22R","length_ft":10108,"width_ft":148,"surface":"H"},{"id":"04R/22L","length_ft":10108,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESX","iata":"SPX","local":"","name":"Sphinx International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-GZ","municipality":"Al Jiza","elevation_ft":482,"latitude":30.108078,"longitude":30.889252,"has_tower":true,"has_beacon":false,"runways":[{"id":"16R/34L","length_ft":11975,"width_ft":197,"surface":"H"},{"id":"16L/34R","length_ft":9843,"width_ft":197,"surface":"H"},{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACJ","iata":"","local":"ACJ","name":"Jimmy Carter Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Americus","elevation_ft":468,"latitude":32.110802,"longitude":-84.188904,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6011,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":3786,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAO","iata":"","local":"AAO","name":"Colonel James Jabara Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1421,"latitude":37.74760056,"longitude":-97.22109985,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6101,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAS","iata":"","local":"AAS","name":"Taylor County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Campbellsville","elevation_ft":921,"latitude":37.35829925537109,"longitude":-85.30940246582031,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KABY","iata":"ABY","local":"ABY","name":"Southwest Georgia Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Albany","elevation_ft":197,"latitude":31.532946,"longitude":-84.196215,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6601,"width_ft":148,"surface":"A"},{"id":"17/35","length_ft":5219,"width_ft":148,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.25},{"id":"ATIS","frequency_mhz":133.05}],"has_metar":true,"public":true},{"icao":"KABI","iata":"ABI","local":"ABI","name":"Abilene Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1791,"latitude":32.4113006592,"longitude":-99.6819000244,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":7198,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":7208,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.25},{"id":"LCL/P","frequency_mhz":120.1}],"has_metar":true,"public":true},{"icao":"KACQ","iata":"","local":"ACQ","name":"Waseca Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Waseca","elevation_ft":1126,"latitude":44.07350158691406,"longitude":-93.55290222167967,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3399,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACV","iata":"ACV","local":"ACV","name":"California Redwood Coast-Humboldt County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Arcata/Eureka","elevation_ft":221,"latitude":40.978101,"longitude":-124.109,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4501,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":6046,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADH","iata":"ADT","local":"ADH","name":"Ada Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ada","elevation_ft":1016,"latitude":34.805214,"longitude":-96.671988,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2717,"width_ft":50,"surface":"A"},{"id":"18/36","length_ft":6203,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAEG","iata":"","local":"AEG","name":"Double Eagle II Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5837,"latitude":35.145198822021484,"longitude":-106.79499816894533,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7398,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5983,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.025},{"id":"LCL/P","frequency_mhz":120.15}],"has_metar":true,"public":true},{"icao":"KAEJ","iata":"","local":"AEJ","name":"Central Colorado Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Buena Vista","elevation_ft":7946,"latitude":38.812906,"longitude":-106.120062,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":8303,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARW","iata":"BFT","local":"ARW","name":"Beaufort Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Beaufort","elevation_ft":10,"latitude":32.412201,"longitude":-80.634399,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3434,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADS","iata":"ADS","local":"ADS","name":"Addison Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":644,"latitude":32.9686012268,"longitude":-96.8364028931,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7203,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126},{"id":"ATIS","frequency_mhz":133.4}],"has_metar":true,"public":true},{"icao":"KAHQ","iata":"","local":"AHQ","name":"Wahoo Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wahoo","elevation_ft":1224,"latitude":41.2412986755,"longitude":-96.59400177,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4100,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":3290,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIT","iata":"","local":"AIT","name":"Aitkin Municipal Airport Steve Kurtz Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Aitkin","elevation_ft":1205,"latitude":46.548401,"longitude":-93.676804,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3123,"width_ft":140,"surface":"T"},{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAHN","iata":"AHN","local":"AHN","name":"Athens Ben Epps Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Athens","elevation_ft":808,"latitude":33.94860076904297,"longitude":-83.32630157470703,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3995,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":6122,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KAIB","iata":"","local":"AIB","name":"Hopkins Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Nucla","elevation_ft":5940,"latitude":38.239025,"longitude":-108.563354,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5212,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":4000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJZ","iata":"","local":"AJZ","name":"Blake Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":5193,"latitude":38.7864,"longitude":-108.064003,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5598,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":2494,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALI","iata":"ALI","local":"ALI","name":"Alice International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alice","elevation_ft":178,"latitude":27.7409,"longitude":-98.026901,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5997,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4490,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJR","iata":"","local":"AJR","name":"Habersham County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cornelia","elevation_ft":1448,"latitude":34.499901,"longitude":-83.556702,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAKO","iata":"AKO","local":"AKO","name":"Colorado Plains Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Akron","elevation_ft":4714,"latitude":40.1755981445,"longitude":-103.222000122,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":7001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALO","iata":"ALO","local":"ALO","name":"Waterloo Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Waterloo","elevation_ft":873,"latitude":42.55709838867188,"longitude":-92.40029907226562,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":8399,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.65},{"id":"LCL/P","frequency_mhz":125.075}],"has_metar":true,"public":true},{"icao":"KALW","iata":"ALW","local":"ALW","name":"Walla Walla Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Walla Walla","elevation_ft":1194,"latitude":46.09489822,"longitude":-118.288002,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6527,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"KAMA","iata":"AMA","local":"AMA","name":"Rick Husband Amarillo International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Amarillo","elevation_ft":3607,"latitude":35.219398,"longitude":-101.706001,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":13502,"width_ft":200,"surface":"C"},{"id":"13/31","length_ft":7901,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"KALX","iata":"ALX","local":"ALX","name":"Thomas C Russell Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Alexander City","elevation_ft":686,"latitude":32.914699554399995,"longitude":-85.9629974365,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5422,"width_ft":96,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANK","iata":"SLT","local":"ANK","name":"Salida Airport - Harriet Alexander Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Salida","elevation_ft":7523,"latitude":38.5383,"longitude":-106.049004,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7351,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASD","iata":"","local":"ASD","name":"Slidell Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Slidell","elevation_ft":29,"latitude":30.3451004,"longitude":-89.82080078,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAPF","iata":"APF","local":"APF","name":"Naples Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":8,"latitude":26.1525993347,"longitude":-81.7752990723,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6600,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"NE/SW","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.5},{"id":"ATIS","frequency_mhz":134.225}],"has_metar":true,"public":true},{"icao":"KAPC","iata":"APC","local":"APC","name":"Napa County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Napa","elevation_ft":35,"latitude":38.2132,"longitude":-122.280998,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":5930,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":2510,"width_ft":75,"surface":"A"},{"id":"06/24","length_ft":5008,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":124.05}],"has_metar":true,"public":true},{"icao":"KAQO","iata":"","local":"AQO","name":"Llano Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Llano","elevation_ft":1102,"latitude":30.783700942993,"longitude":-98.662002563477,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3209,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":4202,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARV","iata":"ARV","local":"ARV","name":"Lakeland-Noble F. Lee Memorial field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Minocqua-Woodruff","elevation_ft":1629,"latitude":45.92789841,"longitude":-89.73090363,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3602,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5150,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARG","iata":"ARG","local":"ARG","name":"Walnut Ridge Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Walnut Ridge","elevation_ft":279,"latitude":36.124667,"longitude":-90.925111,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6001,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5003,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":5001,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAQX","iata":"","local":"AQX","name":"Allendale County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Allendale","elevation_ft":161,"latitude":32.995098,"longitude":-81.270203,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4990,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAST","iata":"AST","local":"AST","name":"Astoria Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Astoria","elevation_ft":15,"latitude":46.158000946,"longitude":-123.878997803,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5794,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4467,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASW","iata":"","local":"ASW","name":"Warsaw Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Warsaw","elevation_ft":850,"latitude":41.27470016479492,"longitude":-85.84010314941406,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4021,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASN","iata":"ASN","local":"ASN","name":"Talladega Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Talladega","elevation_ft":529,"latitude":33.569900512699995,"longitude":-86.05090332030001,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6032,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASL","iata":"ASL","local":"ASL","name":"Harrison County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marshall","elevation_ft":357,"latitude":32.5205001831,"longitude":-94.307800293,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3299,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUM","iata":"AUM","local":"AUM","name":"Austin Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Austin","elevation_ft":1234,"latitude":43.66500092,"longitude":-92.93340302,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5800,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KATY","iata":"ATY","local":"ATY","name":"Watertown Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Watertown","elevation_ft":1749,"latitude":44.91400146,"longitude":-97.15470123,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6898,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":6893,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUS","iata":"AUS","local":"AUS","name":"Austin Bergstrom International Airport","category":"large_airport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":542,"latitude":30.197535,"longitude":-97.662015,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"18R/36L","length_ft":12250,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121},{"id":"D-ATIS","frequency_mhz":124.4}],"has_metar":true,"public":true},{"icao":"KAVK","iata":"","local":"AVK","name":"Alva Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alva","elevation_ft":1474,"latitude":36.77320098876953,"longitude":-98.6698989868164,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":1390,"width_ft":170,"surface":"T"},{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAVX","iata":"AVX","local":"AVX","name":"Catalina Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Avalon","elevation_ft":1602,"latitude":33.4049,"longitude":-118.416,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAWG","iata":"","local":"AWG","name":"Washington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Washington","elevation_ft":754,"latitude":41.276100158691406,"longitude":-91.67340087890624,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3401,"width_ft":60,"surface":"C"},{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXN","iata":"AXN","local":"AXN","name":"Chandler Field","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Alexandria","elevation_ft":1425,"latitude":45.866299,"longitude":-95.394699,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4098,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5099,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBBG","iata":"BKG","local":"BBG","name":"Branson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Branson","elevation_ft":1302,"latitude":36.532082,"longitude":-93.200544,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":7140,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.625},{"id":"LCL/P","frequency_mhz":128.15}],"has_metar":true,"public":true},{"icao":"KAXX","iata":"AXX","local":"AXX","name":"Angel Fire Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Angel Fire","elevation_ft":8380,"latitude":36.422000885,"longitude":-105.290000916,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXS","iata":"AXS","local":"AXS","name":"Altus Quartz Mountain Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Altus","elevation_ft":1433,"latitude":34.697952,"longitude":-99.3385,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5501,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAK","iata":"CLU","local":"BAK","name":"Columbus Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Columbus","elevation_ft":656,"latitude":39.262386,"longitude":-85.895576,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6401,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":5000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KBAD","iata":"BAD","local":"BAD","name":"Barksdale Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bossier City","elevation_ft":166,"latitude":32.501801,"longitude":-93.662697,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":11758,"width_ft":299,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.25}],"has_metar":true,"public":true},{"icao":"KAZO","iata":"AZO","local":"AZO","name":"Kalamazoo Battle Creek International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":874,"latitude":42.234901428222656,"longitude":-85.5521011352539,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3438,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":2800,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6502,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KBBW","iata":"BBW","local":"BBW","name":"Broken Bow Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Broken Bow","elevation_ft":2547,"latitude":41.4365005493,"longitude":-99.6421966553,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4203,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCT","iata":"BCT","local":"BCT","name":"Boca Raton Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Boca Raton","elevation_ft":13,"latitude":26.3784999847,"longitude":-80.1076965332,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6276,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.425}],"has_metar":true,"public":true},{"icao":"KBDN","iata":"","local":"BDN","name":"Bend Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3460,"latitude":44.09479904,"longitude":-121.2009964,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBEC","iata":"BEC","local":"BEC","name":"Beech Factory Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1408,"latitude":37.6944999695,"longitude":-97.21499633790002,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8001,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.8}],"has_metar":true,"public":true},{"icao":"KBED","iata":"BED","local":"BED","name":"Laurence G Hanscom Field","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"Bedford","elevation_ft":133,"latitude":42.470001,"longitude":-71.289001,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5107,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":7011,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KBFD","iata":"BFD","local":"BFD","name":"Bradford Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bradford","elevation_ft":2143,"latitude":41.8031005859375,"longitude":-78.64009857177734,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4499,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6307,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFA","iata":"","local":"BFA","name":"Boyne Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Boyne Falls","elevation_ft":719,"latitude":45.16579818725586,"longitude":-84.92410278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5187,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBDU","iata":"WBU","local":"BDU","name":"Boulder Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Boulder","elevation_ft":5288,"latitude":40.0393981934,"longitude":-105.225997925,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4100,"width_ft":75,"surface":"A"},{"id":"08G/26G","length_ft":4100,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBGD","iata":"BGD","local":"BGD","name":"Hutchinson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Borger","elevation_ft":3055,"latitude":35.700901031499995,"longitude":-101.393997192,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3897,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":6299,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFM","iata":"BFM","local":"BFM","name":"Mobile Downtown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":26,"latitude":30.626800537100003,"longitude":-88.06809997559999,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9618,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":7800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.8},{"id":"ATIS","frequency_mhz":135.575}],"has_metar":true,"public":true},{"icao":"KBFI","iata":"BFI","local":"BFI","name":"Boeing Field King County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":21,"latitude":47.529999,"longitude":-122.302002,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":3709,"width_ft":100,"surface":"A"},{"id":"14R/32L","length_ft":10007,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"LCL/P","frequency_mhz":120.6},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"KBGF","iata":"","local":"BGF","name":"Winchester Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Winchester","elevation_ft":979,"latitude":35.1775016784668,"longitude":-86.06620025634766,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBHK","iata":"","local":"BHK","name":"Baker Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Baker","elevation_ft":2975,"latitude":46.347599,"longitude":-104.259002,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5904,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIL","iata":"BIL","local":"BIL","name":"Billings Logan International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3652,"latitude":45.807701,"longitude":-108.542999,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5501,"width_ft":75,"surface":"A"},{"id":"10L/28R","length_ft":10518,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":3800,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.3},{"id":"LCL/P","frequency_mhz":127.2}],"has_metar":true,"public":true},{"icao":"KBIV","iata":"","local":"BIV","name":"West Michigan Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Holland","elevation_ft":698,"latitude":42.742901,"longitude":-86.107399,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBJJ","iata":"BJJ","local":"BJJ","name":"Wayne County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wooster","elevation_ft":1136,"latitude":40.8748016357,"longitude":-81.88829803470001,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5189,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIX","iata":"BIX","local":"BIX","name":"Keesler Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Biloxi","elevation_ft":33,"latitude":30.4104003906,"longitude":-88.92440032959999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7630,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75}],"has_metar":true,"public":true},{"icao":"KBKE","iata":"BKE","local":"BKE","name":"Baker City Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Baker City","elevation_ft":3373,"latitude":44.8372993469,"longitude":-117.808998108,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3670,"width_ft":140,"surface":"A"},{"id":"13/31","length_ft":5085,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4359,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKF","iata":"BFK","local":"BKF","name":"Buckley Space Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Aurora","elevation_ft":5662,"latitude":39.701698,"longitude":-104.751999,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":11006,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.675},{"id":"LCL/P","frequency_mhz":121}],"has_metar":true,"public":true},{"icao":"KBLV","iata":"BLV","local":"BLV","name":"Scott AFB/Midamerica Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belleville","elevation_ft":459,"latitude":38.5452,"longitude":-89.835197,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"14R/32L","length_ft":8006,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.25},{"id":"ATIS","frequency_mhz":128.7}],"has_metar":true,"public":true},{"icao":"KBMG","iata":"BMG","local":"BMG","name":"Monroe County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bloomington","elevation_ft":846,"latitude":39.14599990844727,"longitude":-86.61669921875,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3798,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.775}],"has_metar":true,"public":true},{"icao":"KBLU","iata":"BLU","local":"BLU","name":"Blue Canyon Nyack Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Emigrant Gap","elevation_ft":5284,"latitude":39.2750015259,"longitude":-120.709999084,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3300,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBLH","iata":"BLH","local":"BLH","name":"Blythe Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Blythe","elevation_ft":399,"latitude":33.6192016602,"longitude":-114.717002869,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6543,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":5800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNO","iata":"BNO","local":"BNO","name":"Burns Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Burns","elevation_ft":4148,"latitude":43.590463,"longitude":-118.955154,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4600,"width_ft":60,"surface":"C"},{"id":"12/30","length_ft":5101,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBMQ","iata":"","local":"BMQ","name":"Burnet Municipal Airport/Kate Craddock Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Burnet","elevation_ft":1284,"latitude":30.738899,"longitude":-98.238602,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNL","iata":"BNL","local":"BNL","name":"Barnwell Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Barnwell","elevation_ft":246,"latitude":33.25780106,"longitude":-81.38829803,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4526,"width_ft":70,"surface":"A"},{"id":"17/35","length_ft":5119,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBMT","iata":"BMT","local":"BMT","name":"Beaumont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont","elevation_ft":32,"latitude":30.070635,"longitude":-94.215746,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBQK","iata":"BQK","local":"BQK","name":"Brunswick Golden Isles Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Brunswick","elevation_ft":26,"latitude":31.2588005065918,"longitude":-81.46649932861328,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":8001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPK","iata":"WMH","local":"BPK","name":"Ozark Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Mountain Home","elevation_ft":928,"latitude":36.3689002991,"longitude":-92.4704971313,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPT","iata":"BPT","local":"BPT","name":"Jack Brooks Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont/Port Arthur","elevation_ft":15,"latitude":29.9508,"longitude":-94.020699,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6751,"width_ft":150,"surface":"C"},{"id":"16/34","length_ft":5071,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KBTN","iata":"TTO","local":"BTN","name":"Britton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Britton","elevation_ft":1318,"latitude":45.815200805664,"longitude":-97.743103027344,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2034,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":4210,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBUU","iata":"","local":"BUU","name":"Burlington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Burlington","elevation_ft":779,"latitude":42.69070053100586,"longitude":-88.30460357666016,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2410,"width_ft":130,"surface":"T"},{"id":"11/29","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBVS","iata":"MVW","local":"BVS","name":"Skagit Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Burlington","elevation_ft":144,"latitude":48.470901,"longitude":-122.420998,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3000,"width_ft":60,"surface":"A"},{"id":"11/29","length_ft":5480,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBVO","iata":"BVO","local":"BVO","name":"Bartlesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bartlesville","elevation_ft":711,"latitude":36.76250076,"longitude":-96.01119995,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6850,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBWG","iata":"BWG","local":"BWG","name":"Bowling Green Warren County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Bowling Green","elevation_ft":547,"latitude":36.9645004272,"longitude":-86.41970062259999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3956,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBWD","iata":"BWD","local":"BWD","name":"Brownwood Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownwood","elevation_ft":1387,"latitude":31.7936000824,"longitude":-98.9564971924,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4608,"width_ft":101,"surface":"A"},{"id":"17/35","length_ft":5599,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAO","iata":"CAO","local":"CAO","name":"Clayton Municipal Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clayton","elevation_ft":4965,"latitude":36.4462013245,"longitude":-103.166999817,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6307,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":4106,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAD","iata":"CAD","local":"CAD","name":"Wexford County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Cadillac","elevation_ft":1307,"latitude":44.275749,"longitude":-85.421534,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":2006,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYS","iata":"BYS","local":"BYS","name":"Bicycle Lake Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fort Irwin/Barstow","elevation_ft":2350,"latitude":35.2804985046,"longitude":-116.629997253,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":9631,"width_ft":175,"surface":"G"},{"id":"13/31","length_ft":6124,"width_ft":175,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCR","iata":"CCR","local":"CCR","name":"Buchanan Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Concord","elevation_ft":26,"latitude":37.9897003174,"longitude":-122.056999207,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":2770,"width_ft":75,"surface":"A"},{"id":"14L/32R","length_ft":4602,"width_ft":150,"surface":"A"},{"id":"14R/32L","length_ft":2798,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":123.9},{"id":"ATIS","frequency_mhz":124.7}],"has_metar":true,"public":true},{"icao":"KCCB","iata":"CCB","local":"CCB","name":"Cable Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Upland","elevation_ft":1444,"latitude":34.1115989685,"longitude":-117.68800354,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3863,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"},{"id":"H2","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAR","iata":"CAR","local":"CAR","name":"Caribou Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ME","municipality":"Caribou","elevation_ft":626,"latitude":46.871498,"longitude":-68.017899,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4003,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":3016,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCA","iata":"","local":"CCA","name":"Clinton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Clinton","elevation_ft":514,"latitude":35.597801,"longitude":-92.451599,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4007,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDA","iata":"LLX","local":"CDA","name":"Caledonia County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Lyndonville","elevation_ft":1188,"latitude":44.5690994263,"longitude":-72.0179977417,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3302,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCY","iata":"CCY","local":"CCY","name":"Northeast Iowa Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Charles City","elevation_ft":1125,"latitude":43.0726013184,"longitude":-92.6108016968,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2536,"width_ft":160,"surface":"T"},{"id":"12/30","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":1780,"width_ft":170,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDC","iata":"CDC","local":"CDC","name":"Cedar City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Cedar City","elevation_ft":5622,"latitude":37.70100021362305,"longitude":-113.0989990234375,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8653,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":4822,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDS","iata":"CDS","local":"CDS","name":"Childress Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Childress","elevation_ft":1954,"latitude":34.4337997437,"longitude":-100.288002014,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4425,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5949,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEW","iata":"CEW","local":"CEW","name":"Bob Sikes Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":213,"latitude":30.778799057,"longitude":-86.522102356,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8006,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEZ","iata":"CEZ","local":"CEZ","name":"Cortez Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cortez","elevation_ft":5918,"latitude":37.3030014038,"longitude":-108.627998352,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7205,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEU","iata":"CEU","local":"CEU","name":"Oconee County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Clemson","elevation_ft":892,"latitude":34.6719017,"longitude":-82.8864975,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHK","iata":"CHK","local":"CHK","name":"Chickasha Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chickasha","elevation_ft":1152,"latitude":35.09740067,"longitude":-97.96769714,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2232,"width_ft":100,"surface":"T"},{"id":"02/20","length_ft":2404,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":5101,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFV","iata":"CFV","local":"CFV","name":"Coffeyville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Coffeyville","elevation_ft":754,"latitude":37.09400177,"longitude":-95.5718994141,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4005,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5868,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCIN","iata":"CIN","local":"CIN","name":"Arthur N Neu Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Carroll","elevation_ft":1204,"latitude":42.0461997986,"longitude":-94.7890014648,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3301,"width_ft":60,"surface":"C"},{"id":"13/31","length_ft":5506,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCID","iata":"CID","local":"CID","name":"The Eastern Iowa Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Rapids","elevation_ft":869,"latitude":41.884701,"longitude":-91.7108,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":8600,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":6200,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.15}],"has_metar":true,"public":true},{"icao":"KCII","iata":"","local":"CII","name":"Choteau Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Choteau","elevation_ft":3947,"latitude":47.82830047607422,"longitude":-112.16799926757812,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3699,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKF","iata":"","local":"CKF","name":"Crisp County Cordele Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cordele","elevation_ft":310,"latitude":31.98880005,"longitude":-83.77390289,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5006,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCPT","iata":"","local":"CPT","name":"Cleburne Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cleburne","elevation_ft":854,"latitude":32.353802,"longitude":-97.433701,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5697,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLI","iata":"CLI","local":"CLI","name":"Clintonville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Clintonville","elevation_ft":822,"latitude":44.6138000488,"longitude":-88.731300354,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3812,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":2002,"width_ft":170,"surface":"T"},{"id":"14/32","length_ft":4599,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLM","iata":"CLM","local":"CLM","name":"William R Fairchild International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":291,"latitude":48.12020111083984,"longitude":-123.5,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6347,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":3255,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLL","iata":"CLL","local":"CLL","name":"Easterwood Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"College Station","elevation_ft":320,"latitude":30.58860016,"longitude":-96.36380005,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5158,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":7000,"width_ft":146,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":126.85}],"has_metar":true,"public":true},{"icao":"KCNC","iata":"","local":"CNC","name":"Chariton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Chariton","elevation_ft":1050,"latitude":41.01959991455078,"longitude":-93.35970306396484,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":2800,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCMY","iata":"CMY","local":"CMY","name":"Sparta Fort McCoy Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Sparta","elevation_ft":837,"latitude":43.958009,"longitude":-90.737886,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3032,"width_ft":95,"surface":"A"},{"id":"11/29","length_ft":4697,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KCMX","iata":"CMX","local":"CMX","name":"Houghton County Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Hancock","elevation_ft":1095,"latitude":47.168399810791016,"longitude":-88.48909759521484,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5201,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOE","iata":"COE","local":"COE","name":"Coeur D'Alene - Pappy Boyington Field","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur d'Alene","elevation_ft":2320,"latitude":47.77429962,"longitude":-116.8199997,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5400,"width_ft":75,"surface":"A"},{"id":"06/24","length_ft":7400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNY","iata":"CNY","local":"CNY","name":"Canyonlands Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":4557,"latitude":38.755001,"longitude":-109.754997,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7360,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":2121,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOD","iata":"COD","local":"COD","name":"Yellowstone Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cody","elevation_ft":5102,"latitude":44.520199,"longitude":-109.024002,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8268,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNW","iata":"CNW","local":"CNW","name":"TSTC Waco Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":470,"latitude":31.641129,"longitude":-97.073335,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":8600,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":6291,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124}],"has_metar":true,"public":true},{"icao":"KCPR","iata":"CPR","local":"CPR","name":"Casper-Natrona County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Casper","elevation_ft":5350,"latitude":42.908001,"longitude":-106.463997,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":10165,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":8679,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":126.15}],"has_metar":true,"public":true},{"icao":"KCRG","iata":"CRG","local":"CRG","name":"Jacksonville Executive at Craig Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":41,"latitude":30.3362998962,"longitude":-81.51439666750001,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4004,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4008,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.4},{"id":"LCL/P","frequency_mhz":132.1}],"has_metar":true,"public":true},{"icao":"KCRQ","iata":"CLD","local":"CRQ","name":"McClellan-Palomar Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Carlsbad","elevation_ft":331,"latitude":33.1283,"longitude":-117.279999,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4897,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6},{"id":"ATIS","frequency_mhz":120.15}],"has_metar":true,"public":true},{"icao":"KCRP","iata":"CRP","local":"CRP","name":"Corpus Christi International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":44,"latitude":27.770399,"longitude":-97.501198,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7510,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6080,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4},{"id":"ATIS","frequency_mhz":126.8}],"has_metar":true,"public":true},{"icao":"KCSG","iata":"CSG","local":"CSG","name":"Columbus Metropolitan Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Columbus","elevation_ft":397,"latitude":32.516300201416016,"longitude":-84.93890380859375,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6997,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":3997,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"KCTB","iata":"CTB","local":"CTB","name":"Cut Bank International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Cut Bank","elevation_ft":3854,"latitude":48.608657,"longitude":-112.378183,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5300,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCUT","iata":"","local":"CUT","name":"Custer County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Custer","elevation_ft":5602,"latitude":43.733299,"longitude":-103.617996,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVB","iata":"","local":"CVB","name":"Castroville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Castroville","elevation_ft":771,"latitude":29.3418998718,"longitude":-98.8508987427,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCWA","iata":"CWA","local":"CWA","name":"Central Wisconsin Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mosinee","elevation_ft":1277,"latitude":44.7775993347,"longitude":-89.6668014526,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":7723,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":6501,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.75},{"id":"ATIS","frequency_mhz":127.45}],"has_metar":true,"public":true},{"icao":"KCWI","iata":"CWI","local":"CWI","name":"Clinton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clinton","elevation_ft":708,"latitude":41.8311004639,"longitude":-90.3291015625,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5204,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":4201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVS","iata":"CVS","local":"CVS","name":"Cannon Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clovis","elevation_ft":4295,"latitude":34.382801,"longitude":-103.321999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":10003,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":8196,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.1},{"id":"LCL/P","frequency_mhz":120.4}],"has_metar":true,"public":true},{"icao":"KCWV","iata":"","local":"CWV","name":"Claxton Evans County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Claxton","elevation_ft":112,"latitude":32.195099,"longitude":-81.869598,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5151,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCXO","iata":"CXO","local":"CXO","name":"Conroe-North Houston Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":245,"latitude":30.351801,"longitude":-95.414497,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":7501,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.325},{"id":"LCL/P","frequency_mhz":124.125}],"has_metar":true,"public":true},{"icao":"KCZT","iata":"CZT","local":"CZT","name":"Dimmit County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":599,"latitude":28.5221996307,"longitude":-99.823600769,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDAB","iata":"DAB","local":"DAB","name":"Daytona Beach International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Daytona Beach","elevation_ft":34,"latitude":29.179899,"longitude":-81.058098,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":10500,"width_ft":150,"surface":"A"},{"id":"07R/25L","length_ft":3195,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":6001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":132.875}],"has_metar":true,"public":true},{"icao":"KDAL","iata":"DAL","local":"DAL","name":"Dallas Love Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":487,"latitude":32.847099,"longitude":-96.851799,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":7752,"width_ft":150,"surface":"C"},{"id":"13R/31L","length_ft":8800,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":120.15},{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"KDEC","iata":"DEC","local":"DEC","name":"Decatur Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Decatur","elevation_ft":682,"latitude":39.834598541259766,"longitude":-88.8656997680664,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":8496,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":6799,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5298,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":126.35}],"has_metar":true,"public":true},{"icao":"KDDC","iata":"DDC","local":"DDC","name":"Dodge City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Dodge City","elevation_ft":2594,"latitude":37.76340103149414,"longitude":-99.9655990600586,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4649,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6899,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDCU","iata":"DCU","local":"DCU","name":"Pryor Field Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Decatur","elevation_ft":592,"latitude":34.652698516799994,"longitude":-86.94539642330001,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6107,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDGW","iata":"DGW","local":"DGW","name":"Converse County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":4933,"latitude":42.79719925,"longitude":-105.3860016,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4760,"width_ft":75,"surface":"G"},{"id":"11/29","length_ft":6534,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDHT","iata":"DHT","local":"DHT","name":"Dalhart Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dalhart","elevation_ft":3991,"latitude":36.0225982666,"longitude":-102.54699707,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5440,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":6400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEQ","iata":"","local":"DEQ","name":"J Lynn Helms Sevier County Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"DeQueen","elevation_ft":355,"latitude":34.047001,"longitude":-94.399399,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLN","iata":"DLN","local":"DLN","name":"Dillon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Dillon","elevation_ft":5241,"latitude":45.2554016113,"longitude":-112.553001404,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLH","iata":"DLH","local":"DLH","name":"Duluth International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":1428,"latitude":46.842098,"longitude":-92.193604,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5719,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":10591,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":124.1}],"has_metar":true,"public":true},{"icao":"KDIK","iata":"DIK","local":"DIK","name":"Dickinson Theodore Roosevelt Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Dickinson","elevation_ft":2592,"latitude":46.7974014282,"longitude":-102.802001953,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4700,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":7301,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLO","iata":"","local":"DLO","name":"Delano Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Delano","elevation_ft":314,"latitude":35.745601654052734,"longitude":-119.23699951171876,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5659,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDKX","iata":"","local":"DKX","name":"Knoxville Downtown Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":833,"latitude":35.963902,"longitude":-83.873901,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3499,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDKR","iata":"","local":"DKR","name":"Houston County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":348,"latitude":31.306999,"longitude":-95.403801,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDPA","iata":"DPA","local":"DPA","name":"Dupage Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/West Chicago","elevation_ft":759,"latitude":41.90779877,"longitude":-88.24859619,"has_tower":true,"has_beacon":false,"runways":[{"id":"02L/20R","length_ft":7571,"width_ft":150,"surface":"C"},{"id":"02R/20L","length_ft":6451,"width_ft":100,"surface":"C"},{"id":"10/28","length_ft":4750,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":3399,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":132.075}],"has_metar":true,"public":true},{"icao":"KDSM","iata":"DSM","local":"DSM","name":"Des Moines International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":958,"latitude":41.534,"longitude":-93.663101,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6601,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":9001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.55}],"has_metar":true,"public":true},{"icao":"KDRT","iata":"DRT","local":"DRT","name":"Del Rio International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1002,"latitude":29.3742008209,"longitude":-100.927001953,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6300,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"},{"id":"H2","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDRI","iata":"DRI","local":"DRI","name":"Beauregard Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"DeRidder","elevation_ft":202,"latitude":30.831699,"longitude":-93.339897,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4218,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5494,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUG","iata":"DUG","local":"DUG","name":"Bisbee Douglas International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Douglas Bisbee","elevation_ft":4154,"latitude":31.4689998627,"longitude":-109.603996277,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4966,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6430,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTA","iata":"DTA","local":"DTA","name":"Delta Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Delta","elevation_ft":4759,"latitude":39.3805999756,"longitude":-112.508003235,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6065,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTS","iata":"DSI","local":"DTS","name":"Destin Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Destin","elevation_ft":23,"latitude":30.400101,"longitude":-86.471497,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":133.925}],"has_metar":true,"public":true},{"icao":"KDTN","iata":"DTN","local":"DTN","name":"Shreveport Downtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":179,"latitude":32.5401992798,"longitude":-93.7450027466,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4198,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5016,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.225}],"has_metar":true,"public":true},{"icao":"KDVN","iata":"DVN","local":"DVN","name":"Davenport Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Davenport","elevation_ft":751,"latitude":41.610432,"longitude":-90.589693,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4001,"width_ft":100,"surface":"C"},{"id":"15/33","length_ft":5511,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDVK","iata":"","local":"DVK","name":"Stuart Powell Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Danville","elevation_ft":1022,"latitude":37.579409,"longitude":-84.774347,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":1971,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDVO","iata":"NOT","local":"DVO","name":"Marin County Airport - Gnoss Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Novato","elevation_ft":2,"latitude":38.143600463867,"longitude":-122.55599975586,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3303,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDWA","iata":"","local":"DWA","name":"Yolo County Davis Woodland Winters Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Davis/Woodland/Winters","elevation_ft":100,"latitude":38.57910156,"longitude":-121.8570023,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYT","iata":"","local":"DYT","name":"Sky Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":610,"latitude":46.721900939941406,"longitude":-92.04340362548828,"has_tower":false,"has_beacon":true,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":1500,"surface":"W"},{"id":"13W/31W","length_ft":10000,"width_ft":2000,"surface":"W"},{"id":"14/32","length_ft":2602,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYS","iata":"DYS","local":"DYS","name":"Dyess Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1789,"latitude":32.420799,"longitude":-99.854599,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":13500,"width_ft":300,"surface":"A"},{"id":"163/343","length_ft":3500,"width_ft":60,"surface":"-"},{"id":"164/344","length_ft":3498,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133}],"has_metar":true,"public":true},{"icao":"KDZJ","iata":"","local":"DZJ","name":"Blairsville Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Blairsville","elevation_ft":1911,"latitude":34.855098724365234,"longitude":-83.99690246582031,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYA","iata":"","local":"DYA","name":"Demopolis Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Demopolis","elevation_ft":113,"latitude":32.46379852294922,"longitude":-87.9541015625,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEAR","iata":"EAR","local":"EAR","name":"Kearney Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Kearney","elevation_ft":2131,"latitude":40.727001,"longitude":-99.006798,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4498,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":7094,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEBG","iata":"","local":"EBG","name":"South Texas International at Edinburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Edinburg","elevation_ft":75,"latitude":26.4417,"longitude":-98.1222,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEEN","iata":"EEN","local":"EEN","name":"Dillant Hopkins Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NH","municipality":"Keene","elevation_ft":488,"latitude":42.898399,"longitude":-72.270798,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6201,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDJ","iata":"","local":"EDJ","name":"Bellefontaine Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bellefontaine","elevation_ft":1122,"latitude":40.37229919,"longitude":-83.81900024,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEED","iata":"EED","local":"EED","name":"Needles Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Needles","elevation_ft":983,"latitude":34.7663002014,"longitude":-114.623001099,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4235,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":5005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEEO","iata":"","local":"EEO","name":"Meeker Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Meeker","elevation_ft":6421,"latitude":40.04880142211914,"longitude":-107.88600158691406,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDN","iata":"ETS","local":"EDN","name":"Enterprise Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Enterprise","elevation_ft":361,"latitude":31.29969978,"longitude":-85.89990234,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5080,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDC","iata":"","local":"EDC","name":"Austin Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pflugerville","elevation_ft":620,"latitude":30.398049,"longitude":-97.566909,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6025,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":1550,"width_ft":25,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KEGE","iata":"EGE","local":"EGE","name":"Eagle County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Eagle","elevation_ft":6548,"latitude":39.64260101,"longitude":-106.9179993,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":9000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":135.575}],"has_metar":true,"public":true},{"icao":"KEKY","iata":"","local":"EKY","name":"Bessemer Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Bessemer","elevation_ft":700,"latitude":33.312901,"longitude":-86.925903,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6007,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKS","iata":"","local":"EKS","name":"Ennis Big Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ennis","elevation_ft":5423,"latitude":45.271801,"longitude":-111.649002,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEHR","iata":"","local":"EHR","name":"Henderson City County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Henderson","elevation_ft":387,"latitude":37.8078,"longitude":-87.685699,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKQ","iata":"","local":"EKQ","name":"Wayne County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Monticello","elevation_ft":963,"latitude":36.85530090332031,"longitude":-84.8561019897461,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEHA","iata":"","local":"EHA","name":"Elkhart Morton County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Elkhart","elevation_ft":3622,"latitude":37.000702,"longitude":-101.879997,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4900,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":4907,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELK","iata":"ELK","local":"ELK","name":"Elk City Regional Business Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Elk City","elevation_ft":2013,"latitude":35.43080139,"longitude":-99.39430237,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5399,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEMP","iata":"EMP","local":"EMP","name":"Emporia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Emporia","elevation_ft":1208,"latitude":38.3320999146,"longitude":-96.1912002563,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5005,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":3881,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELA","iata":"ELA","local":"ELA","name":"Eagle Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Lake","elevation_ft":184,"latitude":29.600599288900003,"longitude":-96.3218994141,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4280,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEOK","iata":"EOK","local":"EOK","name":"Keokuk Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Keokuk","elevation_ft":671,"latitude":40.4598999023,"longitude":-91.4284973145,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":3576,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEND","iata":"END","local":"END","name":"Vance Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Enid","elevation_ft":1307,"latitude":36.339199,"longitude":-97.916496,"has_tower":true,"has_beacon":true,"runways":[{"id":"17C/35C","length_ft":9217,"width_ft":150,"surface":"A"},{"id":"17L/35R","length_ft":5024,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":9217,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":115.4},{"id":"LCL/P","frequency_mhz":124.05}],"has_metar":true,"public":true},{"icao":"KEPH","iata":"EPH","local":"EPH","name":"Ephrata Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ephrata","elevation_ft":1276,"latitude":47.307598,"longitude":-119.515999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5500,"width_ft":75,"surface":"A"},{"id":"04/22","length_ft":3467,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":3843,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEQA","iata":"EDK","local":"EQA","name":"Captain Jack Thomas El Dorado Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"El Dorado","elevation_ft":1378,"latitude":37.7741012573,"longitude":-96.8175964355,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4204,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":4200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KERI","iata":"ERI","local":"ERI","name":"Erie International Tom Ridge Field","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Erie","elevation_ft":732,"latitude":42.083127,"longitude":-80.173867,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3508,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":8420,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":120.35}],"has_metar":true,"public":true},{"icao":"KESN","iata":"ESN","local":"ESN","name":"Easton Airport / Newnam Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Easton","elevation_ft":72,"latitude":38.804199,"longitude":-76.069,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":4003,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.525},{"id":"ATIS","frequency_mhz":124.475}],"has_metar":true,"public":true},{"icao":"KERV","iata":"ERV","local":"ERV","name":"Kerrville / Kerr County Airport at Louis Schreiner Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrville","elevation_ft":1617,"latitude":29.9767,"longitude":-99.085701,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3597,"width_ft":58,"surface":"A"},{"id":"12/30","length_ft":6004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEUG","iata":"EUG","local":"EUG","name":"Mahlon Sweet Field","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Eugene","elevation_ft":374,"latitude":44.12459945678711,"longitude":-123.21199798583984,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"16R/34L","length_ft":8009,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"LCL/P","frequency_mhz":124.15},{"id":"ATIS","frequency_mhz":125.225}],"has_metar":true,"public":true},{"icao":"KEVM","iata":"EVM","local":"EVM","name":"Eveleth/Virginia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Eveleth","elevation_ft":1379,"latitude":47.425098,"longitude":-92.498497,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":2050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEUL","iata":"","local":"EUL","name":"Caldwell Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Caldwell","elevation_ft":2432,"latitude":43.641899,"longitude":-116.636002,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KETH","iata":"","local":"ETH","name":"Wheaton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wheaton","elevation_ft":1025,"latitude":45.78049850463867,"longitude":-96.5435028076172,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":1953,"width_ft":175,"surface":"T"},{"id":"16/34","length_ft":3298,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEWB","iata":"EWB","local":"EWB","name":"New Bedford Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"New Bedford","elevation_ft":80,"latitude":41.67610168457031,"longitude":-70.95690155029297,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5400,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":126.85}],"has_metar":true,"public":true},{"icao":"KFFT","iata":"FFT","local":"FFT","name":"Capital City Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Frankfort","elevation_ft":806,"latitude":38.181698,"longitude":-84.906764,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVW","iata":"EVW","local":"EVW","name":"Evanston-Uinta County Airport-Burns Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Evanston","elevation_ft":7143,"latitude":41.27479935,"longitude":-111.0350037,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEXX","iata":"","local":"EXX","name":"Davidson County Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lexington","elevation_ft":733,"latitude":35.781101,"longitude":-80.303802,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFX","iata":"","local":"FFX","name":"Fremont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Fremont","elevation_ft":772,"latitude":43.43930054,"longitude":-85.99490356,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6501,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":3502,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEZM","iata":"","local":"EZM","name":"Heart of Georgia Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Eastman","elevation_ft":304,"latitude":32.21419906616211,"longitude":-83.12799835205078,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6506,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.425},{"id":"LCL/P","frequency_mhz":124.55}],"has_metar":true,"public":true},{"icao":"KFCH","iata":"FCH","local":"FCH","name":"Fresno Chandler Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fresno","elevation_ft":279,"latitude":36.732399,"longitude":-119.82,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3627,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFBR","iata":"FBR","local":"FBR","name":"Fort Bridger Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Fort Bridger","elevation_ft":7034,"latitude":41.3918991089,"longitude":-110.406997681,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6404,"width_ft":75,"surface":"A"},{"id":"07/25","length_ft":3520,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFEP","iata":"FEP","local":"FEP","name":"Albertus Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Freeport","elevation_ft":859,"latitude":42.2462005615,"longitude":-89.58200073239999,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5504,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":2285,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":2404,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFC","iata":"","local":"FFC","name":"Peachtree City Falcon Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":808,"latitude":33.3572998046875,"longitude":-84.5718002319336,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5768,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFET","iata":"FET","local":"FET","name":"Fremont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Fremont","elevation_ft":1204,"latitude":41.44910049,"longitude":-96.52020264,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6353,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFIT","iata":"","local":"FIT","name":"Fitchburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Fitchburg","elevation_ft":348,"latitude":42.55410003662109,"longitude":-71.75900268554688,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFHU","iata":"FHU","local":"FHU","name":"Sierra Vista Municipal Airport / Libby Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Fort Huachuca / Sierra Vista","elevation_ft":4719,"latitude":31.587383,"longitude":-110.348225,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4285,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":12001,"width_ft":150,"surface":"C"},{"id":"12/30","length_ft":5366,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.95},{"id":"ATIS","frequency_mhz":134.75}],"has_metar":true,"public":true},{"icao":"KFMM","iata":"","local":"FMM","name":"Fort Morgan Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Morgan","elevation_ft":4569,"latitude":40.335758,"longitude":-103.804371,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2468,"width_ft":100,"surface":"T"},{"id":"14/32","length_ft":5731,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5216,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLD","iata":"FLD","local":"FLD","name":"Fond du Lac County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fond du Lac","elevation_ft":808,"latitude":43.7711982727,"longitude":-88.48840332030001,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3602,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5941,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLL","iata":"FLL","local":"FLL","name":"Fort Lauderdale Hollywood International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":9,"latitude":26.072599,"longitude":-80.152702,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"D-ATIS","frequency_mhz":135}],"has_metar":true,"public":true},{"icao":"KFNB","iata":"","local":"FNB","name":"Brenner Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Falls City","elevation_ft":984,"latitude":40.078800201416016,"longitude":-95.59200286865234,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3999,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOA","iata":"","local":"FOA","name":"Flora Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Flora","elevation_ft":473,"latitude":38.66490173339844,"longitude":-88.4530029296875,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5003,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":2715,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOE","iata":"FOE","local":"FOE","name":"Topeka Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":1078,"latitude":38.950901,"longitude":-95.663597,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7002,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":12803,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.8},{"id":"ATIS","frequency_mhz":128.25}],"has_metar":true,"public":true},{"icao":"KFOD","iata":"FOD","local":"FOD","name":"Fort Dodge Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Fort Dodge","elevation_ft":1156,"latitude":42.55149841,"longitude":-94.19259644,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6547,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":5301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOT","iata":"","local":"FOT","name":"Rohnerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fortuna","elevation_ft":393,"latitude":40.55390167,"longitude":-124.1330032,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOM","iata":"FIL","local":"FOM","name":"Fillmore Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Fillmore","elevation_ft":4985,"latitude":38.95830154,"longitude":-112.362999,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5040,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFPK","iata":"","local":"FPK","name":"Fitch H Beach Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Charlotte","elevation_ft":891,"latitude":42.574501,"longitude":-84.811401,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3510,"width_ft":75,"surface":"C"},{"id":"15/33","length_ft":2298,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSW","iata":"FMS","local":"FSW","name":"Fort Madison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Fort Madison","elevation_ft":724,"latitude":40.659113,"longitude":-91.327763,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSI","iata":"FSI","local":"FSI","name":"Henry Post Army Air Field (Fort Sill)","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Fort Sill","elevation_ft":1189,"latitude":34.64979935,"longitude":-98.40219879,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.95},{"id":"ATIS","frequency_mhz":135.425}],"has_metar":true,"public":true},{"icao":"KFSK","iata":"FSK","local":"FSK","name":"Fort Scott Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Fort Scott","elevation_ft":918,"latitude":37.7984008789,"longitude":-94.7694015503,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4403,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFWA","iata":"FWA","local":"FWA","name":"Fort Wayne International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":814,"latitude":40.9785,"longitude":-85.195099,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":11981,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":4001,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":8002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":121.25}],"has_metar":true,"public":true},{"icao":"KFWC","iata":"","local":"FWC","name":"Fairfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Fairfield","elevation_ft":436,"latitude":38.37860107421875,"longitude":-88.4126968383789,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":1999,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFVE","iata":"WFK","local":"FVE","name":"Northern Aroostook Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Frenchville","elevation_ft":988,"latitude":47.2854995728,"longitude":-68.31279754639999,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFXE","iata":"FXE","local":"FXE","name":"Fort Lauderdale Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":13,"latitude":26.1972999573,"longitude":-80.1707000732,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6002,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.85},{"id":"LCL/P","frequency_mhz":120.9}],"has_metar":true,"public":true},{"icao":"KFXY","iata":"FXY","local":"FXY","name":"Forest City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Forest City","elevation_ft":1229,"latitude":43.23469925,"longitude":-93.62409973,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2707,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5796,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFYM","iata":"FYM","local":"FYM","name":"Fayetteville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Fayetteville","elevation_ft":984,"latitude":35.059700012200004,"longitude":-86.5640029907,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGF","iata":"","local":"GGF","name":"Grant Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grant","elevation_ft":3425,"latitude":40.86949921,"longitude":-101.7330017,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4797,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGAF","iata":"","local":"GAF","name":"Hutson Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grafton","elevation_ft":824,"latitude":48.40470123291016,"longitude":-97.37090301513672,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4074,"width_ft":115,"surface":"T"},{"id":"17/35","length_ft":3898,"width_ft":74,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGAO","iata":"","local":"GAO","name":"South Lafourche Leonard Miller Jr Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Galliano","elevation_ft":1,"latitude":29.441052,"longitude":-90.261129,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6500,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGAG","iata":"GAG","local":"GAG","name":"Gage Heibeck Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Gage","elevation_ft":2223,"latitude":36.295502,"longitude":-99.776398,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5033,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBV","iata":"","local":"HBV","name":"Jim Hogg County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hebbronville","elevation_ft":663,"latitude":27.34959983825684,"longitude":-98.73699951171876,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCM","iata":"","local":"GCM","name":"Claremore Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Claremore","elevation_ft":733,"latitude":36.292701721191406,"longitude":-95.47959899902344,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGDJ","iata":"","local":"GDJ","name":"Granbury Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":835,"latitude":32.442222,"longitude":-97.824444,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEY","iata":"GEY","local":"GEY","name":"South Big Horn County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Greybull","elevation_ft":3939,"latitude":44.51679993,"longitude":-108.0830002,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3953,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":7003,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEZ","iata":"","local":"GEZ","name":"Shelbyville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":803,"latitude":39.586044,"longitude":-85.804024,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":2671,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEV","iata":"","local":"GEV","name":"Ashe County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Jefferson","elevation_ft":3180,"latitude":36.432418,"longitude":-81.418519,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGG","iata":"GGG","local":"GGG","name":"East Texas Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Longview","elevation_ft":365,"latitude":32.38399887084961,"longitude":-94.71150207519533,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6110,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.2},{"id":"ATIS","frequency_mhz":119.65}],"has_metar":true,"public":true},{"icao":"KGGW","iata":"GGW","local":"GGW","name":"Wokal Field/Glasgow-Valley County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Glasgow","elevation_ft":2296,"latitude":48.212502,"longitude":-106.614998,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5000,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGP","iata":"","local":"GGP","name":"Logansport Cass County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Logansport","elevation_ft":738,"latitude":40.711201,"longitude":-86.374901,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGKT","iata":"GKT","local":"GKT","name":"Gatlinburg-Pigeon Forge Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sevierville","elevation_ft":1014,"latitude":35.85779953,"longitude":-83.52870178219999,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5506,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLH","iata":"GLH","local":"GLH","name":"Mid Delta Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Greenville","elevation_ft":131,"latitude":33.4828987121582,"longitude":-90.98560333251952,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":8001,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":7019,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119}],"has_metar":true,"public":true},{"icao":"KGNB","iata":"","local":"GNB","name":"Granby Grand County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Granby","elevation_ft":8203,"latitude":40.08969879150391,"longitude":-105.91699981689452,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLY","iata":"","local":"GLY","name":"Clinton Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Clinton","elevation_ft":822,"latitude":38.35660171508789,"longitude":-93.68419647216795,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4001,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGMJ","iata":"","local":"GMJ","name":"Grove Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Grove","elevation_ft":831,"latitude":36.60680008,"longitude":-94.73860168,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGKY","iata":"","local":"GKY","name":"Arlington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Arlington","elevation_ft":628,"latitude":32.66389846801758,"longitude":-97.09429931640624,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6080,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.625}],"has_metar":true,"public":true},{"icao":"KGOK","iata":"GOK","local":"GOK","name":"Guthrie-Edmond Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guthrie","elevation_ft":1069,"latitude":35.84980011,"longitude":-97.41560364,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGPH","iata":"","local":"GPH","name":"Midwest National Air Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Excelsior Springs","elevation_ft":777,"latitude":39.3325,"longitude":-94.309601,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGNG","iata":"GNG","local":"GNG","name":"Gooding Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Gooding","elevation_ft":3732,"latitude":42.91719818,"longitude":-114.7649994,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5371,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGRB","iata":"GRB","local":"GRB","name":"Austin Straubel International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":695,"latitude":44.483459,"longitude":-88.130805,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7700,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":8700,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":124.1}],"has_metar":true,"public":true},{"icao":"KGPT","iata":"GPT","local":"GPT","name":"Gulfport Biloxi International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Gulfport","elevation_ft":28,"latitude":30.407301,"longitude":-89.070099,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4935,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.45},{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"KGRI","iata":"GRI","local":"GRI","name":"Central Nebraska Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grand Island","elevation_ft":1847,"latitude":40.96749877929688,"longitude":-98.30960083007812,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6608,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":7002,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":127.4}],"has_metar":true,"public":true},{"icao":"KGPZ","iata":"GPZ","local":"GPZ","name":"Grand Rapids Itasca Co-Gordon Newstrom field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Grand Rapids","elevation_ft":1355,"latitude":47.21110153,"longitude":-93.50980377,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3000,"width_ft":60,"surface":"A"},{"id":"16/34","length_ft":5756,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGPM","iata":"","local":"GPM","name":"Grand Prairie Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":588,"latitude":32.69879913330078,"longitude":-97.0468978881836,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"C"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KGRN","iata":"GRN","local":"GRN","name":"Gordon Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Gordon","elevation_ft":3562,"latitude":42.8059997559,"longitude":-102.175003052,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5196,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":2284,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGUS","iata":"GUS","local":"GUS","name":"Grissom Air Reserve Base","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Peru","elevation_ft":812,"latitude":40.648102,"longitude":-86.1521,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":12501,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":108.45},{"id":"LCL/P","frequency_mhz":133.7}],"has_metar":true,"public":true},{"icao":"KGWB","iata":"","local":"GWB","name":"De Kalb County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Auburn","elevation_ft":880,"latitude":41.307201,"longitude":-85.0644,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGUP","iata":"GUP","local":"GUP","name":"Gallup Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Gallup","elevation_ft":6472,"latitude":35.511100769,"longitude":-108.789001465,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7315,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGUC","iata":"GUC","local":"GUC","name":"Gunnison Crested Butte Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Gunnison","elevation_ft":7680,"latitude":38.536346,"longitude":-106.928306,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9400,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":2981,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGTU","iata":"","local":"GTU","name":"Georgetown Executive Airport at Johnny Gantt Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":790,"latitude":30.677543,"longitude":-97.678524,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4099,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.6},{"id":"LCL/P","frequency_mhz":120.225}],"has_metar":true,"public":true},{"icao":"KGVT","iata":"GVT","local":"GVT","name":"Majors Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Greenville","elevation_ft":535,"latitude":33.0677986145,"longitude":-96.0652999878,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8030,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"KGXY","iata":"GXY","local":"GXY","name":"Greeley–Weld County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Greeley","elevation_ft":4697,"latitude":40.4374008179,"longitude":-104.633003235,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5801,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":10000,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBR","iata":"HBR","local":"HBR","name":"Hobart Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hobart","elevation_ft":1563,"latitude":34.991317,"longitude":-99.051313,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2975,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5507,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBG","iata":"HBG","local":"HBG","name":"Hattiesburg Bobby L Chain Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Hattiesburg","elevation_ft":151,"latitude":31.26479912,"longitude":-89.25279999,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6094,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHAF","iata":"HAF","local":"HAF","name":"Half Moon Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Half Moon Bay","elevation_ft":66,"latitude":37.5134010315,"longitude":-122.500999451,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGZS","iata":"","local":"GZS","name":"Abernathy Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Pulaski","elevation_ft":685,"latitude":35.15370178222656,"longitude":-87.05680084228516,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5310,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGZH","iata":"","local":"GZH","name":"Evergreen Regional Airport/Middleton Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Evergreen","elevation_ft":259,"latitude":31.4158,"longitude":-87.043999,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5005,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5004,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHCO","iata":"","local":"HCO","name":"Hallock Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hallock","elevation_ft":819,"latitude":48.752701,"longitude":-96.943001,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHDC","iata":"","local":"HDC","name":"Hammond Northshore Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hammond","elevation_ft":47,"latitude":30.52160072,"longitude":-90.41840363,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6502,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.325},{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"KHHG","iata":"","local":"HHG","name":"Huntington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Huntington","elevation_ft":806,"latitude":40.852901,"longitude":-85.4571,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHR","iata":"HHR","local":"HHR","name":"Jack Northrop Field Hawthorne Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hawthorne","elevation_ft":66,"latitude":33.922798,"longitude":-118.334999,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4884,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.4},{"id":"LCL/P","frequency_mhz":121.1}],"has_metar":true,"public":true},{"icao":"KHIO","iata":"HIO","local":"HIO","name":"Portland Hillsboro Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":208,"latitude":45.540401,"longitude":-122.949997,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3820,"width_ft":75,"surface":"A"},{"id":"13L/31R","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"13R/31L","length_ft":6600,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":127.65}],"has_metar":true,"public":true},{"icao":"KHJO","iata":"","local":"HJO","name":"Hanford Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hanford","elevation_ft":240,"latitude":36.31669998,"longitude":-119.6279984,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5179,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHIF","iata":"HIF","local":"HIF","name":"Hill Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Ogden","elevation_ft":4789,"latitude":41.12403,"longitude":-111.973086,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":13500,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.15},{"id":"ATIS","frequency_mhz":134.925}],"has_metar":true,"public":true},{"icao":"KHLB","iata":"HLB","local":"HLB","name":"Hillenbrand Industries Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Batesville","elevation_ft":973,"latitude":39.3445014954,"longitude":-85.25830078119999,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5933,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHMN","iata":"HMN","local":"HMN","name":"Holloman Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4093,"latitude":32.852501,"longitude":-106.107002,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":10578,"width_ft":300,"surface":"A"},{"id":"07/25","length_ft":12922,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":12134,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3}],"has_metar":true,"public":true},{"icao":"KHNR","iata":"","local":"HNR","name":"Harlan Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Harlan","elevation_ft":1231,"latitude":41.58440017700195,"longitude":-95.339599609375,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":1712,"width_ft":120,"surface":"T"},{"id":"15/33","length_ft":4100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHON","iata":"HON","local":"HON","name":"Huron Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Huron","elevation_ft":1289,"latitude":44.38520050048828,"longitude":-98.22850036621094,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":7201,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHND","iata":"HSH","local":"HND","name":"Henderson Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2492,"latitude":35.9728012085,"longitude":-115.134002686,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":5001,"width_ft":75,"surface":"A"},{"id":"17R/35L","length_ft":6501,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.775},{"id":"LCL/P","frequency_mhz":125.1}],"has_metar":true,"public":true},{"icao":"KHRI","iata":"HES","local":"HRI","name":"Hermiston Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Hermiston","elevation_ft":644,"latitude":45.828223,"longitude":-119.259024,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHPT","iata":"HPT","local":"HPT","name":"Hampton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Hampton","elevation_ft":1176,"latitude":42.7237014771,"longitude":-93.2263031006,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4020,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHRX","iata":"","local":"HRX","name":"Hereford Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hereford","elevation_ft":3788,"latitude":34.85779953,"longitude":-102.3259964,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6100,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":3807,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHST","iata":"HST","local":"HST","name":"Homestead ARB Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":5,"latitude":25.48859978,"longitude":-80.38359833,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":11202,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.275},{"id":"LCL/P","frequency_mhz":133.45}],"has_metar":true,"public":true},{"icao":"KHTL","iata":"HTL","local":"HTL","name":"Roscommon County - Blodgett Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Houghton Lake","elevation_ft":1150,"latitude":44.359798,"longitude":-84.671095,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHVC","iata":"","local":"HVC","name":"Hopkinsville Christian County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Hopkinsville","elevation_ft":564,"latitude":36.85699844360352,"longitude":-87.4551010131836,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5505,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHUT","iata":"HUT","local":"HUT","name":"Hutchinson Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hutchinson","elevation_ft":1543,"latitude":38.0654983521,"longitude":-97.86060333250002,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4405,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":7003,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4012,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":124.25}],"has_metar":true,"public":true},{"icao":"KHTH","iata":"HTH","local":"HTH","name":"Hawthorne Industrial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Hawthorne","elevation_ft":4215,"latitude":38.544399,"longitude":-118.634002,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":3250,"width_ft":130,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHWD","iata":"HWD","local":"HWD","name":"Hayward Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hayward","elevation_ft":52,"latitude":37.659198761,"longitude":-122.122001648,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":3107,"width_ft":75,"surface":"A"},{"id":"10R/28L","length_ft":5694,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.2},{"id":"ATIS","frequency_mhz":126.7}],"has_metar":true,"public":true},{"icao":"KHVE","iata":"HVE","local":"HVE","name":"Hanksville Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Hanksville","elevation_ft":4444,"latitude":38.4179992676,"longitude":-110.70400238,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":4841,"width_ft":120,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZY","iata":"JFN","local":"HZY","name":"Northeast Ohio Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ashtabula","elevation_ft":924,"latitude":41.778,"longitude":-80.695503,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYX","iata":"","local":"HYX","name":"Saginaw County H.W. Browne Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Saginaw","elevation_ft":601,"latitude":43.4333992,"longitude":-83.86229706,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2952,"width_ft":60,"surface":"A"},{"id":"10/28","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYS","iata":"HYS","local":"HYS","name":"Hays Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hays","elevation_ft":1999,"latitude":38.84220123,"longitude":-99.27320099,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4501,"width_ft":75,"surface":"C"},{"id":"16/34","length_ft":6501,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZE","iata":"","local":"HZE","name":"Mercer County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hazen","elevation_ft":1814,"latitude":47.28990173,"longitude":-101.5810013,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZR","iata":"","local":"HZR","name":"False River Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Roads","elevation_ft":40,"latitude":30.71829987,"longitude":-91.47869873,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KICL","iata":"ICL","local":"ICL","name":"Schenck Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clarinda","elevation_ft":996,"latitude":40.72180176,"longitude":-95.02639771,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":2729,"width_ft":280,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIBM","iata":"","local":"IBM","name":"Kimball Municipal Robert E Arraj Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Kimball","elevation_ft":4926,"latitude":41.1880989074707,"longitude":-103.677001953125,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6199,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIEN","iata":"XPR","local":"IEN","name":"Pine Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Pine Ridge","elevation_ft":3333,"latitude":43.020902,"longitude":-102.506089,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIFP","iata":"IFP","local":"IFP","name":"Laughlin Bullhead International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Bullhead City","elevation_ft":701,"latitude":35.157398,"longitude":-114.559998,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":8501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.825},{"id":"LCL/P","frequency_mhz":123.9}],"has_metar":true,"public":true},{"icao":"KIGM","iata":"IGM","local":"IGM","name":"Kingman Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Kingman","elevation_ft":3449,"latitude":35.259499,"longitude":-113.938004,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6827,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6725,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIDP","iata":"IDP","local":"IDP","name":"Independence Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Independence","elevation_ft":825,"latitude":37.1584014893,"longitude":-95.7783966064,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3402,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIER","iata":"","local":"IER","name":"Natchitoches Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Natchitoches","elevation_ft":121,"latitude":31.735700607299805,"longitude":-93.0990982055664,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4000,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5003,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIMM","iata":"IMM","local":"IMM","name":"Immokalee Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Immokalee","elevation_ft":37,"latitude":26.427933,"longitude":-81.403531,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4550,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIKG","iata":"","local":"IKG","name":"Kleberg County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kingsville","elevation_ft":130,"latitude":27.55089951,"longitude":-98.03089905,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINW","iata":"INW","local":"INW","name":"Winslow Lindbergh Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Winslow","elevation_ft":4941,"latitude":35.021900177,"longitude":-110.722999573,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7499,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":7100,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINS","iata":"INS","local":"INS","name":"Creech Air Force Base","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Indian Springs","elevation_ft":3133,"latitude":36.5872001648,"longitude":-115.672996521,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5476,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KINL","iata":"INL","local":"INL","name":"Falls International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"International Falls","elevation_ft":1185,"latitude":48.566200256347656,"longitude":-93.4030990600586,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2999,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":7400,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIMS","iata":"MDN","local":"IMS","name":"Madison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Madison","elevation_ft":819,"latitude":38.75889969,"longitude":-85.46549988,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KISM","iata":"ISM","local":"ISM","name":"Kissimmee Gateway Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":82,"latitude":28.2898006439,"longitude":-81.4371032715,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.45},{"id":"ATIS","frequency_mhz":128.775}],"has_metar":true,"public":true},{"icao":"KIRK","iata":"IRK","local":"IRK","name":"Kirksville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kirksville","elevation_ft":966,"latitude":40.09349822998047,"longitude":-92.5448989868164,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":1370,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":6005,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIPL","iata":"IPL","local":"IPL","name":"Imperial County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Imperial","elevation_ft":-54,"latitude":32.834201812699995,"longitude":-115.57900238,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4501,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5308,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIRS","iata":"IRS","local":"IRS","name":"Kirsch Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Sturgis","elevation_ft":924,"latitude":41.81330109,"longitude":-85.43900299,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5201,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":3601,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KISW","iata":"ISW","local":"ISW","name":"Alexander Field South Wood County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wisconsin Rapids","elevation_ft":1021,"latitude":44.3602981567,"longitude":-89.83899688720001,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":3470,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":2072,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIWD","iata":"IWD","local":"IWD","name":"Gogebic Iron County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Ironwood","elevation_ft":1230,"latitude":46.5275,"longitude":-90.131401,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAN","iata":"JAN","local":"JAN","name":"Jackson-Medgar Wiley Evers International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":346,"latitude":32.311199,"longitude":-90.075897,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":8500,"width_ft":150,"surface":"A"},{"id":"16R/34L","length_ft":8500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":121.05}],"has_metar":true,"public":true},{"icao":"KJBR","iata":"JBR","local":"JBR","name":"Jonesboro Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":262,"latitude":35.83169937133789,"longitude":-90.64640045166016,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6200,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4099,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAC","iata":"JAC","local":"JAC","name":"Jackson Hole Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":6451,"latitude":43.6072998046875,"longitude":-110.73799896240234,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6300,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.075},{"id":"D-ATIS","frequency_mhz":120.625}],"has_metar":true,"public":true},{"icao":"KJAU","iata":"","local":"JAU","name":"Colonel Tommy C Stiner Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Jacksboro","elevation_ft":1180,"latitude":36.334073,"longitude":-84.162977,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJER","iata":"","local":"JER","name":"Jerome County Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Jerome","elevation_ft":4053,"latitude":42.72669982910156,"longitude":-114.45700073242188,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJHW","iata":"JHW","local":"JHW","name":"Chautauqua County-Jamestown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Jamestown","elevation_ft":1723,"latitude":42.15425,"longitude":-79.254008,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5299,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4499,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJOT","iata":"JOT","local":"JOT","name":"Joliet Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Joliet","elevation_ft":582,"latitude":41.51779938,"longitude":-88.17549896,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2552,"width_ft":150,"surface":"T"},{"id":"13/31","length_ft":2821,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLCG","iata":"","local":"LCG","name":"Wayne Municipal Airport/Stan Morris Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wayne","elevation_ft":1431,"latitude":42.241901,"longitude":-96.9814,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3406,"width_ft":60,"surface":"C"},{"id":"13/31","length_ft":2070,"width_ft":120,"surface":"T"},{"id":"18/36","length_ft":4201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOPF","iata":"OPF","local":"OPF","name":"Miami-Opa Locka Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":8,"latitude":25.907,"longitude":-80.278397,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":8002,"width_ft":150,"surface":"A"},{"id":"09R/27L","length_ft":4309,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":6800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.9},{"id":"LCL/P","frequency_mhz":134.675}],"has_metar":true,"public":true},{"icao":"KSRQ","iata":"SRQ","local":"SRQ","name":"Sarasota Bradenton International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota/Bradenton","elevation_ft":30,"latitude":27.395399,"longitude":-82.554398,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5006,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":9500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":124.375}],"has_metar":true,"public":true},{"icao":"CYBW","iata":"","local":"","name":"Calgary / Springbank Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Calgary","elevation_ft":3940,"latitude":51.1031,"longitude":-114.374001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3423,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5000,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VTSP","iata":"HKT","local":"","name":"Phuket International Airport","category":"large_airport","iso_country":"TH","iso_region":"TH-83","municipality":"Phuket","elevation_ft":82,"latitude":8.1132,"longitude":98.316902,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"VDPP","iata":"PNH","local":"","name":"Phnom Penh International Airport","category":"large_airport","iso_country":"KH","iso_region":"KH-12","municipality":"Phnom Penh (Pou Senchey)","elevation_ft":40,"latitude":11.5466,"longitude":104.844002,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VECC","iata":"CCU","local":"","name":"Netaji Subhash Chandra Bose International Airport","category":"large_airport","iso_country":"IN","iso_region":"IN-WB","municipality":"Kolkata","elevation_ft":16,"latitude":22.654699325561523,"longitude":88.44670104980469,"has_tower":true,"has_beacon":true,"runways":[{"id":"01R/19L","length_ft":11919,"width_ft":148,"surface":"H"},{"id":"01L/19R","length_ft":1732,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.4},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"VOCI","iata":"COK","local":"","name":"Cochin International Airport","category":"large_airport","iso_country":"IN","iso_region":"IN-KL","municipality":"Kochi","elevation_ft":30,"latitude":10.152,"longitude":76.401901,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MMSL","iata":"","local":"CSL","name":"Cabo San Lucas International Airport","category":"medium_airport","iso_country":"MX","iso_region":"MX-BCS","municipality":"Cabo San Lucas","elevation_ft":459,"latitude":22.948211,"longitude":-109.938155,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6998,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCBG","iata":"","local":"CBG","name":"Cambridge Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cambridge","elevation_ft":945,"latitude":45.557498931884766,"longitude":-93.26419830322266,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAZ","iata":"YAZ","local":"","name":"Tofino / Long Beach Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Tofino","elevation_ft":80,"latitude":49.079833,"longitude":-125.775583,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4999,"width_ft":150,"surface":"C"},{"id":"11/29","length_ft":4997,"width_ft":100,"surface":"C"},{"id":"16/34","length_ft":5000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKA","iata":"YKA","local":"","name":"Kamloops John Moose Fulton Field Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Kamloops","elevation_ft":1133,"latitude":50.703038,"longitude":-120.448641,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8000,"width_ft":148,"surface":"A"},{"id":"04/22","length_ft":2780,"width_ft":49,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVR","iata":"YVR","local":"","name":"Vancouver International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Vancouver","elevation_ft":14,"latitude":49.193901062,"longitude":-123.183998108,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":9940,"width_ft":200,"surface":"C"},{"id":"08R/26L","length_ft":11500,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":7300,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"LCL/P","frequency_mhz":119.55},{"id":"ATIS","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"CYXX","iata":"YXX","local":"","name":"Abbotsford International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Abbotsford","elevation_ft":195,"latitude":49.025299,"longitude":-122.361,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9597,"width_ft":200,"surface":"A"},{"id":"01/19","length_ft":5328,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSEA","iata":"SEA","local":"SEA","name":"Seattle–Tacoma International Airport","category":"large_airport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":433,"latitude":47.449162,"longitude":-122.311134,"has_tower":true,"has_beacon":true,"runways":[{"id":"16C/34C","length_ft":9426,"width_ft":150,"surface":"C"},{"id":"16L/34R","length_ft":11901,"width_ft":150,"surface":"C"},{"id":"16R/34L","length_ft":8500,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":118},{"id":"LCL/P","frequency_mhz":119.9},{"id":"LCL/P","frequency_mhz":120.95}],"has_metar":true,"public":true},{"icao":"KAFN","iata":"AFN","local":"AFN","name":"Jaffrey Airfield Silver Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Jaffrey","elevation_ft":1040,"latitude":42.805099,"longitude":-72.002998,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2982,"width_ft":134,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOQ","iata":"","local":"COQ","name":"Cloquet Carlton County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cloquet","elevation_ft":1279,"latitude":46.70109939575195,"longitude":-92.50360107421876,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3100,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMZH","iata":"","local":"MZH","name":"Moose Lake Carlton County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Moose Lake","elevation_ft":1076,"latitude":46.41880035400391,"longitude":-92.80470275878906,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KZER","iata":"","local":"ZER","name":"Schuylkill County Joe Zerbey Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Pottsville","elevation_ft":1729,"latitude":40.706501,"longitude":-76.3731,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2523,"width_ft":140,"surface":"T"},{"id":"11/29","length_ft":5101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZBTJ","iata":"TSN","local":"","name":"Tianjin Binhai International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-12","municipality":"Tianjin","elevation_ft":10,"latitude":39.1244010925,"longitude":117.346000671,"has_tower":true,"has_beacon":true,"runways":[{"id":"16R/34L6","length_ft":11811,"width_ft":164,"surface":"H"},{"id":"16L/34R","length_ft":10499,"width_ft":148,"surface":"-"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.45},{"id":"TWR","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KELM","iata":"ELM","local":"ELM","name":"Elmira Corning Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Elmira/Corning","elevation_ft":954,"latitude":42.1599006652832,"longitude":-76.8916015625,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2017,"width_ft":150,"surface":"T"},{"id":"06/24","length_ft":8001,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5404,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.1},{"id":"ATIS","frequency_mhz":125.475}],"has_metar":true,"public":true},{"icao":"KDDH","iata":"","local":"DDH","name":"William H Morse State Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Bennington","elevation_ft":827,"latitude":42.8913,"longitude":-73.246399,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3704,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZBYN","iata":"TYN","local":"","name":"Taiyuan Wusu Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-14","municipality":"Taiyuan","elevation_ft":2575,"latitude":37.746899,"longitude":112.627998,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.45},{"id":"TWR","frequency_mhz":118.25}],"has_metar":true,"public":true},{"icao":"ZGGG","iata":"CAN","local":"","name":"Guangzhou Baiyun International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-44","municipality":"Guangzhou (Huadu)","elevation_ft":50,"latitude":23.392401,"longitude":113.299004,"has_tower":true,"has_beacon":true,"runways":[{"id":"02R/20L","length_ft":12467,"width_ft":197,"surface":"H"},{"id":"02L/20R","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.6},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"CYZT","iata":"YZT","local":"","name":"Port Hardy Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Port Hardy","elevation_ft":71,"latitude":50.68059921264648,"longitude":-127.36699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":4999,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":3984,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZGHA","iata":"CSX","local":"","name":"Changsha Huanghua International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-43","municipality":"Changsha (Changsha)","elevation_ft":217,"latitude":28.189199,"longitude":113.220001,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":12467,"width_ft":197,"surface":"H"},{"id":"18R/36L","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.6},{"id":"TWR","frequency_mhz":118.55}],"has_metar":true,"public":true},{"icao":"ZGKL","iata":"KWL","local":"","name":"Guilin Liangjiang International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-45","municipality":"Guilin (Lingui)","elevation_ft":570,"latitude":25.219828,"longitude":110.039553,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YWLM","iata":"NTL","local":"","name":"Newcastle Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NSW","municipality":"Williamtown","elevation_ft":31,"latitude":-32.79499816894531,"longitude":151.83399963378906,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10033,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCD","iata":"JDA","local":"GCD","name":"Grant County Regional Airport / Ogilvie Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"John Day","elevation_ft":3703,"latitude":44.404202,"longitude":-118.962997,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4100,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5224,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRYM","iata":"","local":"RYM","name":"Ray S Miller Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Fort Ripley","elevation_ft":1150,"latitude":46.091202,"longitude":-94.360497,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6100,"width_ft":100,"surface":"A"},{"id":"132/312","length_ft":3500,"width_ft":80,"surface":"G"},{"id":"15/33","length_ft":880,"width_ft":50,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"PMDY","iata":"MDY","local":"MDY","name":"Henderson Field","category":"medium_airport","iso_country":"UM","iso_region":"UM-71","municipality":"Sand Island","elevation_ft":13,"latitude":28.2017,"longitude":-177.380997,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7800,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZBHH","iata":"HET","local":"","name":"Hohhot Baita International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-15","municipality":"Hohhot","elevation_ft":3556,"latitude":40.849658,"longitude":111.824598,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.25},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"ZMUB","iata":"ULN","local":"","name":"Buyant-Ukhaa International Airport","category":"medium_airport","iso_country":"MN","iso_region":"MN-1","municipality":"Ulaanbaatar","elevation_ft":4364,"latitude":47.843102,"longitude":106.766998,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZWWW","iata":"URC","local":"","name":"Ürümqi Diwopu International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-65","municipality":"Ürümqi","elevation_ft":2125,"latitude":43.90710067749024,"longitude":87.47419738769531,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.7},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"RJCB","iata":"OBO","local":"","name":"Tokachi-Obihiro Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-01","municipality":"Obihiro","elevation_ft":505,"latitude":42.7332992554,"longitude":143.216995239,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJSS","iata":"SDJ","local":"","name":"Sendai Airport","category":"large_airport","iso_country":"JP","iso_region":"JP-04","municipality":"Natori","elevation_ft":15,"latitude":38.139702,"longitude":140.917007,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"12/30","length_ft":3937,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJEC","iata":"AKJ","local":"","name":"Asahikawa Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-01","municipality":"Higashikagura","elevation_ft":721,"latitude":43.670799,"longitude":142.447006,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKNY","iata":"YNY","local":"","name":"Yangyang International Airport","category":"medium_airport","iso_country":"KR","iso_region":"KR-42","municipality":"Gonghang-ro","elevation_ft":241,"latitude":38.061298,"longitude":128.669006,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UHHH","iata":"KHV","local":"","name":"Khabarovsk Novy Airport","category":"medium_airport","iso_country":"RU","iso_region":"RU-KHA","municipality":"Khabarovsk","elevation_ft":244,"latitude":48.528338,"longitude":135.188588,"has_tower":true,"has_beacon":false,"runways":[{"id":"05R/23L","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"05R/23L","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZBAA","iata":"PEK","local":"","name":"Beijing Capital International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-11","municipality":"Beijing","elevation_ft":116,"latitude":40.0801010131836,"longitude":116.58499908447266,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":12467,"width_ft":197,"surface":"H"},{"id":"18L/36R","length_ft":12467,"width_ft":197,"surface":"H"},{"id":"18R/36L","length_ft":10499,"width_ft":164,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.6},{"id":"TWR","frequency_mhz":121.75}],"has_metar":true,"public":true},{"icao":"ZWSH","iata":"KHG","local":"","name":"Kashgar Airport","category":"medium_airport","iso_country":"CN","iso_region":"CN-65","municipality":"Kashgar","elevation_ft":4529,"latitude":39.5429000854,"longitude":76.0199966431,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTPA","iata":"TPA","local":"TPA","name":"Tampa International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":26,"latitude":27.975500106811523,"longitude":-82.533203125,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":11002,"width_ft":150,"surface":"C"},{"id":"01R/19L","length_ft":8300,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":6999,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"D-ATIS","frequency_mhz":126.45},{"id":"D-ATIS","frequency_mhz":128.475}],"has_metar":true,"public":true},{"icao":"KRBG","iata":"RBG","local":"RBG","name":"Roseburg Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Roseburg","elevation_ft":529,"latitude":43.2388000488,"longitude":-123.356002808,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOO","iata":"ITM","local":"","name":"Osaka International Airport","category":"large_airport","iso_country":"JP","iso_region":"JP-27","municipality":"Osaka","elevation_ft":50,"latitude":34.785499572753906,"longitude":135.43800354003906,"has_tower":true,"has_beacon":true,"runways":[{"id":"14R/32L","length_ft":9843,"width_ft":197,"surface":"H"},{"id":"14L/32R","length_ft":5997,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.6},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"ROAH","iata":"OKA","local":"","name":"Naha Airport / JASDF Naha Air Base","category":"large_airport","iso_country":"JP","iso_region":"JP-47","municipality":"Naha","elevation_ft":12,"latitude":26.195801,"longitude":127.646004,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"18R/36L","length_ft":8858,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.8},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"VIDP","iata":"DEL","local":"","name":"Indira Gandhi International Airport","category":"large_airport","iso_country":"IN","iso_region":"IN-DL","municipality":"New Delhi","elevation_ft":777,"latitude":28.55563,"longitude":77.09519,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":14534,"width_ft":197,"surface":"H"},{"id":"10/28","length_ft":12500,"width_ft":150,"surface":"H"},{"id":"09/27","length_ft":9229,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.4},{"id":"TWR","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"VISR","iata":"SXR","local":"","name":"Sheikh ul Alam International Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-JK","municipality":"Srinagar","elevation_ft":5429,"latitude":33.987099,"longitude":74.7742,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":12001,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZSNJ","iata":"NKG","local":"","name":"Nanjing Lukou International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-32","municipality":"Nanjing","elevation_ft":49,"latitude":31.735032,"longitude":118.865949,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":11812,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.25},{"id":"TWR","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"VTBS","iata":"BKK","local":"","name":"Suvarnabhumi Airport","category":"large_airport","iso_country":"TH","iso_region":"TH-10","municipality":"Bangkok","elevation_ft":5,"latitude":13.681099891662598,"longitude":100.74700164794922,"has_tower":true,"has_beacon":true,"runways":[{"id":"01R/19L","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"01L/19R","length_ft":12139,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.8},{"id":"TWR","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"VVNB","iata":"HAN","local":"","name":"Noi Bai International Airport","category":"large_airport","iso_country":"VN","iso_region":"VN-RRD","municipality":"Hanoi (Soc Son)","elevation_ft":39,"latitude":21.221201,"longitude":105.806999,"has_tower":true,"has_beacon":true,"runways":[{"id":"11R/29R","length_ft":12467,"width_ft":148,"surface":"H"},{"id":"11L/29R","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127},{"id":"TWR","frequency_mhz":118.4}],"has_metar":true,"public":true},{"icao":"VIDN","iata":"DED","local":"","name":"Dehradun Jolly Grant Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-UT","municipality":"Dehradun (Jauligrant)","elevation_ft":1831,"latitude":30.189243,"longitude":78.176651,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7021,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRZN","iata":"","local":"RZN","name":"Burnett County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Siren","elevation_ft":989,"latitude":45.82270050048828,"longitude":-92.37249755859376,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3900,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YFRT","iata":"FOS","local":"","name":"Forrest Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"UNKNOWN","elevation_ft":511,"latitude":-30.83662,"longitude":128.112811,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4984,"width_ft":148,"surface":"H"},{"id":"09/27","length_ft":4426,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNG","iata":"GEV","local":"","name":"Gällivare Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Gällivare","elevation_ft":1027,"latitude":67.13240051269531,"longitude":20.814599990844727,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5623,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TUPJ","iata":"EIS","local":"","name":"Terrance B. Lettsome International Airport","category":"medium_airport","iso_country":"VG","iso_region":"VG-U-A","municipality":"Road Town","elevation_ft":15,"latitude":18.445492,"longitude":-64.541707,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4645,"width_ft":98,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"TKPK","iata":"SKB","local":"","name":"Robert L. Bradshaw International Airport","category":"medium_airport","iso_country":"KN","iso_region":"KN-U-A","municipality":"Basseterre","elevation_ft":170,"latitude":17.311199188232422,"longitude":-62.71870040893555,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7618,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MDPC","iata":"PUJ","local":"","name":"Punta Cana International Airport","category":"large_airport","iso_country":"DO","iso_region":"DO-11","municipality":"Punta Cana","elevation_ft":47,"latitude":18.5673999786,"longitude":-68.36340332030001,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":10171,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.85},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"TFFF","iata":"FDF","local":"","name":"Martinique Aimé Césaire International Airport","category":"large_airport","iso_country":"MQ","iso_region":"MQ-U-A","municipality":"Fort-de-France","elevation_ft":16,"latitude":14.591,"longitude":-61.003201,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TNCM","iata":"SXM","local":"","name":"Princess Juliana International Airport","category":"large_airport","iso_country":"SX","iso_region":"SX-U-A","municipality":"Saint Martin","elevation_ft":13,"latitude":18.041,"longitude":-63.108898,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.65},{"id":"TWR","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"ZGOW","iata":"SWA","local":"","name":"Jieyang Chaoshan International Airport","category":"medium_airport","iso_country":"CN","iso_region":"CN-44","municipality":"Jieyang (Rongcheng)","elevation_ft":0,"latitude":23.552,"longitude":116.5033,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLW","iata":"YLW","local":"","name":"Kelowna International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Kelowna","elevation_ft":1421,"latitude":49.9561,"longitude":-119.377998,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":8900,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.5}],"has_metar":true,"public":true},{"icao":"KTKV","iata":"","local":"TKV","name":"Tomahawk Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Tomahawk","elevation_ft":1487,"latitude":45.469101,"longitude":-89.805702,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4401,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSLE","iata":"SLE","local":"SLE","name":"Salem Municipal Airport/McNary Field","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":214,"latitude":44.9095,"longitude":-123.002998,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5811,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":5146,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":124.55}],"has_metar":true,"public":true},{"icao":"KEGV","iata":"EGV","local":"EGV","name":"Eagle River Union Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Eagle River","elevation_ft":1642,"latitude":45.9323005676,"longitude":-89.26830291750001,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":76,"surface":"A"},{"id":"13/31","length_ft":3400,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIMT","iata":"IMT","local":"IMT","name":"Ford Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Iron Mountain / Kingsford","elevation_ft":1182,"latitude":45.818401,"longitude":-88.114502,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":3808,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAK","iata":"CAK","local":"CAK","name":"Akron Canton Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":1228,"latitude":40.91609954833984,"longitude":-81.44219970703125,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7601,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":8204,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.05},{"id":"LCL/P","frequency_mhz":134.75}],"has_metar":true,"public":true},{"icao":"ZHCC","iata":"CGO","local":"","name":"Zhengzhou Xinzheng International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-41","municipality":"Zhengzhou","elevation_ft":495,"latitude":34.526497,"longitude":113.849165,"has_tower":true,"has_beacon":true,"runways":[{"id":"12L/30R","length_ft":11808,"width_ft":197,"surface":"H"},{"id":"12R/30L","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.45},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"ZHHH","iata":"WUH","local":"","name":"Wuhan Tianhe International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-42","municipality":"Wuhan (Huangpi)","elevation_ft":113,"latitude":30.774798,"longitude":114.213723,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.6},{"id":"TWR","frequency_mhz":118.02}],"has_metar":true,"public":true},{"icao":"KUES","iata":"UES","local":"UES","name":"Waukesha County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Waukesha","elevation_ft":911,"latitude":43.041000366211,"longitude":-88.237098693848,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5849,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":3599,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.875},{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"ZGNN","iata":"NNG","local":"","name":"Nanning Wuxu Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-45","municipality":"Nanning (Jiangnan)","elevation_ft":421,"latitude":22.608299,"longitude":108.171997,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":10499,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.25},{"id":"TWR","frequency_mhz":130.35}],"has_metar":true,"public":true},{"icao":"KDKK","iata":"DKK","local":"DKK","name":"Chautauqua County-Dunkirk Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Dunkirk","elevation_ft":693,"latitude":42.49247,"longitude":-79.273102,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELZ","iata":"ELZ","local":"ELZ","name":"Wellsville Municipal Airport - Tarantine Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Wellsville","elevation_ft":2124,"latitude":42.109501,"longitude":-77.989998,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZGSZ","iata":"SZX","local":"","name":"Shenzhen Bao'an International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-44","municipality":"Shenzhen (Bao'an)","elevation_ft":13,"latitude":22.639299,"longitude":113.810997,"has_tower":true,"has_beacon":true,"runways":[{"id":"16R/34","length_ft":12467,"width_ft":197,"surface":"H"},{"id":"15/33","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.45},{"id":"TWR","frequency_mhz":118.45}],"has_metar":true,"public":true},{"icao":"VAJB","iata":"JLR","local":"","name":"Jabalpur Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-MP","municipality":"Jabalpur","elevation_ft":1624,"latitude":23.177799,"longitude":80.052002,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6522,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALB","iata":"ALB","local":"ALB","name":"Albany International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Albany","elevation_ft":285,"latitude":42.74829864501953,"longitude":-73.80169677734375,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8500,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":7200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"D-ATIS","frequency_mhz":120.45}],"has_metar":true,"public":true},{"icao":"KAQW","iata":"","local":"AQW","name":"Harriman and West Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"North Adams","elevation_ft":654,"latitude":42.695899963378906,"longitude":-73.17040252685547,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZJHK","iata":"HAK","local":"","name":"Haikou Meilan International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-46","municipality":"Haikou (Meilan)","elevation_ft":75,"latitude":19.9349,"longitude":110.459,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.65},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KETB","iata":"ETB","local":"ETB","name":"West Bend Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"West Bend","elevation_ft":887,"latitude":43.422278,"longitude":-88.128966,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3897,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":4494,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MYGF","iata":"FPO","local":"","name":"Grand Bahama International Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-FP","municipality":"Freeport","elevation_ft":7,"latitude":26.5587005615,"longitude":-78.695602417,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":11018,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"EFKS","iata":"KAO","local":"","name":"Kuusamo Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-14","municipality":"Kuusamo","elevation_ft":866,"latitude":65.987602,"longitude":29.239401,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZJSY","iata":"SYX","local":"","name":"Sanya Phoenix International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-46","municipality":"Sanya (Tianya)","elevation_ft":92,"latitude":18.3029,"longitude":109.412003,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.45},{"id":"TWR","frequency_mhz":118.15}],"has_metar":true,"public":true},{"icao":"BGJN","iata":"JAV","local":"","name":"Ilulissat Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-AV","municipality":"Ilulissat","elevation_ft":95,"latitude":69.243202,"longitude":-51.057098,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2772,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFIG","iata":"","local":"FIG","name":"Clearfield Lawrence Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Clearfield","elevation_ft":1516,"latitude":41.049032,"longitude":-78.415003,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4499,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSBA","iata":"SBA","local":"SBA","name":"Santa Barbara Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Barbara","elevation_ft":13,"latitude":34.42620087,"longitude":-119.8399963,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6052,"width_ft":150,"surface":"A"},{"id":"15L/33R","length_ft":4180,"width_ft":75,"surface":"A"},{"id":"15R/33L","length_ft":4184,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.7},{"id":"ATIS","frequency_mhz":132.65}],"has_metar":true,"public":true},{"icao":"KDLZ","iata":"","local":"DLZ","name":"Delaware Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Delaware","elevation_ft":945,"latitude":40.279701,"longitude":-83.114799,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENGM","iata":"OSL","local":"","name":"Oslo Airport, Gardermoen","category":"large_airport","iso_country":"NO","iso_region":"NO-30","municipality":"Oslo","elevation_ft":681,"latitude":60.193901,"longitude":11.1004,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"01R/19L","length_ft":9678,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.15},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"ESIB","iata":"","local":"","name":"Såtenäs Air Base","category":"medium_airport","iso_country":"SE","iso_region":"SE-Q","municipality":"Såtenäs","elevation_ft":181,"latitude":58.42639923095703,"longitude":12.714400291442873,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7428,"width_ft":148,"surface":"H"},{"id":"11/29","length_ft":6342,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXV","iata":"AXV","local":"AXV","name":"Neil Armstrong Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wapakoneta","elevation_ft":913,"latitude":40.49340057,"longitude":-84.29889679,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZLLL","iata":"LHW","local":"","name":"Lanzhou Zhongchuan International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-62","municipality":"Lanzhou (Yongdeng)","elevation_ft":6388,"latitude":36.515202,"longitude":103.620003,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.45},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"ZLXY","iata":"XIY","local":"","name":"Xi'an Xianyang International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-61","municipality":"Xianyang (Weicheng)","elevation_ft":1572,"latitude":34.447102,"longitude":108.751999,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":12470,"width_ft":197,"surface":"H"},{"id":"05L/23R","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.45},{"id":"TWR","frequency_mhz":121.8}],"has_metar":true,"public":true},{"icao":"KLNN","iata":"LNN","local":"LNN","name":"Lake County Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Willoughby","elevation_ft":626,"latitude":41.683998,"longitude":-81.389702,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5028,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":4272,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCIC","iata":"CIC","local":"CIC","name":"Chico Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Chico","elevation_ft":240,"latitude":39.79539871,"longitude":-121.8580017,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":6724,"width_ft":150,"surface":"A"},{"id":"13R/31L","length_ft":3000,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.675},{"id":"LCL/P","frequency_mhz":121}],"has_metar":true,"public":true},{"icao":"KMHR","iata":"MHR","local":"MHR","name":"Sacramento Mather Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":98,"latitude":38.553902,"longitude":-121.297997,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":6081,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":11301,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.325},{"id":"LCL/P","frequency_mhz":120.65}],"has_metar":true,"public":true},{"icao":"KBKL","iata":"BKL","local":"BKL","name":"Burke Lakefront Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":583,"latitude":41.51750183105469,"longitude":-81.68329620361328,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":6604,"width_ft":150,"surface":"A"},{"id":"06R/24L","length_ft":5197,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.3},{"id":"ATIS","frequency_mhz":125.25}],"has_metar":true,"public":true},{"icao":"KGYY","iata":"GYY","local":"GYY","name":"Gary Chicago International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Gary","elevation_ft":591,"latitude":41.61629867553711,"longitude":-87.41280364990234,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3604,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":8859,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.6},{"id":"ATIS","frequency_mhz":134.575}],"has_metar":true,"public":true},{"icao":"VTSR","iata":"UNN","local":"","name":"Ranong Airport","category":"medium_airport","iso_country":"TH","iso_region":"TH-85","municipality":"Ranong","elevation_ft":57,"latitude":9.77762,"longitude":98.585503,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VTST","iata":"TST","local":"","name":"Trang Airport","category":"medium_airport","iso_country":"TH","iso_region":"TH-92","municipality":"Trang","elevation_ft":67,"latitude":7.50874,"longitude":99.6166,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7612,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCGF","iata":"CGF","local":"CGF","name":"Cuyahoga County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":879,"latitude":41.5651016235,"longitude":-81.4863967896,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5502,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"KCLE","iata":"CLE","local":"CLE","name":"Cleveland Hopkins International Airport","category":"large_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":791,"latitude":41.411701,"longitude":-81.8498,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"06R/24L","length_ft":9953,"width_ft":150,"surface":"C"},{"id":"10/28","length_ft":6018,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.5},{"id":"D-ATIS","frequency_mhz":127.85},{"id":"D-ATIS","frequency_mhz":132.375}],"has_metar":true,"public":true},{"icao":"KYNG","iata":"YNG","local":"YNG","name":"Youngstown Warren Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Youngstown/Warren","elevation_ft":1192,"latitude":41.26070023,"longitude":-80.67910004,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5002,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":9003,"width_ft":150,"surface":"A"},{"id":"143/323","length_ft":3501,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":123.75}],"has_metar":true,"public":true},{"icao":"ZPPP","iata":"KMG","local":"","name":"Kunming Changshui International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-53","municipality":"Kunming","elevation_ft":6903,"latitude":25.110313,"longitude":102.936743,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":14764,"width_ft":197,"surface":"H"},{"id":"03/21","length_ft":13123,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.45},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"KHWO","iata":"HWO","local":"HWO","name":"North Perry Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hollywood","elevation_ft":8,"latitude":26.0012,"longitude":-80.2407,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":3350,"width_ft":100,"surface":"A"},{"id":"01R/19L","length_ft":3260,"width_ft":100,"surface":"A"},{"id":"10L/28R","length_ft":3241,"width_ft":100,"surface":"A"},{"id":"10R/28L","length_ft":3255,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":132.1},{"id":"ATIS","frequency_mhz":135.475}],"has_metar":true,"public":true},{"icao":"KVVS","iata":"","local":"VVS","name":"Joseph A. Hardy Connellsville Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Connellsville","elevation_ft":1267,"latitude":39.960872,"longitude":-79.657745,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3833,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":2404,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VTSF","iata":"NST","local":"","name":"Nakhon Si Thammarat Airport","category":"medium_airport","iso_country":"TH","iso_region":"TH-80","municipality":"Nakhon Si Thammarat","elevation_ft":13,"latitude":8.539620399475098,"longitude":99.9447021484375,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PFTO","iata":"TKJ","local":"6K8","name":"Tok Junction Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Tok","elevation_ft":1639,"latitude":63.32949829,"longitude":-142.9539948,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":2509,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VTSE","iata":"CJM","local":"","name":"Chumphon Airport","category":"medium_airport","iso_country":"TH","iso_region":"TH-86","municipality":"Chumphon","elevation_ft":18,"latitude":10.7112,"longitude":99.361702,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PALU","iata":"LUR","local":"LUR","name":"Cape Lisburne LRRS Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cape Lisburne","elevation_ft":16,"latitude":68.87509918,"longitude":-166.1100006,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4800,"width_ft":135,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAVL","iata":"KVL","local":"KVL","name":"Kivalina Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kivalina","elevation_ft":13,"latitude":67.73619842529297,"longitude":-164.56300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRVL","iata":"RED","local":"RVL","name":"Mifflin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Reedsville","elevation_ft":819,"latitude":40.6773986816,"longitude":-77.6268005371,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZSAM","iata":"XMN","local":"","name":"Xiamen Gaoqi International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-35","municipality":"Xiamen","elevation_ft":59,"latitude":24.54400062561035,"longitude":118.12799835205078,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.25},{"id":"TWR","frequency_mhz":118.25}],"has_metar":true,"public":true},{"icao":"YBCG","iata":"OOL","local":"","name":"Gold Coast Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Gold Coast","elevation_ft":21,"latitude":-28.165962,"longitude":153.506641,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7684,"width_ft":148,"surface":"H"},{"id":"17/35","length_ft":1909,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YBWW","iata":"WTB","local":"","name":"Toowoomba Wellcamp Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Toowoomba","elevation_ft":1509,"latitude":-27.558332,"longitude":151.793335,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9416,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZSFZ","iata":"FOC","local":"FOC","name":"Fuzhou Changle International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-35","municipality":"Fuzhou","elevation_ft":46,"latitude":25.934669,"longitude":119.66318,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":11812,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.4},{"id":"TWR","frequency_mhz":118.45}],"has_metar":true,"public":true},{"icao":"NFFN","iata":"","local":"","name":"Nadi International Airport","category":"medium_airport","iso_country":"FJ","iso_region":"FJ-W","municipality":"Nadi","elevation_ft":59,"latitude":-17.755399703979492,"longitude":177.4429931640625,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":10322,"width_ft":148,"surface":"H"},{"id":"09/27","length_ft":6693,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YGEL","iata":"GET","local":"","name":"Geraldton Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"Geraldton","elevation_ft":121,"latitude":-28.796101,"longitude":114.707001,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7838,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":2953,"width_ft":59,"surface":"S"},{"id":"14/32","length_ft":2769,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YPDN","iata":"DRW","local":"","name":"Darwin International Airport / RAAF Darwin","category":"large_airport","iso_country":"AU","iso_region":"AU-NT","municipality":"Darwin","elevation_ft":103,"latitude":-12.41497,"longitude":130.88185,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11004,"width_ft":197,"surface":"H"},{"id":"18/36","length_ft":5000,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YGLA","iata":"GLT","local":"4680","name":"Gladstone Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Gladstone","elevation_ft":64,"latitude":-23.869763,"longitude":151.225439,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6037,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YMML","iata":"MEL","local":"","name":"Melbourne International Airport","category":"large_airport","iso_country":"AU","iso_region":"AU-VIC","municipality":"Melbourne","elevation_ft":434,"latitude":-37.673302,"longitude":144.843002,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":12000,"width_ft":197,"surface":"H"},{"id":"09/27","length_ft":7500,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":114.1},{"id":"TWR","frequency_mhz":120.5}],"has_metar":true,"public":true},{"icao":"YPAD","iata":"ADL","local":"","name":"Adelaide International Airport","category":"large_airport","iso_country":"AU","iso_region":"AU-SA","municipality":"Adelaide","elevation_ft":20,"latitude":-34.947512,"longitude":138.533393,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10171,"width_ft":148,"surface":"H"},{"id":"12/30","length_ft":5420,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YPWR","iata":"UMR","local":"","name":"Woomera Airfield","category":"small_airport","iso_country":"AU","iso_region":"AU-SA","municipality":"Woomera","elevation_ft":548,"latitude":-31.14419937133789,"longitude":136.81700134277344,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/35","length_ft":7782,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASH","iata":"ASH","local":"ASH","name":"Nashua Airport / Boire Field","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Nashua","elevation_ft":199,"latitude":42.7817,"longitude":-71.514801,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.1},{"id":"LCL/P","frequency_mhz":133.2}],"has_metar":true,"public":true},{"icao":"ZSHC","iata":"HGH","local":"","name":"Hangzhou Xiaoshan International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-33","municipality":"Hangzhou","elevation_ft":23,"latitude":30.23609,"longitude":120.428865,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":11812,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.25},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KMNN","iata":"MNN","local":"MNN","name":"Marion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Marion","elevation_ft":993,"latitude":40.6161994934,"longitude":-83.06349945070001,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFDY","iata":"FDY","local":"FDY","name":"Findlay Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Findlay","elevation_ft":813,"latitude":41.0135002136,"longitude":-83.66870117190001,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5883,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":6499,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PTPN","iata":"PNI","local":"PNI","name":"Pohnpei International Airport","category":"medium_airport","iso_country":"FM","iso_region":"FM-PNI","municipality":"Pohnpei Island","elevation_ft":10,"latitude":6.985099792480469,"longitude":158.20899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6600,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMFD","iata":"MFD","local":"MFD","name":"Mansfield Lahm Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1297,"latitude":40.82139968869999,"longitude":-82.5166015625,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6819,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":9001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":125.3}],"has_metar":true,"public":true},{"icao":"KOYM","iata":"STQ","local":"OYM","name":"St Marys Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"St Marys","elevation_ft":1934,"latitude":41.412498474121,"longitude":-78.502601623535,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLCI","iata":"LCI","local":"LCI","name":"Laconia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Laconia / Gilford","elevation_ft":545,"latitude":43.572701,"longitude":-71.4189,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5890,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZSNB","iata":"NGB","local":"","name":"Ningbo Lishe International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-33","municipality":"Ningbo","elevation_ft":13,"latitude":29.82670021057129,"longitude":121.46199798583984,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.45},{"id":"TWR","frequency_mhz":118.35}],"has_metar":true,"public":true},{"icao":"KOAK","iata":"OAK","local":"OAK","name":"Metropolitan Oakland International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Oakland","elevation_ft":9,"latitude":37.721298,"longitude":-122.221001,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":5457,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":6213,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":10520,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":3376,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"LCL/P","frequency_mhz":127.2},{"id":"D-ATIS","frequency_mhz":133.775}],"has_metar":true,"public":true},{"icao":"KSCK","iata":"SCK","local":"SCK","name":"Stockton Metropolitan Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":33,"latitude":37.894199371338,"longitude":-121.2379989624,"has_tower":true,"has_beacon":true,"runways":[{"id":"11L/29R","length_ft":10249,"width_ft":150,"surface":"A"},{"id":"11R/29L","length_ft":4448,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.25},{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KSFO","iata":"SFO","local":"SFO","name":"San Francisco International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Francisco","elevation_ft":13,"latitude":37.61899948120117,"longitude":-122.375,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":7650,"width_ft":200,"surface":"A"},{"id":"01R/19L","length_ft":8650,"width_ft":200,"surface":"A"},{"id":"10L/28R","length_ft":11870,"width_ft":200,"surface":"A"},{"id":"10R/28L","length_ft":11381,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":113.7},{"id":"D-ATIS","frequency_mhz":115.8},{"id":"D-ATIS","frequency_mhz":118.85},{"id":"LCL/P","frequency_mhz":120.5}],"has_metar":true,"public":true},{"icao":"WIHH","iata":"HLP","local":"","name":"Halim Perdanakusuma International Airport","category":"medium_airport","iso_country":"ID","iso_region":"ID-JK","municipality":"Jakarta","elevation_ft":84,"latitude":-6.266610145568848,"longitude":106.89099884033205,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.8},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"WALL","iata":"BPN","local":"","name":"Sultan Aji Muhammad Sulaiman Sepinggan International Airport","category":"large_airport","iso_country":"ID","iso_region":"ID-KI","municipality":"Balikpapan","elevation_ft":12,"latitude":-1.268342,"longitude":116.89452,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WIII","iata":"CGK","local":"","name":"Soekarno-Hatta International Airport","category":"large_airport","iso_country":"ID","iso_region":"ID-BT","municipality":"Jakarta","elevation_ft":34,"latitude":-6.1255698204,"longitude":106.65599823,"has_tower":true,"has_beacon":true,"runways":[{"id":"07R/25L","length_ft":12008,"width_ft":197,"surface":"H"},{"id":"07L/25R","length_ft":11811,"width_ft":197,"surface":"H"},{"id":"06/24","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.85},{"id":"TWR","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"YCIN","iata":"DCN","local":"","name":"RAAF Base Curtin","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"Derby","elevation_ft":300,"latitude":-17.580458,"longitude":123.828449,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":10003,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZSOF","iata":"HFE","local":"","name":"Hefei Xinqiao International Airport","category":"medium_airport","iso_country":"CN","iso_region":"CN-34","municipality":"Hefei","elevation_ft":207,"latitude":31.98779,"longitude":116.9769,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9843,"width_ft":164,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.85},{"id":"TWR","frequency_mhz":118.75}],"has_metar":true,"public":true},{"icao":"ZSPD","iata":"PVG","local":"","name":"Shanghai Pudong International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-31","municipality":"Shanghai (Pudong)","elevation_ft":13,"latitude":31.1434,"longitude":121.805,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":13124,"width_ft":197,"surface":"H"},{"id":"16/34","length_ft":12467,"width_ft":197,"surface":"H"},{"id":"17R/35L","length_ft":11155,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.85},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"AYMH","iata":"HGU","local":"","name":"Mount Hagen Kagamuga Airport","category":"medium_airport","iso_country":"PG","iso_region":"PG-WHM","municipality":"Mount Hagen","elevation_ft":5388,"latitude":-5.828212,"longitude":144.299412,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7185,"width_ft":98,"surface":"H"},{"id":"08/26","length_ft":3599,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WAPP","iata":"AMQ","local":"","name":"Pattimura International Airport","category":"medium_airport","iso_country":"ID","iso_region":"ID-MA","municipality":"Ambon","elevation_ft":33,"latitude":-3.71026,"longitude":128.089005,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIBL","iata":"BDH","local":"","name":"Bandar Lengeh International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-22","municipality":"Bandar Lengeh","elevation_ft":67,"latitude":26.532283,"longitude":54.82484,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OISL","iata":"LRR","local":"","name":"Lar Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-07","municipality":"Lar","elevation_ft":2641,"latitude":27.6747,"longitude":54.383301,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10397,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MKJS","iata":"MBJ","local":"","name":"Sangster International Airport","category":"medium_airport","iso_country":"JM","iso_region":"JM-08","municipality":"Montego Bay","elevation_ft":4,"latitude":18.503700256347656,"longitude":-77.91339874267578,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":8734,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.7},{"id":"TWR","frequency_mhz":120.8}],"has_metar":true,"public":true},{"icao":"MTPP","iata":"PAP","local":"","name":"Toussaint Louverture International Airport","category":"large_airport","iso_country":"HT","iso_region":"HT-OU","municipality":"Port-au-Prince","elevation_ft":122,"latitude":18.58,"longitude":-72.292503,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":9974,"width_ft":141,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KJFK","iata":"JFK","local":"JFK","name":"John F Kennedy International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NY","municipality":"New York","elevation_ft":13,"latitude":40.639447,"longitude":-73.779317,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":12079,"width_ft":200,"surface":"C"},{"id":"04R/22L","length_ft":8400,"width_ft":200,"surface":"A"},{"id":"13L/31R","length_ft":10000,"width_ft":200,"surface":"C"},{"id":"13R/31L","length_ft":14511,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":115.4},{"id":"D-ATIS","frequency_mhz":117.7},{"id":"LCL/P","frequency_mhz":119.1},{"id":"LCL/P","frequency_mhz":123.9},{"id":"D-ATIS","frequency_mhz":128.725}],"has_metar":true,"public":true},{"icao":"KLGA","iata":"LGA","local":"LGA","name":"La Guardia Airport","category":"large_airport","iso_country":"US","iso_region":"US-NY","municipality":"New York","elevation_ft":21,"latitude":40.777199,"longitude":-73.872597,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7001,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":7003,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"D-ATIS","frequency_mhz":125.95},{"id":"D-ATIS","frequency_mhz":127.05}],"has_metar":true,"public":true},{"icao":"ZSSS","iata":"SHA","local":"","name":"Shanghai Hongqiao International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-31","municipality":"Shanghai (Minhang)","elevation_ft":10,"latitude":31.198104,"longitude":121.33426,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":11155,"width_ft":148,"surface":"H"},{"id":"18R/36L","length_ft":10827,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.25},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"PAFA","iata":"FAI","local":"FAI","name":"Fairbanks International Airport","category":"large_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":439,"latitude":64.81510162,"longitude":-147.8560028,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":2900,"width_ft":75,"surface":"G"},{"id":"02L/20R","length_ft":11800,"width_ft":150,"surface":"A"},{"id":"02R/20L","length_ft":4510,"width_ft":75,"surface":"A"},{"id":"02W/20W","length_ft":5400,"width_ft":100,"surface":"W"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":124.4}],"has_metar":true,"public":true},{"icao":"KBTP","iata":"BTP","local":"BTP","name":"Pittsburgh/Butler Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Butler","elevation_ft":1248,"latitude":40.776901,"longitude":-79.949699,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4801,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIDI","iata":"IDI","local":"IDI","name":"Indiana County–Jimmy Stewart Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Indiana","elevation_ft":1405,"latitude":40.631119,"longitude":-79.101884,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSFM","iata":"SFM","local":"SFM","name":"Sanford Seacoast Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Sanford","elevation_ft":244,"latitude":43.393901824951,"longitude":-70.708000183105,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6389,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVSF","iata":"VSF","local":"VSF","name":"Hartness State Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"North Springfield","elevation_ft":577,"latitude":43.343601,"longitude":-72.517303,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5501,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDAW","iata":"","local":"DAW","name":"Skyhaven Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Rochester","elevation_ft":322,"latitude":43.28409957885742,"longitude":-70.9292984008789,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUB","iata":"YUB","local":"","name":"Tuktoyaktuk / James Gruben Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Tuktoyaktuk","elevation_ft":15,"latitude":69.433296,"longitude":-133.026001,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4600,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHD","iata":"PHD","local":"PHD","name":"Harry Clever Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"New Philadelphia","elevation_ft":894,"latitude":40.470901489258,"longitude":-81.419700622559,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":1907,"width_ft":70,"surface":"T"},{"id":"15/33","length_ft":3951,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCBM","iata":"CBM","local":"CBM","name":"Columbus Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Columbus","elevation_ft":219,"latitude":33.643799,"longitude":-88.443802,"has_tower":true,"has_beacon":true,"runways":[{"id":"13C/31C","length_ft":12004,"width_ft":300,"surface":"A"},{"id":"13L/31R","length_ft":8001,"width_ft":150,"surface":"A"},{"id":"13R/31L","length_ft":6320,"width_ft":175,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":115.2},{"id":"LCL/P","frequency_mhz":126.65}],"has_metar":true,"public":true},{"icao":"KGWO","iata":"GWO","local":"GWO","name":"Greenwood–Leflore Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Greenwood","elevation_ft":162,"latitude":33.4943008423,"longitude":-90.0847015381,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5011,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.35}],"has_metar":true,"public":true},{"icao":"KCON","iata":"CON","local":"CON","name":"Concord Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NH","municipality":"Concord","elevation_ft":342,"latitude":43.20270157,"longitude":-71.50229645,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3200,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":6005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSEG","iata":"SEG","local":"SEG","name":"Penn Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Selinsgrove","elevation_ft":450,"latitude":40.820598602295,"longitude":-76.863899230957,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4760,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAOT","iata":"OTZ","local":"OTZ","name":"Ralph Wien Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kotzebue","elevation_ft":14,"latitude":66.88469696,"longitude":-162.598999,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6300,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":3876,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PFEL","iata":"ELI","local":"ELI","name":"Elim Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Elim","elevation_ft":162,"latitude":64.61470032,"longitude":-162.2720032,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3401,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PASC","iata":"SCC","local":"SCC","name":"Deadhorse Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Deadhorse","elevation_ft":65,"latitude":70.19470215,"longitude":-148.4649963,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PATQ","iata":"ATK","local":"ATK","name":"Atqasuk Edward Burnell Sr Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Atqasuk","elevation_ft":96,"latitude":70.46704,"longitude":-157.436013,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4370,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAKU","iata":"UUK","local":"UBW","name":"Ugnu-Kuparuk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kuparuk","elevation_ft":67,"latitude":70.33080291750001,"longitude":-149.598007202,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6551,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAQT","iata":"NUI","local":"AQT","name":"Nuiqsut Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nuiqsut","elevation_ft":38,"latitude":70.209999,"longitude":-151.005998,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4589,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAKV","iata":"KAL","local":"KAL","name":"Kaltag Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kaltag","elevation_ft":181,"latitude":64.31909943,"longitude":-158.7409973,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3986,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPJC","iata":"","local":"PJC","name":"Zelienople Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Zelienople","elevation_ft":898,"latitude":40.80160141,"longitude":-80.16069794,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4933,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVLL","iata":"","local":"VLL","name":"Oakland Troy Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Troy","elevation_ft":727,"latitude":42.54290009,"longitude":-83.17790222,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3549,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMTC","iata":"MTC","local":"MTC","name":"Selfridge Air National Guard Base Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mount Clemens","elevation_ft":580,"latitude":42.613463,"longitude":-82.836919,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":9000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.15},{"id":"ATIS","frequency_mhz":125.325}],"has_metar":true,"public":true},{"icao":"KDET","iata":"DET","local":"DET","name":"Coleman A. Young Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":626,"latitude":42.40919876,"longitude":-83.00990295,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3712,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":5092,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.3},{"id":"ATIS","frequency_mhz":124.875}],"has_metar":true,"public":true},{"icao":"KPHN","iata":"PHN","local":"PHN","name":"St Clair County International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Port Huron","elevation_ft":650,"latitude":42.9109993,"longitude":-82.52890015,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5104,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMHT","iata":"MHT","local":"MHT","name":"Manchester-Boston Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NH","municipality":"Manchester","elevation_ft":266,"latitude":42.932598,"longitude":-71.435699,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7651,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":9250,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.55},{"id":"LCL/P","frequency_mhz":121.3}],"has_metar":true,"public":true},{"icao":"KBVI","iata":"BFP","local":"BVI","name":"Beaver County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Beaver Falls","elevation_ft":1253,"latitude":40.772499,"longitude":-80.391403,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4501,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.35},{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KHSV","iata":"HSV","local":"HSV","name":"Huntsville International Carl T Jones Field","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":629,"latitude":34.637199,"longitude":-86.775101,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":10001,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":12600,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.25},{"id":"LCL/P","frequency_mhz":127.6}],"has_metar":true,"public":true},{"icao":"CYHD","iata":"YHD","local":"","name":"Dryden Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Dryden","elevation_ft":1354,"latitude":49.831699,"longitude":-92.744202,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5993,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRL","iata":"YRL","local":"","name":"Red Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Red Lake","elevation_ft":1265,"latitude":51.06689834594727,"longitude":-93.79309844970705,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTZR","iata":"","local":"TZR","name":"Bolton Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":905,"latitude":39.90119934082031,"longitude":-83.13690185546875,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.1}],"has_metar":true,"public":true},{"icao":"KCMH","iata":"CMH","local":"CMH","name":"John Glenn Columbus International Airport","category":"large_airport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":815,"latitude":39.998001,"longitude":-82.891899,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":8000,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":10114,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":124.6},{"id":"LCL/P","frequency_mhz":132.7}],"has_metar":true,"public":true},{"icao":"MUSC","iata":"SNU","local":"","name":"Abel Santamaria Airport","category":"medium_airport","iso_country":"CU","iso_region":"CU-05","municipality":"Santa Clara","elevation_ft":338,"latitude":22.492201,"longitude":-79.943604,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9898,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLSV","iata":"LSV","local":"LSV","name":"Nellis Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":1870,"latitude":36.2361984253,"longitude":-115.033996582,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":10120,"width_ft":200,"surface":"C"},{"id":"03R/21L","length_ft":10051,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":132.55}],"has_metar":true,"public":true},{"icao":"KVGT","iata":"VGT","local":"VGT","name":"North Las Vegas Metropolitan International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2205,"latitude":36.210701,"longitude":-115.194,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5005,"width_ft":75,"surface":"A"},{"id":"12L/30R","length_ft":4199,"width_ft":75,"surface":"A"},{"id":"12R/30L","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.05},{"id":"LCL/P","frequency_mhz":125.7}],"has_metar":true,"public":true},{"icao":"KBIH","iata":"BIH","local":"BIH","name":"Eastern Sierra Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Bishop","elevation_ft":4124,"latitude":37.3731002808,"longitude":-118.363998413,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5567,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":7498,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5600,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAS","iata":"LAS","local":"LAS","name":"Harry Reid International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2181,"latitude":36.083361,"longitude":-115.151817,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":8988,"width_ft":150,"surface":"C"},{"id":"01R/19L","length_ft":9771,"width_ft":150,"surface":"C"},{"id":"08L/26R","length_ft":14515,"width_ft":150,"surface":"C"},{"id":"08R/26L","length_ft":10526,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.75},{"id":"LCL/P","frequency_mhz":119.9},{"id":"D-ATIS","frequency_mhz":132.4}],"has_metar":true,"public":true},{"icao":"CYLD","iata":"YLD","local":"","name":"Chapleau Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Chapleau","elevation_ft":1470,"latitude":47.81999969482422,"longitude":-83.3467025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5003,"width_ft":100,"surface":"A"},{"id":"05/223","length_ft":3006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MUCC","iata":"CCC","local":"","name":"Jardines Del Rey Airport","category":"medium_airport","iso_country":"CU","iso_region":"CU-08","municipality":"Cayo Coco","elevation_ft":13,"latitude":22.4610004425,"longitude":-78.32839965820001,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOSU","iata":"OSU","local":"OSU","name":"The Ohio State University Airport - Don Scott Field","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":905,"latitude":40.0798,"longitude":-83.072998,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3562,"width_ft":100,"surface":"A"},{"id":"09L/27R","length_ft":2994,"width_ft":100,"surface":"A"},{"id":"09R/27L","length_ft":5004,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.8},{"id":"ATIS","frequency_mhz":121.35}],"has_metar":true,"public":true},{"icao":"CYWG","iata":"YWG","local":"YWG","name":"Winnipeg / James Armstrong Richardson International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Winnipeg","elevation_ft":783,"latitude":49.9099998474,"longitude":-97.2398986816,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":11000,"width_ft":200,"surface":"A"},{"id":"13/31","length_ft":8701,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.2},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KUNV","iata":"SCE","local":"UNV","name":"University Park Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"State College","elevation_ft":1239,"latitude":40.849374,"longitude":-77.84852,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6701,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":127.65},{"id":"LCL/P","frequency_mhz":128.475}],"has_metar":true,"public":true},{"icao":"ZUCK","iata":"CKG","local":"","name":"Chongqing Jiangbei International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-50","municipality":"Chongqing","elevation_ft":1365,"latitude":29.712254,"longitude":106.651895,"has_tower":true,"has_beacon":true,"runways":[{"id":"02R/20L","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"02L/20R","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.4},{"id":"TWR","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KBLM","iata":"BLM","local":"BLM","name":"Monmouth Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Belmar/Farmingdale","elevation_ft":153,"latitude":40.18690109,"longitude":-74.12490082,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3508,"width_ft":50,"surface":"A"},{"id":"14/32","length_ft":7345,"width_ft":85,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBZN","iata":"BZN","local":"BZN","name":"Gallatin Field","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":4473,"latitude":45.77750015,"longitude":-111.1529999,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2650,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":5050,"width_ft":75,"surface":"A"},{"id":"11G/29G","length_ft":2802,"width_ft":80,"surface":"T"},{"id":"12/30","length_ft":8994,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":135.425}],"has_metar":true,"public":true},{"icao":"KLDJ","iata":"LDJ","local":"LDJ","name":"Linden Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Linden","elevation_ft":23,"latitude":40.617401123,"longitude":-74.2445983887,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4140,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUH","iata":"","local":"DUH","name":"Toledo Suburban Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lambertville","elevation_ft":669,"latitude":41.73590087890625,"longitude":-83.65540313720703,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4807,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZR","iata":"YZR","local":"","name":"Chris Hadfield Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sarnia","elevation_ft":594,"latitude":42.9994010925293,"longitude":-82.30889892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2989,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFRG","iata":"FRG","local":"FRG","name":"Republic Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Farmingdale","elevation_ft":82,"latitude":40.7288017273,"longitude":-73.4133987427,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5516,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":6833,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":79,"width_ft":79,"surface":"A"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.8},{"id":"ATIS","frequency_mhz":126.65}],"has_metar":true,"public":true},{"icao":"KMDW","iata":"MDW","local":"MDW","name":"Chicago Midway International Airport","category":"large_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":620,"latitude":41.785999,"longitude":-87.752403,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":5507,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":6445,"width_ft":150,"surface":"A"},{"id":"13C/31C","length_ft":6522,"width_ft":150,"surface":"A"},{"id":"13L/31R","length_ft":5141,"width_ft":150,"surface":"A"},{"id":"13R/31L","length_ft":3859,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":132.75},{"id":"LCL/P","frequency_mhz":135.2}],"has_metar":true,"public":true},{"icao":"KORD","iata":"ORD","local":"ORD","name":"Chicago O'Hare International Airport","category":"large_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":672,"latitude":41.9786,"longitude":-87.9048,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":7500,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":8075,"width_ft":150,"surface":"A"},{"id":"09C/27C","length_ft":11245,"width_ft":200,"surface":"C"},{"id":"09L/27R","length_ft":7500,"width_ft":150,"surface":"C"},{"id":"09R/27L","length_ft":11260,"width_ft":150,"surface":"A"},{"id":"10C/28C","length_ft":10800,"width_ft":200,"surface":"C"},{"id":"10L/28R","length_ft":13000,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":7500,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":200,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75},{"id":"LCL/P","frequency_mhz":120.75},{"id":"LCL/P","frequency_mhz":121.15},{"id":"LCL/P","frequency_mhz":126.9},{"id":"LCL/P","frequency_mhz":126.9},{"id":"LCL/P","frequency_mhz":128.15},{"id":"LCL/P","frequency_mhz":132.7},{"id":"LCL/P","frequency_mhz":133},{"id":"D-ATIS","frequency_mhz":135.4}],"has_metar":true,"public":true},{"icao":"KMRT","iata":"","local":"MRT","name":"Union County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Marysville","elevation_ft":1021,"latitude":40.224700927734375,"longitude":-83.35160064697266,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2702,"width_ft":81,"surface":"T"},{"id":"09/27","length_ft":4218,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLGB","iata":"LGB","local":"LGB","name":"Long Beach Airport (Daugherty Field)","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Long Beach","elevation_ft":60,"latitude":33.816523,"longitude":-118.149891,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":6192,"width_ft":150,"surface":"A"},{"id":"08R/26L","length_ft":3918,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":10000,"width_ft":200,"surface":"A"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"A"},{"id":"H3","length_ft":300,"width_ft":35,"surface":"A"},{"id":"H4","length_ft":20,"width_ft":20,"surface":"A"},{"id":"H5","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"KRIV","iata":"RIV","local":"RIV","name":"March Air Reserve Base","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Riverside","elevation_ft":1536,"latitude":33.880699,"longitude":-117.259003,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3061,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":13302,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.65},{"id":"ATIS","frequency_mhz":134.75}],"has_metar":true,"public":true},{"icao":"KRCA","iata":"RCA","local":"RCA","name":"Ellsworth Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Rapid City","elevation_ft":3276,"latitude":44.14500046,"longitude":-103.1039963,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":13497,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.625},{"id":"LCL/P","frequency_mhz":126.05}],"has_metar":true,"public":true},{"icao":"KEDW","iata":"EDW","local":"EDW","name":"Edwards Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Edwards","elevation_ft":2312,"latitude":34.905399,"longitude":-117.884003,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":12000,"width_ft":200,"surface":"A"},{"id":"05R/23L","length_ft":15024,"width_ft":300,"surface":"C"},{"id":"07/25","length_ft":8000,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":127.425}],"has_metar":true,"public":true},{"icao":"KEWR","iata":"EWR","local":"EWR","name":"Newark Liberty International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Newark","elevation_ft":18,"latitude":40.692501,"longitude":-74.168701,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":11000,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":6726,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":54,"width_ft":54,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":115.7},{"id":"LCL/P","frequency_mhz":118.3},{"id":"D-ATIS","frequency_mhz":134.825}],"has_metar":true,"public":true},{"icao":"KISP","iata":"ISP","local":"ISP","name":"Long Island Mac Arthur Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Islip","elevation_ft":99,"latitude":40.79520035,"longitude":-73.10019684,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7006,"width_ft":150,"surface":"A"},{"id":"15L/33R","length_ft":3175,"width_ft":75,"surface":"A"},{"id":"15R/33L","length_ft":5186,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":120.725}],"has_metar":true,"public":true},{"icao":"KBGR","iata":"BGR","local":"BGR","name":"Bangor International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ME","municipality":"Bangor","elevation_ft":192,"latitude":44.8074,"longitude":-68.828102,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":11440,"width_ft":200,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"KTEB","iata":"TEB","local":"TEB","name":"Teterboro Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Teterboro","elevation_ft":9,"latitude":40.85010147089999,"longitude":-74.060798645,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7000,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":6013,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":114.2},{"id":"LCL/P","frequency_mhz":119.5},{"id":"D-ATIS","frequency_mhz":132.85}],"has_metar":true,"public":true},{"icao":"KIWA","iata":"AZA","local":"IWA","name":"Phoenix–Mesa Gateway Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1382,"latitude":33.3078,"longitude":-111.654999,"has_tower":true,"has_beacon":true,"runways":[{"id":"12C/30C","length_ft":10201,"width_ft":150,"surface":"A"},{"id":"12L/30R","length_ft":9300,"width_ft":150,"surface":"C"},{"id":"12R/30L","length_ft":10401,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.6},{"id":"ATIS","frequency_mhz":133.5}],"has_metar":true,"public":true},{"icao":"MMML","iata":"MXL","local":"M1L","name":"Aeropuerto Internacional Gral. Rodolfo Sánchez Taboada","category":"large_airport","iso_country":"MX","iso_region":"MX-BCN","municipality":"Mexicali","elevation_ft":74,"latitude":32.628479,"longitude":-115.247827,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":8530,"width_ft":144,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.6},{"id":"TWR","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KMEM","iata":"MEM","local":"MEM","name":"Memphis International Airport","category":"large_airport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":341,"latitude":35.04240036010742,"longitude":-89.97669982910156,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":8946,"width_ft":150,"surface":"C"},{"id":"18C/36C","length_ft":11120,"width_ft":150,"surface":"C"},{"id":"18L/36R","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"18R/36L","length_ft":9320,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"LCL/P","frequency_mhz":119.7},{"id":"D-ATIS","frequency_mhz":127.75},{"id":"LCL/P","frequency_mhz":128.425}],"has_metar":true,"public":true},{"icao":"KNMM","iata":"","local":"NMM","name":"Naval Air Station Meridian / McCain Field","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Lauderdale","elevation_ft":316,"latitude":32.5531,"longitude":-88.55406,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":8003,"width_ft":200,"surface":"C"},{"id":"01R/19L","length_ft":8000,"width_ft":200,"surface":"C"},{"id":"10/28","length_ft":6402,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KARB","iata":"ARB","local":"ARB","name":"Ann Arbor Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Ann Arbor","elevation_ft":839,"latitude":42.2229995728,"longitude":-83.74559783939999,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3505,"width_ft":75,"surface":"C"},{"id":"12/30","length_ft":2750,"width_ft":110,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3},{"id":"ATIS","frequency_mhz":134.55}],"has_metar":true,"public":true},{"icao":"MGGT","iata":"GUA","local":"","name":"La Aurora Airport","category":"large_airport","iso_country":"GT","iso_region":"GT-GU","municipality":"Guatemala City","elevation_ft":4952,"latitude":14.5833,"longitude":-90.527496,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":9800,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.5},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"KADG","iata":"ADG","local":"ADG","name":"Lenawee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Adrian","elevation_ft":798,"latitude":41.866205,"longitude":-84.077983,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":1779,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FYOA","iata":"OND","local":"","name":"Ondangwa Airport","category":"medium_airport","iso_country":"UNKNOWN","iso_region":"NA-ON","municipality":"Ondangwa","elevation_ft":3599,"latitude":-17.878201,"longitude":15.9526,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9265,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBOS","iata":"BOS","local":"BOS","name":"Logan International Airport","category":"large_airport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":20,"latitude":42.3643,"longitude":-71.005203,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":7864,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":10006,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":7001,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"15L/33R","length_ft":2557,"width_ft":100,"surface":"A"},{"id":"15R/33L","length_ft":10083,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.725},{"id":"LCL/P","frequency_mhz":128.8},{"id":"LCL/P","frequency_mhz":132.225},{"id":"D-ATIS","frequency_mhz":135},{"id":"D-ATIS","frequency_mhz":135}],"has_metar":true,"public":true},{"icao":"KBVY","iata":"BVY","local":"BVY","name":"Beverly Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"Beverly / Danvers","elevation_ft":107,"latitude":42.584202,"longitude":-70.916496,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4755,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.2},{"id":"LCL/P","frequency_mhz":125.2}],"has_metar":true,"public":true},{"icao":"KRQB","iata":"WBR","local":"RQB","name":"Roben Hood Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Big Rapids","elevation_ft":990,"latitude":43.7225990295,"longitude":-85.50409698490002,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4300,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":2699,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWM","iata":"LWM","local":"LWM","name":"Lawrence Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"Lawrence","elevation_ft":148,"latitude":42.7172012329,"longitude":-71.1233978271,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3654,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.25},{"id":"ATIS","frequency_mhz":126.75}],"has_metar":true,"public":true},{"icao":"SBBE","iata":"BEL","local":"PA0001","name":"Val de Cans/Júlio Cezar Ribeiro International Airport","category":"large_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Belém","elevation_ft":54,"latitude":-1.379279,"longitude":-48.476207,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9186,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":6004,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBBR","iata":"BSB","local":"DF0001","name":"Presidente Juscelino Kubitschek International Airport","category":"large_airport","iso_country":"BR","iso_region":"BR-DF","municipality":"Brasília","elevation_ft":3497,"latitude":-15.869167,"longitude":-47.920834,"has_tower":true,"has_beacon":true,"runways":[{"id":"11R/29L","length_ft":10827,"width_ft":148,"surface":"H"},{"id":"11L/29R","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.8},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"SBMK","iata":"MOC","local":"MG0004","name":"Mário Ribeiro Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-MG","municipality":"Montes Claros","elevation_ft":2191,"latitude":-16.706919,"longitude":-43.818901,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBMQ","iata":"MCP","local":"AP0001","name":"Macapá - Alberto Alcolumbre International Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AP","municipality":"Macapá","elevation_ft":56,"latitude":0.050664,"longitude":-51.072201,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOK","iata":"FOK","local":"FOK","name":"Francis S Gabreski Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Westhampton Beach","elevation_ft":67,"latitude":40.8437004089,"longitude":-72.6317977905,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5100,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.3}],"has_metar":true,"public":true},{"icao":"MNMG","iata":"MGA","local":"","name":"Augusto C. Sandino (Managua) International Airport","category":"medium_airport","iso_country":"NI","iso_region":"NI-MN","municipality":"Managua","elevation_ft":194,"latitude":12.14150047302246,"longitude":-86.16819763183594,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":8012,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"SKSP","iata":"ADZ","local":"ADZ","name":"Gustavo Rojas Pinilla International Airport","category":"medium_airport","iso_country":"CO","iso_region":"CO-SAP","municipality":"San Andrés","elevation_ft":19,"latitude":12.5836,"longitude":-81.7112,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7792,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MPDA","iata":"DAV","local":"","name":"Enrique Malek International Airport","category":"medium_airport","iso_country":"PA","iso_region":"PA-4","municipality":"David","elevation_ft":89,"latitude":8.391,"longitude":-82.434998,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MPTO","iata":"PTY","local":"","name":"Tocumen International Airport","category":"large_airport","iso_country":"PA","iso_region":"PA-8","municipality":"Tocumen","elevation_ft":135,"latitude":9.0713596344,"longitude":-79.3834991455,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"02/20","length_ft":5807,"width_ft":115,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"MROC","iata":"SJO","local":"","name":"Juan Santamaría International Airport","category":"medium_airport","iso_country":"CR","iso_region":"CR-A","municipality":"San José (Alajuela)","elevation_ft":3021,"latitude":9.99386,"longitude":-84.208801,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":9882,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"SKCG","iata":"CTG","local":"CTG","name":"Rafael Nuñez International Airport","category":"medium_airport","iso_country":"CO","iso_region":"CO-BOL","municipality":"Cartagena","elevation_ft":4,"latitude":10.4424,"longitude":-75.513,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7841,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SKBG","iata":"BGA","local":"BGA","name":"Palonegro Airport","category":"medium_airport","iso_country":"CO","iso_region":"CO-SAN","municipality":"Bucaramanga","elevation_ft":3897,"latitude":7.1265,"longitude":-73.1848,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6893,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SVBC","iata":"BLA","local":"","name":"General José Antonio Anzoategui International Airport","category":"large_airport","iso_country":"VE","iso_region":"VE-B","municipality":"Barcelona","elevation_ft":30,"latitude":10.111111,"longitude":-64.692222,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9842,"width_ft":131,"surface":"H"},{"id":"02/20","length_ft":9186,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SVMI","iata":"CCS","local":"","name":"Simón Bolívar International Airport","category":"large_airport","iso_country":"VE","iso_region":"VE-X","municipality":"Caracas","elevation_ft":234,"latitude":10.601194,"longitude":-66.991222,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":11483,"width_ft":148,"surface":"H"},{"id":"09/27","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.95},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"SVVA","iata":"VLN","local":"","name":"Arturo Michelena International Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-G","municipality":"Valencia","elevation_ft":1411,"latitude":10.14973258972168,"longitude":-67.92839813232422,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TNCA","iata":"AUA","local":"","name":"Queen Beatrix International Airport","category":"large_airport","iso_country":"AW","iso_region":"AW-U-A","municipality":"Oranjestad","elevation_ft":60,"latitude":12.5014,"longitude":-70.015198,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":9016,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.1},{"id":"TWR","frequency_mhz":120.9}],"has_metar":true,"public":true},{"icao":"KCDW","iata":"CDW","local":"CDW","name":"Essex County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Caldwell","elevation_ft":173,"latitude":40.875198364300005,"longitude":-74.2814025879,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4552,"width_ft":80,"surface":"A"},{"id":"10/28","length_ft":3719,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":135.5}],"has_metar":true,"public":true},{"icao":"MMTJ","iata":"TIJ","local":"","name":"Aeropuerto Internacional Gral. Abelardo Rodriguez","category":"large_airport","iso_country":"MX","iso_region":"MX-BCN","municipality":"Ciudad de Tijuana","elevation_ft":489,"latitude":32.545963,"longitude":-116.975856,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":9711,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"SBTF","iata":"TFF","local":"AM0004","name":"Tefé Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AM","municipality":"Tefé","elevation_ft":186,"latitude":-3.38294,"longitude":-64.724098,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SEGU","iata":"GYE","local":"","name":"José Joaquín de Olmedo International Airport","category":"large_airport","iso_country":"EC","iso_region":"EC-G","municipality":"Guayaquil","elevation_ft":19,"latitude":-2.15742,"longitude":-79.883598,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8806,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPME","iata":"TBP","local":"","name":"Captain Pedro Canga Rodríguez International Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-TUM","municipality":"Tumbes","elevation_ft":115,"latitude":-3.552074,"longitude":-80.381086,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHWV","iata":"WSH","local":"HWV","name":"Brookhaven Calabro Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Shirley","elevation_ft":81,"latitude":40.821899,"longitude":-72.8694,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4201,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":4222,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KABQ","iata":"ABQ","local":"ABQ","name":"Albuquerque International Sunport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5355,"latitude":35.040199,"longitude":-106.609001,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"08/26","length_ft":13793,"width_ft":150,"surface":"C"},{"id":"12/30","length_ft":6000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":118},{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KSOW","iata":"SOW","local":"SOW","name":"Show Low Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Show Low","elevation_ft":6415,"latitude":34.265049,"longitude":-110.007084,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3938,"width_ft":60,"surface":"A"},{"id":"07/25","length_ft":7202,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIWI","iata":"ISS","local":"IWI","name":"Wiscasset Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Wiscasset","elevation_ft":70,"latitude":43.9613990784,"longitude":-69.712600708,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3397,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GFLL","iata":"FNA","local":"","name":"Lungi International Airport","category":"large_airport","iso_country":"SL","iso_region":"SL-N","municipality":"Freetown (Lungi-Town)","elevation_ft":84,"latitude":8.61644,"longitude":-13.1955,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10499,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBBV","iata":"BVB","local":"RR0001","name":"Atlas Brasil Cantanhede Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RR","municipality":"Boa Vista","elevation_ft":276,"latitude":2.845855,"longitude":-60.690944,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPSM","iata":"PSM","local":"PSM","name":"Portsmouth International at Pease Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NH","municipality":"Portsmouth","elevation_ft":100,"latitude":43.0778999329,"longitude":-70.8233032227,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":11322,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.4},{"id":"ATIS","frequency_mhz":132.05}],"has_metar":true,"public":true},{"icao":"SAAR","iata":"ROS","local":"ROS","name":"Rosario Islas Malvinas International Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-S","municipality":"Rosario","elevation_ft":85,"latitude":-32.9036,"longitude":-60.785,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SABE","iata":"AEP","local":"AER","name":"Jorge Newbery Airpark","category":"large_airport","iso_country":"AR","iso_region":"AR-C","municipality":"Buenos Aires","elevation_ft":18,"latitude":-34.5592,"longitude":-58.4156,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6890,"width_ft":131,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.6},{"id":"TWR","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"SCAR","iata":"ARI","local":"","name":"Chacalluta Airport","category":"medium_airport","iso_country":"CL","iso_region":"CL-AP","municipality":"Arica","elevation_ft":167,"latitude":-18.348499,"longitude":-70.338699,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7119,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSMQ","iata":"","local":"SMQ","name":"Somerset Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Somerville","elevation_ft":105,"latitude":40.6259994506836,"longitude":-74.67019653320312,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":1923,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":2739,"width_ft":65,"surface":"A"},{"id":"17/35","length_ft":1700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SANT","iata":"TUC","local":"TUC","name":"Teniente Benjamin Matienzo Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-T","municipality":"San Miguel de Tucumán","elevation_ft":1493,"latitude":-26.8409,"longitude":-65.104897,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBAR","iata":"AJU","local":"SE0001","name":"Aracaju - Santa Maria International Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-SE","municipality":"Aracaju","elevation_ft":139,"latitude":-10.984,"longitude":-37.070301,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBGL","iata":"GIG","local":"RJ0001","name":"Rio Galeão – Tom Jobim International Airport","category":"large_airport","iso_country":"BR","iso_region":"BR-RJ","municipality":"Rio De Janeiro","elevation_ft":28,"latitude":-22.809999,"longitude":-43.250557,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":13124,"width_ft":148,"surface":"H"},{"id":"15/33","length_ft":10433,"width_ft":154,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.6},{"id":"TWR","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"SBGR","iata":"GRU","local":"SP0002","name":"Guarulhos - Governador André Franco Montoro International Airport","category":"large_airport","iso_country":"BR","iso_region":"BR-SP","municipality":"São Paulo","elevation_ft":2461,"latitude":-23.431944,"longitude":-46.467778,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":11643,"width_ft":148,"surface":"H"},{"id":"09R/27L","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.75},{"id":"TWR","frequency_mhz":118.4}],"has_metar":true,"public":true},{"icao":"KDWH","iata":"DWH","local":"DWH","name":"David Wayne Hooks Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":152,"latitude":30.0618000031,"longitude":-95.5528030396,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":3500,"width_ft":35,"surface":"A"},{"id":"17R/35L","length_ft":7009,"width_ft":100,"surface":"A"},{"id":"17W/35W","length_ft":2530,"width_ft":100,"surface":"W"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"LCL/P","frequency_mhz":127.4},{"id":"ATIS","frequency_mhz":128.375}],"has_metar":true,"public":true},{"icao":"SCEL","iata":"SCL","local":"","name":"Comodoro Arturo Merino Benítez International Airport","category":"large_airport","iso_country":"CL","iso_region":"CL-RM","municipality":"Santiago","elevation_ft":1555,"latitude":-33.393001556396484,"longitude":-70.78579711914062,"has_tower":true,"has_beacon":true,"runways":[{"id":"17R/35L","length_ft":12467,"width_ft":148,"surface":"H"},{"id":"17L/35R","length_ft":12303,"width_ft":180,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.1},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"KMMU","iata":"MMU","local":"MMU","name":"Morristown Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Morristown","elevation_ft":187,"latitude":40.79940032958984,"longitude":-74.41490173339844,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5998,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":3997,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":124.25}],"has_metar":true,"public":true},{"icao":"ZUGY","iata":"KWE","local":"","name":"Guiyang Longdongbao International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-52","municipality":"Guiyang (Nanming)","elevation_ft":3736,"latitude":26.541466,"longitude":106.803331,"has_tower":true,"has_beacon":true,"runways":[{"id":"01R/19L","length_ft":13123,"width_ft":148,"surface":"H"},{"id":"01L/19R","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.05},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KHOP","iata":"HOP","local":"HOP","name":"Campbell Army Airfield (Fort Campbell)","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Fort Campbell","elevation_ft":573,"latitude":36.674154,"longitude":-87.48974,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":10926,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":125.175}],"has_metar":true,"public":true},{"icao":"KLOT","iata":"LOT","local":"LOT","name":"Lewis University Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/Romeoville","elevation_ft":679,"latitude":41.6072998,"longitude":-88.09619904,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6500,"width_ft":100,"surface":"C"},{"id":"09/27","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":126.675},{"id":"LCL/P","frequency_mhz":134.8}],"has_metar":true,"public":true},{"icao":"KARR","iata":"AUZ","local":"ARR","name":"Aurora Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/Aurora","elevation_ft":712,"latitude":41.771900177,"longitude":-88.47570037839999,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6501,"width_ft":100,"surface":"C"},{"id":"15/33","length_ft":5503,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":3198,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.6},{"id":"ATIS","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"EGYP","iata":"MPN","local":"","name":"Mount Pleasant Airport","category":"medium_airport","iso_country":"FK","iso_region":"FK-U-A","municipality":"Mount Pleasant","elevation_ft":244,"latitude":-51.82279968261719,"longitude":-58.44720077514648,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8494,"width_ft":148,"surface":"H"},{"id":"05/23","length_ft":5003,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBDR","iata":"BDR","local":"BDR","name":"Igor I Sikorsky Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CT","municipality":"Bridgeport","elevation_ft":9,"latitude":41.16350173950195,"longitude":-73.1261978149414,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4677,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4759,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.15},{"id":"LCL/P","frequency_mhz":120.9}],"has_metar":true,"public":true},{"icao":"KHPN","iata":"HPN","local":"HPN","name":"Westchester County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"White Plains","elevation_ft":439,"latitude":41.06700134277344,"longitude":-73.70760345458984,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4451,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":6549,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.575},{"id":"D-ATIS","frequency_mhz":133.8}],"has_metar":true,"public":true},{"icao":"SBEG","iata":"MAO","local":"AM0001","name":"Eduardo Gomes International Airport","category":"large_airport","iso_country":"BR","iso_region":"BR-AM","municipality":"Manaus","elevation_ft":264,"latitude":-3.03861,"longitude":-60.049702,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBIH","iata":"ITB","local":"PA0010","name":"Itaituba Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Itaituba","elevation_ft":110,"latitude":-4.242131,"longitude":-56.000651,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5577,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBPV","iata":"PVH","local":"RO0001","name":"Governador Jorge Teixeira de Oliveira Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RO","municipality":"Porto Velho","elevation_ft":295,"latitude":-8.707854,"longitude":-63.90242,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBRB","iata":"RBR","local":"AC0001","name":"Rio Branco-Plácido de Castro International Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AC","municipality":"Rio Branco","elevation_ft":633,"latitude":-9.869031,"longitude":-67.893984,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7080,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBSN","iata":"STM","local":"PA0002","name":"Santarém - Maestro Wilson Fonseca International Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Santarém","elevation_ft":198,"latitude":-2.422423,"longitude":-54.79306,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SMJP","iata":"PBM","local":"","name":"Johan Adolf Pengel International Airport","category":"large_airport","iso_country":"SR","iso_region":"SR-PR","municipality":"Zandery","elevation_ft":59,"latitude":5.45283,"longitude":-55.187801,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11417,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SOCA","iata":"CAY","local":"","name":"Cayenne – Félix Eboué Airport","category":"large_airport","iso_country":"GF","iso_region":"GF-CY","municipality":"Matoury","elevation_ft":26,"latitude":4.819964,"longitude":-52.361326,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":10515,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPCL","iata":"PCL","local":"","name":"Cap FAP David Abenzur Rengifo International Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-UCA","municipality":"Pucallpa","elevation_ft":513,"latitude":-8.37794017791748,"longitude":-74.57430267333984,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPHI","iata":"CIX","local":"","name":"Air Force Captain Jose A Quinones Gonzales International Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-LAM","municipality":"Chiclayo","elevation_ft":97,"latitude":-6.78748,"longitude":-79.828102,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":148,"surface":"H"},{"id":"01R/19L","length_ft":6234,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPST","iata":"TPP","local":"","name":"Cadete FAP Guillermo Del Castillo Paredes Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-SAM","municipality":"Tarapoto","elevation_ft":869,"latitude":-6.508739948272705,"longitude":-76.37319946289062,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTOL","iata":"TOL","local":"TOL","name":"Eugene F. Kranz Toledo Express Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Toledo","elevation_ft":683,"latitude":41.5868,"longitude":-83.8078,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":10600,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":5599,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":118.75}],"has_metar":true,"public":true},{"icao":"SLCB","iata":"CBB","local":"","name":"Jorge Wilsterman International Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-C","municipality":"Cochabamba","elevation_ft":8360,"latitude":-17.421100616455078,"longitude":-66.1771011352539,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":12467,"width_ft":148,"surface":"H"},{"id":"05/23","length_ft":8694,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ZUTF","iata":"TFU","local":"","name":"Chengdu Tianfu International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-51","municipality":"Chengdu (Jianyang)","elevation_ft":1440,"latitude":30.31252,"longitude":104.441284,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"11/29","length_ft":12467,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFWN","iata":"","local":"FWN","name":"Sussex Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Sussex","elevation_ft":421,"latitude":41.20019912719727,"longitude":-74.62300109863281,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3506,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBMI","iata":"BMI","local":"BMI","name":"Central Illinois Regional Airport at Bloomington-Normal","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bloomington/Normal","elevation_ft":871,"latitude":40.4771,"longitude":-88.915901,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8000,"width_ft":150,"surface":"C"},{"id":"11/29","length_ft":6525,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.6},{"id":"ATIS","frequency_mhz":135.35}],"has_metar":true,"public":true},{"icao":"KLAF","iata":"LAF","local":"LAF","name":"Purdue University Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"West Lafayette","elevation_ft":606,"latitude":40.4123,"longitude":-86.936897,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4225,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":6600,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.6},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"ZUUU","iata":"CTU","local":"","name":"Chengdu Shuangliu International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-51","municipality":"Chengdu (Shuangliu)","elevation_ft":1625,"latitude":30.558257,"longitude":103.945966,"has_tower":true,"has_beacon":true,"runways":[{"id":"02R/20L","length_ft":11811,"width_ft":197,"surface":"H"},{"id":"02L/20R","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.6},{"id":"TWR","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"YBAS","iata":"ASP","local":"","name":"Alice Springs Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NT","municipality":"Alice Springs","elevation_ft":1789,"latitude":-23.806588,"longitude":133.903427,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7999,"width_ft":148,"surface":"H"},{"id":"17/35","length_ft":3717,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YCFS","iata":"CFS","local":"","name":"Coffs Harbour Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NSW","municipality":"Coffs Harbour","elevation_ft":18,"latitude":-30.320601,"longitude":153.115997,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6824,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":2785,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YBBN","iata":"BNE","local":"","name":"Brisbane International Airport","category":"large_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Brisbane","elevation_ft":13,"latitude":-27.38419914245605,"longitude":153.11700439453125,"has_tower":true,"has_beacon":true,"runways":[{"id":"01R/19L","length_ft":11680,"width_ft":148,"surface":"H"},{"id":"01L/19R","length_ft":10827,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.5},{"id":"TWR","frequency_mhz":120.5}],"has_metar":true,"public":true},{"icao":"KMCI","iata":"MCI","local":"MCI","name":"Kansas City International Airport","category":"large_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":1026,"latitude":39.2976,"longitude":-94.713898,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":10801,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":9500,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":9501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.2},{"id":"D-ATIS","frequency_mhz":128.375}],"has_metar":true,"public":true},{"icao":"KPIA","iata":"PIA","local":"PIA","name":"General Wayne A. Downing Peoria International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Peoria","elevation_ft":660,"latitude":40.6642,"longitude":-89.693298,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8004,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":10104,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124},{"id":"ATIS","frequency_mhz":126.1}],"has_metar":true,"public":true},{"icao":"ETMN","iata":"FCN","local":"","name":"Nordholz Naval Airbase","category":"medium_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Cuxhaven","elevation_ft":74,"latitude":53.7677001953,"longitude":8.658499717709999,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8005,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SCSE","iata":"LSC","local":"","name":"La Florida Airport","category":"medium_airport","iso_country":"CL","iso_region":"CL-CO","municipality":"La Serena-Coquimbo","elevation_ft":481,"latitude":-29.916201,"longitude":-71.199501,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6358,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLE","iata":"GLE","local":"GLE","name":"Gainesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gainesville","elevation_ft":845,"latitude":33.651401519800004,"longitude":-97.1969985962,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4307,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGKY","iata":"","local":"GKY","name":"Arlington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Arlington","elevation_ft":628,"latitude":32.66389846801758,"longitude":-97.09429931640624,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6080,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.625}],"has_metar":true,"public":true},{"icao":"EFPO","iata":"POR","local":"","name":"Pori Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-17","municipality":"Pori","elevation_ft":44,"latitude":61.4617,"longitude":21.799999,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7713,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGOK","iata":"GOK","local":"GOK","name":"Guthrie-Edmond Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guthrie","elevation_ft":1069,"latitude":35.84980011,"longitude":-97.41560364,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGOV","iata":"","local":"GOV","name":"Grayling Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Grayling","elevation_ft":1158,"latitude":44.680302,"longitude":-84.728897,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":5005,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.075},{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KGNV","iata":"GNV","local":"GNV","name":"Gainesville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":152,"latitude":29.6900997162,"longitude":-82.2717971802,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4158,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":7504,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.55},{"id":"ATIS","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KGNT","iata":"GNT","local":"GNT","name":"Grants-Milan Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Grants","elevation_ft":6537,"latitude":35.167301178,"longitude":-107.902000427,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7172,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGOO","iata":"","local":"GOO","name":"Nevada County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Grass Valley","elevation_ft":3152,"latitude":39.223998,"longitude":-121.002997,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4657,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGOP","iata":"","local":"GOP","name":"Gatesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gatesville","elevation_ft":905,"latitude":31.421301,"longitude":-97.796996,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGPH","iata":"","local":"GPH","name":"Midwest National Air Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Excelsior Springs","elevation_ft":777,"latitude":39.3325,"longitude":-94.309601,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGNG","iata":"GNG","local":"GNG","name":"Gooding Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Gooding","elevation_ft":3732,"latitude":42.91719818,"longitude":-114.7649994,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5371,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGNC","iata":"","local":"GNC","name":"Gaines County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seminole","elevation_ft":3315,"latitude":32.676807,"longitude":-102.649927,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5381,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFOU","iata":"OUL","local":"","name":"Oulu Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-14","municipality":"Oulu / Oulunsalo","elevation_ft":47,"latitude":64.930099,"longitude":25.354601,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8205,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGRB","iata":"GRB","local":"GRB","name":"Austin Straubel International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":695,"latitude":44.483459,"longitude":-88.130805,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7700,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":8700,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":124.1}],"has_metar":true,"public":true},{"icao":"KGPT","iata":"GPT","local":"GPT","name":"Gulfport Biloxi International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Gulfport","elevation_ft":28,"latitude":30.407301,"longitude":-89.070099,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4935,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.45},{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"KGPI","iata":"FCA","local":"GPI","name":"Glacier Park International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2977,"latitude":48.31050109863281,"longitude":-114.25599670410156,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":9007,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3510,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.55},{"id":"ATIS","frequency_mhz":132.625}],"has_metar":true,"public":true},{"icao":"KGRF","iata":"GRF","local":"GRF","name":"Gray Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Fort Lewis/Tacoma","elevation_ft":300,"latitude":47.07920074,"longitude":-122.5810013,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":6124,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.325},{"id":"ATIS","frequency_mhz":124.65},{"id":"LCL/P","frequency_mhz":41.5}],"has_metar":true,"public":true},{"icao":"KGRI","iata":"GRI","local":"GRI","name":"Central Nebraska Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grand Island","elevation_ft":1847,"latitude":40.96749877929688,"longitude":-98.30960083007812,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6608,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":7002,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":127.4}],"has_metar":true,"public":true},{"icao":"KGPZ","iata":"GPZ","local":"GPZ","name":"Grand Rapids Itasca Co-Gordon Newstrom field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Grand Rapids","elevation_ft":1355,"latitude":47.21110153,"longitude":-93.50980377,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3000,"width_ft":60,"surface":"A"},{"id":"16/34","length_ft":5756,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGRD","iata":"GRD","local":"GRD","name":"Greenwood County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greenwood","elevation_ft":631,"latitude":34.2486991882,"longitude":-82.15910339359999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"09/27","length_ft":5001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGPM","iata":"","local":"GPM","name":"Grand Prairie Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":588,"latitude":32.69879913330078,"longitude":-97.0468978881836,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"C"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KGRN","iata":"GRN","local":"GRN","name":"Gordon Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Gordon","elevation_ft":3562,"latitude":42.8059997559,"longitude":-102.175003052,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5196,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":2284,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFRO","iata":"RVN","local":"","name":"Rovaniemi Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Rovaniemi","elevation_ft":642,"latitude":66.564796447754,"longitude":25.830400466919,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9849,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKKT","iata":"KTL","local":"","name":"Kitale Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Kitale","elevation_ft":6070,"latitude":0.9719889760017396,"longitude":34.95859909057617,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4757,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKLO","iata":"LOK","local":"","name":"Lodwar Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Lodwar","elevation_ft":1715,"latitude":3.1219699382781982,"longitude":35.608699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3281,"width_ft":64,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGRK","iata":"GRK","local":"GRK","name":"Killeen-Fort Hood Regional Airport / Robert Gray Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":1015,"latitude":31.0672,"longitude":-97.828903,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":9997,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75},{"id":"ATIS","frequency_mhz":124.9}],"has_metar":true,"public":true},{"icao":"KGSH","iata":"GSH","local":"GSH","name":"Goshen Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Goshen","elevation_ft":827,"latitude":41.5264015198,"longitude":-85.79290008539999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2267,"width_ft":180,"surface":"T"},{"id":"09/27","length_ft":6050,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGTB","iata":"","local":"GTB","name":"Wheeler Sack Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Drum","elevation_ft":688,"latitude":44.05559921,"longitude":-75.71949768,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"08/26","length_ft":4501,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5002,"width_ft":144,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.75},{"id":"ATIS","frequency_mhz":119.525},{"id":"LCL/P","frequency_mhz":49.8}],"has_metar":true,"public":true},{"icao":"CYSF","iata":"YSF","local":"","name":"Stony Rapids Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Stony Rapids","elevation_ft":805,"latitude":59.250301361083984,"longitude":-105.84100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5052,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGUS","iata":"GUS","local":"GUS","name":"Grissom Air Reserve Base","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Peru","elevation_ft":812,"latitude":40.648102,"longitude":-86.1521,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":12501,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":108.45},{"id":"LCL/P","frequency_mhz":133.7}],"has_metar":true,"public":true},{"icao":"HKNK","iata":"NUU","local":"","name":"Nakuru Airport","category":"small_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Nakuru","elevation_ft":6234,"latitude":-0.298067,"longitude":36.159302,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5607,"width_ft":80,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGWB","iata":"","local":"GWB","name":"De Kalb County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Auburn","elevation_ft":880,"latitude":41.307201,"longitude":-85.0644,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGTR","iata":"GTR","local":"GTR","name":"Golden Triangle Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Columbus/W Point/Starkville","elevation_ft":264,"latitude":33.450298309299995,"longitude":-88.5914001465,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":126.375}],"has_metar":true,"public":true},{"icao":"KGUP","iata":"GUP","local":"GUP","name":"Gallup Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Gallup","elevation_ft":6472,"latitude":35.511100769,"longitude":-108.789001465,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7315,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGUC","iata":"GUC","local":"GUC","name":"Gunnison Crested Butte Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Gunnison","elevation_ft":7680,"latitude":38.536346,"longitude":-106.928306,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9400,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":2981,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGUY","iata":"GUY","local":"GUY","name":"Guymon Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guymon","elevation_ft":3123,"latitude":36.6851005554,"longitude":-101.508003235,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":1795,"width_ft":200,"surface":"T"},{"id":"18/36","length_ft":5904,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGVL","iata":"GVL","local":"GVL","name":"Lee Gilmer Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Gainesville","elevation_ft":1276,"latitude":34.27259827,"longitude":-83.8302002,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5496,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGTU","iata":"","local":"GTU","name":"Georgetown Executive Airport at Johnny Gantt Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":790,"latitude":30.677543,"longitude":-97.678524,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4099,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.6},{"id":"LCL/P","frequency_mhz":120.225}],"has_metar":true,"public":true},{"icao":"KGVT","iata":"GVT","local":"GVT","name":"Majors Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Greenville","elevation_ft":535,"latitude":33.0677986145,"longitude":-96.0652999878,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8030,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"KGWR","iata":"","local":"GWR","name":"Gwinner Roger Melroe Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Gwinner","elevation_ft":1266,"latitude":46.21870040893555,"longitude":-97.64320373535156,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2991,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRT","iata":"YRT","local":"","name":"Rankin Inlet Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Rankin Inlet","elevation_ft":94,"latitude":62.8114013672,"longitude":-92.1157989502,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPE","iata":"YPE","local":"","name":"Peace River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Peace River","elevation_ft":1873,"latitude":56.226898,"longitude":-117.446999,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGXY","iata":"GXY","local":"GXY","name":"Greeley–Weld County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Greeley","elevation_ft":4697,"latitude":40.4374008179,"longitude":-104.633003235,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5801,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":10000,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGCK","iata":"","local":"","name":"Caernarfon Airport","category":"small_airport","iso_country":"GB","iso_region":"GB-WLS","municipality":"Caernarfon","elevation_ft":1,"latitude":53.101819,"longitude":-4.337614,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3058,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBR","iata":"HBR","local":"HBR","name":"Hobart Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hobart","elevation_ft":1563,"latitude":34.991317,"longitude":-99.051313,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2975,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5507,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOW","iata":"YOW","local":"YOW","name":"Ottawa Macdonald-Cartier International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Ottawa","elevation_ft":374,"latitude":45.322498,"longitude":-75.669197,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":10005,"width_ft":200,"surface":"A"},{"id":"07/25","length_ft":8000,"width_ft":200,"surface":"A"},{"id":"04/22","length_ft":3300,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":121.15},{"id":"ATIS-F","frequency_mhz":132.95},{"id":"TWR","frequency_mhz":118.8},{"id":"TWR","frequency_mhz":120.1}],"has_metar":true,"public":true},{"icao":"KGYI","iata":"PNX","local":"GYI","name":"North Texas Regional Airport/Perrin Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman/Denison","elevation_ft":749,"latitude":33.7141,"longitude":-96.673698,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2277,"width_ft":60,"surface":"A"},{"id":"17L/35R","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":4008,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.775},{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"KGYH","iata":"GDC","local":"GYH","name":"Donaldson Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":955,"latitude":34.758301,"longitude":-82.376404,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.325}],"has_metar":true,"public":true},{"icao":"KGZN","iata":"","local":"GZN","name":"Gregory M. Simmons Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cisco","elevation_ft":1711,"latitude":32.367348,"longitude":-99.023642,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6536,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGGP","iata":"LPL","local":"","name":"Liverpool John Lennon Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Liverpool","elevation_ft":80,"latitude":53.333599,"longitude":-2.84972,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7500,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGDY","iata":"YEO","local":"","name":"RNAS Yeovilton","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Yeovil","elevation_ft":75,"latitude":51.0093994140625,"longitude":-2.638819932937622,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7523,"width_ft":148,"surface":"H"},{"id":"04/22","length_ft":4803,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYET","iata":"YET","local":"","name":"Edson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Edson","elevation_ft":3043,"latitude":53.5788993835,"longitude":-116.464996338,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHAO","iata":"HAO","local":"HAO","name":"Butler Co Regional Airport - Hogan Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hamilton","elevation_ft":633,"latitude":39.3638000488,"longitude":-84.5220031738,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBG","iata":"HBG","local":"HBG","name":"Hattiesburg Bobby L Chain Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Hattiesburg","elevation_ft":151,"latitude":31.26479912,"longitude":-89.25279999,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6094,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHAF","iata":"HAF","local":"HAF","name":"Half Moon Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Half Moon Bay","elevation_ft":66,"latitude":37.5134010315,"longitude":-122.500999451,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYFS","iata":"YFS","local":"","name":"Fort Simpson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Simpson","elevation_ft":555,"latitude":61.76020050048828,"longitude":-121.23699951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/32","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHAI","iata":"HAI","local":"HAI","name":"Three Rivers Municipal Dr Haines Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Three Rivers","elevation_ft":824,"latitude":41.9598007202,"longitude":-85.59339904790001,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2719,"width_ft":60,"surface":"A"},{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGZS","iata":"","local":"GZS","name":"Abernathy Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Pulaski","elevation_ft":685,"latitude":35.15370178222656,"longitude":-87.05680084228516,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5310,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGZH","iata":"","local":"GZH","name":"Evergreen Regional Airport/Middleton Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Evergreen","elevation_ft":259,"latitude":31.4158,"longitude":-87.043999,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5005,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5004,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHEI","iata":"","local":"HEI","name":"Hettinger Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hettinger","elevation_ft":2705,"latitude":46.01490020751953,"longitude":-102.65599822998048,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4652,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":2020,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZST","iata":"ZST","local":"CZST","name":"Stewart Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Stewart","elevation_ft":24,"latitude":55.935410448,"longitude":-129.982434511,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHDN","iata":"HDN","local":"HDN","name":"Yampa Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hayden","elevation_ft":6606,"latitude":40.481201,"longitude":-107.218002,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZSJ","iata":"ZSJ","local":"","name":"Sandy Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sandy Lake","elevation_ft":951,"latitude":53.06420135498047,"longitude":-93.34439849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3507,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUI","iata":"INZ","local":"","name":"In Salah Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-57","municipality":"In Salah","elevation_ft":896,"latitude":27.250999,"longitude":2.51202,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGMD","iata":"LYX","local":"","name":"Lydd London Ashford Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Romney Marsh, Kent","elevation_ft":13,"latitude":50.956246,"longitude":0.939074,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4938,"width_ft":105,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHCO","iata":"","local":"HCO","name":"Hallock Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hallock","elevation_ft":819,"latitude":48.752701,"longitude":-96.943001,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHDC","iata":"","local":"HDC","name":"Hammond Northshore Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hammond","elevation_ft":47,"latitude":30.52160072,"longitude":-90.41840363,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6502,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.325},{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"EGJB","iata":"GCI","local":"","name":"Guernsey Airport","category":"medium_airport","iso_country":"GG","iso_region":"GG-U-A","municipality":"Saint Peter Port","elevation_ft":336,"latitude":49.435001,"longitude":-2.60197,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5194,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNT","iata":"NCL","local":"","name":"Newcastle Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Newcastle","elevation_ft":266,"latitude":55.037958,"longitude":-1.689577,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7644,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNS","iata":"IOM","local":"","name":"Isle of Man Airport","category":"medium_airport","iso_country":"IM","iso_region":"IM-U-A","municipality":"Castletown","elevation_ft":52,"latitude":54.083302,"longitude":-4.62389,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6027,"width_ft":151,"surface":"H"},{"id":"03/21","length_ft":3934,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHF","iata":"","local":"HHF","name":"Hemphill County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canadian","elevation_ft":2396,"latitude":35.89530182,"longitude":-100.4039993,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5004,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":3001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNJ","iata":"HUY","local":"","name":"Humberside Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Grimsby","elevation_ft":121,"latitude":53.57440185546875,"longitude":-0.350832998752594,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7205,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":3245,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGLC","iata":"LCY","local":"","name":"London City Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"London","elevation_ft":19,"latitude":51.505299,"longitude":0.055278,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4948,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAE","iata":"BJA","local":"BJ1","name":"Soummam–Abane Ramdane Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-06","municipality":"Béjaïa","elevation_ft":20,"latitude":36.711952,"longitude":5.069804,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHG","iata":"","local":"HHG","name":"Huntington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Huntington","elevation_ft":806,"latitude":40.852901,"longitude":-85.4571,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHR","iata":"HHR","local":"HHR","name":"Jack Northrop Field Hawthorne Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hawthorne","elevation_ft":66,"latitude":33.922798,"longitude":-118.334999,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4884,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.4},{"id":"LCL/P","frequency_mhz":121.1}],"has_metar":true,"public":true},{"icao":"KHFJ","iata":"","local":"HFJ","name":"Monett Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pierce City","elevation_ft":1314,"latitude":36.9062,"longitude":-94.012802,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHHW","iata":"HUJ","local":"HHW","name":"Stan Stamper Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hugo","elevation_ft":572,"latitude":34.03480148,"longitude":-95.54190063,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPC","iata":"WIC","local":"","name":"Wick Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Wick","elevation_ft":126,"latitude":58.45890045166016,"longitude":-3.09306001663208,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5988,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FGSL","iata":"SSG","local":"","name":"Malabo Airport","category":"medium_airport","iso_country":"GQ","iso_region":"GQ-BN","municipality":"Malabo","elevation_ft":76,"latitude":3.755270004272461,"longitude":8.708720207214355,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9646,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FEFF","iata":"BGF","local":"","name":"Bangui M'Poko International Airport","category":"medium_airport","iso_country":"CF","iso_region":"CF-MP","municipality":"Bangui","elevation_ft":1208,"latitude":4.39847993850708,"longitude":18.518800735473636,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPD","iata":"ABZ","local":"","name":"Aberdeen Dyce Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Aberdeen","elevation_ft":215,"latitude":57.2019,"longitude":-2.19778,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6407,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHIB","iata":"HIB","local":"HIB","name":"Range Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hibbing","elevation_ft":1354,"latitude":47.3866,"longitude":-92.838997,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3075,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6758,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHIO","iata":"HIO","local":"HIO","name":"Portland Hillsboro Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":208,"latitude":45.540401,"longitude":-122.949997,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3820,"width_ft":75,"surface":"A"},{"id":"13L/31R","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"13R/31L","length_ft":6600,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":127.65}],"has_metar":true,"public":true},{"icao":"KHJO","iata":"","local":"HJO","name":"Hanford Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hanford","elevation_ft":240,"latitude":36.31669998,"longitude":-119.6279984,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5179,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHII","iata":"HII","local":"HII","name":"Lake Havasu City International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Lake Havasu City","elevation_ft":783,"latitude":34.571098,"longitude":-114.358002,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":8000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHIF","iata":"HIF","local":"HIF","name":"Hill Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Ogden","elevation_ft":4789,"latitude":41.12403,"longitude":-111.973086,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":13500,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.15},{"id":"ATIS","frequency_mhz":134.925}],"has_metar":true,"public":true},{"icao":"EGPO","iata":"SYY","local":"","name":"Stornoway Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Stornoway, Western Isles","elevation_ft":26,"latitude":58.215599,"longitude":-6.33111,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7595,"width_ft":151,"surface":"H"},{"id":"06/24","length_ft":3281,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPB","iata":"LSI","local":"","name":"Sumburgh Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Lerwick","elevation_ft":20,"latitude":59.87889862060547,"longitude":-1.295560002326965,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4915,"width_ft":144,"surface":"H"},{"id":"15/33","length_ft":4672,"width_ft":141,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPA","iata":"KOI","local":"","name":"Kirkwall Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Orkney Islands","elevation_ft":50,"latitude":58.957801818847656,"longitude":-2.9049999713897705,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4685,"width_ft":151,"surface":"H"},{"id":"14/32","length_ft":2231,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPL","iata":"BEB","local":"","name":"Benbecula Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Balivanich","elevation_ft":19,"latitude":57.48109817504883,"longitude":-7.362780094146728,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6027,"width_ft":151,"surface":"H"},{"id":"17/35","length_ft":3963,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGPI","iata":"ILY","local":"","name":"Islay Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Port Ellen","elevation_ft":56,"latitude":55.68190002441406,"longitude":-6.256669998168945,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5069,"width_ft":151,"surface":"H"},{"id":"08/26","length_ft":2083,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FKKD","iata":"DLA","local":"","name":"Douala International Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-LT","municipality":"Douala","elevation_ft":33,"latitude":4.0060801506,"longitude":9.71947956085,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9350,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHLB","iata":"HLB","local":"HLB","name":"Hillenbrand Industries Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Batesville","elevation_ft":973,"latitude":39.3445014954,"longitude":-85.25830078119999,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5933,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHNB","iata":"HNB","local":"HNB","name":"Huntingburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Huntingburg","elevation_ft":529,"latitude":38.2490005493,"longitude":-86.95369720459999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHMT","iata":"HMT","local":"HMT","name":"Hemet Ryan Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hemet","elevation_ft":1512,"latitude":33.7340011597,"longitude":-117.023002625,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2014,"width_ft":25,"surface":"A"},{"id":"05/23","length_ft":4315,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHMN","iata":"HMN","local":"HMN","name":"Holloman Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4093,"latitude":32.852501,"longitude":-106.107002,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":10578,"width_ft":300,"surface":"A"},{"id":"07/25","length_ft":12922,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":12134,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3}],"has_metar":true,"public":true},{"icao":"EGPF","iata":"GLA","local":"","name":"Glasgow International Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Paisley, Renfrewshire","elevation_ft":26,"latitude":55.871899,"longitude":-4.43306,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8743,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNX","iata":"EMA","local":"","name":"East Midlands Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Nottingham","elevation_ft":306,"latitude":52.8311,"longitude":-1.32806,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9495,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHNR","iata":"","local":"HNR","name":"Harlan Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Harlan","elevation_ft":1231,"latitude":41.58440017700195,"longitude":-95.339599609375,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":1712,"width_ft":120,"surface":"T"},{"id":"15/33","length_ft":4100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHOT","iata":"HOT","local":"HOT","name":"Memorial Field Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Hot Springs","elevation_ft":540,"latitude":34.4788,"longitude":-93.096262,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6595,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4098,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHON","iata":"HON","local":"HON","name":"Huron Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Huron","elevation_ft":1289,"latitude":44.38520050048828,"longitude":-98.22850036621094,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":7201,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHND","iata":"HSH","local":"HND","name":"Henderson Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2492,"latitude":35.9728012085,"longitude":-115.134002686,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":5001,"width_ft":75,"surface":"A"},{"id":"17R/35L","length_ft":6501,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.775},{"id":"LCL/P","frequency_mhz":125.1}],"has_metar":true,"public":true},{"icao":"KHOB","iata":"HOB","local":"HOB","name":"Lea County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Hobbs","elevation_ft":3661,"latitude":32.6875,"longitude":-103.217003,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7398,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":6002,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":4998,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.75},{"id":"LCL/P","frequency_mhz":120.65}],"has_metar":true,"public":true},{"icao":"KHOU","iata":"HOU","local":"HOU","name":"William P Hobby Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":46,"latitude":29.645399,"longitude":-95.2789,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7602,"width_ft":150,"surface":"C"},{"id":"13L/31R","length_ft":5148,"width_ft":100,"surface":"C"},{"id":"13R/31L","length_ft":7602,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"D-ATIS","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"HUEN","iata":"EBB","local":"","name":"Entebbe International Airport","category":"large_airport","iso_country":"UG","iso_region":"UG-C","municipality":"Kampala","elevation_ft":3782,"latitude":0.042386,"longitude":32.443501,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":12001,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FKYS","iata":"NSI","local":"","name":"Yaoundé Nsimalen International Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-CE","municipality":"Yaoundé","elevation_ft":2278,"latitude":3.722559928894043,"longitude":11.553299903869627,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":11161,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHQG","iata":"","local":"HQG","name":"Hugoton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hugoton","elevation_ft":3134,"latitude":37.1631012,"longitude":-101.3710022,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":3039,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZVL","iata":"","local":"","name":"Edmonton / Villeneuve Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Edmonton","elevation_ft":2256,"latitude":53.6674995422,"longitude":-113.853996277,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":3496,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQG","iata":"YQG","local":"","name":"Windsor Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Windsor","elevation_ft":622,"latitude":42.27560043334961,"longitude":-82.95559692382812,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":9000,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":5150,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":134.5},{"id":"TWR","frequency_mhz":124.7}],"has_metar":true,"public":true},{"icao":"KHRT","iata":"","local":"HRT","name":"Hurlburt Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mary Esther","elevation_ft":38,"latitude":30.42779922485352,"longitude":-86.68930053710938,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":9600,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.5},{"id":"ATIS","frequency_mhz":134.475}],"has_metar":true,"public":true},{"icao":"KHRO","iata":"HRO","local":"HRO","name":"Boone County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Harrison","elevation_ft":1365,"latitude":36.26150131225586,"longitude":-93.15470123291016,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6161,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHQM","iata":"HQM","local":"HQM","name":"Bowerman Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Hoquiam","elevation_ft":18,"latitude":46.9711990356,"longitude":-123.93699646,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHRI","iata":"HES","local":"HRI","name":"Hermiston Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Hermiston","elevation_ft":644,"latitude":45.828223,"longitude":-119.259024,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHPT","iata":"HPT","local":"HPT","name":"Hampton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Hampton","elevation_ft":1176,"latitude":42.7237014771,"longitude":-93.2263031006,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4020,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPW","iata":"YPW","local":"","name":"Powell River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Powell River","elevation_ft":425,"latitude":49.83420181274414,"longitude":-124.5,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3621,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHQZ","iata":"","local":"HQZ","name":"Mesquite Metro Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mesquite","elevation_ft":447,"latitude":32.74700164794922,"longitude":-96.53040313720705,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KHRX","iata":"","local":"HRX","name":"Hereford Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hereford","elevation_ft":3788,"latitude":34.85779953,"longitude":-102.3259964,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6100,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":3807,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGTE","iata":"EXT","local":"","name":"Exeter International Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Exeter","elevation_ft":102,"latitude":50.734402,"longitude":-3.41389,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGUW","iata":"","local":"","name":"Wattisham Airfield","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Stowmarket","elevation_ft":284,"latitude":52.127451,"longitude":0.956189,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7949,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGWU","iata":"NHT","local":"","name":"RAF Northolt","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"London","elevation_ft":124,"latitude":51.5530014038,"longitude":-0.418166995049,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5522,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGXT","iata":"","local":"","name":"RAF Wittering","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Wittering","elevation_ft":273,"latitude":52.612598,"longitude":-0.476453,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/23","length_ft":9045,"width_ft":184,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGYM","iata":"KNF","local":"","name":"RAF Marham","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Marham","elevation_ft":75,"latitude":52.648395,"longitude":0.550692,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9131,"width_ft":148,"surface":"H"},{"id":"01/19","length_ft":6115,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHST","iata":"HST","local":"HST","name":"Homestead ARB Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":5,"latitude":25.48859978,"longitude":-80.38359833,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":11202,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.275},{"id":"LCL/P","frequency_mhz":133.45}],"has_metar":true,"public":true},{"icao":"KHSA","iata":"","local":"HSA","name":"Stennis International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Bay St Louis","elevation_ft":23,"latitude":30.367799758911133,"longitude":-89.45459747314453,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8498,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KHSG","iata":"THP","local":"HSG","name":"Hot Springs County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Thermopolis","elevation_ft":4895,"latitude":43.713602,"longitude":-108.389687,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6370,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGQL","iata":"ADX","local":"","name":"Leuchars Station Airfield","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Leuchars, Fife","elevation_ft":38,"latitude":56.37398,"longitude":-2.868862,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8484,"width_ft":148,"surface":"H"},{"id":"04/22","length_ft":4803,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGXW","iata":"WTN","local":"","name":"RAF Waddington","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Waddington","elevation_ft":231,"latitude":53.1661987305,"longitude":-0.523810982704,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9314,"width_ft":190,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHBK","iata":"MST","local":"","name":"Maastricht Aachen Airport","category":"medium_airport","iso_country":"NL","iso_region":"NL-LI","municipality":"Maastricht","elevation_ft":375,"latitude":50.911701,"longitude":5.77014,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9022,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHTL","iata":"HTL","local":"HTL","name":"Roscommon County - Blodgett Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Houghton Lake","elevation_ft":1150,"latitude":44.359798,"longitude":-84.671095,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHVC","iata":"","local":"HVC","name":"Hopkinsville Christian County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Hopkinsville","elevation_ft":564,"latitude":36.85699844360352,"longitude":-87.4551010131836,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5505,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHUF","iata":"HUF","local":"HUF","name":"Terre Haute Regional Airport, Hulman Field","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Terre Haute","elevation_ft":589,"latitude":39.4515,"longitude":-87.307602,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":9021,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":7200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.5},{"id":"LCL/P","frequency_mhz":134.725}],"has_metar":true,"public":true},{"icao":"KHUT","iata":"HUT","local":"HUT","name":"Hutchinson Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hutchinson","elevation_ft":1543,"latitude":38.0654983521,"longitude":-97.86060333250002,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4405,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":7003,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4012,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":124.25}],"has_metar":true,"public":true},{"icao":"KHTH","iata":"HTH","local":"HTH","name":"Hawthorne Industrial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Hawthorne","elevation_ft":4215,"latitude":38.544399,"longitude":-118.634002,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":3250,"width_ft":130,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHUM","iata":"HUM","local":"HUM","name":"Houma Terrebonne Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Houma","elevation_ft":10,"latitude":29.5664997101,"longitude":-90.6604003906,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4999,"width_ft":185,"surface":"C"},{"id":"18/36","length_ft":6508,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.25},{"id":"LCL/P","frequency_mhz":125.3}],"has_metar":true,"public":true},{"icao":"EHDL","iata":"","local":"","name":"Deelen Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-GE","municipality":"Arnhem","elevation_ft":158,"latitude":52.0606,"longitude":5.87306,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3431,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHGR","iata":"GLZ","local":"","name":"Gilze Rijen Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-NB","municipality":"Rijen","elevation_ft":49,"latitude":51.567402,"longitude":4.93183,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9080,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":6548,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHLE","iata":"LEY","local":"","name":"Lelystad Airport","category":"medium_airport","iso_country":"NL","iso_region":"NL-FL","municipality":"Lelystad","elevation_ft":-13,"latitude":52.453188,"longitude":5.514622,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHRD","iata":"RTM","local":"","name":"Rotterdam The Hague Airport","category":"medium_airport","iso_country":"NL","iso_region":"NL-ZH","municipality":"Rotterdam","elevation_ft":-15,"latitude":51.956902,"longitude":4.43722,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHVN","iata":"HVN","local":"HVN","name":"Tweed New Haven Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CT","municipality":"New Haven","elevation_ft":12,"latitude":41.26369858,"longitude":-72.88680267,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5600,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.8},{"id":"ATIS","frequency_mhz":133.65}],"has_metar":true,"public":true},{"icao":"KHVR","iata":"HVR","local":"HVR","name":"Havre City County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Havre","elevation_ft":2591,"latitude":48.542999,"longitude":-109.762001,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3699,"width_ft":60,"surface":"A"},{"id":"08/26","length_ft":5205,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHVK","iata":"UDE","local":"","name":"Volkel Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-NB","municipality":"Uden","elevation_ft":72,"latitude":51.657222,"longitude":5.707778,"has_tower":true,"has_beacon":false,"runways":[{"id":"06R/24L","length_ft":9931,"width_ft":74,"surface":"H"},{"id":"06L/24R","length_ft":9922,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHWD","iata":"HWD","local":"HWD","name":"Hayward Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hayward","elevation_ft":52,"latitude":37.659198761,"longitude":-122.122001648,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":3107,"width_ft":75,"surface":"A"},{"id":"10R/28L","length_ft":5694,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.2},{"id":"ATIS","frequency_mhz":126.7}],"has_metar":true,"public":true},{"icao":"KHVE","iata":"HVE","local":"HVE","name":"Hanksville Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Hanksville","elevation_ft":4444,"latitude":38.4179992676,"longitude":-110.70400238,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":4841,"width_ft":120,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHXD","iata":"HHH","local":"HXD","name":"Hilton Head Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Hilton Head Island","elevation_ft":19,"latitude":32.2244,"longitude":-80.697502,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.975},{"id":"ATIS","frequency_mhz":121.4}],"has_metar":true,"public":true},{"icao":"EHKD","iata":"DHR","local":"","name":"De Kooy Airfield / Den Helder Naval Air Station","category":"medium_airport","iso_country":"NL","iso_region":"NL-NH","municipality":"Den Helder","elevation_ft":3,"latitude":52.923401,"longitude":4.78062,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4183,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHGG","iata":"GRQ","local":"","name":"Groningen Airport Eelde","category":"medium_airport","iso_country":"NL","iso_region":"NL-DR","municipality":"Groningen","elevation_ft":17,"latitude":53.119701,"longitude":6.57944,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZY","iata":"JFN","local":"HZY","name":"Northeast Ohio Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ashtabula","elevation_ft":924,"latitude":41.778,"longitude":-80.695503,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYX","iata":"","local":"HYX","name":"Saginaw County H.W. Browne Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Saginaw","elevation_ft":601,"latitude":43.4333992,"longitude":-83.86229706,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2952,"width_ft":60,"surface":"A"},{"id":"10/28","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYR","iata":"HYR","local":"HYR","name":"Sawyer County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hayward","elevation_ft":1216,"latitude":46.025199890100005,"longitude":-91.44429779050002,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5002,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":1088,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZX","iata":"","local":"HZX","name":"Isedor Iverson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Mc Gregor","elevation_ft":1228,"latitude":46.61880111694336,"longitude":-93.30979919433594,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYS","iata":"HYS","local":"HYS","name":"Hays Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hays","elevation_ft":1999,"latitude":38.84220123,"longitude":-99.27320099,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4501,"width_ft":75,"surface":"C"},{"id":"16/34","length_ft":6501,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZE","iata":"","local":"HZE","name":"Mercer County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hazen","elevation_ft":1814,"latitude":47.28990173,"longitude":-101.5810013,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHYI","iata":"","local":"HYI","name":"San Marcos Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Marcos","elevation_ft":597,"latitude":29.8927,"longitude":-97.862999,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6330,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5601,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5214,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.825},{"id":"LCL/P","frequency_mhz":126.825}],"has_metar":true,"public":true},{"icao":"KHZR","iata":"","local":"HZR","name":"False River Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Roads","elevation_ft":40,"latitude":30.71829987,"longitude":-91.47869873,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EHLW","iata":"LWR","local":"","name":"Leeuwarden Air Base","category":"medium_airport","iso_country":"NL","iso_region":"NL-FR","municipality":"Leeuwarden","elevation_ft":3,"latitude":53.22859954833984,"longitude":5.760560035705566,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8045,"width_ft":164,"surface":"H"},{"id":"09/27","length_ft":6561,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KICL","iata":"ICL","local":"ICL","name":"Schenck Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clarinda","elevation_ft":996,"latitude":40.72180176,"longitude":-95.02639771,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":2729,"width_ft":280,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KICR","iata":"","local":"ICR","name":"Winner Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Winner","elevation_ft":2033,"latitude":43.39020157,"longitude":-99.84210205,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2751,"width_ft":150,"surface":"T"},{"id":"13/31","length_ft":5500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIAB","iata":"IAB","local":"IAB","name":"McConnell Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1371,"latitude":37.621899,"longitude":-97.268204,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":12000,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":12007,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":124.65},{"id":"LCL/P","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KICT","iata":"ICT","local":"ICT","name":"Wichita Eisenhower National Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1333,"latitude":37.649899,"longitude":-97.433098,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":10302,"width_ft":150,"surface":"C"},{"id":"01R/19L","length_ft":7302,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":6301,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":125.15}],"has_metar":true,"public":true},{"icao":"KIDA","iata":"IDA","local":"IDA","name":"Idaho Falls Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Idaho Falls","elevation_ft":4744,"latitude":43.514599,"longitude":-112.070999,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":3964,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":135.325}],"has_metar":true,"public":true},{"icao":"KIBM","iata":"","local":"IBM","name":"Kimball Municipal Robert E Arraj Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Kimball","elevation_ft":4926,"latitude":41.1880989074707,"longitude":-103.677001953125,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6199,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIEN","iata":"XPR","local":"IEN","name":"Pine Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Pine Ridge","elevation_ft":3333,"latitude":43.020902,"longitude":-102.506089,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQF","iata":"YQF","local":"","name":"Red Deer Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Springbrook","elevation_ft":2968,"latitude":52.182201,"longitude":-113.893997,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":7500,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3454,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQB","iata":"YQB","local":"YQB","name":"Quebec Jean Lesage International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Quebec","elevation_ft":244,"latitude":46.7911,"longitude":-71.393303,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":5700,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":134.6},{"id":"TWR","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"KIGQ","iata":"","local":"IGQ","name":"Lansing Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":620,"latitude":41.5349006652832,"longitude":-87.52950286865234,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3395,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIFP","iata":"IFP","local":"IFP","name":"Laughlin Bullhead International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Bullhead City","elevation_ft":701,"latitude":35.157398,"longitude":-114.559998,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":8501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.825},{"id":"LCL/P","frequency_mhz":123.9}],"has_metar":true,"public":true},{"icao":"KIGM","iata":"IGM","local":"IGM","name":"Kingman Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Kingman","elevation_ft":3449,"latitude":35.259499,"longitude":-113.938004,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6827,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6725,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIIB","iata":"","local":"IIB","name":"Independence Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Independence","elevation_ft":979,"latitude":42.456836,"longitude":-91.94767,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIFA","iata":"IFA","local":"IFA","name":"Iowa Falls Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Iowa Falls","elevation_ft":1137,"latitude":42.4707984924,"longitude":-93.2699966431,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4600,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIDP","iata":"IDP","local":"IDP","name":"Independence Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Independence","elevation_ft":825,"latitude":37.1584014893,"longitude":-95.7783966064,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3402,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIER","iata":"","local":"IER","name":"Natchitoches Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Natchitoches","elevation_ft":121,"latitude":31.735700607299805,"longitude":-93.0990982055664,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4000,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5003,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPY","iata":"YPY","local":"","name":"Fort Chipewyan Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Fort Chipewyan","elevation_ft":761,"latitude":58.7672004699707,"longitude":-111.11699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EINN","iata":"SNN","local":"","name":"Shannon Airport","category":"large_airport","iso_country":"IE","iso_region":"IE-CE","municipality":"Shannon","elevation_ft":46,"latitude":52.702,"longitude":-8.92482,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10495,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EIDW","iata":"DUB","local":"","name":"Dublin Airport","category":"large_airport","iso_country":"IE","iso_region":"IE-D","municipality":"Dublin","elevation_ft":242,"latitude":53.428713,"longitude":-6.262121,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":8652,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":6800,"width_ft":200,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.52},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"DAAT","iata":"TMR","local":"","name":"Aguenar – Hadj Bey Akhamok Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-11","municipality":"Tamanrasset","elevation_ft":4518,"latitude":22.811501,"longitude":5.45108,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":10335,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKCH","iata":"CPH","local":"","name":"Copenhagen Kastrup Airport","category":"large_airport","iso_country":"DK","iso_region":"DK-84","municipality":"Copenhagen","elevation_ft":17,"latitude":55.617900848389,"longitude":12.656000137329,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":11811,"width_ft":150,"surface":"H"},{"id":"04R/22L","length_ft":10827,"width_ft":150,"surface":"H"},{"id":"12/30","length_ft":9186,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.85},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"EKSB","iata":"SGD","local":"","name":"Sønderborg Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-83","municipality":"Sønderborg","elevation_ft":24,"latitude":54.96440124511719,"longitude":9.791729927062988,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5896,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKRN","iata":"RNN","local":"","name":"Bornholm Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-84","municipality":"Rønne","elevation_ft":52,"latitude":55.06330108642578,"longitude":14.759599685668944,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6568,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIKK","iata":"IKK","local":"IKK","name":"Greater Kankakee Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kankakee","elevation_ft":630,"latitude":41.07139968869999,"longitude":-87.8462982178,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5981,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":4398,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIMM","iata":"IMM","local":"IMM","name":"Immokalee Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Immokalee","elevation_ft":37,"latitude":26.427933,"longitude":-81.403531,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4550,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIKG","iata":"","local":"IKG","name":"Kleberg County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kingsville","elevation_ft":130,"latitude":27.55089951,"longitude":-98.03089905,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KILE","iata":"ILE","local":"ILE","name":"Skylark Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":848,"latitude":31.0858001709,"longitude":-97.6865005493,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5495,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKAH","iata":"AAR","local":"","name":"Aarhus Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-82","municipality":"Aarhus","elevation_ft":82,"latitude":56.303331,"longitude":10.618286,"has_tower":true,"has_beacon":false,"runways":[{"id":"10L/28R","length_ft":9110,"width_ft":75,"surface":"H"},{"id":"10R/28L","length_ft":8865,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKBI","iata":"BLL","local":"","name":"Billund Airport","category":"large_airport","iso_country":"DK","iso_region":"DK-83","municipality":"Billund","elevation_ft":247,"latitude":55.740496,"longitude":9.160452,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIND","iata":"IND","local":"IND","name":"Indianapolis International Airport","category":"large_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":797,"latitude":39.7173,"longitude":-86.294403,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":11200,"width_ft":150,"surface":"C"},{"id":"05R/23L","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":7278,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"D-ATIS","frequency_mhz":134.25}],"has_metar":true,"public":true},{"icao":"KIOB","iata":"","local":"IOB","name":"Mount Sterling Montgomery County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Mount Sterling","elevation_ft":1019,"latitude":38.05810165,"longitude":-83.979599,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINW","iata":"INW","local":"INW","name":"Winslow Lindbergh Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Winslow","elevation_ft":4941,"latitude":35.021900177,"longitude":-110.722999573,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7499,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":7100,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINS","iata":"INS","local":"INS","name":"Creech Air Force Base","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Indian Springs","elevation_ft":3133,"latitude":36.5872001648,"longitude":-115.672996521,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5476,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KINK","iata":"INK","local":"INK","name":"Winkler County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wink","elevation_ft":2822,"latitude":31.7796001434,"longitude":-103.200996399,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3514,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINL","iata":"INL","local":"INL","name":"Falls International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"International Falls","elevation_ft":1185,"latitude":48.566200256347656,"longitude":-93.4030990600586,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2999,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":7400,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIMS","iata":"MDN","local":"IMS","name":"Madison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Madison","elevation_ft":819,"latitude":38.75889969,"longitude":-85.46549988,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINJ","iata":"","local":"INJ","name":"Hillsboro Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hillsboro","elevation_ft":686,"latitude":32.0835,"longitude":-97.097198,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3998,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENAL","iata":"AES","local":"","name":"Ålesund Airport, Vigra","category":"medium_airport","iso_country":"NO","iso_region":"NO-15","municipality":"Ålesund","elevation_ft":69,"latitude":62.5625,"longitude":6.1197,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7592,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENCN","iata":"KRS","local":"","name":"Kristiansand Airport, Kjevik","category":"medium_airport","iso_country":"NO","iso_region":"NO-42","municipality":"Kjevik","elevation_ft":57,"latitude":58.204201,"longitude":8.08537,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6680,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIPT","iata":"IPT","local":"IPT","name":"Williamsport Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Williamsport","elevation_ft":529,"latitude":41.241798,"longitude":-76.921097,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6825,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":4273,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1}],"has_metar":true,"public":true},{"icao":"KISM","iata":"ISM","local":"ISM","name":"Kissimmee Gateway Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":82,"latitude":28.2898006439,"longitude":-81.4371032715,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.45},{"id":"ATIS","frequency_mhz":128.775}],"has_metar":true,"public":true},{"icao":"KIRK","iata":"IRK","local":"IRK","name":"Kirksville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kirksville","elevation_ft":966,"latitude":40.09349822998047,"longitude":-92.5448989868164,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":1370,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":6005,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJDN","iata":"JDN","local":"JDN","name":"Jordan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Jordan","elevation_ft":2662,"latitude":47.3288002014,"longitude":-106.95300293,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIPL","iata":"IPL","local":"IPL","name":"Imperial County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Imperial","elevation_ft":-54,"latitude":32.834201812699995,"longitude":-115.57900238,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4501,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5308,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIRS","iata":"IRS","local":"IRS","name":"Kirsch Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Sturgis","elevation_ft":924,"latitude":41.81330109,"longitude":-85.43900299,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5201,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":3601,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIPJ","iata":"","local":"IPJ","name":"Lincolnton Lincoln County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lincolnton","elevation_ft":877,"latitude":35.483299,"longitude":-81.161301,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5700,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBR","iata":"BGO","local":"","name":"Bergen Airport, Flesland","category":"large_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Bergen","elevation_ft":170,"latitude":60.2934,"longitude":5.21814,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9810,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIXD","iata":"JCI","local":"IXD","name":"New Century AirCenter Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"New Century","elevation_ft":1087,"latitude":38.830898,"longitude":-94.890297,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5132,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":7339,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133}],"has_metar":true,"public":true},{"icao":"KITR","iata":"","local":"ITR","name":"Kit Carson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Burlington","elevation_ft":4219,"latitude":39.24250030517578,"longitude":-102.28500366210938,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5199,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKYT","iata":"AAL","local":"","name":"Aalborg Airport","category":"medium_airport","iso_country":"DK","iso_region":"DK-81","municipality":"Aalborg","elevation_ft":10,"latitude":57.094763,"longitude":9.84993,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":5902,"width_ft":98,"surface":"H"},{"id":"08R/26L","length_ft":8363,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KITH","iata":"ITH","local":"ITH","name":"Ithaca Tompkins Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ithaca","elevation_ft":1099,"latitude":42.49100112915039,"longitude":-76.4583969116211,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6977,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":2018,"width_ft":50,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.6},{"id":"ATIS","frequency_mhz":125.175}],"has_metar":true,"public":true},{"icao":"KISQ","iata":"ISQ","local":"ISQ","name":"Schoolcraft County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Manistique","elevation_ft":684,"latitude":45.97460175,"longitude":-86.17179871,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2501,"width_ft":50,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KISW","iata":"ISW","local":"ISW","name":"Alexander Field South Wood County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wisconsin Rapids","elevation_ft":1021,"latitude":44.3602981567,"longitude":-89.83899688720001,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":3470,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":2072,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIWD","iata":"IWD","local":"IWD","name":"Gogebic Iron County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Ironwood","elevation_ft":1230,"latitude":46.5275,"longitude":-90.131401,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EKVG","iata":"FAE","local":"","name":"Vágar Airport","category":"medium_airport","iso_country":"FO","iso_region":"FO-U-A","municipality":"Vágar","elevation_ft":280,"latitude":62.063256,"longitude":-7.275782,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5902,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBO","iata":"BOO","local":"","name":"Bodø Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Bodø","elevation_ft":42,"latitude":67.269203,"longitude":14.3653,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9167,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENDU","iata":"BDU","local":"","name":"Bardufoss Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Målselv","elevation_ft":252,"latitude":69.055801391602,"longitude":18.540399551392,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9826,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENAN","iata":"ANX","local":"","name":"Andøya Airport, Andenes","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Andenes","elevation_ft":43,"latitude":69.292503,"longitude":16.144199,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":9849,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAX","iata":"JAX","local":"JAX","name":"Jacksonville International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":30,"latitude":30.49410057067871,"longitude":-81.68789672851562,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":7701,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"D-ATIS","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"KJAN","iata":"JAN","local":"JAN","name":"Jackson-Medgar Wiley Evers International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":346,"latitude":32.311199,"longitude":-90.075897,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":8500,"width_ft":150,"surface":"A"},{"id":"16R/34L","length_ft":8500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":121.05}],"has_metar":true,"public":true},{"icao":"KJBR","iata":"JBR","local":"JBR","name":"Jonesboro Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":262,"latitude":35.83169937133789,"longitude":-90.64640045166016,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6200,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4099,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJCT","iata":"JCT","local":"JCT","name":"Kimble County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Junction","elevation_ft":1749,"latitude":30.5112991333,"longitude":-99.7634963989,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2255,"width_ft":130,"surface":"T"},{"id":"17/35","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIZA","iata":"SQA","local":"IZA","name":"Santa Ynez Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ynez","elevation_ft":674,"latitude":34.60680008,"longitude":-120.0759964,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2803,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAC","iata":"JAC","local":"JAC","name":"Jackson Hole Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":6451,"latitude":43.6072998046875,"longitude":-110.73799896240234,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6300,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.075},{"id":"D-ATIS","frequency_mhz":120.625}],"has_metar":true,"public":true},{"icao":"KJAU","iata":"","local":"JAU","name":"Colonel Tommy C Stiner Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Jacksboro","elevation_ft":1180,"latitude":36.334073,"longitude":-84.162977,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJAS","iata":"JAS","local":"JAS","name":"Jasper County Airport Bell Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jasper","elevation_ft":213,"latitude":30.8857,"longitude":-94.034897,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENEV","iata":"EVE","local":"","name":"Harstad/Narvik Airport, Evenes","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Evenes","elevation_ft":84,"latitude":68.491302490234,"longitude":16.678100585938,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9226,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJER","iata":"","local":"JER","name":"Jerome County Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Jerome","elevation_ft":4053,"latitude":42.72669982910156,"longitude":-114.45700073242188,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBN","iata":"BNN","local":"","name":"Brønnøysund Airport, Brønnøy","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Brønnøy","elevation_ft":25,"latitude":65.461098,"longitude":12.2175,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4718,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENAT","iata":"ALF","local":"","name":"Alta Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Alta","elevation_ft":9,"latitude":69.976097106934,"longitude":23.371700286865,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7395,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENBS","iata":"BJF","local":"","name":"Båtsfjord Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Båtsfjord","elevation_ft":490,"latitude":70.60050201416,"longitude":29.691400527954,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3281,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJHW","iata":"JHW","local":"JHW","name":"Chautauqua County-Jamestown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Jamestown","elevation_ft":1723,"latitude":42.15425,"longitude":-79.254008,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5299,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4499,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENOL","iata":"OLA","local":"","name":"Ørland Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Ørland","elevation_ft":28,"latitude":63.69889831542969,"longitude":9.604000091552734,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJEF","iata":"JEF","local":"JEF","name":"Jefferson City Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jefferson City","elevation_ft":549,"latitude":38.5912017822,"longitude":-92.1560974121,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3401,"width_ft":75,"surface":"C"},{"id":"12/30","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.6}],"has_metar":true,"public":true},{"icao":"KJKJ","iata":"","local":"JKJ","name":"Moorhead Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Moorhead","elevation_ft":918,"latitude":46.83929825,"longitude":-96.66369629,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJKA","iata":"GUF","local":"JKA","name":"Jack Edwards National Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Gulf Shores","elevation_ft":17,"latitude":30.290501,"longitude":-87.671799,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6962,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3596,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.65},{"id":"ATIS","frequency_mhz":134.525}],"has_metar":true,"public":true},{"icao":"ENRM","iata":"RVK","local":"","name":"Rørvik Airport, Ryum","category":"medium_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Rørvik","elevation_ft":14,"latitude":64.838302612305,"longitude":11.14610004425,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3123,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENHD","iata":"HAU","local":"","name":"Haugesund Airport, Karmøy","category":"medium_airport","iso_country":"NO","iso_region":"NO-11","municipality":"Karmøy","elevation_ft":86,"latitude":59.345299,"longitude":5.20836,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6955,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENFL","iata":"FRO","local":"","name":"Florø Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Florø","elevation_ft":37,"latitude":61.583599090576,"longitude":5.0247201919556,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4144,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENNM","iata":"OSY","local":"","name":"Namsos Airport","category":"small_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Namsos","elevation_ft":7,"latitude":64.472198,"longitude":11.5786,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3074,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJOT","iata":"JOT","local":"JOT","name":"Joliet Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Joliet","elevation_ft":582,"latitude":41.51779938,"longitude":-88.17549896,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2552,"width_ft":150,"surface":"T"},{"id":"13/31","length_ft":2821,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJLN","iata":"JLN","local":"JLN","name":"Joplin Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Joplin","elevation_ft":981,"latitude":37.151798,"longitude":-94.498299,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":120.85}],"has_metar":true,"public":true},{"icao":"KJMS","iata":"JMS","local":"JMS","name":"Jamestown Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Jamestown","elevation_ft":1500,"latitude":46.92969894,"longitude":-98.67819977,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5750,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJSV","iata":"","local":"JSV","name":"Sallisaw Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sallisaw","elevation_ft":527,"latitude":35.4382019,"longitude":-94.80280304,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJSO","iata":"JKV","local":"JSO","name":"Cherokee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jacksonville","elevation_ft":677,"latitude":31.8693008423,"longitude":-95.2173995972,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJWG","iata":"","local":"JWG","name":"Watonga Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Watonga","elevation_ft":1550,"latitude":35.8647,"longitude":-98.420799,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJYG","iata":"","local":"JYG","name":"St James Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"St James","elevation_ft":1067,"latitude":43.98630142211914,"longitude":-94.55789947509766,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENHF","iata":"HFT","local":"","name":"Hammerfest Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Hammerfest","elevation_ft":266,"latitude":70.679702758789,"longitude":23.668600082397,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3061,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJYM","iata":"","local":"JYM","name":"Hillsdale Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Hillsdale","elevation_ft":1182,"latitude":41.92129898071289,"longitude":-84.58580017089844,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJZI","iata":"","local":"JZI","name":"Charleston Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Johns Island","elevation_ft":17,"latitude":32.698238,"longitude":-80.005675,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4313,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":5350,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJXI","iata":"","local":"JXI","name":"Fox Stephens Field Gilmer Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gilmer","elevation_ft":415,"latitude":32.699001,"longitude":-94.948898,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3998,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRA","iata":"MQN","local":"","name":"Mo i Rana Airport, Røssvoll","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Mo i Rana","elevation_ft":229,"latitude":66.363899230957,"longitude":14.301400184631,"has_tower":false,"has_beacon":false,"runways":[{"id":"3/31","length_ft":2861,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJWN","iata":"","local":"JWN","name":"John C Tune Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":495,"latitude":36.18239974975586,"longitude":-86.88670349121094,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.45},{"id":"ATIS","frequency_mhz":127.075}],"has_metar":true,"public":true},{"icao":"KJWY","iata":"","local":"JWY","name":"Mid-Way Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Midlothian/Waxahachie","elevation_ft":713,"latitude":32.4587,"longitude":-96.912399,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJYR","iata":"","local":"JYR","name":"York Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"York","elevation_ft":1670,"latitude":40.89680099487305,"longitude":-97.622802734375,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4500,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":5898,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAM","iata":"LAM","local":"LAM","name":"Los Alamos Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Los Alamos","elevation_ft":7171,"latitude":35.8797988892,"longitude":-106.268997192,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6000,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAL","iata":"LAL","local":"LAL","name":"Lakeland Linder International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":142,"latitude":27.988899,"longitude":-82.018602,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2208,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":8500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.025},{"id":"LCL/P","frequency_mhz":124.5}],"has_metar":true,"public":true},{"icao":"KKLS","iata":"KLS","local":"KLS","name":"Southwest Washington Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kelso","elevation_ft":20,"latitude":46.11800003049999,"longitude":-122.898002625,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4391,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KKNB","iata":"","local":"KNB","name":"Kanab Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Kanab","elevation_ft":4868,"latitude":37.01110076904297,"longitude":-112.53099822998048,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAR","iata":"LAR","local":"LAR","name":"Laramie Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Laramie","elevation_ft":7284,"latitude":41.31209945678711,"longitude":-105.6750030517578,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8503,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":6301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBX","iata":"LJN","local":"LBX","name":"Texas Gulf Coast Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Angleton","elevation_ft":25,"latitude":29.108601,"longitude":-95.462097,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":7000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAA","iata":"LAA","local":"LAA","name":"Southeast Colorado Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Lamar","elevation_ft":3706,"latitude":38.066407,"longitude":-102.691373,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":6304,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAN","iata":"LAN","local":"LAN","name":"Capital City Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lansing","elevation_ft":861,"latitude":42.77870178222656,"longitude":-84.58740234375,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5003,"width_ft":120,"surface":"A"},{"id":"10L/28R","length_ft":3601,"width_ft":75,"surface":"A"},{"id":"10R/28L","length_ft":8506,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.75},{"id":"LCL/P","frequency_mhz":119.9}],"has_metar":true,"public":true},{"icao":"KJZP","iata":"","local":"JZP","name":"Pickens County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Jasper","elevation_ft":1535,"latitude":34.453399658203125,"longitude":-84.4573974609375,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENNA","iata":"LKL","local":"","name":"Lakselv Airport, Banak","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Lakselv","elevation_ft":25,"latitude":70.068802,"longitude":24.973499,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9137,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENHV","iata":"HVG","local":"","name":"Honningsvåg Airport, Valan","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Honningsvåg","elevation_ft":44,"latitude":71.009697,"longitude":25.983601,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3022,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLAX","iata":"LAX","local":"LAX","name":"Los Angeles / Tom Bradley International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":125,"latitude":33.942501,"longitude":-118.407997,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":8926,"width_ft":150,"surface":"A"},{"id":"06R/24L","length_ft":10885,"width_ft":150,"surface":"C"},{"id":"07L/25R","length_ft":12923,"width_ft":150,"surface":"C"},{"id":"07R/25L","length_ft":11095,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"D-ATIS","frequency_mhz":133.8},{"id":"D-ATIS","frequency_mhz":135.65}],"has_metar":true,"public":true},{"icao":"KLBF","iata":"LBF","local":"LBF","name":"North Platte Regional Airport Lee Bird Field","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"North Platte","elevation_ft":2777,"latitude":41.12620163,"longitude":-100.6839981,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":4436,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBL","iata":"LBL","local":"LBL","name":"Liberal Mid-America Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Liberal","elevation_ft":2885,"latitude":37.0442009,"longitude":-100.9599991,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":7105,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBB","iata":"LBB","local":"LBB","name":"Lubbock Preston Smith International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3282,"latitude":33.663601,"longitude":-101.822998,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":8003,"width_ft":150,"surface":"C"},{"id":"17L/35R","length_ft":2891,"width_ft":74,"surface":"A"},{"id":"17R/35L","length_ft":11500,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"ATIS","frequency_mhz":125.3}],"has_metar":true,"public":true},{"icao":"KLAW","iata":"LAW","local":"LAW","name":"Lawton Fort Sill Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lawton","elevation_ft":1110,"latitude":34.5676994324,"longitude":-98.4166030884,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8599,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":120.75}],"has_metar":true,"public":true},{"icao":"KLBO","iata":"","local":"LBO","name":"Floyd W. Jones Lebanon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lebanon","elevation_ft":1321,"latitude":37.64830017,"longitude":-92.65239716,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENKR","iata":"KKN","local":"","name":"Kirkenes Airport, Høybuktmoen","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Kirkenes","elevation_ft":283,"latitude":69.7258,"longitude":29.8913,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7726,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLCG","iata":"","local":"LCG","name":"Wayne Municipal Airport/Stan Morris Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wayne","elevation_ft":1431,"latitude":42.241901,"longitude":-96.9814,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3406,"width_ft":60,"surface":"C"},{"id":"13/31","length_ft":2070,"width_ft":120,"surface":"T"},{"id":"18/36","length_ft":4201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENMH","iata":"MEH","local":"","name":"Mehamn Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Mehamn","elevation_ft":39,"latitude":71.02970123291,"longitude":27.826700210571,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3182,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAY","iata":"MZW","local":"","name":"Mecheria Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-45","municipality":"Mecheria","elevation_ft":3855,"latitude":33.535900116,"longitude":-0.242353007197,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/34","length_ft":11750,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":9600,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENZV","iata":"SVG","local":"","name":"Stavanger Airport, Sola","category":"large_airport","iso_country":"NO","iso_region":"NO-11","municipality":"Stavanger","elevation_ft":29,"latitude":58.876701,"longitude":5.63778,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8875,"width_ft":197,"surface":"H"},{"id":"11/29","length_ft":8045,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSG","iata":"SOG","local":"","name":"Sogndal Airport, Haukåsen","category":"small_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Sogndal","elevation_ft":1633,"latitude":61.156101,"longitude":7.13778,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3642,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLDM","iata":"LDM","local":"LDM","name":"Mason County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Ludington","elevation_ft":646,"latitude":43.96250153,"longitude":-86.40789795,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3503,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLEE","iata":"LEE","local":"LEE","name":"Leesburg International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Leesburg","elevation_ft":76,"latitude":28.82309914,"longitude":-81.80870056,"has_tower":true,"has_beacon":true,"runways":[{"id":"03W/21W","length_ft":15000,"width_ft":2000,"surface":"W"},{"id":"04/22","length_ft":4957,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":6300,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.35},{"id":"ATIS","frequency_mhz":134.325}],"has_metar":true,"public":true},{"icao":"KLCH","iata":"LCH","local":"LCH","name":"Lake Charles Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":15,"latitude":30.126100540161133,"longitude":-93.22329711914062,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5200,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":6500,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.75},{"id":"LCL/P","frequency_mhz":120.7}],"has_metar":true,"public":true},{"icao":"KLEB","iata":"LEB","local":"LEB","name":"Lebanon Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NH","municipality":"Lebanon","elevation_ft":603,"latitude":43.6260986328,"longitude":-72.30419921880001,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5496,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.65},{"id":"LCL/P","frequency_mhz":125.95}],"has_metar":true,"public":true},{"icao":"ENRO","iata":"RRS","local":"","name":"Røros Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-50","municipality":"Røros","elevation_ft":2054,"latitude":62.578399658203,"longitude":11.342300415039,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5643,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSD","iata":"SDN","local":"","name":"Sandane Airport, Anda","category":"small_airport","iso_country":"NO","iso_region":"NO-46","municipality":"Sandane","elevation_ft":196,"latitude":61.830002,"longitude":6.10583,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3182,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLGD","iata":"LGD","local":"LGD","name":"La Grande/Union County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"La Grande","elevation_ft":2717,"latitude":45.2901992798,"longitude":-118.007003784,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6261,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLEW","iata":"LEW","local":"LEW","name":"Auburn Lewiston Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Auburn/Lewiston","elevation_ft":288,"latitude":44.048500061,"longitude":-70.2835006714,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":2750,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLFK","iata":"LFK","local":"LFK","name":"Angelina County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lufkin","elevation_ft":296,"latitude":31.2339992523,"longitude":-94.75,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5400,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":4311,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLFT","iata":"LFT","local":"LFT","name":"Lafayette Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":42,"latitude":30.205299,"longitude":-91.987602,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":4099,"width_ft":75,"surface":"A"},{"id":"04R/22L","length_ft":8000,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":5400,"width_ft":148,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":134.05}],"has_metar":true,"public":true},{"icao":"KLGC","iata":"LGC","local":"LGC","name":"LaGrange Callaway Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"LaGrange","elevation_ft":693,"latitude":33.008873,"longitude":-85.074331,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":6499,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACJ","iata":"","local":"ACJ","name":"Jimmy Carter Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Americus","elevation_ft":468,"latitude":32.110802,"longitude":-84.188904,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6011,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":3786,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLHX","iata":"","local":"LHX","name":"La Junta Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"La Junta","elevation_ft":4229,"latitude":38.04970169,"longitude":-103.5090027,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6849,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5803,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":145,"width_ft":145,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRY","iata":"RYG","local":"","name":"Moss Airport, Rygge","category":"medium_airport","iso_country":"NO","iso_region":"NO-30","municipality":"Oslo","elevation_ft":174,"latitude":59.378817,"longitude":10.785439,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8012,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLIC","iata":"LIC","local":"LIC","name":"Limon Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Limon","elevation_ft":5374,"latitude":39.2747993469,"longitude":-103.666000366,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4700,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENTC","iata":"TOS","local":"","name":"Tromsø Airport, Langnes","category":"large_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Tromsø","elevation_ft":31,"latitude":69.683296,"longitude":18.9189,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8041,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAO","iata":"","local":"AAO","name":"Colonel James Jabara Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1421,"latitude":37.74760056,"longitude":-97.22109985,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6101,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLHQ","iata":"","local":"LHQ","name":"Fairfield County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lancaster","elevation_ft":868,"latitude":39.75559997558594,"longitude":-82.65709686279297,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLGU","iata":"LGU","local":"LGU","name":"Logan-Cache Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Logan","elevation_ft":4457,"latitude":41.7911987305,"longitude":-111.851997375,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4075,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":9020,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLHM","iata":"","local":"LHM","name":"Lincoln Regional Karl Harder Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lincoln","elevation_ft":121,"latitude":38.909199,"longitude":-121.350998,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLHW","iata":"LIY","local":"LHW","name":"MidCoast Regional Airport at Wright Army Airfield","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hinesville","elevation_ft":45,"latitude":31.891237,"longitude":-81.561003,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":6500,"width_ft":100,"surface":"A"},{"id":"06R/24L","length_ft":2610,"width_ft":100,"surface":"A"},{"id":"15L/33R","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"15R/33L","length_ft":2520,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.475},{"id":"LCL/P","frequency_mhz":126.25}],"has_metar":true,"public":true},{"icao":"KLLN","iata":"","local":"LLN","name":"Levelland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Levelland","elevation_ft":3514,"latitude":33.5525016784668,"longitude":-102.37200164794922,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2072,"width_ft":55,"surface":"A"},{"id":"17/35","length_ft":6110,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLLJ","iata":"CHL","local":"LLJ","name":"Challis Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Challis","elevation_ft":5072,"latitude":44.522999,"longitude":-114.218002,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4601,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACB","iata":"ACB","local":"ACB","name":"Antrim County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bellaire","elevation_ft":623,"latitude":44.988602,"longitude":-85.198402,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAS","iata":"","local":"AAS","name":"Taylor County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Campbellsville","elevation_ft":921,"latitude":37.35829925537109,"longitude":-85.30940246582031,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLJF","iata":"","local":"LJF","name":"Litchfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Litchfield","elevation_ft":1140,"latitude":45.09709930419922,"longitude":-94.5073013305664,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLLQ","iata":"","local":"LLQ","name":"Monticello Municipal Ellis Field","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Monticello","elevation_ft":270,"latitude":33.638599,"longitude":-91.750999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5020,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLKV","iata":"LKV","local":"LKV","name":"Lake County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Lakeview","elevation_ft":4733,"latitude":42.1610984802,"longitude":-120.399002075,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5318,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSK","iata":"SKN","local":"","name":"Stokmarknes Airport, Skagen","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Hadsel","elevation_ft":11,"latitude":68.578827,"longitude":15.033417,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3031,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KABY","iata":"ABY","local":"ABY","name":"Southwest Georgia Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Albany","elevation_ft":197,"latitude":31.532946,"longitude":-84.196215,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6601,"width_ft":148,"surface":"A"},{"id":"17/35","length_ft":5219,"width_ft":148,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.25},{"id":"ATIS","frequency_mhz":133.05}],"has_metar":true,"public":true},{"icao":"KABR","iata":"ABR","local":"ABR","name":"Aberdeen Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Aberdeen","elevation_ft":1302,"latitude":45.449100494384766,"longitude":-98.42179870605467,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6901,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAT","iata":"","local":"AAT","name":"Alturas Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Alturas","elevation_ft":4378,"latitude":41.482736,"longitude":-120.565671,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2506,"width_ft":60,"surface":"A"},{"id":"13/31","length_ft":4228,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLMO","iata":"","local":"LMO","name":"Vance Brand Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Longmont","elevation_ft":5055,"latitude":40.1637001,"longitude":-105.163002,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4799,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KABI","iata":"ABI","local":"ABI","name":"Abilene Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1791,"latitude":32.4113006592,"longitude":-99.6819000244,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":7198,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":7208,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.25},{"id":"LCL/P","frequency_mhz":120.1}],"has_metar":true,"public":true},{"icao":"KLNL","iata":"","local":"LNL","name":"Kings Land O' Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Land O' Lakes","elevation_ft":1704,"latitude":46.15399933,"longitude":-89.21209717,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2577,"width_ft":130,"surface":"T"},{"id":"14/32","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLNR","iata":"LNR","local":"LNR","name":"Tri-County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Spring Green","elevation_ft":717,"latitude":43.2099,"longitude":-90.181332,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":1850,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLNA","iata":"LNA","local":"LNA","name":"Palm Beach County Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":14,"latitude":26.59300041,"longitude":-80.08509827,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3256,"width_ft":75,"surface":"A"},{"id":"10/28","length_ft":3489,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":3421,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLNK","iata":"LNK","local":"LNK","name":"Lincoln Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lincoln","elevation_ft":1219,"latitude":40.85100173950195,"longitude":-96.75920104980467,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":8649,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":5801,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":12901,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.05}],"has_metar":true,"public":true},{"icao":"KLMT","iata":"LMT","local":"LMT","name":"Crater Lake-Klamath Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Klamath Falls","elevation_ft":4095,"latitude":42.156101,"longitude":-121.733002,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5258,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":10302,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.5},{"id":"LCL/P","frequency_mhz":133.975}],"has_metar":true,"public":true},{"icao":"KLND","iata":"LND","local":"LND","name":"Hunt Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Lander","elevation_ft":5586,"latitude":42.815201,"longitude":-108.730003,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLNC","iata":"","local":"LNC","name":"Lancaster Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lancaster","elevation_ft":501,"latitude":32.577564,"longitude":-96.717494,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSR","iata":"SOJ","local":"","name":"Sørkjosen Airport","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Sørkjosen","elevation_ft":16,"latitude":69.786796569824,"longitude":20.959400177002,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3327,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENSS","iata":"VAW","local":"","name":"Vardø Airport, Svartnes","category":"medium_airport","iso_country":"NO","iso_region":"NO-54","municipality":"Vardø","elevation_ft":42,"latitude":70.355400085449,"longitude":31.044900894165,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3760,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ENRS","iata":"RET","local":"","name":"Røst Airport","category":"small_airport","iso_country":"NO","iso_region":"NO-18","municipality":"UNKNOWN","elevation_ft":7,"latitude":67.527801513672,"longitude":12.103300094604,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3386,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLPR","iata":"","local":"LPR","name":"Lorain County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lorain/Elyria","elevation_ft":793,"latitude":41.34429932,"longitude":-82.17759705,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLOU","iata":"LOU","local":"LOU","name":"Bowman Field","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":546,"latitude":38.2280006409,"longitude":-85.6636962891,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4358,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":3580,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":124.15}],"has_metar":true,"public":true},{"icao":"KLOL","iata":"LOL","local":"LOL","name":"Derby Field","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Lovelock","elevation_ft":3904,"latitude":40.0663986206,"longitude":-118.565002441,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5529,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":4931,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLRD","iata":"LRD","local":"LRD","name":"Laredo International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Laredo","elevation_ft":508,"latitude":27.543800354003903,"longitude":-99.46160125732422,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5927,"width_ft":150,"surface":"C"},{"id":"18L/36R","length_ft":8236,"width_ft":150,"surface":"C"},{"id":"18R/36L","length_ft":8743,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":125.775}],"has_metar":true,"public":true},{"icao":"KLPC","iata":"LPC","local":"LPC","name":"Lompoc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lompoc","elevation_ft":88,"latitude":34.665599823,"longitude":-120.468002319,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLQK","iata":"LQK","local":"LQK","name":"Pickens County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Pickens","elevation_ft":1013,"latitude":34.8100013733,"longitude":-82.70290374759999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLRY","iata":"","local":"LRY","name":"Lawrence Smith Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Harrisonville","elevation_ft":915,"latitude":38.609863,"longitude":-94.343548,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLRJ","iata":"LRJ","local":"LRJ","name":"Le Mars Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Le Mars","elevation_ft":1197,"latitude":42.77799988,"longitude":-96.1937027,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5056,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLSE","iata":"LSE","local":"LSE","name":"La Crosse Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"La Crosse","elevation_ft":655,"latitude":43.879002,"longitude":-91.256699,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5199,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":6050,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":8742,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":124.95}],"has_metar":true,"public":true},{"icao":"KLSF","iata":"LSF","local":"LSF","name":"Lawson Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Benning","elevation_ft":232,"latitude":32.332546,"longitude":-84.988003,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":10002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.05},{"id":"ATIS","frequency_mhz":134.375}],"has_metar":true,"public":true},{"icao":"KLRF","iata":"LRF","local":"LRF","name":"Little Rock Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jacksonville","elevation_ft":311,"latitude":34.916900634799994,"longitude":-92.14969635010002,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":12007,"width_ft":150,"surface":"C"},{"id":"071/251","length_ft":3499,"width_ft":60,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.175},{"id":"LCL/P","frequency_mhz":120.6}],"has_metar":true,"public":true},{"icao":"KLRU","iata":"LRU","local":"LRU","name":"Las Cruces International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Las Cruces","elevation_ft":4456,"latitude":32.289398193359375,"longitude":-106.9219970703125,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7501,"width_ft":105,"surface":"A"},{"id":"08/26","length_ft":6069,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":7506,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLRO","iata":"","local":"LRO","name":"Mount Pleasant Regional Airport Faison Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Mount Pleasant","elevation_ft":12,"latitude":32.8978,"longitude":-79.782898,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACQ","iata":"","local":"ACQ","name":"Waseca Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Waseca","elevation_ft":1126,"latitude":44.07350158691406,"longitude":-93.55290222167967,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3399,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADC","iata":"","local":"ADC","name":"Wadena Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wadena","elevation_ft":1369,"latitude":46.45029830932617,"longitude":-95.21099853515624,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACV","iata":"ACV","local":"ACV","name":"California Redwood Coast-Humboldt County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Arcata/Eureka","elevation_ft":221,"latitude":40.978101,"longitude":-124.109,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4501,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":6046,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADH","iata":"ADT","local":"ADH","name":"Ada Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ada","elevation_ft":1016,"latitude":34.805214,"longitude":-96.671988,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2717,"width_ft":50,"surface":"A"},{"id":"18/36","length_ft":6203,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLUF","iata":"LUF","local":"LUF","name":"Luke Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Glendale","elevation_ft":1085,"latitude":33.535,"longitude":-112.383003,"has_tower":true,"has_beacon":false,"runways":[{"id":"03L/21R","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"03R/21L","length_ft":9912,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":134.925}],"has_metar":true,"public":true},{"icao":"KADM","iata":"ADM","local":"ADM","name":"Ardmore Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ardmore","elevation_ft":777,"latitude":34.30301,"longitude":-97.0196342,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":9002,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":5404,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":125.6}],"has_metar":true,"public":true},{"icao":"KLUG","iata":"","local":"LUG","name":"Ellington Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lewisburg","elevation_ft":717,"latitude":35.50699996948242,"longitude":-86.80390167236328,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLUL","iata":"LUL","local":"LUL","name":"Hesler Noble Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Laurel","elevation_ft":238,"latitude":31.6725997925,"longitude":-89.172203064,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5513,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLVJ","iata":"","local":"LVJ","name":"Pearland Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":44,"latitude":29.521299362182617,"longitude":-95.24210357666016,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4313,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLUD","iata":"","local":"LUD","name":"Decatur Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":1047,"latitude":33.254601,"longitude":-97.580597,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWC","iata":"LWC","local":"LWC","name":"Lawrence Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Lawrence","elevation_ft":833,"latitude":39.01119995,"longitude":-95.21659851,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3901,"width_ft":75,"surface":"C"},{"id":"15/33","length_ft":5700,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KACP","iata":"","local":"ACP","name":"Allen Parish Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Oakdale","elevation_ft":107,"latitude":30.75029945373535,"longitude":-92.68830108642578,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPKK","iata":"KRK","local":"","name":"Kraków John Paul II International Airport","category":"large_airport","iso_country":"PL","iso_region":"PL-MA","municipality":"Balice","elevation_ft":791,"latitude":50.077702,"longitude":19.7848,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8366,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLVN","iata":"","local":"LVN","name":"Airlake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Minneapolis","elevation_ft":960,"latitude":44.62789916992188,"longitude":-93.22810363769533,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4099,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWS","iata":"LWS","local":"LWS","name":"Lewiston Nez Perce County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Lewiston","elevation_ft":1442,"latitude":46.3745002746582,"longitude":-117.01499938964844,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6511,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4}],"has_metar":true,"public":true},{"icao":"KLVM","iata":"LVM","local":"LVM","name":"Mission Field","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Livingston","elevation_ft":4660,"latitude":45.6994018555,"longitude":-110.447998047,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5701,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":3762,"width_ft":125,"surface":"T"},{"id":"13/31","length_ft":2724,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPBY","iata":"BZG","local":"","name":"Bydgoszcz Ignacy Jan Paderewski Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-KP","municipality":"Bydgoszcz","elevation_ft":235,"latitude":53.096802,"longitude":17.977699,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLVS","iata":"LVS","local":"LVS","name":"Las Vegas Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Las Vegas","elevation_ft":6877,"latitude":35.654202,"longitude":-105.141998,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5006,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":8199,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWA","iata":"","local":"LWA","name":"South Haven Area Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"South Haven","elevation_ft":666,"latitude":42.3512,"longitude":-86.255699,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4800,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":3260,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPSC","iata":"SZZ","local":"","name":"Szczecin-Goleniów \"Solidarność\" Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-ZP","municipality":"Goleniow","elevation_ft":154,"latitude":53.584702,"longitude":14.9022,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAFF","iata":"AFF","local":"AFF","name":"USAF Academy Airfield","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6572,"latitude":38.972497,"longitude":-104.821125,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2485,"width_ft":75,"surface":"A"},{"id":"16C/34C","length_ft":4480,"width_ft":75,"surface":"A"},{"id":"16L/34R","length_ft":3534,"width_ft":75,"surface":"A"},{"id":"16R/34L","length_ft":4500,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.15},{"id":"ATIS","frequency_mhz":128.525}],"has_metar":true,"public":true},{"icao":"KAEG","iata":"","local":"AEG","name":"Double Eagle II Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5837,"latitude":35.145198822021484,"longitude":-106.79499816894533,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7398,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5983,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.025},{"id":"LCL/P","frequency_mhz":120.15}],"has_metar":true,"public":true},{"icao":"KLXT","iata":"","local":"LXT","name":"Lee's Summit Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lee's Summit","elevation_ft":1004,"latitude":38.95970154,"longitude":-94.37139893,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":5501,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLXL","iata":"","local":"LXL","name":"Little Falls-Morrison County-Lindbergh field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Little Falls","elevation_ft":1123,"latitude":45.9496994,"longitude":-94.34739685,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4010,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2858,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWT","iata":"LWT","local":"LWT","name":"Lewistown Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lewistown","elevation_ft":4170,"latitude":47.04930114746094,"longitude":-109.46700286865234,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5600,"width_ft":101,"surface":"A"},{"id":"08/26","length_ft":6100,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4102,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLXV","iata":"LXV","local":"LXV","name":"Lake County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Leadville","elevation_ft":9927,"latitude":39.220298767100005,"longitude":-106.317001343,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6400,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":150,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWV","iata":"LWV","local":"LWV","name":"Lawrenceville Vincennes International Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lawrenceville","elevation_ft":430,"latitude":38.7643013,"longitude":-87.6054992676,"has_tower":false,"has_beacon":true,"runways":[{"id":"04U/22U","length_ft":1000,"width_ft":200,"surface":"T"},{"id":"09/27","length_ft":5198,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5199,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLYV","iata":"","local":"LYV","name":"Quentin Aanenson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Luverne","elevation_ft":1431,"latitude":43.621200561523,"longitude":-96.215797424316,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLXN","iata":"LXN","local":"LXN","name":"Jim Kelly Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lexington","elevation_ft":2413,"latitude":40.7910003662,"longitude":-99.7772979736,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3200,"width_ft":250,"surface":"T"},{"id":"14/32","length_ft":5489,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAEJ","iata":"","local":"AEJ","name":"Central Colorado Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Buena Vista","elevation_ft":7946,"latitude":38.812906,"longitude":-106.120062,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":8303,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAEX","iata":"AEX","local":"AEX","name":"Alexandria International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":89,"latitude":31.3274,"longitude":-92.549797,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9352,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":7001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.35}],"has_metar":true,"public":true},{"icao":"KARW","iata":"BFT","local":"ARW","name":"Beaufort Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Beaufort","elevation_ft":10,"latitude":32.412201,"longitude":-80.634399,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3434,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMAF","iata":"MAF","local":"MAF","name":"Midland International Air and Space Port","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Midland","elevation_ft":2871,"latitude":31.942499,"longitude":-102.202003,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4605,"width_ft":75,"surface":"A"},{"id":"10/28","length_ft":8302,"width_ft":150,"surface":"A"},{"id":"16L/34R","length_ft":4247,"width_ft":100,"surface":"A"},{"id":"16R/34L","length_ft":9501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":126.8}],"has_metar":true,"public":true},{"icao":"KMAE","iata":"MAE","local":"MAE","name":"Madera Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Madera","elevation_ft":255,"latitude":36.9886016846,"longitude":-120.111999512,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5545,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMAW","iata":"MAW","local":"MAW","name":"Malden Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Malden","elevation_ft":294,"latitude":36.6006012,"longitude":-89.99220276,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5001,"width_ft":80,"surface":"A"},{"id":"18/36","length_ft":5010,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLZU","iata":"LZU","local":"LZU","name":"Gwinnett County Briscoe Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lawrenceville","elevation_ft":1061,"latitude":33.97809982,"longitude":-83.96240234,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.1},{"id":"ATIS","frequency_mhz":132.275}],"has_metar":true,"public":true},{"icao":"KADS","iata":"ADS","local":"ADS","name":"Addison Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":644,"latitude":32.9686012268,"longitude":-96.8364028931,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7203,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126},{"id":"ATIS","frequency_mhz":133.4}],"has_metar":true,"public":true},{"icao":"KAFK","iata":"","local":"AFK","name":"Nebraska City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Nebraska City","elevation_ft":1165,"latitude":40.606899,"longitude":-95.8657,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2550,"width_ft":151,"surface":"T"},{"id":"15/33","length_ft":4501,"width_ft":76,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLZZ","iata":"","local":"LZZ","name":"Lampasas Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lampasas","elevation_ft":1215,"latitude":31.106199,"longitude":-98.1959,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4202,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPPO","iata":"POZ","local":"","name":"Poznań-Ławica Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-WP","municipality":"Poznań","elevation_ft":308,"latitude":52.421001,"longitude":16.8263,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8215,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAFO","iata":"AFO","local":"AFO","name":"Afton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Afton","elevation_ft":6221,"latitude":42.7112007141,"longitude":-110.942001343,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7025,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPSY","iata":"SZY","local":"","name":"Olsztyn-Mazury Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-WN","municipality":"Olsztyn","elevation_ft":463,"latitude":53.481899,"longitude":20.9377,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCD","iata":"MCD","local":"MCD","name":"Mackinac Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mackinac Island","elevation_ft":739,"latitude":45.86489868,"longitude":-84.63729858,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCF","iata":"MCF","local":"MCF","name":"MacDill Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":14,"latitude":27.8493,"longitude":-82.521202,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":11421,"width_ft":151,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.175},{"id":"ATIS","frequency_mhz":133.825}],"has_metar":true,"public":true},{"icao":"KMCC","iata":"MCC","local":"MCC","name":"McClellan Airfield","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":77,"latitude":38.667599,"longitude":-121.401001,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":10599,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":57,"width_ft":57,"surface":"C"},{"id":"H2","length_ft":57,"width_ft":57,"surface":"C"},{"id":"H3","length_ft":57,"width_ft":57,"surface":"A"},{"id":"H4","length_ft":57,"width_ft":57,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCE","iata":"MCE","local":"MCE","name":"Merced Regional Macready Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Merced","elevation_ft":155,"latitude":37.28469849,"longitude":-120.5139999,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5914,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCK","iata":"MCK","local":"MCK","name":"McCook Ben Nelson Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"McCook","elevation_ft":2583,"latitude":40.208016,"longitude":-100.592651,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"12/30","length_ft":6450,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":1330,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMBT","iata":"","local":"MBT","name":"City of Murfreesboro Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":614,"latitude":35.877499,"longitude":-86.377502,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4753,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMDD","iata":"MDD","local":"MDD","name":"Midland Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Midland","elevation_ft":2803,"latitude":32.0364990234,"longitude":-102.100997925,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5571,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":3977,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPGD","iata":"GDN","local":"","name":"Gdańsk Lech Wałęsa Airport","category":"large_airport","iso_country":"PL","iso_region":"PL-PM","municipality":"Gdańsk","elevation_ft":489,"latitude":54.377602,"longitude":18.4662,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPLL","iata":"LCJ","local":"","name":"Łódź Władysław Reymont Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-LD","municipality":"Łódź","elevation_ft":604,"latitude":51.7219009399,"longitude":19.3980998993,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPLB","iata":"LUZ","local":"","name":"Lublin Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-LU","municipality":"Lublin","elevation_ft":633,"latitude":51.240278,"longitude":22.713611,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCN","iata":"MCN","local":"MCN","name":"Middle Georgia Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Macon","elevation_ft":354,"latitude":32.69279861450195,"longitude":-83.64920043945312,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6500,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.775},{"id":"LCL/P","frequency_mhz":128.2}],"has_metar":true,"public":true},{"icao":"KMCW","iata":"MCW","local":"MCW","name":"Mason City Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clear Lake","elevation_ft":1213,"latitude":43.157799,"longitude":-93.331299,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5502,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6501,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCX","iata":"","local":"MCX","name":"White County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Monticello","elevation_ft":676,"latitude":40.70880126953125,"longitude":-86.76679992675781,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMDQ","iata":"","local":"MDQ","name":"Madison County Executive Airport-Tom Sharp Jr Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":756,"latitude":34.8614006,"longitude":-86.55750275,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPRA","iata":"RDO","local":"","name":"Radom Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-MZ","municipality":"Radom","elevation_ft":610,"latitude":51.389198,"longitude":21.213301,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPRZ","iata":"RZE","local":"","name":"Rzeszów-Jasionka Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-PK","municipality":"Jasionka","elevation_ft":693,"latitude":50.109791,"longitude":22.024155,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAHQ","iata":"","local":"AHQ","name":"Wahoo Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wahoo","elevation_ft":1224,"latitude":41.2412986755,"longitude":-96.59400177,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4100,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":3290,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPKT","iata":"KTW","local":"","name":"Katowice Wojciech Korfanty International Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-SL","municipality":"Ożarowice","elevation_ft":995,"latitude":50.476015,"longitude":19.080705,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMEI","iata":"MEI","local":"MEI","name":"Key Field / Meridian Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Meridian","elevation_ft":297,"latitude":32.3326,"longitude":-88.7519,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":10003,"width_ft":150,"surface":"A"},{"id":"04/22","length_ft":4599,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.475},{"id":"LCL/P","frequency_mhz":133.975}],"has_metar":true,"public":true},{"icao":"KMER","iata":"MER","local":"MER","name":"Castle Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Merced","elevation_ft":191,"latitude":37.38050079,"longitude":-120.5680008,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":11802,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.175},{"id":"ATIS","frequency_mhz":124.475}],"has_metar":true,"public":true},{"icao":"KMEV","iata":"MEV","local":"MEV","name":"Minden-Tahoe Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Minden","elevation_ft":4722,"latitude":39.00030136,"longitude":-119.7509995,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5299,"width_ft":75,"surface":"A"},{"id":"12G/30G","length_ft":2050,"width_ft":60,"surface":"D"},{"id":"16/34","length_ft":7399,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAG","iata":"ALG","local":"","name":"Houari Boumediene Airport","category":"large_airport","iso_country":"DZ","iso_region":"DZ-16","municipality":"Algiers","elevation_ft":82,"latitude":36.693886,"longitude":3.214531,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":11483,"width_ft":197,"surface":"H"},{"id":"09/27","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESGG","iata":"GOT","local":"","name":"Gothenburg-Landvetter Airport","category":"large_airport","iso_country":"SE","iso_region":"SE-Q","municipality":"Gothenburg","elevation_ft":506,"latitude":57.662799835205,"longitude":12.279800415039,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10823,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMFI","iata":"MFI","local":"MFI","name":"Marshfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Marshfield","elevation_ft":1277,"latitude":44.6369018555,"longitude":-90.1893005371,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3597,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGG","iata":"","local":"MGG","name":"Maple Lake Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Maple Lake","elevation_ft":1028,"latitude":45.23600006103516,"longitude":-93.98560333251952,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":2796,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGC","iata":"MGC","local":"MGC","name":"Michigan City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Michigan City","elevation_ft":655,"latitude":41.7033004761,"longitude":-86.8211975098,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4099,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGE","iata":"MGE","local":"MGE","name":"Dobbins Air Reserve Base","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Marietta","elevation_ft":1068,"latitude":33.915401,"longitude":-84.516296,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":10002,"width_ft":300,"surface":"C"},{"id":"110/290","length_ft":3495,"width_ft":60,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75}],"has_metar":true,"public":true},{"icao":"KMGM","iata":"MGM","local":"MGM","name":"Montgomery Regional (Dannelly Field) Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Montgomery","elevation_ft":221,"latitude":32.300598,"longitude":-86.393997,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4011,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":9020,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.7},{"id":"ATIS","frequency_mhz":120.675}],"has_metar":true,"public":true},{"icao":"KMFR","iata":"MFR","local":"MFR","name":"Rogue Valley International Medford Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Medford","elevation_ft":1335,"latitude":42.37419891357422,"longitude":-122.8730010986328,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":8800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4},{"id":"ATIS","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KMEZ","iata":"UMZ","local":"MEZ","name":"Mena Intermountain Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Mena","elevation_ft":1080,"latitude":34.545399,"longitude":-94.202698,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5485,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIT","iata":"","local":"AIT","name":"Aitkin Municipal Airport Steve Kurtz Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Aitkin","elevation_ft":1205,"latitude":46.548401,"longitude":-93.676804,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3123,"width_ft":140,"surface":"T"},{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAID","iata":"AID","local":"AID","name":"Anderson Municipal Darlington Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Anderson","elevation_ft":919,"latitude":40.10860061649999,"longitude":-85.6129989624,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5400,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":3399,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126}],"has_metar":true,"public":true},{"icao":"KAHN","iata":"AHN","local":"AHN","name":"Athens Ben Epps Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Athens","elevation_ft":808,"latitude":33.94860076904297,"longitude":-83.32630157470703,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3995,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":6122,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KMHE","iata":"MHE","local":"MHE","name":"Mitchell Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Mitchell","elevation_ft":1304,"latitude":43.7747993469,"longitude":-98.0385971069,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6701,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5513,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMJQ","iata":"","local":"MJQ","name":"Jackson Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Jackson","elevation_ft":1446,"latitude":43.650001525878906,"longitude":-94.98650360107422,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2303,"width_ft":300,"surface":"T"},{"id":"13/31","length_ft":3591,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGN","iata":"","local":"MGN","name":"Harbor Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Harbor Springs","elevation_ft":686,"latitude":45.42559814453125,"longitude":-84.91339874267578,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4149,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGY","iata":"MGY","local":"MGY","name":"Dayton-Wright Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":957,"latitude":39.5890007019,"longitude":-84.224899292,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMHK","iata":"MHK","local":"MHK","name":"Manhattan Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Manhattan","elevation_ft":1057,"latitude":39.14099884033203,"longitude":-96.6707992553711,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7400,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.55}],"has_metar":true,"public":true},{"icao":"KMHP","iata":"","local":"MHP","name":"Metter Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Metter","elevation_ft":197,"latitude":32.373885,"longitude":-82.081775,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIB","iata":"","local":"AIB","name":"Hopkins Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Nucla","elevation_ft":5940,"latitude":38.239025,"longitude":-108.563354,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5212,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":4000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIZ","iata":"AIZ","local":"AIZ","name":"Lee C Fine Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kaiser Lake Ozark","elevation_ft":869,"latitude":38.0960006714,"longitude":-92.54949951170002,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6497,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMIE","iata":"MIE","local":"MIE","name":"Delaware County Johnson Field","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Muncie","elevation_ft":937,"latitude":40.242298,"longitude":-85.395897,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5198,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":133.25}],"has_metar":true,"public":true},{"icao":"KMIA","iata":"MIA","local":"MIA","name":"Miami International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":8,"latitude":25.79319953918457,"longitude":-80.29060363769531,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":8600,"width_ft":150,"surface":"A"},{"id":"08R/26L","length_ft":10506,"width_ft":200,"surface":"A"},{"id":"09/27","length_ft":13016,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":9360,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":119.15},{"id":"LCL/P","frequency_mhz":123.9},{"id":"D-ATIS","frequency_mhz":133.675}],"has_metar":true,"public":true},{"icao":"KMIB","iata":"MIB","local":"MIB","name":"Minot Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Minot","elevation_ft":1667,"latitude":48.4156,"longitude":-101.358002,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":13198,"width_ft":300,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.65}],"has_metar":true,"public":true},{"icao":"KMHV","iata":"MHV","local":"MHV","name":"Mojave Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mojave","elevation_ft":2801,"latitude":35.05939865,"longitude":-118.1520004,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4747,"width_ft":60,"surface":"A"},{"id":"08/26","length_ft":7049,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":12503,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.6}],"has_metar":true,"public":true},{"icao":"KAIA","iata":"AIA","local":"AIA","name":"Alliance Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Alliance","elevation_ft":3931,"latitude":42.0531997681,"longitude":-102.804000854,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6190,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":9203,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6311,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMJD","iata":"","local":"MJD","name":"Picayune Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Picayune","elevation_ft":55,"latitude":30.48749924,"longitude":-89.65119934,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESDF","iata":"RNB","local":"","name":"Ronneby Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-K","municipality":"Ronneby","elevation_ft":191,"latitude":56.266701,"longitude":15.265,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7648,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMKE","iata":"MKE","local":"MKE","name":"General Mitchell International Airport","category":"large_airport","iso_country":"US","iso_region":"US-WI","municipality":"Milwaukee","elevation_ft":723,"latitude":42.94720077514648,"longitude":-87.89659881591797,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":9990,"width_ft":200,"surface":"A"},{"id":"01R/19L","length_ft":4182,"width_ft":150,"surface":"A"},{"id":"07L/25R","length_ft":4797,"width_ft":100,"surface":"A"},{"id":"07R/25L","length_ft":8300,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5537,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.575},{"id":"D-ATIS","frequency_mhz":126.4}],"has_metar":true,"public":true},{"icao":"KMKL","iata":"MKL","local":"MKL","name":"McKellar-Sipes Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Jackson","elevation_ft":434,"latitude":35.599899,"longitude":-88.915604,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6005,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":3539,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KMKC","iata":"MKC","local":"MKC","name":"Charles B. Wheeler Downtown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":759,"latitude":39.12319946289063,"longitude":-94.5927963256836,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6827,"width_ft":150,"surface":"C"},{"id":"03/21","length_ft":5050,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.75},{"id":"LCL/P","frequency_mhz":133.3}],"has_metar":true,"public":true},{"icao":"KMKG","iata":"MKG","local":"MKG","name":"Muskegon County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Muskegon","elevation_ft":629,"latitude":43.169498,"longitude":-86.238197,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":6100,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.3},{"id":"LCL/P","frequency_mhz":126.25}],"has_metar":true,"public":true},{"icao":"KMKO","iata":"","local":"MKO","name":"Muskogee-Davis Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Muskogee","elevation_ft":611,"latitude":35.656502,"longitude":-95.366699,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4498,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":7202,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":1904,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMKS","iata":"","local":"MKS","name":"Berkeley County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Moncks Corner","elevation_ft":73,"latitude":33.18550109863281,"longitude":-80.03630065917969,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESGJ","iata":"JKG","local":"","name":"Jönköping Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-F","municipality":"Jönköping","elevation_ft":741,"latitude":57.757598876953125,"longitude":14.068699836730955,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7228,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALM","iata":"ALM","local":"ALM","name":"Alamogordo White Sands Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4200,"latitude":32.84051,"longitude":-105.98794,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":9207,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":3257,"width_ft":190,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAKR","iata":"AKC","local":"AKR","name":"Akron Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":1067,"latitude":41.037498,"longitude":-81.466904,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6336,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJG","iata":"","local":"AJG","name":"Mount Carmel Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Carmel","elevation_ft":429,"latitude":38.60649872,"longitude":-87.72669983,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4000,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLI","iata":"MLI","local":"MLI","name":"Quad City International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Moline","elevation_ft":590,"latitude":41.448502,"longitude":-90.5075,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3514,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":10002,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":7301,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4},{"id":"ATIS","frequency_mhz":121.2}],"has_metar":true,"public":true},{"icao":"KMLB","iata":"MLB","local":"MLB","name":"Melbourne Orlando International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Melbourne","elevation_ft":33,"latitude":28.1028,"longitude":-80.645302,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3001,"width_ft":75,"surface":"A"},{"id":"09L/27R","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"09R/27L","length_ft":10181,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":132.55}],"has_metar":true,"public":true},{"icao":"KMKY","iata":"MRK","local":"MKY","name":"Marco Island Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Marco Island","elevation_ft":5,"latitude":25.995001,"longitude":-81.672501,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLC","iata":"MLC","local":"MLC","name":"Mc Alester Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mc Alester","elevation_ft":770,"latitude":34.882401,"longitude":-95.783501,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5602,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLF","iata":"","local":"MLF","name":"Milford Municipal-Ben and Judy Briscoe Field","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Milford","elevation_ft":5039,"latitude":38.42660141,"longitude":-113.012001,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLS","iata":"MLS","local":"MLS","name":"Miles City Airport - Frank Wiley Field","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Miles City","elevation_ft":2630,"latitude":46.428001,"longitude":-105.886002,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5764,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5624,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALN","iata":"ALN","local":"ALN","name":"St Louis Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Alton/St Louis","elevation_ft":544,"latitude":38.89030075069999,"longitude":-90.0459976196,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":8099,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126},{"id":"ATIS","frequency_mhz":128}],"has_metar":true,"public":true},{"icao":"KAJZ","iata":"","local":"AJZ","name":"Blake Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":5193,"latitude":38.7864,"longitude":-108.064003,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5598,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":2494,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALI","iata":"ALI","local":"ALI","name":"Alice International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alice","elevation_ft":178,"latitude":27.7409,"longitude":-98.026901,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5997,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4490,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJO","iata":"","local":"AJO","name":"Corona Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Corona","elevation_ft":533,"latitude":33.897701,"longitude":-117.601997,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMML","iata":"MML","local":"MML","name":"Southwest Minnesota Regional Airport - Marshall/Ryan Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Marshall","elevation_ft":1183,"latitude":44.45050049,"longitude":-95.82189941,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3999,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":7221,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMMK","iata":"","local":"MMK","name":"Meriden Markham Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Meriden","elevation_ft":103,"latitude":41.50870132446289,"longitude":-72.82949829101562,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLT","iata":"","local":"MLT","name":"Millinocket Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Millinocket","elevation_ft":408,"latitude":45.64780044555664,"longitude":-68.68560028076172,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4713,"width_ft":99,"surface":"A"},{"id":"16/34","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLU","iata":"MLU","local":"MLU","name":"Monroe Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Monroe","elevation_ft":79,"latitude":32.510899,"longitude":-92.037697,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7504,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":6301,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":125.05}],"has_metar":true,"public":true},{"icao":"KMMV","iata":"","local":"MMV","name":"Mc Minnville Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Mc Minnville","elevation_ft":163,"latitude":45.19440079,"longitude":-123.1360016,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5420,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4340,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMMI","iata":"MMI","local":"MMI","name":"McMinn County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Athens","elevation_ft":875,"latitude":35.39730072,"longitude":-84.56259918,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6450,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAJR","iata":"","local":"AJR","name":"Habersham County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cornelia","elevation_ft":1448,"latitude":34.499901,"longitude":-83.556702,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMMH","iata":"MMH","local":"MMH","name":"Mammoth Yosemite Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mammoth Lakes","elevation_ft":7135,"latitude":37.62409973,"longitude":-118.8379974,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":7000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAKO","iata":"AKO","local":"AKO","name":"Colorado Plains Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Akron","elevation_ft":4714,"latitude":40.1755981445,"longitude":-103.222000122,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":7001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMOP","iata":"","local":"MOP","name":"Mount Pleasant Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mount Pleasant","elevation_ft":755,"latitude":43.621700286865234,"longitude":-84.73750305175781,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2502,"width_ft":160,"surface":"T"},{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMNM","iata":"MNM","local":"MNM","name":"Menominee–Marinette Twin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Menominee","elevation_ft":625,"latitude":45.126701,"longitude":-87.638397,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5999,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":5101,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMOB","iata":"MOB","local":"MOB","name":"Mobile Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":219,"latitude":30.6912,"longitude":-88.242798,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":8502,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4376,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":124.75}],"has_metar":true,"public":true},{"icao":"KMOT","iata":"MOT","local":"MOT","name":"Minot International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Minot","elevation_ft":1716,"latitude":48.2593994140625,"longitude":-101.27999877929688,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6348,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":7700,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KMOD","iata":"MOD","local":"MOD","name":"Modesto City Co-Harry Sham Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Modesto","elevation_ft":97,"latitude":37.625801,"longitude":-120.954002,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":5904,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":3464,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.3},{"id":"ATIS","frequency_mhz":127.7}],"has_metar":true,"public":true},{"icao":"KMOX","iata":"","local":"MOX","name":"Morris Municipal Airport Charlie Schmidt Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Morris","elevation_ft":1138,"latitude":45.566002,"longitude":-95.967201,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2637,"width_ft":145,"surface":"T"},{"id":"14/32","length_ft":4899,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMOR","iata":"","local":"MOR","name":"Morristown Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Morristown","elevation_ft":1313,"latitude":36.179401,"longitude":-83.375504,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5717,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMNV","iata":"","local":"MNV","name":"Monroe County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Madisonville","elevation_ft":1031,"latitude":35.5453987121582,"longitude":-84.38020324707031,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3643,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMNZ","iata":"","local":"MNZ","name":"Hamilton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hamilton","elevation_ft":1299,"latitude":31.6658992767334,"longitude":-98.14859771728516,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5012,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESKM","iata":"MXX","local":"","name":"Mora Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-W","municipality":"Mora","elevation_ft":634,"latitude":60.957901,"longitude":14.5114,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5951,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMPZ","iata":"MPZ","local":"MPZ","name":"Mount Pleasant Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Mount Pleasant","elevation_ft":730,"latitude":40.94660187,"longitude":-91.51110077,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":1967,"width_ft":120,"surface":"T"},{"id":"15/33","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMQB","iata":"MQB","local":"MQB","name":"Macomb Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Macomb","elevation_ft":707,"latitude":40.5200996399,"longitude":-90.6523971558,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5100,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":3719,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESOK","iata":"KSD","local":"","name":"Karlstad Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-S","municipality":"Karlstad","elevation_ft":352,"latitude":59.4446983337,"longitude":13.3374004364,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8255,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAND","iata":"AND","local":"AND","name":"Anderson Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Anderson","elevation_ft":782,"latitude":34.4945983887,"longitude":-82.70939636230001,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6002,"width_ft":149,"surface":"A"},{"id":"17/35","length_ft":4996,"width_ft":149,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANB","iata":"ANB","local":"ANB","name":"Anniston Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Anniston","elevation_ft":612,"latitude":33.5882,"longitude":-85.8581,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMQS","iata":"CTH","local":"MQS","name":"Chester County G O Carlson Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Coatesville","elevation_ft":660,"latitude":39.97900009,"longitude":-75.8655014,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMPV","iata":"MPV","local":"MPV","name":"Edward F Knapp State Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VT","municipality":"Barre/Montpelier","elevation_ft":1166,"latitude":44.20349884,"longitude":-72.56230164,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3001,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KALO","iata":"ALO","local":"ALO","name":"Waterloo Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Waterloo","elevation_ft":873,"latitude":42.55709838867188,"longitude":-92.40029907226562,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":8399,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.65},{"id":"LCL/P","frequency_mhz":125.075}],"has_metar":true,"public":true},{"icao":"KALW","iata":"ALW","local":"ALW","name":"Walla Walla Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Walla Walla","elevation_ft":1194,"latitude":46.09489822,"longitude":-118.288002,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6527,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"KALS","iata":"ALS","local":"ALS","name":"San Luis Valley Regional Airport/Bergman Field","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Alamosa","elevation_ft":7539,"latitude":37.434898,"longitude":-105.866997,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8521,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAMA","iata":"AMA","local":"AMA","name":"Rick Husband Amarillo International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Amarillo","elevation_ft":3607,"latitude":35.219398,"longitude":-101.706001,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":13502,"width_ft":200,"surface":"C"},{"id":"13/31","length_ft":7901,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"KALX","iata":"ALX","local":"ALX","name":"Thomas C Russell Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Alexander City","elevation_ft":686,"latitude":32.914699554399995,"longitude":-85.9629974365,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5422,"width_ft":96,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMRF","iata":"MRF","local":"MRF","name":"Marfa Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marfa","elevation_ft":4849,"latitude":30.369593,"longitude":-104.015893,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5309,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":2825,"width_ft":60,"surface":"D"},{"id":"13/31","length_ft":6203,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMRJ","iata":"","local":"MRJ","name":"Iowa County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mineral Point","elevation_ft":1171,"latitude":42.886799,"longitude":-90.236198,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"11/29","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMQY","iata":"MQY","local":"MQY","name":"Smyrna Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Smyrna","elevation_ft":543,"latitude":36.0089988708,"longitude":-86.5201034546,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5546,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":8038,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"KMSL","iata":"MSL","local":"MSL","name":"Northwest Alabama Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Muscle Shoals","elevation_ft":551,"latitude":34.74530029,"longitude":-87.61019897,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6694,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMRY","iata":"MRY","local":"MRY","name":"Monterey Peninsula Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Monterey","elevation_ft":257,"latitude":36.58700180053711,"longitude":-121.84300231933594,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":3503,"width_ft":60,"surface":"A"},{"id":"10R/28L","length_ft":7175,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":119.25}],"has_metar":true,"public":true},{"icao":"KMRN","iata":"MRN","local":"MRN","name":"Foothills Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Morganton","elevation_ft":1270,"latitude":35.820202,"longitude":-81.611397,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMQW","iata":"","local":"MQW","name":"Telfair Wheeler Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Mc Rae","elevation_ft":202,"latitude":32.09579849243164,"longitude":-82.87999725341797,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESKN","iata":"NYO","local":"","name":"Stockholm Skavsta Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-D","municipality":"Nyköping","elevation_ft":140,"latitude":58.788601,"longitude":16.912201,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9442,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":6703,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMSP","iata":"MSP","local":"MSP","name":"Minneapolis–Saint Paul International Airport / Wold–Chamberlain Field","category":"large_airport","iso_country":"US","iso_region":"US-MN","municipality":"Minneapolis","elevation_ft":841,"latitude":44.882,"longitude":-93.221802,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":11006,"width_ft":150,"surface":"C"},{"id":"12L/30R","length_ft":8200,"width_ft":150,"surface":"C"},{"id":"12R/30L","length_ft":10000,"width_ft":200,"surface":"C"},{"id":"17/35","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":120.8},{"id":"LCL/P","frequency_mhz":123.675},{"id":"LCL/P","frequency_mhz":123.95},{"id":"LCL/P","frequency_mhz":126.7},{"id":"D-ATIS","frequency_mhz":135.35}],"has_metar":true,"public":true},{"icao":"KMSN","iata":"MSN","local":"MSN","name":"Dane County Regional Truax Field","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Madison","elevation_ft":887,"latitude":43.1399,"longitude":-89.337502,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7200,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":5846,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":9006,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":124.65}],"has_metar":true,"public":true},{"icao":"KMTH","iata":"MTH","local":"MTH","name":"The Florida Keys Marathon Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Marathon","elevation_ft":5,"latitude":24.726101,"longitude":-81.051399,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5008,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMSO","iata":"MSO","local":"MSO","name":"Missoula International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Missoula","elevation_ft":3206,"latitude":46.91630173,"longitude":-114.0910034,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4612,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":9501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":126.65}],"has_metar":true,"public":true},{"icao":"KMTJ","iata":"MTJ","local":"MTJ","name":"Montrose Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Montrose","elevation_ft":5759,"latitude":38.5098,"longitude":-107.893997,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7510,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMSY","iata":"MSY","local":"MSY","name":"Louis Armstrong New Orleans International Airport","category":"large_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":4,"latitude":29.99340057373047,"longitude":-90.25800323486328,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7001,"width_ft":150,"surface":"C"},{"id":"11/29","length_ft":10104,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"D-ATIS","frequency_mhz":127.55}],"has_metar":true,"public":true},{"icao":"KMSS","iata":"MSS","local":"MSS","name":"Massena International Airport Richards Field","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Massena","elevation_ft":215,"latitude":44.936157,"longitude":-74.844304,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5601,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANW","iata":"ANW","local":"ANW","name":"Ainsworth Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ainsworth","elevation_ft":2589,"latitude":42.579201,"longitude":-99.992995,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5501,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":6824,"width_ft":110,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESIA","iata":"","local":"","name":"Karlsborg Air Base","category":"small_airport","iso_country":"SE","iso_region":"SE-Q","municipality":"Karlsborg","elevation_ft":308,"latitude":58.51380157470703,"longitude":14.507100105285645,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7510,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMK","iata":"KID","local":"","name":"Kristianstad Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-M","municipality":"Kristianstad","elevation_ft":76,"latitude":55.92169952392578,"longitude":14.08549976348877,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7267,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMUT","iata":"MUT","local":"MUT","name":"Muscatine Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Muscatine","elevation_ft":547,"latitude":41.367803,"longitude":-91.148201,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5500,"width_ft":100,"surface":"C"},{"id":"12/30","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMQ","iata":"KLR","local":"","name":"Kalmar Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-H","municipality":"Kalmar","elevation_ft":17,"latitude":56.685501,"longitude":16.2876,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6726,"width_ft":148,"surface":"H"},{"id":"05/23","length_ft":2152,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAOH","iata":"AOH","local":"AOH","name":"Lima Allen County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lima","elevation_ft":975,"latitude":40.706902,"longitude":-84.026703,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMUO","iata":"MUO","local":"MUO","name":"Mountain Home Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Mountain Home","elevation_ft":2996,"latitude":43.043598,"longitude":-115.872002,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":13510,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.85}],"has_metar":true,"public":true},{"icao":"KANQ","iata":"ANQ","local":"ANQ","name":"Tri State Steuben County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Angola","elevation_ft":995,"latitude":41.639702,"longitude":-85.083504,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4540,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMVE","iata":"MVE","local":"MVE","name":"Montevideo Chippewa County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Montevideo","elevation_ft":1034,"latitude":44.969101,"longitude":-95.710297,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2361,"width_ft":165,"surface":"T"},{"id":"14/32","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANK","iata":"SLT","local":"ANK","name":"Salida Airport - Harriet Alexander Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Salida","elevation_ft":7523,"latitude":38.5383,"longitude":-106.049004,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7351,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMWM","iata":"","local":"MWM","name":"Windom Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Windom","elevation_ft":1410,"latitude":43.91339874267578,"longitude":-95.1093978881836,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3598,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMVL","iata":"MVL","local":"MVL","name":"Morrisville-Stowe State Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Morrisville","elevation_ft":732,"latitude":44.534599,"longitude":-72.613998,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASD","iata":"","local":"ASD","name":"Slidell Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Slidell","elevation_ft":29,"latitude":30.3451004,"longitude":-89.82080078,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMWC","iata":"MWC","local":"MWC","name":"Lawrence J Timmerman Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Milwaukee","elevation_ft":745,"latitude":43.110401,"longitude":-88.034401,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":3203,"width_ft":75,"surface":"A"},{"id":"04R/22L","length_ft":2840,"width_ft":270,"surface":"T"},{"id":"15L/33R","length_ft":4107,"width_ft":75,"surface":"A"},{"id":"15R/33L","length_ft":3231,"width_ft":270,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"ATIS","frequency_mhz":128.3}],"has_metar":true,"public":true},{"icao":"KMVN","iata":"","local":"MVN","name":"Mount Vernon Outland Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Vernon","elevation_ft":480,"latitude":38.322774,"longitude":-88.859257,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6496,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":3146,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":80,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMWA","iata":"MWA","local":"MWA","name":"Veterans Airport of Southern Illinois","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marion","elevation_ft":472,"latitude":37.751208,"longitude":-89.016568,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8012,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":4997,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.4}],"has_metar":true,"public":true},{"icao":"KMWK","iata":"","local":"MWK","name":"Mount Airy Surry County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mount Airy","elevation_ft":1249,"latitude":36.45970154,"longitude":-80.5530014,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMWL","iata":"MWL","local":"MWL","name":"Mineral Wells Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineral Wells","elevation_ft":974,"latitude":32.781601,"longitude":-98.060204,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5996,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4188,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESKS","iata":"SCR","local":"","name":"Scandinavian Mountains Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-W","municipality":"Malung-Sälen","elevation_ft":1608,"latitude":61.158393,"longitude":12.842503,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FMEE","iata":"RUN","local":"","name":"Roland Garros Airport","category":"large_airport","iso_country":"RE","iso_region":"RE-SD","municipality":"Sainte-Marie","elevation_ft":66,"latitude":-20.890087,"longitude":55.518894,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"14/32","length_ft":8760,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAS","iata":"QSF","local":"","name":"Ain Arnat Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-19","municipality":"Sétif","elevation_ft":3360,"latitude":36.178100585900005,"longitude":5.32449007034,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9514,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAPN","iata":"APN","local":"APN","name":"Alpena County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Alpena","elevation_ft":690,"latitude":45.0780983,"longitude":-83.56030273,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":9001,"width_ft":150,"surface":"C"},{"id":"07/25","length_ft":5028,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.675},{"id":"LCL/P","frequency_mhz":121.35}],"has_metar":true,"public":true},{"icao":"KAPF","iata":"APF","local":"APF","name":"Naples Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":8,"latitude":26.1525993347,"longitude":-81.7752990723,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6600,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"},{"id":"NE/SW","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.5},{"id":"ATIS","frequency_mhz":134.225}],"has_metar":true,"public":true},{"icao":"KMWO","iata":"MWO","local":"MWO","name":"Middletown Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Middletown","elevation_ft":650,"latitude":39.530998,"longitude":-84.395302,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6100,"width_ft":100,"surface":"A"},{"id":"08/26","length_ft":3026,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMYL","iata":"MYL","local":"MYL","name":"McCall Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"McCall","elevation_ft":5024,"latitude":44.88970184,"longitude":-116.1009979,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMYV","iata":"MYV","local":"MYV","name":"Yuba County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Marysville","elevation_ft":64,"latitude":39.09780121,"longitude":-121.5699997,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3314,"width_ft":60,"surface":"A"},{"id":"14/32","length_ft":6007,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAPC","iata":"APC","local":"APC","name":"Napa County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Napa","elevation_ft":35,"latitude":38.2132,"longitude":-122.280998,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":5930,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":2510,"width_ft":75,"surface":"A"},{"id":"06/24","length_ft":5008,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":124.05}],"has_metar":true,"public":true},{"icao":"KAPA","iata":"APA","local":"APA","name":"Centennial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5885,"latitude":39.57009888,"longitude":-104.848999,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4800,"width_ft":75,"surface":"A"},{"id":"17L/35R","length_ft":10001,"width_ft":100,"surface":"A"},{"id":"17R/35L","length_ft":7001,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KNBC","iata":"","local":"NBC","name":"Beaufort MCAS - Merritt Field","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Beaufort","elevation_ft":37,"latitude":32.4774017334,"longitude":-80.723197937,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":12202,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":8001,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.05}],"has_metar":true,"public":true},{"icao":"KAPY","iata":"","local":"APY","name":"Zapata County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Zapata","elevation_ft":422,"latitude":26.9687995911,"longitude":-99.2489013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMZJ","iata":"MZJ","local":"MZJ","name":"Pinal Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Marana","elevation_ft":1893,"latitude":32.5106010437,"longitude":-111.32800293,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6849,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAQO","iata":"","local":"AQO","name":"Llano Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Llano","elevation_ft":1102,"latitude":30.783700942993,"longitude":-98.662002563477,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3209,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":4202,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FNCA","iata":"CAB","local":"","name":"Cabinda Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-CAB","municipality":"Cabinda","elevation_ft":66,"latitude":-5.59699010848999,"longitude":12.188400268554688,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8202,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNBG","iata":"NBG","local":"NBG","name":"New Orleans NAS JRB/Alvin Callender Field","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":2,"latitude":29.82530022,"longitude":-90.03500366,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":10000,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":6000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":123.8}],"has_metar":true,"public":true},{"icao":"KARV","iata":"ARV","local":"ARV","name":"Lakeland-Noble F. Lee Memorial field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Minocqua-Woodruff","elevation_ft":1629,"latitude":45.92789841,"longitude":-89.73090363,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3602,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5150,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAQP","iata":"","local":"AQP","name":"Appleton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Appleton","elevation_ft":1020,"latitude":45.228239,"longitude":-96.005856,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2770,"width_ft":157,"surface":"T"},{"id":"13/31","length_ft":3500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNFL","iata":"NFL","local":"NFL","name":"Fallon Naval Air Station","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Fallon","elevation_ft":3934,"latitude":39.41659927,"longitude":-118.7009964,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":7003,"width_ft":152,"surface":"A"},{"id":"13L/31R","length_ft":11076,"width_ft":200,"surface":"C"},{"id":"13R/31L","length_ft":14001,"width_ft":201,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.25}],"has_metar":true,"public":true},{"icao":"KNFG","iata":"","local":"NFG","name":"Camp Pendleton MCAS (Munn Field) Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Oceanside","elevation_ft":78,"latitude":33.30130005,"longitude":-117.3550034,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6005,"width_ft":221,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.775}],"has_metar":true,"public":true},{"icao":"KNEW","iata":"NEW","local":"NEW","name":"Lakefront Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":8,"latitude":30.042400360107,"longitude":-90.028297424316,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3114,"width_ft":75,"surface":"A"},{"id":"18L/36R","length_ft":3697,"width_ft":75,"surface":"A"},{"id":"18R/36L","length_ft":6879,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.95},{"id":"ATIS","frequency_mhz":124.9}],"has_metar":true,"public":true},{"icao":"KARG","iata":"ARG","local":"ARG","name":"Walnut Ridge Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Walnut Ridge","elevation_ft":279,"latitude":36.124667,"longitude":-90.925111,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6001,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5003,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":5001,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAQX","iata":"","local":"AQX","name":"Allendale County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Allendale","elevation_ft":161,"latitude":32.995098,"longitude":-81.270203,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4990,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMX","iata":"VXO","local":"","name":"Växjö Kronoberg Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-G","municipality":"Växjö","elevation_ft":610,"latitude":56.92910003662109,"longitude":14.727999687194824,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6909,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARA","iata":"ARA","local":"ARA","name":"Acadiana Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":24,"latitude":30.0378,"longitude":-91.883904,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8002,"width_ft":200,"surface":"C"},{"id":"17W/35W","length_ft":5000,"width_ft":150,"surface":"W"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125}],"has_metar":true,"public":true},{"icao":"KART","iata":"ART","local":"ART","name":"Watertown International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Watertown","elevation_ft":325,"latitude":43.991901,"longitude":-76.021698,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4999,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":7001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KARM","iata":"WHT","local":"ARM","name":"Wharton Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wharton","elevation_ft":100,"latitude":29.254299,"longitude":-96.154404,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESOE","iata":"ORB","local":"","name":"Örebro Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-T","municipality":"Örebro","elevation_ft":188,"latitude":59.22370147705078,"longitude":15.038000106811523,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10728,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESMT","iata":"HAD","local":"","name":"Halmstad Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-N","municipality":"Halmstad","elevation_ft":101,"latitude":56.69110107421875,"longitude":12.820199966430664,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7441,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":1998,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNID","iata":"","local":"NID","name":"China Lake Naws (Armitage Field) Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"China Lake","elevation_ft":2283,"latitude":35.6853981,"longitude":-117.6920013,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":10001,"width_ft":200,"surface":"C"},{"id":"08/26","length_ft":7111,"width_ft":75,"surface":"C"},{"id":"14/32","length_ft":9014,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.15}],"has_metar":true,"public":true},{"icao":"KNJK","iata":"NJK","local":"NJK","name":"El Centro NAF Airport (Vraciu Field)","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"El Centro","elevation_ft":-42,"latitude":32.829201,"longitude":-115.671996,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":9503,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":6825,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1}],"has_metar":true,"public":true},{"icao":"ESND","iata":"EVG","local":"","name":"Sveg Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Z","municipality":"Sveg","elevation_ft":1178,"latitude":62.047798,"longitude":14.4229,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5581,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASX","iata":"ASX","local":"ASX","name":"John F Kennedy Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ashland","elevation_ft":827,"latitude":46.54850006,"longitude":-90.91899872,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5197,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3498,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAST","iata":"AST","local":"AST","name":"Astoria Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Astoria","elevation_ft":15,"latitude":46.158000946,"longitude":-123.878997803,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5794,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4467,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNQA","iata":"NQA","local":"NQA","name":"Millington-Memphis Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Millington","elevation_ft":320,"latitude":35.356701,"longitude":-89.8703,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.25}],"has_metar":true,"public":true},{"icao":"KNOW","iata":"","local":"NOW","name":"Port Angeles Cgas Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":13,"latitude":48.14149856567383,"longitude":-123.41400146484376,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4500,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNLC","iata":"NLC","local":"NLC","name":"Lemoore Naval Air Station (Reeves Field) Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lemoore","elevation_ft":232,"latitude":36.33300018,"longitude":-119.9520035,"has_tower":true,"has_beacon":false,"runways":[{"id":"14L/32R","length_ft":13502,"width_ft":200,"surface":"C"},{"id":"14R/32L","length_ft":13501,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.575},{"id":"LCL/P","frequency_mhz":128.3}],"has_metar":true,"public":true},{"icao":"KNKX","iata":"NKX","local":"NKX","name":"Miramar Marine Corps Air Station - Mitscher Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":477,"latitude":32.86840057,"longitude":-117.1429977,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":12000,"width_ft":200,"surface":"C"},{"id":"06R/24L","length_ft":8001,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":133.475},{"id":"LCL/P","frequency_mhz":135.2}],"has_metar":true,"public":true},{"icao":"KNQI","iata":"NQI","local":"NQI","name":"Kingsville Naval Air Station","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kingsville","elevation_ft":50,"latitude":27.5072002411,"longitude":-97.8097000122,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":8000,"width_ft":198,"surface":"A"},{"id":"13R/31L","length_ft":8000,"width_ft":198,"surface":"A"},{"id":"17L/35R","length_ft":8001,"width_ft":197,"surface":"A"},{"id":"17R/35L","length_ft":8000,"width_ft":198,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.1}],"has_metar":true,"public":true},{"icao":"KNOG","iata":"","local":"NOG","name":"Orange Grove Naval Auxiliary Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Orange Grove","elevation_ft":257,"latitude":27.901100158691406,"longitude":-98.05169677734376,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8000,"width_ft":198,"surface":"A"},{"id":"13/31","length_ft":8001,"width_ft":198,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.4}],"has_metar":true,"public":true},{"icao":"ESNX","iata":"AJR","local":"","name":"Arvidsjaur Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Arvidsjaur","elevation_ft":1245,"latitude":65.59030151367188,"longitude":19.28190040588379,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASW","iata":"","local":"ASW","name":"Warsaw Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Warsaw","elevation_ft":850,"latitude":41.27470016479492,"longitude":-85.84010314941406,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4021,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASG","iata":"SPZ","local":"ASG","name":"Springdale Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Springdale","elevation_ft":1353,"latitude":36.176399231,"longitude":-94.1193008423,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5302,"width_ft":76,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KNQX","iata":"NQX","local":"NQX","name":"Naval Air Station Key West/Boca Chica Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Key West","elevation_ft":6,"latitude":24.57579994,"longitude":-81.68890381,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7001,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":10001,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.575}],"has_metar":true,"public":true},{"icao":"KNTD","iata":"NTD","local":"NTD","name":"Point Mugu Naval Air Station (Naval Base Ventura Co)","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Point Mugu","elevation_ft":13,"latitude":34.120300293,"longitude":-119.121002197,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":11102,"width_ft":200,"surface":"A"},{"id":"09/27","length_ft":5502,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.85},{"id":"ATIS","frequency_mhz":125.55}],"has_metar":true,"public":true},{"icao":"KASN","iata":"ASN","local":"ASN","name":"Talladega Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Talladega","elevation_ft":529,"latitude":33.569900512699995,"longitude":-86.05090332030001,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6032,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNSI","iata":"","local":"NSI","name":"San Nicolas Island Nolf Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Nicolas Island","elevation_ft":506,"latitude":33.23979949951172,"longitude":-119.45800018310548,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":10002,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.85}],"has_metar":true,"public":true},{"icao":"KASL","iata":"ASL","local":"ASL","name":"Harrison County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marshall","elevation_ft":357,"latitude":32.5205001831,"longitude":-94.307800293,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3299,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUH","iata":"","local":"AUH","name":"Aurora Municipal Al Potter Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Aurora","elevation_ft":1803,"latitude":40.89410019,"longitude":-97.99459839,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4301,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KATS","iata":"ATS","local":"ATS","name":"Artesia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Artesia","elevation_ft":3541,"latitude":32.8525009155,"longitude":-104.468002319,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6800,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":6132,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUM","iata":"AUM","local":"AUM","name":"Austin Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Austin","elevation_ft":1234,"latitude":43.66500092,"longitude":-92.93340302,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5800,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KATY","iata":"ATY","local":"ATY","name":"Watertown Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Watertown","elevation_ft":1749,"latitude":44.91400146,"longitude":-97.15470123,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6898,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":6893,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNUQ","iata":"NUQ","local":"NUQ","name":"Moffett Federal Airfield","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mountain View","elevation_ft":32,"latitude":37.4161,"longitude":-122.049004,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":9197,"width_ft":200,"surface":"C"},{"id":"14R/32L","length_ft":8121,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.55},{"id":"ATIS","frequency_mhz":124.175}],"has_metar":true,"public":true},{"icao":"KNXP","iata":"","local":"NXP","name":"Twentynine Palms Strategic Expeditionary Landing Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Twentynine Palms","elevation_ft":2051,"latitude":34.2962,"longitude":-116.162003,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8015,"width_ft":150,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUN","iata":"AUN","local":"AUN","name":"Auburn Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Auburn","elevation_ft":1539,"latitude":38.95479965,"longitude":-121.0820007,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUS","iata":"AUS","local":"AUS","name":"Austin Bergstrom International Airport","category":"large_airport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":542,"latitude":30.197535,"longitude":-97.662015,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"18R/36L","length_ft":12250,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121},{"id":"D-ATIS","frequency_mhz":124.4}],"has_metar":true,"public":true},{"icao":"FOOL","iata":"LBV","local":"","name":"Libreville Leon M'ba International Airport","category":"medium_airport","iso_country":"GA","iso_region":"GA-1","municipality":"Libreville","elevation_ft":39,"latitude":0.458600014448,"longitude":9.4122800827,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNQ","iata":"KRN","local":"","name":"Kiruna Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Kiruna","elevation_ft":1508,"latitude":67.821998596191,"longitude":20.336799621582,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8209,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNS","iata":"SFT","local":"","name":"Skellefteå Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Skellefteå","elevation_ft":157,"latitude":64.62480163574219,"longitude":21.07690048217773,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FSIA","iata":"SEZ","local":"","name":"Seychelles International Airport","category":"large_airport","iso_country":"SC","iso_region":"SC-20","municipality":"Mahe Island","elevation_ft":10,"latitude":-4.67434,"longitude":55.521801,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9800,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNYL","iata":"YUM","local":"NYL","name":"Yuma International Airport / Marine Corps Air Station Yuma","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Yuma","elevation_ft":213,"latitude":32.656601,"longitude":-114.606003,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":13300,"width_ft":200,"surface":"C"},{"id":"03R/21L","length_ft":9240,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":6146,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":5710,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.8},{"id":"LCL/P","frequency_mhz":119.3}],"has_metar":true,"public":true},{"icao":"KNZY","iata":"NZY","local":"NZY","name":"North Island Naval Air Station-Halsey Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":26,"latitude":32.69919968,"longitude":-117.2149963,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":7501,"width_ft":200,"surface":"A"},{"id":"18/36","length_ft":8001,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":135.1}],"has_metar":true,"public":true},{"icao":"KOAR","iata":"OAR","local":"OAR","name":"Marina Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Marina","elevation_ft":137,"latitude":36.68190002,"longitude":-121.762001,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3483,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOCH","iata":"OCH","local":"OCH","name":"A L Mangham Jr. Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Nacogdoches","elevation_ft":355,"latitude":31.57799911,"longitude":-94.70950317,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KODX","iata":"","local":"ODX","name":"Evelyn Sharp Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ord","elevation_ft":2070,"latitude":41.62419891357422,"longitude":-98.95240020751952,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4721,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":2012,"width_ft":218,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAVK","iata":"","local":"AVK","name":"Alva Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alva","elevation_ft":1474,"latitude":36.77320098876953,"longitude":-98.6698989868164,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":1390,"width_ft":170,"surface":"T"},{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNZ","iata":"OSD","local":"","name":"Åre Östersund Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Z","municipality":"Östersund","elevation_ft":1233,"latitude":63.194400787354,"longitude":14.50030040741,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOEO","iata":"OEO","local":"OEO","name":"L O Simenstad Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Osceola","elevation_ft":903,"latitude":45.310001373291,"longitude":-92.691902160645,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2192,"width_ft":150,"surface":"T"},{"id":"10/28","length_ft":5006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOCW","iata":"OCW","local":"OCW","name":"Warren Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Washington","elevation_ft":38,"latitude":35.570499420166,"longitude":-77.049797058105,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOFK","iata":"OFK","local":"OFK","name":"Karl Stefan Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Norfolk","elevation_ft":1573,"latitude":41.985500335693,"longitude":-97.435096740723,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5801,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":5806,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOEB","iata":"","local":"OEB","name":"Branch County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Coldwater","elevation_ft":959,"latitude":41.9333992,"longitude":-85.05259705,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3500,"width_ft":75,"surface":"A"},{"id":"07/25","length_ft":5350,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":2399,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOGA","iata":"OGA","local":"OGA","name":"Searle Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ogallala","elevation_ft":3279,"latitude":41.11949921,"longitude":-101.7699966,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5102,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":3700,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KODO","iata":"","local":"ODO","name":"Odessa Schlemeyer Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Odessa","elevation_ft":3004,"latitude":31.920600891113,"longitude":-102.3870010376,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5703,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":6200,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOEL","iata":"","local":"OEL","name":"Oakley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Oakley","elevation_ft":3045,"latitude":39.109901428222656,"longitude":-100.81600189208984,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2153,"width_ft":110,"surface":"T"},{"id":"16/34","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAUW","iata":"AUW","local":"AUW","name":"Wausau Downtown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wausau","elevation_ft":1201,"latitude":44.9262008667,"longitude":-89.6266021729,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3041,"width_ft":100,"surface":"A"},{"id":"12W/30W","length_ft":8000,"width_ft":300,"surface":"W"},{"id":"13/31","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOJA","iata":"","local":"OJA","name":"Thomas P Stafford Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Weatherford","elevation_ft":1605,"latitude":35.5448,"longitude":-98.668503,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOJC","iata":"OJC","local":"OJC","name":"Johnson County Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Olathe","elevation_ft":1096,"latitude":38.84759903,"longitude":-94.73760223,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4097,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.35},{"id":"LCL/P","frequency_mhz":126}],"has_metar":true,"public":true},{"icao":"KAWO","iata":"","local":"AWO","name":"Arlington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Arlington","elevation_ft":142,"latitude":48.16070175,"longitude":-122.1589966,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3498,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":5332,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOKC","iata":"OKC","local":"OKC","name":"Will Rogers World Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1295,"latitude":35.393101,"longitude":-97.6007,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7800,"width_ft":150,"surface":"A"},{"id":"17L/35R","length_ft":9803,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":9801,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":3078,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.35},{"id":"D-ATIS","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"KOGD","iata":"OGD","local":"OGD","name":"Ogden Hinckley Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Ogden","elevation_ft":4473,"latitude":41.195899963379,"longitude":-112.0120010376,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8107,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":5195,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":125.55}],"has_metar":true,"public":true},{"icao":"KAVQ","iata":"AVW","local":"AVQ","name":"Marana Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Marana","elevation_ft":2031,"latitude":32.409065,"longitude":-111.216199,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3892,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":6901,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOKB","iata":"OCN","local":"OKB","name":"Oceanside Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Oceanside","elevation_ft":28,"latitude":33.217947,"longitude":-117.351683,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":2712,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOGS","iata":"OGS","local":"OGS","name":"Ogdensburg International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ogdensburg","elevation_ft":297,"latitude":44.6819,"longitude":-75.4655,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6400,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAVX","iata":"AVX","local":"AVX","name":"Catalina Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Avalon","elevation_ft":1602,"latitude":33.4049,"longitude":-118.416,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAWG","iata":"","local":"AWG","name":"Washington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Washington","elevation_ft":754,"latitude":41.276100158691406,"longitude":-91.67340087890624,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3401,"width_ft":60,"surface":"C"},{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FTTJ","iata":"NDJ","local":"","name":"N'Djamena International Airport","category":"large_airport","iso_country":"TD","iso_region":"TD-ND","municipality":"N'Djamena","elevation_ft":968,"latitude":12.1337,"longitude":15.034,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLE","iata":"","local":"OLE","name":"Cattaraugus County-Olean Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Olean","elevation_ft":2135,"latitude":42.24119949,"longitude":-78.37139893,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4800,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":2117,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLG","iata":"","local":"OLG","name":"Solon Springs Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Solon Springs","elevation_ft":1102,"latitude":46.31480026245117,"longitude":-91.81639862060548,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3099,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLF","iata":"OLF","local":"OLF","name":"L M Clayton Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Wolf Point","elevation_ft":1986,"latitude":48.0945014954,"longitude":-105.574996948,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5091,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLM","iata":"OLM","local":"OLM","name":"Olympia Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":209,"latitude":46.9693985,"longitude":-122.9029999,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4157,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":5500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.4},{"id":"ATIS","frequency_mhz":135.725}],"has_metar":true,"public":true},{"icao":"KOLS","iata":"OLS","local":"OLS","name":"Nogales International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Nogales","elevation_ft":3955,"latitude":31.4177,"longitude":-110.848,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7200,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":97,"width_ft":97,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOKK","iata":"OKK","local":"OKK","name":"Kokomo Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Kokomo","elevation_ft":830,"latitude":40.528198242188,"longitude":-86.05899810791,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6001,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOKM","iata":"OKM","local":"OKM","name":"Okmulgee Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Okmulgee","elevation_ft":720,"latitude":35.668098449707,"longitude":-95.948699951172,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5150,"width_ft":101,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXA","iata":"AXG","local":"AXA","name":"Algona Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Algona","elevation_ft":1219,"latitude":43.078104,"longitude":-94.271836,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3960,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":2895,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KONL","iata":"ONL","local":"ONL","name":"The O'Neill Municipal John L Baker Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"O'Neill","elevation_ft":2031,"latitude":42.469898,"longitude":-98.688103,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3200,"width_ft":60,"surface":"C"},{"id":"13/31","length_ft":4408,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNL","iata":"LYC","local":"","name":"Lycksele Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Lycksele","elevation_ft":705,"latitude":64.548302,"longitude":18.7162,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6864,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXN","iata":"AXN","local":"AXN","name":"Chandler Field","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Alexandria","elevation_ft":1425,"latitude":45.866299,"longitude":-95.394699,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4098,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5099,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLY","iata":"","local":"OLY","name":"Olney Noble Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Olney-Noble","elevation_ft":482,"latitude":38.721802,"longitude":-88.176399,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3598,"width_ft":60,"surface":"A"},{"id":"11/29","length_ft":4099,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLU","iata":"","local":"OLU","name":"Columbus Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Columbus","elevation_ft":1447,"latitude":41.44800186,"longitude":-97.34259796,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4135,"width_ft":150,"surface":"T"},{"id":"14/32","length_ft":6801,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOMK","iata":"OMK","local":"OMK","name":"Omak Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Omak","elevation_ft":1305,"latitude":48.4644012451,"longitude":-119.517997742,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4667,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KONM","iata":"","local":"ONM","name":"Socorro Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Socorro","elevation_ft":4875,"latitude":34.022499084472656,"longitude":-106.90299987792967,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4590,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5841,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLZ","iata":"","local":"OLZ","name":"Oelwein Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Oelwein","elevation_ft":1076,"latitude":42.680889,"longitude":-91.97372,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":1822,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBBG","iata":"BKG","local":"BBG","name":"Branson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Branson","elevation_ft":1302,"latitude":36.532082,"longitude":-93.200544,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":7140,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.625},{"id":"LCL/P","frequency_mhz":128.15}],"has_metar":true,"public":true},{"icao":"ESNO","iata":"OER","local":"","name":"Örnsköldsvik Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Y","municipality":"Örnsköldsvik","elevation_ft":354,"latitude":63.40829849243164,"longitude":18.989999771118164,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6614,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAZE","iata":"","local":"AZE","name":"Hazlehurst Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hazlehurst","elevation_ft":255,"latitude":31.884700775146484,"longitude":-82.64739990234375,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5012,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KONZ","iata":"","local":"ONZ","name":"Grosse Ile Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit/Grosse Ile","elevation_ft":591,"latitude":42.099098205566406,"longitude":-83.1614990234375,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4846,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4424,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KONP","iata":"ONP","local":"ONP","name":"Newport Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Newport","elevation_ft":160,"latitude":44.580399,"longitude":-124.057999,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3001,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":5398,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KONT","iata":"ONT","local":"ONT","name":"Ontario International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ontario","elevation_ft":944,"latitude":34.055999755859375,"longitude":-117.60099792480467,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":12197,"width_ft":150,"surface":"C"},{"id":"08R/26L","length_ft":10200,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.6},{"id":"D-ATIS","frequency_mhz":124.25}],"has_metar":true,"public":true},{"icao":"KONO","iata":"ONO","local":"ONO","name":"Ontario Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon","elevation_ft":2193,"latitude":44.0198,"longitude":-117.013289,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5006,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOPN","iata":"","local":"OPN","name":"Thomaston Upson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Thomaston","elevation_ft":798,"latitude":32.95460129,"longitude":-84.26319885,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6350,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOPL","iata":"","local":"OPL","name":"St Landry Parish Ahart Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Opelousas","elevation_ft":75,"latitude":30.558399,"longitude":-92.099403,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4051,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":5999,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXH","iata":"","local":"AXH","name":"Houston Southwest Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rosharon","elevation_ft":68,"latitude":29.5061,"longitude":-95.476898,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNU","iata":"UME","local":"","name":"Umeå Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Umeå","elevation_ft":24,"latitude":63.791801452637,"longitude":20.282800674438,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7552,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXX","iata":"AXX","local":"AXX","name":"Angel Fire Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Angel Fire","elevation_ft":8380,"latitude":36.422000885,"longitude":-105.290000916,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KORE","iata":"","local":"ORE","name":"Orange Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Orange","elevation_ft":555,"latitude":42.570098877,"longitude":-72.2885971069,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":4800,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXS","iata":"AXS","local":"AXS","name":"Altus Quartz Mountain Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Altus","elevation_ft":1433,"latitude":34.697952,"longitude":-99.3385,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5501,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KORB","iata":"","local":"ORB","name":"Orr Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Orr","elevation_ft":1311,"latitude":48.015899658203125,"longitude":-92.8561019897461,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KORG","iata":"","local":"ORG","name":"Orange County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Orange","elevation_ft":13,"latitude":30.06920051574707,"longitude":-93.8009033203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5500,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAX","iata":"","local":"BAX","name":"Huron County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bad Axe","elevation_ft":763,"latitude":43.78020096,"longitude":-82.98539734,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3495,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAK","iata":"CLU","local":"BAK","name":"Columbus Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Columbus","elevation_ft":656,"latitude":39.262386,"longitude":-85.895576,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6401,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":5000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KOTG","iata":"","local":"OTG","name":"Worthington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Worthington","elevation_ft":1574,"latitude":43.65477,"longitude":-95.577364,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAD","iata":"BAD","local":"BAD","name":"Barksdale Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bossier City","elevation_ft":166,"latitude":32.501801,"longitude":-93.662697,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":11758,"width_ft":299,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.25}],"has_metar":true,"public":true},{"icao":"KOSC","iata":"OSC","local":"OSC","name":"Oscoda Wurtsmith Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Oscoda","elevation_ft":633,"latitude":44.451599,"longitude":-83.394096,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":11800,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOTM","iata":"OTM","local":"OTM","name":"Ottumwa Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Ottumwa","elevation_ft":845,"latitude":41.106368,"longitude":-92.449837,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4601,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":6001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KORS","iata":"ESD","local":"ORS","name":"Orcas Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Eastsound","elevation_ft":31,"latitude":48.7081985474,"longitude":-122.910003662,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":2901,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOTH","iata":"OTH","local":"OTH","name":"Southwest Oregon Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"North Bend","elevation_ft":17,"latitude":43.41709899902344,"longitude":-124.24600219726562,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5980,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4470,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45}],"has_metar":true,"public":true},{"icao":"KOUN","iata":"OUN","local":"OUN","name":"University of Oklahoma Westheimer Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Norman","elevation_ft":1182,"latitude":35.2456,"longitude":-97.472099,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4748,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5199,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118}],"has_metar":true,"public":true},{"icao":"KOWI","iata":"","local":"OWI","name":"Ottawa Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ottawa","elevation_ft":966,"latitude":38.538700103759766,"longitude":-95.25299835205078,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":1550,"width_ft":95,"surface":"T"},{"id":"17/35","length_ft":4500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOWA","iata":"OWA","local":"OWA","name":"Owatonna Degner Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Owatonna","elevation_ft":1145,"latitude":44.12340164,"longitude":-93.26059723,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3000,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOVL","iata":"","local":"OVL","name":"Olivia Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Olivia","elevation_ft":1076,"latitude":44.778599,"longitude":-95.032799,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3498,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOVS","iata":"","local":"OVS","name":"Boscobel Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Boscobel","elevation_ft":673,"latitude":43.16019821,"longitude":-90.67549896,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3656,"width_ft":58,"surface":"A"},{"id":"07/25","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOWB","iata":"OWB","local":"OWB","name":"Owensboro Daviess County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Owensboro","elevation_ft":407,"latitude":37.74010086,"longitude":-87.16680145,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7}],"has_metar":true,"public":true},{"icao":"KOVE","iata":"OVE","local":"OVE","name":"Oroville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Oroville","elevation_ft":192,"latitude":39.487800598145,"longitude":-121.62200164795,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6020,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3540,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBBB","iata":"BBB","local":"BBB","name":"Benson Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Benson","elevation_ft":1039,"latitude":45.3319015503,"longitude":-95.6505966187,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOWP","iata":"","local":"OWP","name":"William R. Pogue Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sand Springs","elevation_ft":892,"latitude":36.1753006,"longitude":-96.15180206,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5799,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAM","iata":"BAM","local":"BAM","name":"Battle Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Battle Mountain","elevation_ft":4532,"latitude":40.598999023400005,"longitude":-116.874000549,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7300,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":7299,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAB","iata":"BAB","local":"BAB","name":"Beale Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Marysville","elevation_ft":113,"latitude":39.136101,"longitude":-121.436996,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":12001,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4},{"id":"ATIS","frequency_mhz":124.55}],"has_metar":true,"public":true},{"icao":"KOZA","iata":"OZA","local":"OZA","name":"Ozona Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ozona","elevation_ft":2381,"latitude":30.735300064087,"longitude":-101.20300292969,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOXC","iata":"OXC","local":"OXC","name":"Waterbury Oxford Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Oxford","elevation_ft":726,"latitude":41.47859954834,"longitude":-73.135200500488,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5801,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.475},{"id":"ATIS","frequency_mhz":132.975}],"has_metar":true,"public":true},{"icao":"KOWX","iata":"","local":"OWX","name":"Putnam County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ottawa","elevation_ft":764,"latitude":41.035599,"longitude":-83.982002,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4502,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOZW","iata":"","local":"OZW","name":"Livingston County Spencer J. Hardy Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Howell","elevation_ft":962,"latitude":42.62919998,"longitude":-83.98210144,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5002,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOXI","iata":"","local":"OXI","name":"Starke County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Knox","elevation_ft":685,"latitude":41.330098,"longitude":-86.662302,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3096,"width_ft":145,"surface":"T"},{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOXD","iata":"OXD","local":"OXD","name":"Miami University Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Oxford","elevation_ft":1041,"latitude":39.50230026,"longitude":-84.78440094,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4011,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOXR","iata":"OXR","local":"OXR","name":"Oxnard Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Oxnard","elevation_ft":45,"latitude":34.200801849365,"longitude":-119.20700073242,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5953,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.05},{"id":"LCL/P","frequency_mhz":134.95}],"has_metar":true,"public":true},{"icao":"KBBD","iata":"BBD","local":"BBD","name":"Curtis Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brady","elevation_ft":1827,"latitude":31.1793003082,"longitude":-99.3238983154,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3520,"width_ft":110,"surface":"T"},{"id":"17/35","length_ft":4605,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPAH","iata":"PAH","local":"PAH","name":"Barkley Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paducah","elevation_ft":410,"latitude":37.06079864501953,"longitude":-88.7738037109375,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6500,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5499,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.6}],"has_metar":true,"public":true},{"icao":"KPAM","iata":"PAM","local":"PAM","name":"Tyndall Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":17,"latitude":30.069599,"longitude":-85.575401,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":10008,"width_ft":200,"surface":"C"},{"id":"14R/32L","length_ft":10114,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.95}],"has_metar":true,"public":true},{"icao":"KPBI","iata":"PBI","local":"PBI","name":"Palm Beach International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":19,"latitude":26.68320083618164,"longitude":-80.09559631347656,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":10001,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":3214,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":6931,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"D-ATIS","frequency_mhz":123.75}],"has_metar":true,"public":true},{"icao":"KPBF","iata":"PBF","local":"PBF","name":"Pine Bluff Regional Airport, Grider Field","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Pine Bluff","elevation_ft":206,"latitude":34.174121,"longitude":-91.935643,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5998,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBAZ","iata":"","local":"BAZ","name":"New Braunfels Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":651,"latitude":29.7045,"longitude":-98.042198,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6503,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5364,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.325},{"id":"LCL/P","frequency_mhz":127.05}],"has_metar":true,"public":true},{"icao":"KPAE","iata":"PAE","local":"PAE","name":"Seattle Paine Field International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":606,"latitude":47.9063,"longitude":-122.281998,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":3004,"width_ft":75,"surface":"A"},{"id":"16R/34L","length_ft":9010,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.2},{"id":"ATIS","frequency_mhz":128.65}],"has_metar":true,"public":true},{"icao":"KPAN","iata":"PJB","local":"PAN","name":"Payson Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Payson","elevation_ft":5157,"latitude":34.256801605225,"longitude":-111.33899688721,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5504,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPAO","iata":"PAO","local":"PAO","name":"Palo Alto Airport of Santa Clara County","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Palo Alto","elevation_ft":4,"latitude":37.461101532,"longitude":-122.114997864,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2443,"width_ft":70,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6},{"id":"ATIS","frequency_mhz":135.275}],"has_metar":true,"public":true},{"icao":"KAZO","iata":"AZO","local":"AZO","name":"Kalamazoo Battle Creek International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":874,"latitude":42.234901428222656,"longitude":-85.5521011352539,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3438,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":2800,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6502,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"ETHS","iata":"","local":"","name":"Fassberg Air Base","category":"medium_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"UNKNOWN","elevation_ft":245,"latitude":52.919399,"longitude":10.185827,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8005,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESUP","iata":"PJA","local":"","name":"Pajala Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"UNKNOWN","elevation_ft":542,"latitude":67.24559783935547,"longitude":23.06889915466309,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPCW","iata":"","local":"PCW","name":"Carl R Keller Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Port Clinton","elevation_ft":590,"latitude":41.516300201416016,"longitude":-82.86869812011719,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5646,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPCZ","iata":"","local":"PCZ","name":"Waupaca Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Waupaca","elevation_ft":840,"latitude":44.33330154,"longitude":-89.01979828,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5200,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3899,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPDC","iata":"PCD","local":"PDC","name":"Prairie Du Chien Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Prairie Du Chien","elevation_ft":661,"latitude":43.019298553467,"longitude":-91.12370300293,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3999,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPDK","iata":"PDK","local":"PDK","name":"DeKalb Peachtree Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1003,"latitude":33.8755989075,"longitude":-84.3020019531,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":3746,"width_ft":150,"surface":"A"},{"id":"03R/21L","length_ft":6001,"width_ft":100,"surface":"C"},{"id":"16/34","length_ft":3968,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":128.4}],"has_metar":true,"public":true},{"icao":"KPDX","iata":"PDX","local":"PDX","name":"Portland International Airport","category":"large_airport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":31,"latitude":45.58869934,"longitude":-122.5979996,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"10L/28R","length_ft":9825,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":11000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"LCL/P","frequency_mhz":123.775},{"id":"D-ATIS","frequency_mhz":128.35}],"has_metar":true,"public":true},{"icao":"KPDT","iata":"PDT","local":"PDT","name":"Eastern Oregon Regional Airport at Pendleton","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Pendleton","elevation_ft":1497,"latitude":45.695099,"longitude":-118.841003,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6301,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":4809,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.7}],"has_metar":true,"public":true},{"icao":"KBBW","iata":"BBW","local":"BBW","name":"Broken Bow Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Broken Bow","elevation_ft":2547,"latitude":41.4365005493,"longitude":-99.6421966553,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4203,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCK","iata":"","local":"BCK","name":"Black River Falls Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Black River Falls","elevation_ft":836,"latitude":44.250702,"longitude":-90.855301,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4601,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPEQ","iata":"PEQ","local":"PEQ","name":"Pecos Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pecos","elevation_ft":2613,"latitude":31.382400512695,"longitude":-103.51100158691,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5953,"width_ft":80,"surface":"A"},{"id":"14/32","length_ft":6236,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCT","iata":"BCT","local":"BCT","name":"Boca Raton Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Boca Raton","elevation_ft":13,"latitude":26.3784999847,"longitude":-80.1076965332,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6276,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.425}],"has_metar":true,"public":true},{"icao":"KBDN","iata":"","local":"BDN","name":"Bend Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3460,"latitude":44.09479904,"longitude":-121.2009964,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCE","iata":"BCE","local":"BCE","name":"Bryce Canyon Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Bryce Canyon","elevation_ft":7590,"latitude":37.706401825,"longitude":-112.144996643,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7395,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPEX","iata":"","local":"PEX","name":"Paynesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Paynesville","elevation_ft":1180,"latitude":45.372061,"longitude":-94.744742,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3302,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPGD","iata":"PGD","local":"PGD","name":"Charlotte County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Punta Gorda","elevation_ft":25,"latitude":26.9202,"longitude":-81.990501,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7193,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":2636,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":6286,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121},{"id":"ATIS","frequency_mhz":135.675}],"has_metar":true,"public":true},{"icao":"KPGA","iata":"PGA","local":"PGA","name":"Page Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Page","elevation_ft":4316,"latitude":36.92610168,"longitude":-111.447998,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":2201,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":5950,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPEZ","iata":"","local":"PEZ","name":"Pleasanton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pleasanton","elevation_ft":430,"latitude":28.954200744628903,"longitude":-98.5199966430664,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESUT","iata":"HMV","local":"","name":"Hemavan Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AC","municipality":"Hemavan","elevation_ft":1503,"latitude":65.806099,"longitude":15.0828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4741,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHP","iata":"PHP","local":"PHP","name":"Philip Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Philip","elevation_ft":2207,"latitude":44.048599243164,"longitude":-101.59899902344,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3588,"width_ft":120,"surface":"T"},{"id":"12/30","length_ft":3998,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPIE","iata":"PIE","local":"PIE","name":"St. Petersburg Clearwater International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pinellas Park","elevation_ft":11,"latitude":27.9102,"longitude":-82.687401,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":9730,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":134.5}],"has_metar":true,"public":true},{"icao":"KPIB","iata":"PIB","local":"PIB","name":"Hattiesburg Laurel Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Moselle","elevation_ft":298,"latitude":31.4671,"longitude":-89.337097,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6502,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHX","iata":"PHX","local":"PHX","name":"Phoenix Sky Harbor International Airport","category":"large_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1135,"latitude":33.435302,"longitude":-112.005905,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":10300,"width_ft":150,"surface":"C"},{"id":"07R/25L","length_ft":7800,"width_ft":150,"surface":"C"},{"id":"08/26","length_ft":11489,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"LCL/P","frequency_mhz":120.9},{"id":"D-ATIS","frequency_mhz":127.575}],"has_metar":true,"public":true},{"icao":"KPIH","iata":"PIH","local":"PIH","name":"Pocatello Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Pocatello","elevation_ft":4452,"latitude":42.9098014831543,"longitude":-112.59600067138672,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9059,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":7150,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":135.625}],"has_metar":true,"public":true},{"icao":"KBDE","iata":"BDE","local":"BDE","name":"Baudette International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Baudette","elevation_ft":1086,"latitude":48.7284011841,"longitude":-94.612197876,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5498,"width_ft":100,"surface":"A"},{"id":"13W/31W","length_ft":6000,"width_ft":120,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSA","iata":"ARN","local":"","name":"Stockholm-Arlanda Airport","category":"large_airport","iso_country":"SE","iso_region":"SE-AB","municipality":"Stockholm","elevation_ft":137,"latitude":59.651901245117,"longitude":17.918600082397,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":10830,"width_ft":148,"surface":"H"},{"id":"01R/19L","length_ft":8202,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.62},{"id":"TWR","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"KBEC","iata":"BEC","local":"BEC","name":"Beech Factory Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1408,"latitude":37.6944999695,"longitude":-97.21499633790002,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8001,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.8}],"has_metar":true,"public":true},{"icao":"KBED","iata":"BED","local":"BED","name":"Laurence G Hanscom Field","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"Bedford","elevation_ft":133,"latitude":42.470001,"longitude":-71.289001,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5107,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":7011,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KPLD","iata":"","local":"PLD","name":"Portland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Portland","elevation_ft":925,"latitude":40.45080185,"longitude":-84.99009705,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5505,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBHB","iata":"BHB","local":"BHB","name":"Hancock County-Bar Harbor Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ME","municipality":"Bar Harbor","elevation_ft":83,"latitude":44.45000076,"longitude":-68.3615036,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5200,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3363,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPKD","iata":"PKD","local":"PKD","name":"Park Rapids Municipal Konshok Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Park Rapids","elevation_ft":1445,"latitude":46.9006,"longitude":-95.073095,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5497,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":3500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPIR","iata":"PIR","local":"PIR","name":"Pierre Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Pierre","elevation_ft":1744,"latitude":44.38270187,"longitude":-100.2860031,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6880,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":6900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPIM","iata":"PIM","local":"PIM","name":"Harris County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Pine Mountain","elevation_ft":902,"latitude":32.8406982422,"longitude":-84.8824005127,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFD","iata":"BFD","local":"BFD","name":"Bradford Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bradford","elevation_ft":2143,"latitude":41.8031005859375,"longitude":-78.64009857177734,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4499,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6307,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPKV","iata":"","local":"PKV","name":"Calhoun County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Port Lavaca","elevation_ft":32,"latitude":28.65399933,"longitude":-96.6812973,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2432,"width_ft":60,"surface":"T"},{"id":"14/32","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFA","iata":"","local":"BFA","name":"Boyne Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Boyne Falls","elevation_ft":719,"latitude":45.16579818725586,"longitude":-84.92410278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5187,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBEH","iata":"BEH","local":"BEH","name":"Southwest Michigan Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Benton Harbor","elevation_ft":643,"latitude":42.128601074200006,"longitude":-86.4284973145,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6006,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3205,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFF","iata":"BFF","local":"BFF","name":"Western Neb. Rgnl/William B. Heilig Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Scottsbluff","elevation_ft":3967,"latitude":41.87400055,"longitude":-103.5960007,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8002,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":8279,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPMP","iata":"PPM","local":"PMP","name":"Pompano Beach Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pompano Beach","elevation_ft":19,"latitude":26.247100830078,"longitude":-80.111099243164,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4001,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":3502,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":4918,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.55},{"id":"LCL/P","frequency_mhz":125.4}],"has_metar":true,"public":true},{"icao":"KPLU","iata":"","local":"PLU","name":"Pierce County-Thun Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Puyallup","elevation_ft":538,"latitude":47.103901,"longitude":-122.287003,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3651,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBEA","iata":"","local":"BEA","name":"Beeville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beeville","elevation_ft":268,"latitude":28.361900329589844,"longitude":-97.79100036621094,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4553,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2251,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPMD","iata":"PMD","local":"PMD","name":"Palmdale Regional Airport / USAF Plant 42 Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Palmdale","elevation_ft":2543,"latitude":34.629398,"longitude":-118.084999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":12001,"width_ft":150,"surface":"C"},{"id":"07/25","length_ft":12002,"width_ft":200,"surface":"C"},{"id":"072/252","length_ft":6000,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.275},{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"KPNA","iata":"PWY","local":"PNA","name":"Ralph Wenz Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Pinedale","elevation_ft":7102,"latitude":42.79550171,"longitude":-109.8069992,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":8900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPMH","iata":"PMH","local":"PMH","name":"Greater Portsmouth Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Portsmouth","elevation_ft":663,"latitude":38.8404998779,"longitude":-82.84729766850002,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPLR","iata":"PLR","local":"PLR","name":"St Clair County Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Pell City","elevation_ft":485,"latitude":33.558799743652,"longitude":-86.249099731445,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5001,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBDU","iata":"WBU","local":"BDU","name":"Boulder Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Boulder","elevation_ft":5288,"latitude":40.0393981934,"longitude":-105.225997925,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4100,"width_ft":75,"surface":"A"},{"id":"08G/26G","length_ft":4100,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSV","iata":"VBY","local":"","name":"Visby Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-I","municipality":"Visby","elevation_ft":164,"latitude":57.662799835205,"longitude":18.346200942993,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6562,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":3609,"width_ft":131,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSB","iata":"BMA","local":"","name":"Stockholm-Bromma Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-AB","municipality":"Stockholm","elevation_ft":47,"latitude":59.354400634765625,"longitude":17.941699981689453,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5472,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBGD","iata":"BGD","local":"BGD","name":"Hutchinson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Borger","elevation_ft":3055,"latitude":35.700901031499995,"longitude":-101.393997192,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3897,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":6299,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPNM","iata":"","local":"PNM","name":"Princeton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Princeton","elevation_ft":980,"latitude":45.55989838,"longitude":-93.60820007,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPNS","iata":"PNS","local":"PNS","name":"Pensacola International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pensacola","elevation_ft":121,"latitude":30.4734,"longitude":-87.1866,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":7000,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":7004,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":121.25}],"has_metar":true,"public":true},{"icao":"KPNC","iata":"PNC","local":"PNC","name":"Ponca City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ponca City","elevation_ft":1008,"latitude":36.73199844,"longitude":-97.09980011,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":7201,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPOF","iata":"POF","local":"POF","name":"Poplar Bluff Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Poplar Bluff","elevation_ft":331,"latitude":36.773899078369,"longitude":-90.324897766113,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5008,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPOE","iata":"POE","local":"POE","name":"Polk Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Fort Polk","elevation_ft":330,"latitude":31.0447998,"longitude":-93.1917038,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4107,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119},{"id":"ATIS","frequency_mhz":134.85},{"id":"LCL/P","frequency_mhz":41.5}],"has_metar":true,"public":true},{"icao":"KPPA","iata":"PPA","local":"PPA","name":"Perry Lefors Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pampa","elevation_ft":3245,"latitude":35.612998962402,"longitude":-100.99600219727,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4500,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5862,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBGM","iata":"BGM","local":"BGM","name":"Greater Binghamton/Edwin A Link field","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Binghamton","elevation_ft":1636,"latitude":42.20869827,"longitude":-75.97979736,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":7305,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":54,"width_ft":54,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":128.15}],"has_metar":true,"public":true},{"icao":"KPOV","iata":"","local":"POV","name":"Portage County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ravenna","elevation_ft":1197,"latitude":41.210201,"longitude":-81.251602,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3499,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPPO","iata":"LPO","local":"PPO","name":"La Porte Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"La Porte","elevation_ft":812,"latitude":41.5724983215,"longitude":-86.73449707030001,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":2797,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPRB","iata":"PRB","local":"PRB","name":"Paso Robles Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Paso Robles","elevation_ft":840,"latitude":35.67290115,"longitude":-120.6269989,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6008,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4701,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPQI","iata":"PQI","local":"PQI","name":"Presque Isle International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ME","municipality":"Presque Isle","elevation_ft":534,"latitude":46.688999,"longitude":-68.0448,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7441,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPPF","iata":"PPF","local":"PPF","name":"Tri-City Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Parsons","elevation_ft":900,"latitude":37.32989883,"longitude":-95.5062027,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPQL","iata":"PGL","local":"PQL","name":"Trent Lott International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":17,"latitude":30.462799072266,"longitude":-88.529197692871,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.575},{"id":"ATIS","frequency_mhz":135.175}],"has_metar":true,"public":true},{"icao":"KPOY","iata":"POY","local":"POY","name":"Powell Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Powell","elevation_ft":5092,"latitude":44.867198944092,"longitude":-108.79299926758,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2623,"width_ft":100,"surface":"T"},{"id":"13/31","length_ft":6200,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":2709,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFM","iata":"BFM","local":"BFM","name":"Mobile Downtown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":26,"latitude":30.626800537100003,"longitude":-88.06809997559999,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":9618,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":7800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.8},{"id":"ATIS","frequency_mhz":135.575}],"has_metar":true,"public":true},{"icao":"KBFI","iata":"BFI","local":"BFI","name":"Boeing Field King County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":21,"latitude":47.529999,"longitude":-122.302002,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":3709,"width_ft":100,"surface":"A"},{"id":"14R/32L","length_ft":10007,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"LCL/P","frequency_mhz":120.6},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"KPRO","iata":"PRO","local":"PRO","name":"Perry Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Perry","elevation_ft":1013,"latitude":41.82799911,"longitude":-94.15989685,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2322,"width_ft":237,"surface":"T"},{"id":"14/32","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFL","iata":"BFL","local":"BFL","name":"Meadows Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":510,"latitude":35.433601,"longitude":-119.056999,"has_tower":true,"has_beacon":true,"runways":[{"id":"12L/30R","length_ft":10849,"width_ft":150,"surface":"A"},{"id":"12R/30L","length_ft":7700,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KPSF","iata":"PSF","local":"PSF","name":"Pittsfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Pittsfield","elevation_ft":1188,"latitude":42.4268,"longitude":-73.2929,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5791,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3496,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPSC","iata":"PSC","local":"PSC","name":"Tri Cities Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Pasco","elevation_ft":410,"latitude":46.26470184326172,"longitude":-119.11900329589844,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":7707,"width_ft":150,"surface":"A"},{"id":"03R/21L","length_ft":4423,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":7704,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.65},{"id":"LCL/P","frequency_mhz":135.3}],"has_metar":true,"public":true},{"icao":"KPRC","iata":"PRC","local":"PRC","name":"Prescott International Airport - Ernest A. Love Field","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Prescott","elevation_ft":5045,"latitude":34.654499,"longitude":-112.419998,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":4846,"width_ft":60,"surface":"A"},{"id":"03R/21L","length_ft":7619,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":4408,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.3},{"id":"ATIS","frequency_mhz":127.2}],"has_metar":true,"public":true},{"icao":"KPRN","iata":"","local":"PRN","name":"Mac Crenshaw Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Greenville","elevation_ft":451,"latitude":31.84569931,"longitude":-86.61070251,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5501,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFR","iata":"BFR","local":"BFR","name":"Virgil I Grissom Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bedford","elevation_ft":727,"latitude":38.84000015,"longitude":-86.44539642,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3089,"width_ft":70,"surface":"A"},{"id":"13/31","length_ft":4501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPRS","iata":"","local":"PRS","name":"Presidio Lely International Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Presidio","elevation_ft":0,"latitude":29.634212,"longitude":-104.361493,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPTT","iata":"PTT","local":"PTT","name":"Pratt Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Pratt","elevation_ft":1953,"latitude":37.70159912,"longitude":-98.74690247,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBGF","iata":"","local":"BGF","name":"Winchester Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Winchester","elevation_ft":979,"latitude":35.1775016784668,"longitude":-86.06620025634766,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSL","iata":"LPI","local":"","name":"Linköping City Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-E","municipality":"Linköping","elevation_ft":172,"latitude":58.4062004089,"longitude":15.6805000305,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7005,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPTK","iata":"PTK","local":"PTK","name":"Oakland County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Pontiac","elevation_ft":980,"latitude":42.665500640869,"longitude":-83.420097351074,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":5676,"width_ft":100,"surface":"A"},{"id":"09R/27L","length_ft":6521,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":2582,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"ATIS","frequency_mhz":125.025}],"has_metar":true,"public":true},{"icao":"KPSP","iata":"PSP","local":"PSP","name":"Palm Springs International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Palm Springs","elevation_ft":477,"latitude":33.8297,"longitude":-116.507004,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":4952,"width_ft":75,"surface":"A"},{"id":"13R/31L","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.7},{"id":"ATIS","frequency_mhz":124.65}],"has_metar":true,"public":true},{"icao":"KPSO","iata":"PGO","local":"PSO","name":"Stevens Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pagosa Springs","elevation_ft":7664,"latitude":37.28630066,"longitude":-107.0559998,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPTD","iata":"","local":"PTD","name":"Potsdam Municipal Airport Damon Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Potsdam","elevation_ft":474,"latitude":44.67657,"longitude":-74.948583,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3703,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPTS","iata":"","local":"PTS","name":"Atkinson Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Pittsburg","elevation_ft":950,"latitude":37.449501037597656,"longitude":-94.7311019897461,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":6100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPSX","iata":"PSX","local":"PSX","name":"Palacios Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Palacios","elevation_ft":14,"latitude":28.727500915527,"longitude":-96.250999450684,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":5001,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPTN","iata":"PTN","local":"PTN","name":"Harry P Williams Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Patterson","elevation_ft":9,"latitude":29.709499359131,"longitude":-91.338996887207,"has_tower":false,"has_beacon":true,"runways":[{"id":"04W/22W","length_ft":4500,"width_ft":100,"surface":"W"},{"id":"06/24","length_ft":5399,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBHK","iata":"","local":"BHK","name":"Baker Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Baker","elevation_ft":2975,"latitude":46.347599,"longitude":-104.259002,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5904,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVD","iata":"PVD","local":"PVD","name":"Theodore Francis Green State Airport","category":"large_airport","iso_country":"US","iso_region":"US-RI","municipality":"Warwick","elevation_ft":55,"latitude":41.725038,"longitude":-71.425668,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8700,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":6081,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"D-ATIS","frequency_mhz":124.2}],"has_metar":true,"public":true},{"icao":"KPVC","iata":"PVC","local":"PVC","name":"Provincetown Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Provincetown","elevation_ft":9,"latitude":42.0718994141,"longitude":-70.2213973999,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVB","iata":"","local":"PVB","name":"Platteville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Platteville","elevation_ft":1025,"latitude":42.68939972,"longitude":-90.44439697,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3600,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPUW","iata":"PUW","local":"PUW","name":"Pullman Moscow Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Pullman/Moscow","elevation_ft":2556,"latitude":46.7439,"longitude":-117.110001,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7100,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPUC","iata":"PUC","local":"PUC","name":"Carbon County Regional Airport / Buck Davis Field","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Price","elevation_ft":5957,"latitude":39.613899,"longitude":-110.751,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8316,"width_ft":100,"surface":"A"},{"id":"08/26","length_ft":3151,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":4513,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPUB","iata":"PUB","local":"PUB","name":"Pueblo Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":4726,"latitude":38.289101,"longitude":-104.497002,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":4690,"width_ft":75,"surface":"A"},{"id":"08R/26L","length_ft":10498,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":8310,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":125.25}],"has_metar":true,"public":true},{"icao":"KPTV","iata":"PTV","local":"PTV","name":"Porterville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Porterville","elevation_ft":442,"latitude":36.029598236084,"longitude":-119.06300354004,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5960,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVF","iata":"PVF","local":"PVF","name":"Placerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Placerville","elevation_ft":2585,"latitude":38.724201202393,"longitude":-120.75299835205,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3914,"width_ft":76,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPUJ","iata":"","local":"PUJ","name":"Silver Comet Field at Paulding Northwest Atlanta Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dallas","elevation_ft":1289,"latitude":33.913306,"longitude":-84.942083,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5505,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESOW","iata":"VST","local":"","name":"Stockholm Västerås Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-U","municipality":"Stockholm / Västerås","elevation_ft":21,"latitude":59.58940124511719,"longitude":16.63360023498535,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8468,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPWA","iata":"PWA","local":"PWA","name":"Wiley Post Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1300,"latitude":35.53419876,"longitude":-97.64710236,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4214,"width_ft":100,"surface":"C"},{"id":"17L/35R","length_ft":7199,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.9},{"id":"ATIS","frequency_mhz":128.725}],"has_metar":true,"public":true},{"icao":"KPWC","iata":"","local":"PWC","name":"Pine River Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Pine River","elevation_ft":1295,"latitude":46.72480010986328,"longitude":-94.38169860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPWK","iata":"PWK","local":"PWK","name":"Chicago Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/Prospect Heights/Wheeling","elevation_ft":647,"latitude":42.114222,"longitude":-87.901494,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3677,"width_ft":50,"surface":"A"},{"id":"12/30","length_ft":4415,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":124.2}],"has_metar":true,"public":true},{"icao":"KPWD","iata":"PWD","local":"PWD","name":"Sher-Wood Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Plentywood","elevation_ft":2250,"latitude":48.790298461914,"longitude":-104.53399658203,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2951,"width_ft":60,"surface":"T"},{"id":"12/30","length_ft":3900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVU","iata":"PVU","local":"PVU","name":"Provo-Utah Lake International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Provo","elevation_ft":4497,"latitude":40.2192,"longitude":-111.723,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":8603,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6628,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.3},{"id":"ATIS","frequency_mhz":135.175}],"has_metar":true,"public":true},{"icao":"KPVJ","iata":"","local":"PVJ","name":"Pauls Valley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Pauls Valley","elevation_ft":971,"latitude":34.71110153,"longitude":-97.22319794,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPWG","iata":"","local":"PWG","name":"McGregor Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":592,"latitude":31.48489952,"longitude":-97.3164978,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3484,"width_ft":55,"surface":"A"},{"id":"17/35","length_ft":5501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVW","iata":"PVW","local":"PVW","name":"Hale County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Plainview","elevation_ft":3374,"latitude":34.168098449707,"longitude":-101.71700286865,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5997,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESSD","iata":"BLE","local":"","name":"Dala Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-W","municipality":"Borlange","elevation_ft":503,"latitude":60.422001,"longitude":15.5152,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7589,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPYX","iata":"","local":"PYX","name":"Perryton Ochiltree County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Perryton","elevation_ft":2918,"latitude":36.412899017333984,"longitude":-100.7519989013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3280,"width_ft":144,"surface":"T"},{"id":"17/35","length_ft":5701,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPZQ","iata":"","local":"PZQ","name":"Presque Isle County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Rogers City","elevation_ft":670,"latitude":45.40710067749024,"longitude":-83.81289672851562,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4106,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPWT","iata":"PWT","local":"PWT","name":"Bremerton National Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Bremerton","elevation_ft":444,"latitude":47.490200042725,"longitude":-122.76499938965,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRAL","iata":"RAL","local":"RAL","name":"Riverside Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Riverside","elevation_ft":819,"latitude":33.9519,"longitude":-117.445,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5401,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":2850,"width_ft":50,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121},{"id":"ATIS","frequency_mhz":128.8}],"has_metar":true,"public":true},{"icao":"KRAS","iata":"","local":"RAS","name":"Mustang Beach Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Port Aransas","elevation_ft":5,"latitude":27.8118,"longitude":-97.088799,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3482,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRAP","iata":"RAP","local":"RAP","name":"Rapid City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Rapid City","elevation_ft":3204,"latitude":44.0452995300293,"longitude":-103.05699920654295,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3601,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":8701,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"KPXE","iata":"","local":"PXE","name":"Perry Houston County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Perry","elevation_ft":418,"latitude":32.51060104370117,"longitude":-83.76730346679688,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESST","iata":"TYF","local":"","name":"Torsby Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-S","municipality":"Torsby","elevation_ft":393,"latitude":60.1576,"longitude":12.9913,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5217,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIS","iata":"BIS","local":"BIS","name":"Bismarck Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bismarck","elevation_ft":1661,"latitude":46.77270126342773,"longitude":-100.74600219726562,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6600,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":8794,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":119.35}],"has_metar":true,"public":true},{"icao":"KRCM","iata":"","local":"RCM","name":"Skyhaven Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Warrensburg","elevation_ft":798,"latitude":38.78419876098633,"longitude":-93.80290222167967,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4206,"width_ft":75,"surface":"C"},{"id":"14/32","length_ft":2802,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIL","iata":"BIL","local":"BIL","name":"Billings Logan International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3652,"latitude":45.807701,"longitude":-108.542999,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5501,"width_ft":75,"surface":"A"},{"id":"10L/28R","length_ft":10518,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":3800,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.3},{"id":"LCL/P","frequency_mhz":127.2}],"has_metar":true,"public":true},{"icao":"KBIV","iata":"","local":"BIV","name":"West Michigan Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Holland","elevation_ft":698,"latitude":42.742901,"longitude":-86.107399,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIF","iata":"BIF","local":"BIF","name":"Biggs Army Air Field (Fort Bliss)","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Bliss/El Paso","elevation_ft":3946,"latitude":31.84950066,"longitude":-106.3799973,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":13554,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.9}],"has_metar":true,"public":true},{"icao":"KRBL","iata":"RBL","local":"RBL","name":"Red Bluff Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Red Bluff","elevation_ft":352,"latitude":40.1506996155,"longitude":-122.251998901,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5431,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRBO","iata":"","local":"RBO","name":"Nueces County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Robstown","elevation_ft":79,"latitude":27.778103,"longitude":-97.690098,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRAW","iata":"","local":"RAW","name":"Warsaw Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Warsaw","elevation_ft":936,"latitude":38.346900939941406,"longitude":-93.34539794921876,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRBW","iata":"RBW","local":"RBW","name":"Lowcountry Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Walterboro","elevation_ft":101,"latitude":32.921001434299995,"longitude":-80.6406021118,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6002,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":5408,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5705,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRBD","iata":"RBD","local":"RBD","name":"Dallas Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":660,"latitude":32.6809005737,"longitude":-96.8682022095,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7136,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":3800,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.35},{"id":"LCL/P","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KBHC","iata":"","local":"BHC","name":"Baxley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Baxley","elevation_ft":201,"latitude":31.71380043029785,"longitude":-82.393798828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKN","iata":"","local":"BKN","name":"Blackwell Tonkawa Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Blackwell","elevation_ft":1030,"latitude":36.74509811,"longitude":-97.34960175,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3501,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKD","iata":"BKD","local":"BKD","name":"Stephens County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Breckenridge","elevation_ft":1284,"latitude":32.71900177,"longitude":-98.8909988403,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2398,"width_ft":50,"surface":"A"},{"id":"13/31","length_ft":2401,"width_ft":50,"surface":"A"},{"id":"17/35","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESPA","iata":"LLA","local":"","name":"Luleå Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-BD","municipality":"Luleå","elevation_ft":65,"latitude":65.5438,"longitude":22.122,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":10991,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBJJ","iata":"BJJ","local":"BJJ","name":"Wayne County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wooster","elevation_ft":1136,"latitude":40.8748016357,"longitude":-81.88829803470001,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5189,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIX","iata":"BIX","local":"BIX","name":"Keesler Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Biloxi","elevation_ft":33,"latitude":30.4104003906,"longitude":-88.92440032959999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7630,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75}],"has_metar":true,"public":true},{"icao":"KRCX","iata":"","local":"RCX","name":"Rusk County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ladysmith","elevation_ft":1238,"latitude":45.49679946899414,"longitude":-91.00050354003906,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3199,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRDR","iata":"RDR","local":"RDR","name":"Grand Forks Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grand Forks","elevation_ft":913,"latitude":47.961101532,"longitude":-97.4011993408,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":12351,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.9}],"has_metar":true,"public":true},{"icao":"KRDM","iata":"RDM","local":"RDM","name":"Roberts Field","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Redmond","elevation_ft":3080,"latitude":44.2541008,"longitude":-121.1500015,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7038,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":7006,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.025},{"id":"LCL/P","frequency_mhz":124.5}],"has_metar":true,"public":true},{"icao":"KRDD","iata":"RDD","local":"RDD","name":"Redding Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Redding","elevation_ft":505,"latitude":40.50899887,"longitude":-122.2929993,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5067,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":7003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":124.1}],"has_metar":true,"public":true},{"icao":"KBJI","iata":"BJI","local":"BJI","name":"Bemidji Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1391,"latitude":47.50939941,"longitude":-94.93370056,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5700,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":7004,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KREO","iata":"REO","local":"REO","name":"Rome State Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Rome","elevation_ft":4053,"latitude":42.5777015686,"longitude":-117.885002136,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6000,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKE","iata":"BKE","local":"BKE","name":"Baker City Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Baker City","elevation_ft":3373,"latitude":44.8372993469,"longitude":-117.808998108,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3670,"width_ft":140,"surface":"A"},{"id":"13/31","length_ft":5085,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":4359,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRGK","iata":"","local":"RGK","name":"Red Wing Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Red Wing","elevation_ft":778,"latitude":44.589401,"longitude":-92.485001,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5010,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRFD","iata":"RFD","local":"RFD","name":"Chicago Rockford International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/Rockford","elevation_ft":742,"latitude":42.1954,"longitude":-89.097198,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8200,"width_ft":150,"surface":"A"},{"id":"07/25","length_ft":10002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":127.6}],"has_metar":true,"public":true},{"icao":"KRFI","iata":"","local":"RFI","name":"Rusk County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Henderson","elevation_ft":442,"latitude":32.141700744628906,"longitude":-94.85169982910156,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3002,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":4006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKF","iata":"BFK","local":"BKF","name":"Buckley Space Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Aurora","elevation_ft":5662,"latitude":39.701698,"longitude":-104.751999,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":11006,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.675},{"id":"LCL/P","frequency_mhz":121}],"has_metar":true,"public":true},{"icao":"KBKS","iata":"","local":"BKS","name":"Brooks County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Falfurrias","elevation_ft":113,"latitude":27.20680046,"longitude":-98.12120056,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3018,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRHP","iata":"","local":"RHP","name":"Western Carolina Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Andrews","elevation_ft":1697,"latitude":35.195202,"longitude":-83.862999,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRKD","iata":"RKD","local":"RKD","name":"Knox County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Rockland","elevation_ft":56,"latitude":44.06010056,"longitude":-69.09919739,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4000,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5412,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRID","iata":"","local":"RID","name":"Richmond Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Richmond","elevation_ft":1140,"latitude":39.75719833374024,"longitude":-84.8427963256836,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5502,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":4999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRIL","iata":"RIL","local":"RIL","name":"Garfield County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rifle","elevation_ft":5548,"latitude":39.526299,"longitude":-107.726997,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":7000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRIW","iata":"RIW","local":"RIW","name":"Central Wyoming Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Riverton","elevation_ft":5525,"latitude":43.064201,"longitude":-108.459999,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4800,"width_ft":75,"surface":"A"},{"id":"10/28","length_ft":8204,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAV","iata":"GJL","local":"","name":"Jijel Ferhat Abbas Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-18","municipality":"Tahir","elevation_ft":36,"latitude":36.795101,"longitude":5.87361,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRKS","iata":"RKS","local":"RKS","name":"Southwest Wyoming Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Rock Springs","elevation_ft":6764,"latitude":41.5942,"longitude":-109.065001,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5228,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOB","iata":"TID","local":"","name":"Abdelhafid Boussouf Bou Chekif Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-14","municipality":"Tiaret","elevation_ft":3245,"latitude":35.341099,"longitude":1.46315,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAJ","iata":"DJG","local":"","name":"Djanet Inedbirene Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-56","municipality":"Djanet","elevation_ft":3176,"latitude":24.292801,"longitude":9.45244,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRKP","iata":"RKP","local":"RKP","name":"Aransas County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rockport","elevation_ft":24,"latitude":28.0867996216,"longitude":-97.0446014404,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5608,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRKR","iata":"","local":"RKR","name":"Robert S Kerr Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Poteau","elevation_ft":451,"latitude":35.02159881591797,"longitude":-94.62129974365234,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKX","iata":"BKX","local":"BKX","name":"Brookings Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Brookings","elevation_ft":1648,"latitude":44.304798,"longitude":-96.816902,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRNH","iata":"","local":"RNH","name":"New Richmond Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"New Richmond","elevation_ft":998,"latitude":45.14830017,"longitude":-92.5381012,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2050,"width_ft":75,"surface":"T"},{"id":"14/32","length_ft":5507,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRMG","iata":"RMG","local":"RMG","name":"Richard B Russell Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Rome","elevation_ft":644,"latitude":34.3506011963,"longitude":-85.15799713130001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6006,"width_ft":150,"surface":"A"},{"id":"07/25","length_ft":4495,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRNO","iata":"RNO","local":"RNO","name":"Reno Tahoe International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":4415,"latitude":39.49909973144531,"longitude":-119.76799774169922,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6102,"width_ft":150,"surface":"C"},{"id":"17L/35R","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":11001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"D-ATIS","frequency_mhz":135.8}],"has_metar":true,"public":true},{"icao":"KRND","iata":"RND","local":"RND","name":"Randolph Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Universal City","elevation_ft":761,"latitude":29.529699,"longitude":-98.2789,"has_tower":true,"has_beacon":true,"runways":[{"id":"15L/33R","length_ft":8351,"width_ft":200,"surface":"C"},{"id":"15R/33L","length_ft":8352,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"LCL/P","frequency_mhz":128.25}],"has_metar":true,"public":true},{"icao":"KRNM","iata":"","local":"RNM","name":"Ramona Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ramona","elevation_ft":1395,"latitude":33.0392,"longitude":-116.915001,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":340,"width_ft":66,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.875},{"id":"ATIS","frequency_mhz":132.025}],"has_metar":true,"public":true},{"icao":"KRLD","iata":"","local":"RLD","name":"Richland Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Richland","elevation_ft":394,"latitude":46.30559921264648,"longitude":-119.3040008544922,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4009,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":4001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRMY","iata":"","local":"RMY","name":"Brooks Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Marshall","elevation_ft":941,"latitude":42.251202,"longitude":-84.955498,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3501,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRNC","iata":"RNC","local":"RNC","name":"Warren County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Mc Minnville","elevation_ft":1032,"latitude":35.69869995,"longitude":-85.84380341,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBLV","iata":"BLV","local":"BLV","name":"Scott AFB/Midamerica Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belleville","elevation_ft":459,"latitude":38.5452,"longitude":-89.835197,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"14R/32L","length_ft":8006,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.25},{"id":"ATIS","frequency_mhz":128.7}],"has_metar":true,"public":true},{"icao":"KBMG","iata":"BMG","local":"BMG","name":"Monroe County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bloomington","elevation_ft":846,"latitude":39.14599990844727,"longitude":-86.61669921875,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3798,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.775}],"has_metar":true,"public":true},{"icao":"KBLI","iata":"BLI","local":"BLI","name":"Bellingham International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Bellingham","elevation_ft":170,"latitude":48.79280090332031,"longitude":-122.53800201416016,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6700,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.9},{"id":"ATIS","frequency_mhz":134.45}],"has_metar":true,"public":true},{"icao":"KROS","iata":"","local":"ROS","name":"Rush City Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Rush City","elevation_ft":926,"latitude":45.69800186,"longitude":-92.95300293,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4401,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRNT","iata":"RNT","local":"RNT","name":"Renton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Renton","elevation_ft":32,"latitude":47.4930992126,"longitude":-122.216003418,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5382,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.7},{"id":"ATIS","frequency_mhz":126.95}],"has_metar":true,"public":true},{"icao":"KROX","iata":"ROX","local":"ROX","name":"Roseau Municipal Rudy Billberg Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Roseau","elevation_ft":1060,"latitude":48.85599899,"longitude":-95.6969986,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2097,"width_ft":250,"surface":"T"},{"id":"16/34","length_ft":4400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRNP","iata":"","local":"RNP","name":"Owosso Community Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Owosso","elevation_ft":736,"latitude":42.993000030518,"longitude":-84.138900756836,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2446,"width_ft":130,"surface":"T"},{"id":"11/29","length_ft":4300,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2509,"width_ft":260,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTEW","iata":"","local":"TEW","name":"Mason Jewett Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mason","elevation_ft":920,"latitude":42.56579971,"longitude":-84.42320251,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KROG","iata":"ROG","local":"ROG","name":"Rogers Municipal Airport-Carter Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Rogers","elevation_ft":1359,"latitude":36.37229919,"longitude":-94.10690308,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6011,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.375}],"has_metar":true,"public":true},{"icao":"KROW","iata":"ROW","local":"ROW","name":"Roswell Air Center Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Roswell","elevation_ft":3671,"latitude":33.301601,"longitude":-104.530998,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":13000,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":10008,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":128.45}],"has_metar":true,"public":true},{"icao":"KRPH","iata":"","local":"RPH","name":"Graham Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Graham","elevation_ft":1123,"latitude":33.110198974609,"longitude":-98.555297851562,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":3317,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRQO","iata":"RQO","local":"RQO","name":"El Reno Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"El Reno","elevation_ft":1420,"latitude":35.47269821,"longitude":-98.00579834,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5600,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":4017,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBLU","iata":"BLU","local":"BLU","name":"Blue Canyon Nyack Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Emigrant Gap","elevation_ft":5284,"latitude":39.2750015259,"longitude":-120.709999084,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3300,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRRL","iata":"RRL","local":"RRL","name":"Merrill Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrill","elevation_ft":1318,"latitude":45.1988983154,"longitude":-89.7128982544,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5100,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":2997,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRPJ","iata":"","local":"RPJ","name":"Rochelle Municipal Airport - Koritz Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rochelle","elevation_ft":781,"latitude":41.8930015564,"longitude":-89.0783004761,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRSL","iata":"RSL","local":"RSL","name":"Russell Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Russell","elevation_ft":1862,"latitude":38.872100830078,"longitude":-98.811798095703,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":1602,"width_ft":300,"surface":"T"},{"id":"17/35","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRPX","iata":"RPX","local":"RPX","name":"Roundup Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Roundup","elevation_ft":3500,"latitude":46.475095,"longitude":-108.541497,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5099,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":2460,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRQE","iata":"","local":"RQE","name":"Window Rock Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Window Rock","elevation_ft":6742,"latitude":35.652099609375,"longitude":-109.06700134277344,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRRT","iata":"RRT","local":"RRT","name":"Warroad International Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Warroad","elevation_ft":1076,"latitude":48.94139862,"longitude":-95.3483963,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2987,"width_ft":150,"surface":"T"},{"id":"13/31","length_ft":5400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBLH","iata":"BLH","local":"BLH","name":"Blythe Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Blythe","elevation_ft":399,"latitude":33.6192016602,"longitude":-114.717002869,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6543,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":5800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRTN","iata":"RTN","local":"RTN","name":"Raton Municipal Airport / Crews Field","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Raton","elevation_ft":6352,"latitude":36.741501,"longitude":-104.501999,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7615,"width_ft":75,"surface":"A"},{"id":"07/25","length_ft":4425,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRST","iata":"RST","local":"RST","name":"Rochester International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Rochester","elevation_ft":1317,"latitude":43.908298,"longitude":-92.5,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7301,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":9034,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":120.5}],"has_metar":true,"public":true},{"icao":"KRSW","iata":"RSW","local":"RSW","name":"Southwest Florida International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":30,"latitude":26.53619956970215,"longitude":-81.75520324707031,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":12000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":124.65},{"id":"LCL/P","frequency_mhz":128.75}],"has_metar":true,"public":true},{"icao":"KRUG","iata":"","local":"RUG","name":"Rugby Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Rugby","elevation_ft":1548,"latitude":48.39039993286133,"longitude":-100.02400207519533,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRUE","iata":"","local":"RUE","name":"Russellville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Russellville","elevation_ft":404,"latitude":35.259102,"longitude":-93.0933,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5505,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBMC","iata":"BMC","local":"BMC","name":"Brigham City Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Brigham City","elevation_ft":4229,"latitude":41.552399,"longitude":-112.061996,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTS","iata":"YTS","local":"","name":"Timmins/Victor M. Power","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Timmins","elevation_ft":967,"latitude":48.5696983337,"longitude":-81.376701355,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":4903,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRUQ","iata":"SRW","local":"RUQ","name":"Mid-Carolina Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Salisbury","elevation_ft":772,"latitude":35.645901,"longitude":-80.520302,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRVJ","iata":"","local":"RVJ","name":"Swinton Smith Field at Reidsville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Reidsville","elevation_ft":195,"latitude":32.0595,"longitude":-82.153777,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNA","iata":"BNA","local":"BNA","name":"Nashville International Airport","category":"large_airport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":599,"latitude":36.1245002746582,"longitude":-86.6781997680664,"has_tower":true,"has_beacon":true,"runways":[{"id":"02C/20C","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"02L/20R","length_ft":7704,"width_ft":150,"surface":"C"},{"id":"02R/20L","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":11030,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6},{"id":"D-ATIS","frequency_mhz":135.1}],"has_metar":true,"public":true},{"icao":"KBRL","iata":"BRL","local":"BRL","name":"Southeast Iowa Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Burlington","elevation_ft":698,"latitude":40.783199310302734,"longitude":-91.12550354003906,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5351,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":6102,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNO","iata":"BNO","local":"BNO","name":"Burns Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Burns","elevation_ft":4148,"latitude":43.590463,"longitude":-118.955154,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4600,"width_ft":60,"surface":"C"},{"id":"12/30","length_ft":5101,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBMQ","iata":"","local":"BMQ","name":"Burnet Municipal Airport/Kate Craddock Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Burnet","elevation_ft":1284,"latitude":30.738899,"longitude":-98.238602,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRYV","iata":"","local":"RYV","name":"Watertown Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Watertown","elevation_ft":833,"latitude":43.16960144042969,"longitude":-88.72319793701172,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4429,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":2801,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRVS","iata":"RVS","local":"RVS","name":"Richard Lloyd Jones Jr Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":638,"latitude":36.039600372314,"longitude":-95.984596252441,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":5102,"width_ft":100,"surface":"A"},{"id":"01R/19L","length_ft":4208,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":2641,"width_ft":50,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3},{"id":"ATIS","frequency_mhz":126.5}],"has_metar":true,"public":true},{"icao":"KRWF","iata":"RWF","local":"RWF","name":"Redwood Falls Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Redwood Falls","elevation_ft":1024,"latitude":44.54719925,"longitude":-95.08229828,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2081,"width_ft":200,"surface":"T"},{"id":"12/30","length_ft":4001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRWL","iata":"RWL","local":"RWL","name":"Rawlins Municipal Airport/Harvey Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Rawlins","elevation_ft":6813,"latitude":41.80559921,"longitude":-107.1999969,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7008,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4322,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRYW","iata":"","local":"RYW","name":"Lago Vista Texas Rusty Allen Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lago Vista","elevation_ft":1231,"latitude":30.4986,"longitude":-97.969498,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3808,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBOI","iata":"BOI","local":"BOI","name":"Boise Air Terminal/Gowen Field","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2871,"latitude":43.5644,"longitude":-116.223,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":9763,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":123.9}],"has_metar":true,"public":true},{"icao":"KRXE","iata":"RXE","local":"RXE","name":"Rexburg Madison County Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Rexburg","elevation_ft":4858,"latitude":43.8339,"longitude":-111.805002,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4204,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSAA","iata":"SAA","local":"SAA","name":"Shively Field","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Saratoga","elevation_ft":7012,"latitude":41.444901,"longitude":-106.823997,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8801,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTE","iata":"YTE","local":"","name":"Cape Dorset Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Kinngait","elevation_ft":164,"latitude":64.230003,"longitude":-76.526703,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3988,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNL","iata":"BNL","local":"BNL","name":"Barnwell Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Barnwell","elevation_ft":246,"latitude":33.25780106,"longitude":-81.38829803,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4526,"width_ft":70,"surface":"A"},{"id":"17/35","length_ft":5119,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSAR","iata":"SAR","local":"SAR","name":"Sparta Community Airport - Hunter Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sparta","elevation_ft":538,"latitude":38.148899,"longitude":-89.6987,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2958,"width_ft":110,"surface":"T"},{"id":"18/36","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSAC","iata":"SAC","local":"SAC","name":"Sacramento Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":24,"latitude":38.5125007629,"longitude":-121.492996216,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5503,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3837,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":125.5}],"has_metar":true,"public":true},{"icao":"KSAN","iata":"SAN","local":"SAN","name":"San Diego International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":17,"latitude":32.7336006165,"longitude":-117.190002441,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":9401,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"D-ATIS","frequency_mhz":134.8}],"has_metar":true,"public":true},{"icao":"KSAD","iata":"SAD","local":"SAD","name":"Safford Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Safford","elevation_ft":3179,"latitude":32.85480118,"longitude":-109.6350021,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4802,"width_ft":60,"surface":"A"},{"id":"12/30","length_ft":6007,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":72,"width_ft":72,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSAF","iata":"SAF","local":"SAF","name":"Santa Fe Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Santa Fe","elevation_ft":6348,"latitude":35.6171,"longitude":-106.088997,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8366,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":6301,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":6316,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KRZR","iata":"","local":"RZR","name":"Cleveland Regional Jetport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Cleveland","elevation_ft":860,"latitude":35.2114972,"longitude":-84.7997694,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6200,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSAZ","iata":"","local":"SAZ","name":"Staples Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Staples","elevation_ft":1287,"latitude":46.38090133666992,"longitude":-94.80660247802734,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3305,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSAW","iata":"MQT","local":"SAW","name":"Marquette/Sawyer International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Gwinn","elevation_ft":1221,"latitude":46.3536,"longitude":-87.395401,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":9072,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.975}],"has_metar":true,"public":true},{"icao":"KSBN","iata":"SBN","local":"SBN","name":"South Bend Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"South Bend","elevation_ft":799,"latitude":41.708698,"longitude":-86.317299,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":4300,"width_ft":75,"surface":"A"},{"id":"09R/27L","length_ft":8412,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":7101,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.675},{"id":"LCL/P","frequency_mhz":135.675}],"has_metar":true,"public":true},{"icao":"KSAV","iata":"SAV","local":"SAV","name":"Savannah Hilton Head International Airport","category":"large_airport","iso_country":"US","iso_region":"US-GA","municipality":"Savannah","elevation_ft":50,"latitude":32.12760162,"longitude":-81.20210266,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7002,"width_ft":150,"surface":"C"},{"id":"10/28","length_ft":9351,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.75},{"id":"LCL/P","frequency_mhz":125.975}],"has_metar":true,"public":true},{"icao":"KSBP","iata":"SBP","local":"SBP","name":"San Luis County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Luis Obispo","elevation_ft":212,"latitude":35.2368011475,"longitude":-120.641998291,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":2500,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":6101,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.6},{"id":"LCL/P","frequency_mhz":124}],"has_metar":true,"public":true},{"icao":"KSBD","iata":"SBD","local":"SBD","name":"San Bernardino International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Bernardino","elevation_ft":1159,"latitude":34.095402,"longitude":-117.235001,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":10000,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.45},{"id":"ATIS","frequency_mhz":124.175}],"has_metar":true,"public":true},{"icao":"KSAT","iata":"SAT","local":"SAT","name":"San Antonio International Airport","category":"large_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":809,"latitude":29.533701,"longitude":-98.469803,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8505,"width_ft":150,"surface":"C"},{"id":"13L/31R","length_ft":5519,"width_ft":100,"surface":"A"},{"id":"13R/31L","length_ft":8502,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":118.9},{"id":"LCL/P","frequency_mhz":119.8}],"has_metar":true,"public":true},{"icao":"KSBO","iata":"","local":"SBO","name":"Emanuel County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Swainsboro","elevation_ft":327,"latitude":32.609100341796875,"longitude":-82.36990356445312,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6021,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBMT","iata":"BMT","local":"BMT","name":"Beaumont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont","elevation_ft":32,"latitude":30.070635,"longitude":-94.215746,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPG","iata":"HCA","local":"BPG","name":"Big Spring Mc Mahon-Wrinkle Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Big Spring","elevation_ft":2573,"latitude":32.212601,"longitude":-101.522003,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4601,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":8802,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSDA","iata":"","local":"SDA","name":"Shenandoah Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Shenandoah","elevation_ft":971,"latitude":40.7515983581543,"longitude":-95.4136962890625,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"12/30","length_ft":3439,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSBS","iata":"SBS","local":"SBS","name":"Steamboat Springs Bob Adams Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Steamboat Springs","elevation_ft":6882,"latitude":40.5163002,"longitude":-106.8659973,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4452,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSBX","iata":"SBX","local":"SBX","name":"Shelby Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Shelby","elevation_ft":3443,"latitude":48.5406990051,"longitude":-111.871002197,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5005,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":3701,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSCX","iata":"","local":"SCX","name":"Scott Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Oneida","elevation_ft":1545,"latitude":36.455601,"longitude":-84.585701,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5505,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSCD","iata":"","local":"SCD","name":"Merkel Field Sylacauga Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Sylacauga","elevation_ft":569,"latitude":33.17179870605469,"longitude":-86.30549621582031,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5390,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ETNL","iata":"RLG","local":"","name":"Rostock-Laage Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-MV","municipality":"Rostock","elevation_ft":138,"latitude":53.9182014465,"longitude":12.2783002853,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ETSH","iata":"","local":"","name":"Holzdorf Air Base","category":"medium_airport","iso_country":"DE","iso_region":"DE-BR","municipality":"Holzdorf","elevation_ft":265,"latitude":51.767799,"longitude":13.1677,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7936,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBRD","iata":"BRD","local":"BRD","name":"Brainerd Lakes Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Brainerd","elevation_ft":1232,"latitude":46.402861,"longitude":-94.129727,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6512,"width_ft":150,"surface":"C"},{"id":"16/34","length_ft":7100,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EYVI","iata":"VNO","local":"","name":"Vilnius International Airport","category":"large_airport","iso_country":"LT","iso_region":"LT-VL","municipality":"Vilnius","elevation_ft":648,"latitude":54.634102,"longitude":25.285801,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8251,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBQK","iata":"BQK","local":"BQK","name":"Brunswick Golden Isles Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Brunswick","elevation_ft":26,"latitude":31.2588005065918,"longitude":-81.46649932861328,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":8001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSDF","iata":"SDF","local":"SDF","name":"Louisville Muhammad Ali International Airport","category":"large_airport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":501,"latitude":38.1744,"longitude":-85.736,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":7251,"width_ft":150,"surface":"C"},{"id":"17L/35R","length_ft":8578,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":11887,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":118.725},{"id":"LCL/P","frequency_mhz":124.2}],"has_metar":true,"public":true},{"icao":"KSDY","iata":"SDY","local":"SDY","name":"Sidney - Richland Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Sidney","elevation_ft":1985,"latitude":47.706902,"longitude":-104.193001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5705,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4024,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSDM","iata":"SDM","local":"SDM","name":"Brown Field Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":526,"latitude":32.572639,"longitude":-116.980019,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":7972,"width_ft":150,"surface":"A"},{"id":"08R/26L","length_ft":3185,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.25},{"id":"ATIS","frequency_mhz":132.35}],"has_metar":true,"public":true},{"icao":"KSEM","iata":"SEM","local":"SEM","name":"Craig Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Selma","elevation_ft":166,"latitude":32.343898773193,"longitude":-86.987800598145,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":8014,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.85}],"has_metar":true,"public":true},{"icao":"KSEP","iata":"SEP","local":"SEP","name":"Stephenville Clark Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stephenville","elevation_ft":1321,"latitude":32.215302,"longitude":-98.177696,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4209,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPK","iata":"WMH","local":"BPK","name":"Ozark Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Mountain Home","elevation_ft":928,"latitude":36.3689002991,"longitude":-92.4704971313,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPI","iata":"BPI","local":"BPI","name":"Miley Memorial Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Big Piney","elevation_ft":6990,"latitude":42.58509827,"longitude":-110.1110001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3301,"width_ft":60,"surface":"T"},{"id":"13/31","length_ft":6803,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSET","iata":"","local":"SET","name":"St Charles County Regional Airport/Smartt Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"St Charles","elevation_ft":437,"latitude":38.929699,"longitude":-90.43,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":3800,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSFF","iata":"SFF","local":"SFF","name":"Felts Field","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":1953,"latitude":47.682899,"longitude":-117.321925,"has_tower":true,"has_beacon":true,"runways":[{"id":"03W/21W","length_ft":6000,"width_ft":100,"surface":"W"},{"id":"04L/22R","length_ft":4499,"width_ft":140,"surface":"C"},{"id":"04R/22L","length_ft":2650,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.55},{"id":"LCL/P","frequency_mhz":132.5}],"has_metar":true,"public":true},{"icao":"KSEZ","iata":"SDX","local":"SEZ","name":"Sedona Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Sedona","elevation_ft":4830,"latitude":34.848598480225,"longitude":-111.78800201416,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5132,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBPT","iata":"BPT","local":"BPT","name":"Jack Brooks Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont/Port Arthur","elevation_ft":15,"latitude":29.9508,"longitude":-94.020699,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6751,"width_ft":150,"surface":"C"},{"id":"16/34","length_ft":5071,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KSEQ","iata":"","local":"SEQ","name":"Randolph Air Force Base Auxiliary Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seguin","elevation_ft":525,"latitude":29.564499,"longitude":-97.902517,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8350,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSHL","iata":"","local":"SHL","name":"Sheldon Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Sheldon","elevation_ft":1419,"latitude":43.208401,"longitude":-95.833396,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4199,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTN","iata":"TTO","local":"BTN","name":"Britton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Britton","elevation_ft":1318,"latitude":45.815200805664,"longitude":-97.743103027344,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2034,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":4210,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTA","iata":"","local":"BTA","name":"Blair Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Blair","elevation_ft":1325,"latitude":41.414908,"longitude":-96.109136,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4201,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBRY","iata":"BRY","local":"BRY","name":"Samuels Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Bardstown","elevation_ft":669,"latitude":37.8143005371,"longitude":-85.4996032715,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSGS","iata":"","local":"SGS","name":"South St Paul Municipal Airport/Richard E Fleming Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"South St Paul","elevation_ft":821,"latitude":44.857101,"longitude":-93.032898,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSGF","iata":"SGF","local":"SGF","name":"Springfield Branson National Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1268,"latitude":37.245701,"longitude":-93.388603,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7003,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":135.125}],"has_metar":true,"public":true},{"icao":"KSHN","iata":"SHN","local":"SHN","name":"Sanderson Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Shelton","elevation_ft":273,"latitude":47.233600616455,"longitude":-123.14800262451,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSGU","iata":"SGU","local":"SGU","name":"St George Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"St George","elevation_ft":2941,"latitude":37.036389,"longitude":-113.510306,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9300,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSGR","iata":"SGR","local":"SGR","name":"Sugar Land Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":82,"latitude":29.622299194336,"longitude":-95.65650177002,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8000,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.125},{"id":"LCL/P","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"EVLA","iata":"LPX","local":"","name":"Liepāja International Airport","category":"medium_airport","iso_country":"LV","iso_region":"LV-112","municipality":"Liepāja","elevation_ft":16,"latitude":56.51750183105469,"longitude":21.096900939941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6568,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSHV","iata":"SHV","local":"SHV","name":"Shreveport Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":258,"latitude":32.446602,"longitude":-93.8256,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7003,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":8348,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.4},{"id":"ATIS","frequency_mhz":128.45}],"has_metar":true,"public":true},{"icao":"KSKA","iata":"SKA","local":"SKA","name":"Fairchild Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2461,"latitude":47.615101,"longitude":-117.655998,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":13899,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.35}],"has_metar":true,"public":true},{"icao":"KSIY","iata":"","local":"SIY","name":"Siskiyou County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Montague","elevation_ft":2648,"latitude":41.78139877319336,"longitude":-122.46800231933594,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":7490,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSJC","iata":"SJC","local":"SJC","name":"Norman Y. Mineta San Jose International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Jose","elevation_ft":62,"latitude":37.362452,"longitude":-121.929188,"has_tower":true,"has_beacon":true,"runways":[{"id":"12L/30R","length_ft":11000,"width_ft":150,"surface":"C"},{"id":"12R/30L","length_ft":11000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124},{"id":"D-ATIS","frequency_mhz":126.95}],"has_metar":true,"public":true},{"icao":"KSHR","iata":"SHR","local":"SHR","name":"Sheridan County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Sheridan","elevation_ft":4021,"latitude":44.76919937133789,"longitude":-106.9800033569336,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5039,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":8301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTM","iata":"BTM","local":"BTM","name":"Bert Mooney Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Butte","elevation_ft":5550,"latitude":45.95479965209961,"longitude":-112.49700164794922,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5100,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":9000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EVRA","iata":"RIX","local":"","name":"Riga International Airport","category":"large_airport","iso_country":"LV","iso_region":"LV-062","municipality":"Riga","elevation_ft":36,"latitude":56.923599,"longitude":23.9711,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSIK","iata":"SIK","local":"SIK","name":"Sikeston Memorial Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sikeston","elevation_ft":315,"latitude":36.898899078369,"longitude":-89.561798095703,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSLB","iata":"SLB","local":"SLB","name":"Storm Lake Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Storm Lake","elevation_ft":1488,"latitude":42.5973014832,"longitude":-95.2406997681,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":1962,"width_ft":95,"surface":"T"},{"id":"13/31","length_ft":3034,"width_ft":50,"surface":"C"},{"id":"17/35","length_ft":5002,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBRO","iata":"BRO","local":"BRO","name":"Brownsville South Padre Island International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownsville","elevation_ft":22,"latitude":25.90679931640625,"longitude":-97.4259033203125,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7399,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KBTL","iata":"BTL","local":"BTL","name":"Battle Creek Executive Airport at Kellogg Field","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Battle Creek","elevation_ft":952,"latitude":42.307301,"longitude":-85.251503,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":10004,"width_ft":150,"surface":"A"},{"id":"05R/23L","length_ft":4100,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":4835,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.825},{"id":"ATIS","frequency_mhz":128.325}],"has_metar":true,"public":true},{"icao":"KSLI","iata":"","local":"SLI","name":"Los Alamitos Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Los Alamitos","elevation_ft":32,"latitude":33.79000092,"longitude":-118.052002,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":5901,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":7999,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.875},{"id":"LCL/P","frequency_mhz":123.85}],"has_metar":true,"public":true},{"icao":"KSKF","iata":"SKF","local":"SKF","name":"Lackland Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":691,"latitude":29.38419914,"longitude":-98.58110046,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":11550,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.45},{"id":"LCL/P","frequency_mhz":124.3}],"has_metar":true,"public":true},{"icao":"KSLG","iata":"SLG","local":"SLG","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Siloam Springs","elevation_ft":1191,"latitude":36.19189835,"longitude":-94.48999786,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4997,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSKX","iata":"TSM","local":"SKX","name":"Taos Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Taos","elevation_ft":7095,"latitude":36.45819855,"longitude":-105.6719971,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5504,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":8600,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTR","iata":"BTR","local":"BTR","name":"Baton Rouge Metropolitan Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":70,"latitude":30.533199,"longitude":-91.149597,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":7500,"width_ft":150,"surface":"C"},{"id":"04R/22L","length_ft":3799,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":7005,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":125.2}],"has_metar":true,"public":true},{"icao":"EVVA","iata":"VNT","local":"","name":"Ventspils International Airport","category":"medium_airport","iso_country":"LV","iso_region":"LV-VEN","municipality":"Ventspils","elevation_ft":19,"latitude":57.35779953,"longitude":21.5442008972,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/31","length_ft":4259,"width_ft":105,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSLK","iata":"SLK","local":"SLK","name":"Adirondack Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Saranac Lake","elevation_ft":1663,"latitude":44.38691,"longitude":-74.204629,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6573,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":3997,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSLO","iata":"SLO","local":"SLO","name":"Salem–Leckrone Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Salem","elevation_ft":573,"latitude":38.642899,"longitude":-88.964203,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4098,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSMD","iata":"SMD","local":"SMD","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":835,"latitude":41.14339828,"longitude":-85.15280151,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3126,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":2922,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSMF","iata":"SMF","local":"SMF","name":"Sacramento International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":27,"latitude":38.69540023803711,"longitude":-121.59100341796876,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":8605,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":8598,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.7},{"id":"D-ATIS","frequency_mhz":126.75}],"has_metar":true,"public":true},{"icao":"KSMO","iata":"SMO","local":"SMO","name":"Santa Monica Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Monica","elevation_ft":170,"latitude":34.0158,"longitude":-118.450996,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3500,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.15},{"id":"LCL/P","frequency_mhz":120.1}],"has_metar":true,"public":true},{"icao":"KSMN","iata":"SMN","local":"SMN","name":"Lemhi County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Salmon","elevation_ft":4043,"latitude":45.1237983704,"longitude":-113.880996704,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5510,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBVN","iata":"","local":"BVN","name":"Albion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Albion","elevation_ft":1806,"latitude":41.72859954833984,"longitude":-98.05580139160156,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3700,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSNK","iata":"SNK","local":"SNK","name":"Winston Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Snyder","elevation_ft":2430,"latitude":32.690212,"longitude":-100.948918,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4200,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5599,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBUF","iata":"BUF","local":"BUF","name":"Buffalo Niagara International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NY","municipality":"Buffalo","elevation_ft":728,"latitude":42.94049835,"longitude":-78.73220062,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8829,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":7161,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5},{"id":"D-ATIS","frequency_mhz":135.35}],"has_metar":true,"public":true},{"icao":"KBUU","iata":"","local":"BUU","name":"Burlington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Burlington","elevation_ft":779,"latitude":42.69070053100586,"longitude":-88.30460357666016,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2410,"width_ft":130,"surface":"T"},{"id":"11/29","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSNS","iata":"SNS","local":"SNS","name":"Salinas Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Salinas","elevation_ft":85,"latitude":36.662799835205,"longitude":-121.60600280762,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6004,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4825,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.525},{"id":"ATIS","frequency_mhz":124.85}],"has_metar":true,"public":true},{"icao":"KSMX","iata":"SMX","local":"SMX","name":"Santa Maria Public Airport Captain G Allan Hancock Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Maria","elevation_ft":261,"latitude":34.898899,"longitude":-120.457001,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5199,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":8004,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":121.15}],"has_metar":true,"public":true},{"icao":"KSNA","iata":"SNA","local":"SNA","name":"John Wayne Orange County International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ana","elevation_ft":56,"latitude":33.675701,"longitude":-117.867996,"has_tower":true,"has_beacon":true,"runways":[{"id":"02L/20R","length_ft":5700,"width_ft":150,"surface":"A"},{"id":"02R/20L","length_ft":2886,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"D-ATIS","frequency_mhz":126}],"has_metar":true,"public":true},{"icao":"KSNY","iata":"SNY","local":"SNY","name":"Sidney Municipal Airport Lloyd W Carr Field","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Sidney","elevation_ft":4313,"latitude":41.101299,"longitude":-102.985001,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4705,"width_ft":75,"surface":"T"},{"id":"13/31","length_ft":6600,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSNL","iata":"SNL","local":"SNL","name":"Shawnee Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Shawnee","elevation_ft":1073,"latitude":35.357898712158,"longitude":-96.942802429199,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5997,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBVS","iata":"MVW","local":"BVS","name":"Skagit Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Burlington","elevation_ft":144,"latitude":48.470901,"longitude":-122.420998,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3000,"width_ft":60,"surface":"A"},{"id":"11/29","length_ft":5480,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSPF","iata":"SPF","local":"SPF","name":"Black Hills Airport-Clyde Ice Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Spearfish","elevation_ft":3931,"latitude":44.48030090332,"longitude":-103.78299713135,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":1995,"width_ft":120,"surface":"T"},{"id":"08/26","length_ft":4003,"width_ft":100,"surface":"T"},{"id":"13/31","length_ft":6401,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBUR","iata":"BUR","local":"BUR","name":"Bob Hope Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Burbank","elevation_ft":778,"latitude":34.197703,"longitude":-118.356378,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5802,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":6886,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"LCL/P","frequency_mhz":132.325},{"id":"D-ATIS","frequency_mhz":134.5},{"id":"D-ATIS","frequency_mhz":135.125}],"has_metar":true,"public":true},{"icao":"CYMM","iata":"YMM","local":"","name":"Fort McMurray Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Fort McMurray","elevation_ft":1211,"latitude":56.653301239,"longitude":-111.222000122,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7503,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBVO","iata":"BVO","local":"BVO","name":"Bartlesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bartlesville","elevation_ft":711,"latitude":36.76250076,"longitude":-96.01119995,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6850,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQD","iata":"YQD","local":"","name":"The Pas Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"The Pas","elevation_ft":887,"latitude":53.97140121459961,"longitude":-101.09100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5901,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSPW","iata":"SPW","local":"SPW","name":"Spencer Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Spencer","elevation_ft":1339,"latitude":43.165500640869,"longitude":-95.202796936035,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6001,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":5100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSPB","iata":"","local":"SPB","name":"Scappoose Industrial Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Scappoose","elevation_ft":58,"latitude":45.77099990844727,"longitude":-122.86199951171876,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUG","iata":"GHA","local":"","name":"Noumérat - Moufdi Zakaria Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-47","municipality":"El Atteuf","elevation_ft":1512,"latitude":32.384102,"longitude":3.79411,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10171,"width_ft":197,"surface":"H"},{"id":"18/36","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSYI","iata":"SYI","local":"SYI","name":"Bomar Field Shelbyville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Shelbyville","elevation_ft":801,"latitude":35.56010056,"longitude":-86.44249725,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5504,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUH","iata":"HME","local":"","name":"Hassi Messaoud-Oued Irara Krim Belkacem Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-30","municipality":"Hassi Messaoud","elevation_ft":463,"latitude":31.673,"longitude":6.14044,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSQI","iata":"SQI","local":"SQI","name":"Whiteside County Airport - Joseph H Bittorf Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rock Falls","elevation_ft":648,"latitude":41.742175,"longitude":-89.673629,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6499,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":3900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOI","iata":"CFK","local":"","name":"Chlef Aboubakr Belkaid International Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-02","municipality":"Chlef","elevation_ft":463,"latitude":36.217166,"longitude":1.342237,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9186,"width_ft":148,"surface":"H"},{"id":"07/25","length_ft":5400,"width_ft":90,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSSI","iata":"SSI","local":"SSI","name":"St Simons Island Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"St Simons Island","elevation_ft":19,"latitude":31.1518,"longitude":-81.391296,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5584,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":3313,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSSF","iata":"SSF","local":"SSF","name":"Stinson Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":577,"latitude":29.336999893188,"longitude":-98.471099853516,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4128,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":128.8}],"has_metar":true,"public":true},{"icao":"KSQL","iata":"SQL","local":"SQL","name":"San Carlos Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Carlos","elevation_ft":5,"latitude":37.511901855469,"longitude":-122.25,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":2621,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119},{"id":"ATIS","frequency_mhz":125.9}],"has_metar":true,"public":true},{"icao":"KSRE","iata":"","local":"SRE","name":"Seminole Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Seminole","elevation_ft":1024,"latitude":35.27470016479492,"longitude":-96.67520141601562,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2000,"width_ft":150,"surface":"T"},{"id":"16/34","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSRR","iata":"RUI","local":"SRR","name":"Sierra Blanca Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Alto","elevation_ft":6814,"latitude":33.462799,"longitude":-105.535004,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":8120,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":6309,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSRB","iata":"","local":"SRB","name":"Upper Cumberland Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sparta","elevation_ft":1025,"latitude":36.05590057373047,"longitude":-85.53070068359375,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6704,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSTK","iata":"STK","local":"STK","name":"Sterling Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Sterling","elevation_ft":4040,"latitude":40.613497,"longitude":-103.263833,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2809,"width_ft":150,"surface":"T"},{"id":"15/33","length_ft":5201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAON","iata":"TLM","local":"","name":"Zenata – Messali El Hadj Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-13","municipality":"Zenata","elevation_ft":814,"latitude":35.013426,"longitude":-1.457191,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOO","iata":"ORN","local":"","name":"Oran Es-Sénia (Ahmed Ben Bella) International Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-31","municipality":"Es-Sénia","elevation_ft":295,"latitude":35.623901,"longitude":-0.621183,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/25R","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSTC","iata":"STC","local":"STC","name":"Saint Cloud Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Saint Cloud","elevation_ft":1031,"latitude":45.5466,"longitude":-94.059898,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3000,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":7500,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.25},{"id":"ATIS","frequency_mhz":119.375}],"has_metar":true,"public":true},{"icao":"KSTJ","iata":"STJ","local":"STJ","name":"Rosecrans Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"St Joseph","elevation_ft":826,"latitude":39.771900177002,"longitude":-94.909698486328,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4797,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":8061,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.05}],"has_metar":true,"public":true},{"icao":"KSTS","iata":"STS","local":"STS","name":"Charles M. Schulz Sonoma County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Rosa","elevation_ft":128,"latitude":38.50899887,"longitude":-122.8130035,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5202,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":120.55}],"has_metar":true,"public":true},{"icao":"KBWG","iata":"BWG","local":"BWG","name":"Bowling Green Warren County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Bowling Green","elevation_ft":547,"latitude":36.9645004272,"longitude":-86.41970062259999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3956,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBWP","iata":"WAH","local":"BWP","name":"Harry Stern Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wahpeton","elevation_ft":968,"latitude":46.2440986633,"longitude":-96.6073989868,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3254,"width_ft":150,"surface":"T"},{"id":"15/33","length_ft":5100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAOV","iata":"MUW","local":"","name":"Ghriss Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-29","municipality":"Ghriss","elevation_ft":1686,"latitude":35.207699,"longitude":0.147142,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5577,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBXA","iata":"BXA","local":"BXA","name":"George R Carr Memorial Air Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bogalusa","elevation_ft":119,"latitude":30.8136997223,"longitude":-89.8649978638,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSUW","iata":"SUW","local":"SUW","name":"Richard I Bong Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Superior","elevation_ft":674,"latitude":46.688612,"longitude":-92.095041,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5100,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSUZ","iata":"","local":"SUZ","name":"Saline County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Bryant","elevation_ft":390,"latitude":34.590599,"longitude":-92.479401,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSUX","iata":"SUX","local":"SUX","name":"Sioux Gateway Airport / Brigadier General Bud Day Field","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Sioux City","elevation_ft":1098,"latitude":42.397605,"longitude":-96.382237,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":9002,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":6401,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":119.45}],"has_metar":true,"public":true},{"icao":"KSUU","iata":"SUU","local":"SUU","name":"Travis Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fairfield","elevation_ft":62,"latitude":38.262699,"longitude":-121.927002,"has_tower":true,"has_beacon":true,"runways":[{"id":"032/212","length_ft":3500,"width_ft":90,"surface":"C"},{"id":"03L/21R","length_ft":11001,"width_ft":300,"surface":"A"},{"id":"03R/21L","length_ft":10995,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.75},{"id":"D-ATIS","frequency_mhz":135.55}],"has_metar":true,"public":true},{"icao":"KSVC","iata":"SVC","local":"SVC","name":"Grant County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Silver City","elevation_ft":5446,"latitude":32.632293,"longitude":-108.154263,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4537,"width_ft":80,"surface":"D"},{"id":"08/26","length_ft":6803,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":4675,"width_ft":75,"surface":"D"},{"id":"17/35","length_ft":5473,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSUN","iata":"SUN","local":"SUN","name":"Friedman Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Hailey","elevation_ft":5318,"latitude":43.50439835,"longitude":-114.2959976,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7550,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.6},{"id":"ATIS","frequency_mhz":128.225}],"has_metar":true,"public":true},{"icao":"KSXK","iata":"","local":"SXK","name":"Sioux County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Maurice","elevation_ft":1409,"latitude":42.9858275,"longitude":-96.1614,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBWD","iata":"BWD","local":"BWD","name":"Brownwood Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownwood","elevation_ft":1387,"latitude":31.7936000824,"longitude":-98.9564971924,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4608,"width_ft":101,"surface":"A"},{"id":"17/35","length_ft":5599,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPX","iata":"YPX","local":"","name":"Puvirnituq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Puvirnituq","elevation_ft":74,"latitude":60.05059814453125,"longitude":-77.28690338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6299,"width_ft":148,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSVN","iata":"SVN","local":"SVN","name":"Hunter Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Savannah","elevation_ft":41,"latitude":32.00999832,"longitude":-81.14569855,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":11375,"width_ft":197,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.975},{"id":"ATIS","frequency_mhz":127.525}],"has_metar":true,"public":true},{"icao":"KSWO","iata":"SWO","local":"SWO","name":"Stillwater Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Stillwater","elevation_ft":1000,"latitude":36.161201477051,"longitude":-97.08570098877,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5002,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":7401,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.35}],"has_metar":true,"public":true},{"icao":"KSVE","iata":"SVE","local":"SVE","name":"Susanville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Susanville","elevation_ft":4149,"latitude":40.375702,"longitude":-120.572998,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":2180,"width_ft":60,"surface":"D"},{"id":"11/29","length_ft":4051,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSVH","iata":"SVH","local":"SVH","name":"Statesville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Statesville","elevation_ft":968,"latitude":35.765300750732,"longitude":-80.953903198242,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":7003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAO","iata":"CAO","local":"CAO","name":"Clayton Municipal Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clayton","elevation_ft":4965,"latitude":36.4462013245,"longitude":-103.166999817,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6307,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":4106,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMA","iata":"YMA","local":"","name":"Mayo Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Mayo","elevation_ft":1653,"latitude":63.61640167236328,"longitude":-135.8679962158203,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4843,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYG","iata":"BYG","local":"BYG","name":"Johnson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Buffalo","elevation_ft":4968,"latitude":44.3810997009,"longitude":-106.722000122,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6143,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAD","iata":"CAD","local":"CAD","name":"Wexford County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Cadillac","elevation_ft":1307,"latitude":44.275749,"longitude":-85.421534,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":2006,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYS","iata":"BYS","local":"BYS","name":"Bicycle Lake Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fort Irwin/Barstow","elevation_ft":2350,"latitude":35.2804985046,"longitude":-116.629997253,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":9631,"width_ft":175,"surface":"G"},{"id":"13/31","length_ft":6124,"width_ft":175,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTAD","iata":"TAD","local":"TAD","name":"Perry Stokes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Trinidad","elevation_ft":5762,"latitude":37.2593994141,"longitude":-104.341003418,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5500,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":5500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVT","iata":"YVT","local":"","name":"Buffalo Narrows Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Buffalo Narrows","elevation_ft":1423,"latitude":55.8418998718,"longitude":-108.417999268,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5006,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":2297,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSYR","iata":"SYR","local":"SYR","name":"Syracuse Hancock International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NY","municipality":"Syracuse","elevation_ft":421,"latitude":43.11119842529297,"longitude":-76.1063003540039,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":9014,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":7500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3},{"id":"ATIS","frequency_mhz":124.225}],"has_metar":true,"public":true},{"icao":"KTBN","iata":"TBN","local":"TBN","name":"Waynesville-St. Robert Regional Airport-Forney Field","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fort Leonard Wood","elevation_ft":1159,"latitude":37.7416,"longitude":-92.140701,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":6037,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":118.7},{"id":"LCL/P","frequency_mhz":125.4}],"has_metar":true,"public":true},{"icao":"KSZL","iata":"SZL","local":"SZL","name":"Whiteman Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Knob Noster","elevation_ft":870,"latitude":38.730301,"longitude":-93.547897,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":12400,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.725},{"id":"LCL/P","frequency_mhz":132.4}],"has_metar":true,"public":true},{"icao":"KSZT","iata":"","local":"SZT","name":"Sandpoint Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sandpoint","elevation_ft":2131,"latitude":48.299499511719,"longitude":-116.55999755859,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTCC","iata":"TCC","local":"TCC","name":"Tucumcari Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Tucumcari","elevation_ft":4065,"latitude":35.182800293,"longitude":-103.602996826,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7104,"width_ft":100,"surface":"A"},{"id":"08/26","length_ft":4600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTBR","iata":"TBR","local":"TBR","name":"Statesboro Bulloch County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Statesboro","elevation_ft":187,"latitude":32.4827003479,"longitude":-81.73690032959999,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4382,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYI","iata":"BYI","local":"BYI","name":"Burley Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Burley","elevation_ft":4150,"latitude":42.5425987244,"longitude":-113.772003174,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4092,"width_ft":80,"surface":"A"},{"id":"06/24","length_ft":4072,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTDZ","iata":"TDZ","local":"TDZ","name":"Toledo Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Toledo","elevation_ft":623,"latitude":41.56489944,"longitude":-83.4822998,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3799,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5829,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTCL","iata":"TCL","local":"TCL","name":"Tuscaloosa National Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Tuscaloosa","elevation_ft":170,"latitude":33.2206,"longitude":-87.611397,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6498,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KTCM","iata":"TCM","local":"TCM","name":"McChord Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tacoma","elevation_ft":322,"latitude":47.137699,"longitude":-122.475998,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":10108,"width_ft":150,"surface":"A"},{"id":"162/342","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.8},{"id":"D-ATIS","frequency_mhz":135.825}],"has_metar":true,"public":true},{"icao":"KTCY","iata":"","local":"TCY","name":"Tracy Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Tracy","elevation_ft":193,"latitude":37.68899917602539,"longitude":-121.44200134277344,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3438,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBYY","iata":"BBC","local":"BYY","name":"Bay City Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bay City","elevation_ft":45,"latitude":28.973301,"longitude":-95.863503,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5107,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTCS","iata":"TCS","local":"TCS","name":"Truth or Consequences Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Truth or Consequences","elevation_ft":4853,"latitude":33.2369,"longitude":-107.272003,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3302,"width_ft":130,"surface":"G"},{"id":"07/25","length_ft":2933,"width_ft":130,"surface":"G"},{"id":"11/29","length_ft":6981,"width_ft":190,"surface":"G"},{"id":"13/31","length_ft":7202,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":3001,"width_ft":140,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAG","iata":"CIG","local":"CAG","name":"Craig Moffat Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Craig","elevation_ft":6193,"latitude":40.4952011108,"longitude":-107.522003174,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5606,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUL","iata":"YUL","local":"YUL","name":"Montreal / Pierre Elliott Trudeau International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Montréal","elevation_ft":118,"latitude":45.4706001282,"longitude":-73.7407989502,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":11000,"width_ft":200,"surface":"A"},{"id":"06R/24L","length_ft":9600,"width_ft":200,"surface":"C"},{"id":"10/28","length_ft":7000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":133.7},{"id":"ATIS-F","frequency_mhz":127.5},{"id":"TWR","frequency_mhz":119.3},{"id":"TWR","frequency_mhz":119.9}],"has_metar":true,"public":true},{"icao":"CYVC","iata":"YVC","local":"","name":"La Ronge Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"La Ronge","elevation_ft":1242,"latitude":55.1514015198,"longitude":-105.262001038,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/38","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVL","iata":"YCK","local":"","name":"Tommy Kochon Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Colville Lake","elevation_ft":870,"latitude":67.02,"longitude":-126.126,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3935,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTIF","iata":"","local":"TIF","name":"Thomas County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Thedford","elevation_ft":2925,"latitude":41.96220016,"longitude":-100.5690002,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4400,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCR","iata":"CCR","local":"CCR","name":"Buchanan Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Concord","elevation_ft":26,"latitude":37.9897003174,"longitude":-122.056999207,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"01R/19L","length_ft":2770,"width_ft":75,"surface":"A"},{"id":"14L/32R","length_ft":4602,"width_ft":150,"surface":"A"},{"id":"14R/32L","length_ft":2798,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":123.9},{"id":"ATIS","frequency_mhz":124.7}],"has_metar":true,"public":true},{"icao":"KTHM","iata":"THM","local":"THM","name":"Thompson Falls Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Thompson Falls","elevation_ft":2467,"latitude":47.573501586914,"longitude":-115.28099822998,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTIW","iata":"TIW","local":"TIW","name":"Tacoma Narrows Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tacoma","elevation_ft":294,"latitude":47.26789856,"longitude":-122.5780029,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":124.05}],"has_metar":true,"public":true},{"icao":"KTEX","iata":"TEX","local":"TEX","name":"Telluride Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Telluride","elevation_ft":9070,"latitude":37.9538,"longitude":-107.907997,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":7111,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTMK","iata":"OTK","local":"TMK","name":"Tillamook Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Tillamook","elevation_ft":36,"latitude":45.4182014465,"longitude":-123.814002991,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2911,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCB","iata":"CCB","local":"CCB","name":"Cable Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Upland","elevation_ft":1444,"latitude":34.1115989685,"longitude":-117.68800354,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3863,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"},{"id":"H2","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAV","iata":"","local":"CAV","name":"Clarion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clarion","elevation_ft":1162,"latitude":42.74190139770508,"longitude":-93.75890350341795,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3455,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCAR","iata":"CAR","local":"CAR","name":"Caribou Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ME","municipality":"Caribou","elevation_ft":626,"latitude":46.871498,"longitude":-68.017899,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4003,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":3016,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTKC","iata":"","local":"TKC","name":"Tracy Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Tracy","elevation_ft":1340,"latitude":44.24909973144531,"longitude":-95.6072998046875,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3098,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":1778,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCA","iata":"","local":"CCA","name":"Clinton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Clinton","elevation_ft":514,"latitude":35.597801,"longitude":-92.451599,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4007,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTIX","iata":"TIX","local":"TIX","name":"Space Coast Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Titusville","elevation_ft":34,"latitude":28.514799118042,"longitude":-80.799201965332,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":7319,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":120.625}],"has_metar":true,"public":true},{"icao":"KTMB","iata":"TMB","local":"TMB","name":"Miami Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":8,"latitude":25.6479,"longitude":-80.4328,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":5003,"width_ft":150,"surface":"A"},{"id":"09R/27L","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4001,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":124},{"id":"LCL/P","frequency_mhz":124.9}],"has_metar":true,"public":true},{"icao":"KTKX","iata":"KNT","local":"TKX","name":"Kennett Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kennett","elevation_ft":262,"latitude":36.2258987427,"longitude":-90.0365982056,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":3012,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCO","iata":"","local":"CCO","name":"Newnan Coweta County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":970,"latitude":33.31159973144531,"longitude":-84.7697982788086,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTME","iata":"","local":"TME","name":"Houston Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":166,"latitude":29.80719947814941,"longitude":-95.8979034423828,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6610,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.525},{"id":"LCL/P","frequency_mhz":126.975}],"has_metar":true,"public":true},{"icao":"KTKI","iata":"","local":"TKI","name":"McKinney National Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":585,"latitude":33.177898,"longitude":-96.5905,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":7002,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.825},{"id":"ATIS","frequency_mhz":119.925}],"has_metar":true,"public":true},{"icao":"CYVQ","iata":"YVQ","local":"","name":"Norman Wells Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Norman Wells","elevation_ft":238,"latitude":65.28160095214844,"longitude":-126.7979965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5998,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDI","iata":"","local":"CDI","name":"Cambridge Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cambridge","elevation_ft":799,"latitude":39.97499847412109,"longitude":-81.57759857177734,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4298,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTOB","iata":"","local":"TOB","name":"Dodge Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Dodge Center","elevation_ft":1305,"latitude":44.01800155639648,"longitude":-92.8314971923828,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2383,"width_ft":200,"surface":"T"},{"id":"16/34","length_ft":4500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTWT","iata":"","local":"TWT","name":"Sturgis Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Sturgis","elevation_ft":372,"latitude":37.54079818725586,"longitude":-87.95179748535156,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTOI","iata":"TOI","local":"TOI","name":"Troy Municipal Airport at N Kenneth Campbell Field","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Troy","elevation_ft":398,"latitude":31.860399,"longitude":-86.012101,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6197,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":5024,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.925},{"id":"LCL/P","frequency_mhz":124.3}],"has_metar":true,"public":true},{"icao":"KTOP","iata":"TOP","local":"TOP","name":"Philip Billard Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":881,"latitude":39.069899,"longitude":-95.622606,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5099,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":4331,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"KCDA","iata":"LLX","local":"CDA","name":"Caledonia County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Lyndonville","elevation_ft":1188,"latitude":44.5690994263,"longitude":-72.0179977417,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3302,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTOC","iata":"TOC","local":"TOC","name":"Toccoa Airport - R.G. Letourneau Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Toccoa","elevation_ft":996,"latitude":34.5938,"longitude":-83.295799,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5008,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":2951,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCCY","iata":"CCY","local":"CCY","name":"Northeast Iowa Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Charles City","elevation_ft":1125,"latitude":43.0726013184,"longitude":-92.6108016968,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2536,"width_ft":160,"surface":"T"},{"id":"12/30","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":1780,"width_ft":170,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTQE","iata":"","local":"TQE","name":"Tekamah Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Tekamah","elevation_ft":1027,"latitude":41.76350021362305,"longitude":-96.17790222167967,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEC","iata":"CEC","local":"CEC","name":"Jack Mc Namara Field Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Crescent City","elevation_ft":61,"latitude":41.78020096,"longitude":-124.2369995,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5002,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDC","iata":"CDC","local":"CDC","name":"Cedar City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Cedar City","elevation_ft":5622,"latitude":37.70100021362305,"longitude":-113.0989990234375,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":8653,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":4822,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTPH","iata":"TPH","local":"TPH","name":"Tonopah Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Tonopah","elevation_ft":5430,"latitude":38.06019974,"longitude":-117.086998,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5660,"width_ft":50,"surface":"A"},{"id":"15/33","length_ft":7160,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":48,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTRK","iata":"TKF","local":"TRK","name":"Truckee Tahoe Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Truckee","elevation_ft":5900,"latitude":39.3199996948,"longitude":-120.13999939,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4654,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":7001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118},{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"KTPL","iata":"TPL","local":"TPL","name":"Draughon Miller Central Texas Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Temple","elevation_ft":682,"latitude":31.15250015258789,"longitude":-97.40779876708984,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4740,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTQH","iata":"","local":"TQH","name":"Tahlequah Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Tahlequah","elevation_ft":874,"latitude":35.92890167,"longitude":-95.00450134,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTRL","iata":"TRL","local":"TRL","name":"Terrell Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Terrell","elevation_ft":474,"latitude":32.709201812744,"longitude":-96.267402648926,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTOR","iata":"TOR","local":"TOR","name":"Torrington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Torrington","elevation_ft":4207,"latitude":42.0644989,"longitude":-104.1529999,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3401,"width_ft":60,"surface":"A"},{"id":"10/28","length_ft":5703,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTQK","iata":"","local":"TQK","name":"Scott City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Scott City","elevation_ft":2963,"latitude":38.47430038452149,"longitude":-100.88500213623048,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2145,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":5002,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDS","iata":"CDS","local":"CDS","name":"Childress Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Childress","elevation_ft":1954,"latitude":34.4337997437,"longitude":-100.288002014,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4425,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5949,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDR","iata":"CDR","local":"CDR","name":"Chadron Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Chadron","elevation_ft":3297,"latitude":42.837600708,"longitude":-103.095001221,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5998,"width_ft":100,"surface":"C"},{"id":"12/30","length_ft":4400,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDH","iata":"CDH","local":"CDH","name":"Harrell Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Camden","elevation_ft":130,"latitude":33.6227989197,"longitude":-92.7633972168,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTTF","iata":"","local":"TTF","name":"Custer Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Monroe","elevation_ft":616,"latitude":41.93989944458008,"longitude":-83.43470001220703,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4997,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTTS","iata":"","local":"TTS","name":"NASA Shuttle Landing Facility Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Titusville","elevation_ft":10,"latitude":28.615,"longitude":-80.694504,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":15001,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KTUP","iata":"TUP","local":"TUP","name":"Tupelo Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Tupelo","elevation_ft":346,"latitude":34.26810073852539,"longitude":-88.7698974609375,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":7150,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.775}],"has_metar":true,"public":true},{"icao":"KTTD","iata":"TTD","local":"TTD","name":"Portland Troutdale Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":39,"latitude":45.54940032959,"longitude":-122.40100097656,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5399,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":135.625}],"has_metar":true,"public":true},{"icao":"KTRM","iata":"TRM","local":"TRM","name":"Jacqueline Cochran Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Palm Springs","elevation_ft":-115,"latitude":33.62670135498,"longitude":-116.16000366211,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4995,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":8500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTSP","iata":"TSP","local":"TSP","name":"Tehachapi Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Tehachapi","elevation_ft":4001,"latitude":35.134998321533,"longitude":-118.43900299072,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4040,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTVK","iata":"","local":"TVK","name":"Centerville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Centerville","elevation_ft":1023,"latitude":40.68389893,"longitude":-92.90100098,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4099,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUX","iata":"YUX","local":"","name":"Hall Beach Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Sanirajak","elevation_ft":30,"latitude":68.7761,"longitude":-81.2425,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5410,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYEG","iata":"YEG","local":"CYEG","name":"Edmonton International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Edmonton","elevation_ft":2373,"latitude":53.3097,"longitude":-113.580002,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":10995,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":10200,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KTVL","iata":"TVL","local":"TVL","name":"Lake Tahoe Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"South Lake Tahoe","elevation_ft":6264,"latitude":38.89390182495117,"longitude":-119.99500274658205,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8541,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTUS","iata":"TUS","local":"TUS","name":"Tucson International Airport / Morris Air National Guard Base","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2643,"latitude":32.115004,"longitude":-110.938053,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7000,"width_ft":150,"surface":"A"},{"id":"11L/29R","length_ft":10996,"width_ft":150,"surface":"A"},{"id":"11R/29L","length_ft":8408,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":123.8}],"has_metar":true,"public":true},{"icao":"KTVY","iata":"","local":"TVY","name":"Bolinder Field Tooele Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele","elevation_ft":4322,"latitude":40.61230087,"longitude":-112.3509979,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6102,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTWF","iata":"TWF","local":"TWF","name":"Joslin Field Magic Valley Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Twin Falls","elevation_ft":4154,"latitude":42.4818,"longitude":-114.487999,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":8704,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3224,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2}],"has_metar":true,"public":true},{"icao":"KTVF","iata":"TVF","local":"TVF","name":"Thief River Falls Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Thief River Falls","elevation_ft":1119,"latitude":48.06570053,"longitude":-96.18499756,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4997,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6504,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTWM","iata":"","local":"TWM","name":"Richard B Helgeson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Two Harbors","elevation_ft":1073,"latitude":47.04919815,"longitude":-91.74510193,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4400,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":2581,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUO","iata":"ELU","local":"","name":"Guemar Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-39","municipality":"Guemar","elevation_ft":203,"latitude":33.5113983154,"longitude":6.77679014206,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUZ","iata":"IAM","local":"","name":"Zarzaitine - In Aménas Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-33","municipality":"In Aménas","elevation_ft":1847,"latitude":28.0515,"longitude":9.64291,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"14/32","length_ft":7218,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYEK","iata":"YEK","local":"","name":"Arviat Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Arviat","elevation_ft":32,"latitude":61.0942001343,"longitude":-94.0708007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFS","iata":"TZC","local":"CFS","name":"Tuscola Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Caro","elevation_ft":701,"latitude":43.458801,"longitude":-83.445503,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4302,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":2277,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFE","iata":"","local":"CFE","name":"Buffalo Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Buffalo","elevation_ft":967,"latitude":45.15900039672852,"longitude":-93.84329986572266,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUBE","iata":"","local":"UBE","name":"Cumberland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cumberland","elevation_ft":1241,"latitude":45.505969,"longitude":-91.98012,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4043,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":1996,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTXK","iata":"TXK","local":"TXK","name":"Texarkana Regional Airport (Webb Field)","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Texarkana","elevation_ft":390,"latitude":33.453701,"longitude":-93.990997,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6602,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.2},{"id":"LCL/P","frequency_mhz":123.875}],"has_metar":true,"public":true},{"icao":"KTYR","iata":"TYR","local":"TYR","name":"Tyler Pounds Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Tyler","elevation_ft":544,"latitude":32.35409927368164,"longitude":-95.40239715576172,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8334,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":5198,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4832,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":126.25}],"has_metar":true,"public":true},{"icao":"KUAO","iata":"","local":"UAO","name":"Aurora State Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Aurora","elevation_ft":200,"latitude":45.247100830078125,"longitude":-122.7699966430664,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.525},{"id":"LCL/P","frequency_mhz":120.35}],"has_metar":true,"public":true},{"icao":"KTYL","iata":"TYZ","local":"TYL","name":"Taylor Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Taylor","elevation_ft":5823,"latitude":34.45280075,"longitude":-110.1149979,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEW","iata":"CEW","local":"CEW","name":"Bob Sikes Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":213,"latitude":30.778799057,"longitude":-86.522102356,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8006,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEZ","iata":"CEZ","local":"CEZ","name":"Cortez Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cortez","elevation_ft":5918,"latitude":37.3030014038,"longitude":-108.627998352,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7205,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUKL","iata":"","local":"UKL","name":"Coffey County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Burlington","elevation_ft":1174,"latitude":38.30250168,"longitude":-95.72499847,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUCP","iata":"","local":"UCP","name":"New Castle Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Castle","elevation_ft":1070,"latitude":41.02529907,"longitude":-80.41339874,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3995,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":2855,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUGN","iata":"UGN","local":"UGN","name":"Waukegan National Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/Waukegan","elevation_ft":727,"latitude":42.422199249268,"longitude":-87.867897033691,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6001,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":3750,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.05},{"id":"ATIS","frequency_mhz":132.4}],"has_metar":true,"public":true},{"icao":"KUIN","iata":"UIN","local":"UIN","name":"Quincy Regional Baldwin Field","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Quincy","elevation_ft":768,"latitude":39.94269943,"longitude":-91.19460297,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7098,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5397,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUCY","iata":"UCY","local":"UCY","name":"Everett-Stewart Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Union City","elevation_ft":336,"latitude":36.38180161,"longitude":-88.98539734,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEY","iata":"CEY","local":"CEY","name":"Kyle Oakley Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Murray","elevation_ft":577,"latitude":36.66460037,"longitude":-88.37280273,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6202,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUKI","iata":"UKI","local":"UKI","name":"Ukiah Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ukiah","elevation_ft":614,"latitude":39.125999,"longitude":-123.200996,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4423,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUKF","iata":"IKB","local":"UKF","name":"Wilkes County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"North Wilkesboro","elevation_ft":1301,"latitude":36.2228012085,"longitude":-81.09829711910001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLH","iata":"YLH","local":"","name":"Lansdowne House Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Lansdowne House","elevation_ft":834,"latitude":52.19559860229492,"longitude":-87.93419647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3484,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEU","iata":"CEU","local":"CEU","name":"Oconee County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Clemson","elevation_ft":892,"latitude":34.6719017,"longitude":-82.8864975,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQL","iata":"YQL","local":"","name":"Lethbridge County Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Lethbridge","elevation_ft":3048,"latitude":49.6302986145,"longitude":-112.800003052,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6500,"width_ft":200,"surface":"A"},{"id":"13/31","length_ft":5500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KULS","iata":"","local":"ULS","name":"Ulysses Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ulysses","elevation_ft":3071,"latitude":37.60400009,"longitude":-101.3740005,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4600,"width_ft":60,"surface":"C"},{"id":"17/35","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXL","iata":"YXL","local":"","name":"Sioux Lookout Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sioux Lookout","elevation_ft":1258,"latitude":50.11389923095703,"longitude":-91.9052963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUSE","iata":"","local":"USE","name":"Fulton County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wauseon","elevation_ft":779,"latitude":41.61009979248047,"longitude":-84.127197265625,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3882,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2115,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KULM","iata":"ULM","local":"ULM","name":"New Ulm Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"New Ulm","elevation_ft":1011,"latitude":44.319599151611,"longitude":-94.502296447754,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2478,"width_ft":160,"surface":"T"},{"id":"15/33","length_ft":5401,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUNU","iata":"UNU","local":"UNU","name":"Dodge County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Juneau","elevation_ft":934,"latitude":43.42660141,"longitude":-88.70320129,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4028,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":5070,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUOX","iata":"UOX","local":"UOX","name":"University Oxford Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Oxford","elevation_ft":452,"latitude":34.384300231934,"longitude":-89.536796569824,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUTS","iata":"HTV","local":"UTS","name":"Huntsville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Huntsville","elevation_ft":363,"latitude":30.7469005585,"longitude":-95.5871963501,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUNO","iata":"","local":"UNO","name":"West Plains Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pomona","elevation_ft":1228,"latitude":36.878399,"longitude":-91.902702,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHK","iata":"CHK","local":"CHK","name":"Chickasha Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chickasha","elevation_ft":1152,"latitude":35.09740067,"longitude":-97.96769714,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2232,"width_ft":100,"surface":"T"},{"id":"02/20","length_ft":2404,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":5101,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYWL","iata":"YWL","local":"","name":"Williams Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Williams Lake","elevation_ft":3085,"latitude":52.1831016541,"longitude":-122.054000854,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6966,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUUU","iata":"NPT","local":"UUU","name":"Newport State Airport","category":"small_airport","iso_country":"US","iso_region":"US-RI","municipality":"Newport","elevation_ft":172,"latitude":41.532398,"longitude":-71.281502,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2999,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":2623,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUYF","iata":"","local":"UYF","name":"Madison County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"London","elevation_ft":1082,"latitude":39.93270111,"longitude":-83.46199799,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUWL","iata":"","local":"UWL","name":"New Castle-Henry County Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Castle","elevation_ft":1088,"latitude":39.8759,"longitude":-85.3265,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUUV","iata":"","local":"UUV","name":"Sullivan Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sullivan","elevation_ft":933,"latitude":38.233501,"longitude":-91.164299,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVAD","iata":"VAD","local":"VAD","name":"Moody Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Valdosta","elevation_ft":233,"latitude":30.9678001404,"longitude":-83.1930007935,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":9300,"width_ft":150,"surface":"C"},{"id":"18R/36L","length_ft":8002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.45}],"has_metar":true,"public":true},{"icao":"KVBG","iata":"VBG","local":"VBG","name":"Vandenberg Space Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lompoc","elevation_ft":369,"latitude":34.737301,"longitude":-120.584,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":15000,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.95},{"id":"D-ATIS","frequency_mhz":133.125}],"has_metar":true,"public":true},{"icao":"KVCB","iata":"","local":"VCB","name":"Nut Tree Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Vacaville","elevation_ft":117,"latitude":38.376800537109375,"longitude":-121.96199798583984,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVBT","iata":"","local":"VBT","name":"Bentonville Municipal-Louise M Thaden Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Bentonville","elevation_ft":1296,"latitude":36.345699,"longitude":-94.219299,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":2448,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":4426,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUVA","iata":"UVA","local":"UVA","name":"Garner Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Uvalde","elevation_ft":942,"latitude":29.2112998962,"longitude":-99.743598938,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5256,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUXL","iata":"","local":"UXL","name":"Southland Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Sulphur","elevation_ft":10,"latitude":30.13139915,"longitude":-93.37609863,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXE","iata":"YXE","local":"","name":"Saskatoon John G. Diefenbaker International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Saskatoon","elevation_ft":1653,"latitude":52.17079925537109,"longitude":-106.6999969482422,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":8300,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":6200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.4},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"CYXH","iata":"YXH","local":"","name":"Medicine Hat Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Medicine Hat","elevation_ft":2352,"latitude":50.018902,"longitude":-110.721001,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5003,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":2850,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVHN","iata":"VHN","local":"VHN","name":"Culberson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Van Horn","elevation_ft":3957,"latitude":31.057800292969,"longitude":-104.78399658203,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6005,"width_ft":76,"surface":"A"},{"id":"07/25","length_ft":5353,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVES","iata":"","local":"VES","name":"Darke County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Versailles","elevation_ft":1007,"latitude":40.20439910888672,"longitude":-84.53189849853516,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4802,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVIH","iata":"VIH","local":"VIH","name":"Rolla National Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rolla/Vichy","elevation_ft":1148,"latitude":38.1273994446,"longitude":-91.7695007324,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVEL","iata":"VEL","local":"VEL","name":"Vernal Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Vernal","elevation_ft":5278,"latitude":40.440899,"longitude":-109.510002,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":7000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVCT","iata":"VCT","local":"VCT","name":"Victoria Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Victoria","elevation_ft":115,"latitude":28.85260009765625,"longitude":-96.9185028076172,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":9111,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4908,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.025},{"id":"LCL/P","frequency_mhz":126.075}],"has_metar":true,"public":true},{"icao":"KVCV","iata":"VCV","local":"VCV","name":"Southern California Logistics Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Victorville","elevation_ft":2885,"latitude":34.597499847399995,"longitude":-117.383003235,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9138,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":13052,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.35},{"id":"ATIS","frequency_mhz":135.475}],"has_metar":true,"public":true},{"icao":"KVDI","iata":"VDI","local":"VDI","name":"Vidalia Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Vidalia","elevation_ft":275,"latitude":32.192699432373,"longitude":-82.371200561523,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6002,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":5002,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHA","iata":"CHA","local":"CHA","name":"Chattanooga Metropolitan Airport (Lovell Field)","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Chattanooga","elevation_ft":683,"latitude":35.035301,"longitude":-85.203796,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7400,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5575,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":119.85}],"has_metar":true,"public":true},{"icao":"KCGZ","iata":"CGZ","local":"CGZ","name":"Casa Grande Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Casa Grande","elevation_ft":1464,"latitude":32.954899,"longitude":-111.766998,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFV","iata":"CFV","local":"CFV","name":"Coffeyville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Coffeyville","elevation_ft":754,"latitude":37.09400177,"longitude":-95.5718994141,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4005,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5868,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQQ","iata":"YQQ","local":"","name":"Comox Valley Airport / CFB Comox","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Comox","elevation_ft":84,"latitude":49.7108,"longitude":-124.887001,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9960,"width_ft":200,"surface":"C"},{"id":"18/36","length_ft":4970,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQT","iata":"YQT","local":"","name":"Thunder Bay Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Thunder Bay","elevation_ft":653,"latitude":48.37189865112305,"longitude":-89.32389831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6200,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":5300,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVNW","iata":"","local":"VNW","name":"Van Wert County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Van Wert","elevation_ft":785,"latitude":40.86470031738281,"longitude":-84.6093978881836,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2558,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVLD","iata":"VLD","local":"VLD","name":"Valdosta Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Valdosta","elevation_ft":203,"latitude":30.78249931335449,"longitude":-83.27670288085938,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5598,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3636,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":8002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.35}],"has_metar":true,"public":true},{"icao":"KVIS","iata":"VIS","local":"VIS","name":"Visalia Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Visalia","elevation_ft":295,"latitude":36.318699,"longitude":-119.392998,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":6562,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVNY","iata":"VNY","local":"VNY","name":"Van Nuys Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Van Nuys","elevation_ft":802,"latitude":34.209800720215,"longitude":-118.48999786377,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":4013,"width_ft":75,"surface":"A"},{"id":"16R/34L","length_ft":8001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.2},{"id":"ATIS","frequency_mhz":127.55}],"has_metar":true,"public":true},{"icao":"CYQK","iata":"YQK","local":"","name":"Kenora Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Kenora","elevation_ft":1332,"latitude":49.78829956054688,"longitude":-94.36309814453124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5800,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCIN","iata":"CIN","local":"CIN","name":"Arthur N Neu Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Carroll","elevation_ft":1204,"latitude":42.0461997986,"longitude":-94.7890014648,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3301,"width_ft":60,"surface":"C"},{"id":"13/31","length_ft":5506,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVTA","iata":"","local":"VTA","name":"Newark Heath Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Newark","elevation_ft":884,"latitude":40.0247001648,"longitude":-82.46179962160001,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4649,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVOK","iata":"VOK","local":"VOK","name":"Volk Field","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Camp Douglas","elevation_ft":912,"latitude":43.938999176025,"longitude":-90.253402709961,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.5},{"id":"ATIS","frequency_mhz":134.35}],"has_metar":true,"public":true},{"icao":"KVPZ","iata":"VPZ","local":"VPZ","name":"Porter County Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Valparaiso","elevation_ft":770,"latitude":41.45399857,"longitude":-87.00710297,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":7001,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVPS","iata":"VPS","local":"VPS","name":"Destin-Fort Walton Beach Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Valparaiso","elevation_ft":87,"latitude":30.4832,"longitude":-86.525398,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":10001,"width_ft":300,"surface":"A"},{"id":"12/30","length_ft":11987,"width_ft":300,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":134.625}],"has_metar":true,"public":true},{"icao":"KVRB","iata":"VRB","local":"VRB","name":"Vero Beach Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":24,"latitude":27.6556,"longitude":-80.417901,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4974,"width_ft":100,"surface":"A"},{"id":"12L/30R","length_ft":3504,"width_ft":75,"surface":"A"},{"id":"12R/30L","length_ft":7314,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.575},{"id":"LCL/P","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KVTN","iata":"VTN","local":"VTN","name":"Miller Field","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Valentine","elevation_ft":2596,"latitude":42.856211,"longitude":-100.549192,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3701,"width_ft":60,"surface":"C"},{"id":"14/32","length_ft":4704,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVPC","iata":"","local":"VPC","name":"Cartersville Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cartersville","elevation_ft":759,"latitude":34.12310028076172,"longitude":-84.84870147705078,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5760,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCIR","iata":"CIR","local":"CIR","name":"Cairo Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Cairo","elevation_ft":321,"latitude":37.064499,"longitude":-89.219597,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3200,"width_ft":60,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWDG","iata":"WDG","local":"WDG","name":"Enid Woodring Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Enid","elevation_ft":1167,"latitude":36.3791999817,"longitude":-97.7910995483,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3150,"width_ft":108,"surface":"A"},{"id":"17/35","length_ft":8613,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9}],"has_metar":true,"public":true},{"icao":"CYQW","iata":"YQW","local":"","name":"North Battleford Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"North Battleford","elevation_ft":1799,"latitude":52.769409,"longitude":-108.243742,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVUO","iata":"","local":"VUO","name":"Pearson Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":25,"latitude":45.620499,"longitude":-122.655998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3275,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCID","iata":"CID","local":"CID","name":"The Eastern Iowa Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Rapids","elevation_ft":869,"latitude":41.884701,"longitude":-91.7108,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":8600,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":6200,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.15}],"has_metar":true,"public":true},{"icao":"KCII","iata":"","local":"CII","name":"Choteau Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Choteau","elevation_ft":3947,"latitude":47.82830047607422,"longitude":-112.16799926757812,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3699,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVVV","iata":"","local":"VVV","name":"Ortonville Municipal Airport/Martinson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ortonville","elevation_ft":1100,"latitude":45.305698,"longitude":-96.4244,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2175,"width_ft":275,"surface":"T"},{"id":"16/34","length_ft":3417,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVWU","iata":"","local":"VWU","name":"Waskish Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Waskish","elevation_ft":1181,"latitude":48.15409851074219,"longitude":-94.51689910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2992,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWDR","iata":"WDR","local":"WDR","name":"Barrow County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Winder","elevation_ft":943,"latitude":33.98289871,"longitude":-83.66739655,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3607,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5202,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVYS","iata":"VYS","local":"VYS","name":"Illinois Valley Regional Airport Walter A Duncan Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Peru","elevation_ft":654,"latitude":41.351898,"longitude":-89.153099,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3999,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWLD","iata":"WLD","local":"WLD","name":"Strother Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Winfield / Arkansas City","elevation_ft":1160,"latitude":37.168598,"longitude":-97.037598,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3137,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQU","iata":"YQU","local":"","name":"Grande Prairie Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Grande Prairie","elevation_ft":2195,"latitude":55.1796989441,"longitude":-118.885002136,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8502,"width_ft":148,"surface":"A"},{"id":"07/25","length_ft":6200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWMC","iata":"WMC","local":"WMC","name":"Winnemucca Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Winnemucca","elevation_ft":4308,"latitude":40.8965988159,"longitude":-117.805999756,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4800,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":7000,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"},{"id":"H2","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWJF","iata":"WJF","local":"WJF","name":"General William J Fox Airfield","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lancaster","elevation_ft":2351,"latitude":34.7411,"longitude":-118.219002,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7201,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.525},{"id":"ATIS","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KWHP","iata":"WHP","local":"WHP","name":"Whiteman Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pacoima","elevation_ft":1003,"latitude":34.2593,"longitude":-118.413002,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4120,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.1},{"id":"LCL/P","frequency_mhz":135}],"has_metar":true,"public":true},{"icao":"KWVI","iata":"WVI","local":"WVI","name":"Watsonville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Watsonville","elevation_ft":163,"latitude":36.9356994629,"longitude":-121.790000916,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4502,"width_ft":149,"surface":"A"},{"id":"09/27","length_ft":3998,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWRL","iata":"WRL","local":"WRL","name":"Worland Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Worland","elevation_ft":4227,"latitude":43.965698,"longitude":-107.950996,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2241,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":2502,"width_ft":60,"surface":"T"},{"id":"16/34","length_ft":7000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKY","iata":"YKY","local":"YKY","name":"Kindersley Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Kindersley","elevation_ft":2277,"latitude":51.5175018311,"longitude":-109.180999756,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3507,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":2281,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLL","iata":"YLL","local":"","name":"Lloydminster Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Lloydminster","elevation_ft":2193,"latitude":53.309200286865234,"longitude":-110.072998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5579,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLK","iata":"YSG","local":"","name":"Lutselk'e Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Lutselk'e","elevation_ft":596,"latitude":62.418303,"longitude":-110.681998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3003,"width_ft":103,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMX","iata":"YMX","local":"","name":"Montreal International (Mirabel) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Montréal","elevation_ft":270,"latitude":45.679501,"longitude":-74.038696,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":12000,"width_ft":200,"surface":"C"},{"id":"11/29","length_ft":12000,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKP","iata":"","local":"CKP","name":"Cherokee County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cherokee","elevation_ft":1227,"latitude":42.7317009,"longitude":-95.55590057,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2621,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KWVL","iata":"WVL","local":"WVL","name":"Waterville Robert Lafleur Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Waterville","elevation_ft":333,"latitude":44.5331993103,"longitude":-69.6754989624,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":2301,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KXMR","iata":"","local":"XMR","name":"Cape Canaveral SFS Skid Strip","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cocoa Beach","elevation_ft":10,"latitude":28.4676,"longitude":-80.566597,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9999,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.625},{"id":"LCL/P","frequency_mhz":143.15}],"has_metar":true,"public":true},{"icao":"KWWR","iata":"WWR","local":"WWR","name":"West Woodward Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Woodward","elevation_ft":2189,"latitude":36.438,"longitude":-99.5226667,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2500,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5502,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KXNA","iata":"XNA","local":"XNA","name":"Northwest Arkansas National Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fayetteville/Springdale/Rogers","elevation_ft":1287,"latitude":36.281898,"longitude":-94.306801,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":8801,"width_ft":150,"surface":"C"},{"id":"16R/34L","length_ft":8800,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.425},{"id":"LCL/P","frequency_mhz":127.1}],"has_metar":true,"public":true},{"icao":"KXBP","iata":"","local":"XBP","name":"Bridgeport Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bridgeport","elevation_ft":852,"latitude":33.175301,"longitude":-97.8284,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYC","iata":"YYC","local":"","name":"Calgary International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Calgary","elevation_ft":3557,"latitude":51.113899231,"longitude":-114.019996643,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":14000,"width_ft":200,"surface":"C"},{"id":"17R/35L","length_ft":12675,"width_ft":200,"surface":"A"},{"id":"11/29","length_ft":8000,"width_ft":200,"surface":"A"},{"id":"08/26","length_ft":6200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.225},{"id":"TWR","frequency_mhz":118.4},{"id":"TWR","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"KCKC","iata":"GRM","local":"CKC","name":"Grand Marais Cook County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Grand Marais","elevation_ft":1799,"latitude":47.8382987976,"longitude":-90.3828964233,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKV","iata":"CKV","local":"CKV","name":"Clarksville–Montgomery County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":550,"latitude":36.6218986511,"longitude":-87.4150009155,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4004,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKF","iata":"","local":"CKF","name":"Crisp County Cordele Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cordele","elevation_ft":310,"latitude":31.98880005,"longitude":-83.77390289,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5006,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCPT","iata":"","local":"CPT","name":"Cleburne Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cleburne","elevation_ft":854,"latitude":32.353802,"longitude":-97.433701,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5697,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KYIP","iata":"YIP","local":"YIP","name":"Willow Run Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":716,"latitude":42.23789978,"longitude":-83.53040314,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7543,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":5000,"width_ft":160,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.275},{"id":"ATIS","frequency_mhz":127.425}],"has_metar":true,"public":true},{"icao":"KXVG","iata":"","local":"XVG","name":"Longville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Longville","elevation_ft":1334,"latitude":46.9902,"longitude":-94.204002,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3549,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KYKN","iata":"YKN","local":"YKN","name":"Chan Gurney Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Yankton","elevation_ft":1306,"latitude":42.916698455811,"longitude":-97.385902404785,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3380,"width_ft":60,"surface":"A"},{"id":"13/31","length_ft":6094,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KYKM","iata":"YKM","local":"YKM","name":"Yakima Air Terminal McAllister Field","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1099,"latitude":46.56819916,"longitude":-120.5439987,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3835,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":7604,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.25},{"id":"LCL/P","frequency_mhz":133.25}],"has_metar":true,"public":true},{"icao":"KCLK","iata":"CLK","local":"CLK","name":"Clinton Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Clinton","elevation_ft":1616,"latitude":35.53829956,"longitude":-98.93270111,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":1348,"width_ft":245,"surface":"T"},{"id":"17/35","length_ft":4305,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DFFD","iata":"OUA","local":"","name":"Ouagadougou Airport","category":"medium_airport","iso_country":"BF","iso_region":"BF-KAD","municipality":"Ouagadougou","elevation_ft":1037,"latitude":12.3532,"longitude":-1.51242,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9888,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DFOO","iata":"BOY","local":"","name":"Bobo Dioulasso Airport","category":"medium_airport","iso_country":"BF","iso_region":"BF-HOU","municipality":"Bobo Dioulasso","elevation_ft":1511,"latitude":11.160099983215332,"longitude":-4.33096981048584,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLI","iata":"CLI","local":"CLI","name":"Clintonville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Clintonville","elevation_ft":822,"latitude":44.6138000488,"longitude":-88.731300354,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3812,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":2002,"width_ft":170,"surface":"T"},{"id":"14/32","length_ft":4599,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLM","iata":"CLM","local":"CLM","name":"William R Fairchild International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":291,"latitude":48.12020111083984,"longitude":-123.5,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6347,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":3255,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLS","iata":"CLS","local":"CLS","name":"Chehalis Centralia Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Chehalis","elevation_ft":176,"latitude":46.6769981384,"longitude":-122.983001709,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":140,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCMA","iata":"","local":"CMA","name":"Camarillo International Airport","category":"large_airport","iso_country":"US","iso_region":"US-CA","municipality":"Camarillo","elevation_ft":77,"latitude":34.213699,"longitude":-119.094002,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6013,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.025},{"id":"LCL/P","frequency_mhz":128.2}],"has_metar":true,"public":true},{"icao":"KCLL","iata":"CLL","local":"CLL","name":"Easterwood Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"College Station","elevation_ft":320,"latitude":30.58860016,"longitude":-96.36380005,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5158,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":7000,"width_ft":146,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":126.85}],"has_metar":true,"public":true},{"icao":"CYXS","iata":"YXS","local":"","name":"Prince George Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Prince George","elevation_ft":2267,"latitude":53.884311,"longitude":-122.666554,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":11450,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":5624,"width_ft":150,"surface":"A"},{"id":"01/19","length_ft":3769,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOD","iata":"YOD","local":"","name":"CFB Cold Lake","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Cold Lake","elevation_ft":1775,"latitude":54.40499877929688,"longitude":-110.27899932861328,"has_tower":true,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":12599,"width_ft":200,"surface":"A"},{"id":"13R/31L","length_ft":9999,"width_ft":150,"surface":"A"},{"id":"04/22","length_ft":8273,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNC","iata":"","local":"CNC","name":"Chariton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Chariton","elevation_ft":1050,"latitude":41.01959991455078,"longitude":-93.35970306396484,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4000,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":2800,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNB","iata":"","local":"CNB","name":"Myers Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Canby","elevation_ft":1194,"latitude":44.7295,"longitude":-96.265999,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4648,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYND","iata":"YND","local":"CYND","name":"Ottawa / Gatineau Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Gatineau","elevation_ft":211,"latitude":45.521702,"longitude":-75.563599,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCMY","iata":"CMY","local":"CMY","name":"Sparta Fort McCoy Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Sparta","elevation_ft":837,"latitude":43.958009,"longitude":-90.737886,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3032,"width_ft":95,"surface":"A"},{"id":"11/29","length_ft":4697,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KCMX","iata":"CMX","local":"CMX","name":"Houghton County Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Hancock","elevation_ft":1095,"latitude":47.168399810791016,"longitude":-88.48909759521484,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5201,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCMR","iata":"","local":"CMR","name":"H.A. Clark Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Williams","elevation_ft":6680,"latitude":35.305555,"longitude":-112.194393,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNM","iata":"CNM","local":"CNM","name":"Cavern City Air Terminal","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Carlsbad","elevation_ft":3295,"latitude":32.337501525878906,"longitude":-104.26300048828124,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7854,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":5334,"width_ft":75,"surface":"A"},{"id":"14L/32R","length_ft":4616,"width_ft":150,"surface":"A"},{"id":"14R/32L","length_ft":5837,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOJ","iata":"YOJ","local":"","name":"High Level Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"High Level","elevation_ft":1110,"latitude":58.62139892578125,"longitude":-117.16500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOM","iata":"COM","local":"COM","name":"Coleman Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Coleman","elevation_ft":1697,"latitude":31.8411006927,"longitude":-99.4036026001,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4506,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOF","iata":"COF","local":"COF","name":"Patrick Space Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cocoa Beach","elevation_ft":8,"latitude":28.2349,"longitude":-80.6101,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9003,"width_ft":200,"surface":"A"},{"id":"11/29","length_ft":3992,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.175},{"id":"LCL/P","frequency_mhz":133.75}],"has_metar":true,"public":true},{"icao":"KCNU","iata":"CNU","local":"CNU","name":"Chanute Martin Johnson Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Chanute","elevation_ft":1002,"latitude":37.668173,"longitude":-95.486727,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4255,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOE","iata":"COE","local":"COE","name":"Coeur D'Alene - Pappy Boyington Field","category":"medium_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur d'Alene","elevation_ft":2320,"latitude":47.77429962,"longitude":-116.8199997,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5400,"width_ft":75,"surface":"A"},{"id":"06/24","length_ft":7400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNY","iata":"CNY","local":"CNY","name":"Canyonlands Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":4557,"latitude":38.755001,"longitude":-109.754997,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7360,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":2121,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNO","iata":"CNO","local":"CNO","name":"Chino Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Chino","elevation_ft":650,"latitude":33.97470093,"longitude":-117.637001,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4919,"width_ft":150,"surface":"A"},{"id":"08L/26R","length_ft":4858,"width_ft":150,"surface":"A"},{"id":"08R/26L","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":125.85}],"has_metar":true,"public":true},{"icao":"KCOD","iata":"COD","local":"COD","name":"Yellowstone Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cody","elevation_ft":5102,"latitude":44.520199,"longitude":-109.024002,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8268,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNW","iata":"CNW","local":"CNW","name":"TSTC Waco Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":470,"latitude":31.641129,"longitude":-97.073335,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":8600,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":6291,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124}],"has_metar":true,"public":true},{"icao":"DNAA","iata":"ABV","local":"","name":"Nnamdi Azikiwe International Airport","category":"large_airport","iso_country":"NG","iso_region":"NG-FC","municipality":"Abuja","elevation_ft":1123,"latitude":9.00679,"longitude":7.26317,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":11844,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNEN","iata":"ENU","local":"","name":"Akanu Ibiam International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-EN","municipality":"Enegu","elevation_ft":466,"latitude":6.474269866943359,"longitude":7.561960220336914,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQZ","iata":"YQZ","local":"","name":"Quesnel Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Quesnel","elevation_ft":1789,"latitude":53.026100158691406,"longitude":-122.51000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5501,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRQ","iata":"YRQ","local":"","name":"Trois-Rivières Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Trois-Rivières","elevation_ft":199,"latitude":46.35279846191406,"longitude":-72.67939758300781,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRA","iata":"YRA","local":"","name":"Rae Lakes Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Gamètì","elevation_ft":723,"latitude":64.11609649658203,"longitude":-117.30999755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOU","iata":"COU","local":"COU","name":"Columbia Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":889,"latitude":38.8181,"longitude":-92.219597,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7401,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"ATIS","frequency_mhz":128.45}],"has_metar":true,"public":true},{"icao":"KCOT","iata":"COT","local":"COT","name":"Cotulla-La Salle County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":474,"latitude":28.45669937,"longitude":-99.22029877,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYJ","iata":"YYJ","local":"","name":"Victoria International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Victoria","elevation_ft":63,"latitude":48.6469,"longitude":-123.426003,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6998,"width_ft":200,"surface":"A"},{"id":"03/21","length_ft":5027,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":5001,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.8},{"id":"TWR","frequency_mhz":119.7}],"has_metar":true,"public":true},{"icao":"KCPR","iata":"CPR","local":"CPR","name":"Casper-Natrona County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Casper","elevation_ft":5350,"latitude":42.908001,"longitude":-106.463997,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":10165,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":8679,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":126.15}],"has_metar":true,"public":true},{"icao":"CYYN","iata":"YYN","local":"","name":"Swift Current Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Swift Current","elevation_ft":2680,"latitude":50.2919006348,"longitude":-107.691001892,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4250,"width_ft":150,"surface":"A"},{"id":"04/22","length_ft":2495,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYL","iata":"YYL","local":"","name":"Lynn Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Lynn Lake","elevation_ft":1170,"latitude":56.86389923095703,"longitude":-101.07599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5004,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2521,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYQ","iata":"YYQ","local":"","name":"Churchill Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Churchill","elevation_ft":94,"latitude":58.739200592041016,"longitude":-94.06500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9195,"width_ft":160,"surface":"A"},{"id":"07/25","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRG","iata":"CRG","local":"CRG","name":"Jacksonville Executive at Craig Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":41,"latitude":30.3362998962,"longitude":-81.51439666750001,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4004,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4008,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.4},{"id":"LCL/P","frequency_mhz":132.1}],"has_metar":true,"public":true},{"icao":"KCPU","iata":"","local":"CPU","name":"Calaveras Co Maury Rasmussen Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Andreas","elevation_ft":1325,"latitude":38.14609909057617,"longitude":-120.64800262451172,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3602,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRQ","iata":"CLD","local":"CRQ","name":"McClellan-Palomar Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Carlsbad","elevation_ft":331,"latitude":33.1283,"longitude":-117.279999,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4897,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6},{"id":"ATIS","frequency_mhz":120.15}],"has_metar":true,"public":true},{"icao":"KCRP","iata":"CRP","local":"CRP","name":"Corpus Christi International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":44,"latitude":27.770399,"longitude":-97.501198,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7510,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6080,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.4},{"id":"ATIS","frequency_mhz":126.8}],"has_metar":true,"public":true},{"icao":"KCQM","iata":"","local":"CQM","name":"Cook Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cook","elevation_ft":1327,"latitude":47.8218994140625,"longitude":-92.68939971923828,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCQB","iata":"","local":"CQB","name":"Chandler Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chandler","elevation_ft":984,"latitude":35.72380065917969,"longitude":-96.82029724121094,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKJ","iata":"YKJ","local":"","name":"Key Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Key Lake","elevation_ft":1679,"latitude":57.25609970092773,"longitude":-105.61799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5281,"width_ft":178,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDB","iata":"YDB","local":"","name":"Burwash Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Burwash Landing","elevation_ft":2647,"latitude":61.371101,"longitude":-139.041,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5007,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNPO","iata":"PHC","local":"","name":"Port Harcourt International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-RI","municipality":"Port Harcourt","elevation_ft":87,"latitude":5.0154900550842285,"longitude":6.94959020614624,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHK","iata":"YHK","local":"","name":"Gjoa Haven Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Gjoa Haven","elevation_ft":152,"latitude":68.635597229,"longitude":-95.8497009277,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZP","iata":"YZP","local":"","name":"Sandspit Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Sandspit","elevation_ft":21,"latitude":53.25429916379999,"longitude":-131.813995361,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5112,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYW","iata":"YYW","local":"","name":"Armstrong Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Armstrong","elevation_ft":1058,"latitude":50.29029846191406,"longitude":-88.90969848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4006,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYU","iata":"YYU","local":"","name":"Kapuskasing Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Kapuskasing","elevation_ft":743,"latitude":49.41389846801758,"longitude":-82.46749877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCSM","iata":"CSM","local":"CSM","name":"Clinton Sherman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Clinton","elevation_ft":1922,"latitude":35.3398017883,"longitude":-99.2005004883,"has_tower":true,"has_beacon":true,"runways":[{"id":"17L/35R","length_ft":5193,"width_ft":75,"surface":"C"},{"id":"17R/35L","length_ft":13503,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.6}],"has_metar":true,"public":true},{"icao":"KCSG","iata":"CSG","local":"CSG","name":"Columbus Metropolitan Airport","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Columbus","elevation_ft":397,"latitude":32.516300201416016,"longitude":-84.93890380859375,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6997,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":3997,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":127.75}],"has_metar":true,"public":true},{"icao":"KCTB","iata":"CTB","local":"CTB","name":"Cut Bank International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Cut Bank","elevation_ft":3854,"latitude":48.608657,"longitude":-112.378183,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5300,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRS","iata":"CRS","local":"CRS","name":"C David Campbell Field Corsicana Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corsicana","elevation_ft":449,"latitude":32.0280990601,"longitude":-96.4005966187,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3200,"width_ft":75,"surface":"T"},{"id":"14/32","length_ft":5004,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZH","iata":"YZH","local":"","name":"Slave Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Slave Lake","elevation_ft":1912,"latitude":55.2930984497,"longitude":-114.777000427,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5569,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZS","iata":"YZS","local":"","name":"Coral Harbour Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Coral Harbour","elevation_ft":210,"latitude":64.1932983398,"longitude":-83.3593978882,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5006,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZF","iata":"YZF","local":"","name":"Yellowknife International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Yellowknife","elevation_ft":675,"latitude":62.462799,"longitude":-114.440002,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7503,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCUT","iata":"","local":"CUT","name":"Custer County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Custer","elevation_ft":5602,"latitude":43.733299,"longitude":-103.617996,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYZ","iata":"YYZ","local":"YYZ","name":"Toronto Lester B. Pearson International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Toronto","elevation_ft":569,"latitude":43.6772,"longitude":-79.6306,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":11120,"width_ft":200,"surface":"A"},{"id":"06L/24R","length_ft":9697,"width_ft":200,"surface":"A"},{"id":"06R/24L","length_ft":9000,"width_ft":200,"surface":"A"},{"id":"15L/33R","length_ft":11050,"width_ft":300,"surface":"A"},{"id":"15R/33L","length_ft":9088,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.825},{"id":"TWR","frequency_mhz":118.35}],"has_metar":true,"public":true},{"icao":"DTTD","iata":"","local":"","name":"Remada Air Base","category":"medium_airport","iso_country":"TN","iso_region":"TN-83","municipality":"Remada","elevation_ft":1004,"latitude":32.30619812011719,"longitude":10.382100105285645,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7800,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVB","iata":"","local":"CVB","name":"Castroville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Castroville","elevation_ft":771,"latitude":29.3418998718,"longitude":-98.8508987427,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCLP","iata":"LPA","local":"","name":"Gran Canaria Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"Gran Canaria Island","elevation_ft":78,"latitude":27.9319,"longitude":-15.3866,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":10171,"width_ft":148,"surface":"H"},{"id":"03R/21L","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.6},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KCTJ","iata":"","local":"CTJ","name":"West Georgia Regional Airport / O V Gray Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1161,"latitude":33.631001,"longitude":-85.152,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCWC","iata":"KIP","local":"CWC","name":"Kickapoo Downtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wichita Falls","elevation_ft":1003,"latitude":33.85779953,"longitude":-98.49040222,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4450,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCRR","iata":"ACE","local":"","name":"César Manrique-Lanzarote Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"San Bartolomé","elevation_ft":46,"latitude":28.945499,"longitude":-13.6052,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCWA","iata":"CWA","local":"CWA","name":"Central Wisconsin Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mosinee","elevation_ft":1277,"latitude":44.7775993347,"longitude":-89.6668014526,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":7723,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":6501,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.75},{"id":"ATIS","frequency_mhz":127.45}],"has_metar":true,"public":true},{"icao":"KCWI","iata":"CWI","local":"CWI","name":"Clinton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Clinton","elevation_ft":708,"latitude":41.8311004639,"longitude":-90.3291015625,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5204,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":4201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVO","iata":"CVO","local":"CVO","name":"Corvallis Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":250,"latitude":44.49720001,"longitude":-123.2900009,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3100,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5900,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCVS","iata":"CVS","local":"CVS","name":"Cannon Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clovis","elevation_ft":4295,"latitude":34.382801,"longitude":-103.321999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":10003,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":8196,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.1},{"id":"LCL/P","frequency_mhz":120.4}],"has_metar":true,"public":true},{"icao":"KCWV","iata":"","local":"CWV","name":"Claxton Evans County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Claxton","elevation_ft":112,"latitude":32.195099,"longitude":-81.869598,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5151,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCTS","iata":"TFS","local":"","name":"Tenerife Sur Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"Tenerife","elevation_ft":209,"latitude":28.0445,"longitude":-16.5725,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.9},{"id":"TWR","frequency_mhz":119}],"has_metar":true,"public":true},{"icao":"KCWF","iata":"CWF","local":"CWF","name":"Chennault International Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":17,"latitude":30.2106,"longitude":-93.143204,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":10702,"width_ft":200,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120},{"id":"LCL/P","frequency_mhz":124.2}],"has_metar":true,"public":true},{"icao":"KCVN","iata":"CVN","local":"CVN","name":"Clovis Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clovis","elevation_ft":4216,"latitude":34.4250984192,"longitude":-103.07900238,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7200,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2442,"width_ft":75,"surface":"T"},{"id":"12/30","length_ft":5697,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCHI","iata":"VDE","local":"","name":"El Hierro Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"El Hierro Island","elevation_ft":103,"latitude":27.8148,"longitude":-17.8871,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4101,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GCLA","iata":"SPC","local":"","name":"La Palma Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CN","municipality":"Sta Cruz de la Palma, La Palma Island","elevation_ft":107,"latitude":28.626499,"longitude":-17.7556,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTMB","iata":"MIR","local":"","name":"Monastir Habib Bourguiba International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-52","municipality":"Monastir","elevation_ft":9,"latitude":35.75809860229492,"longitude":10.75469970703125,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9744,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHY","iata":"YHY","local":"","name":"Hay River / Merlyn Carter Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Hay River","elevation_ft":541,"latitude":60.8396987915,"longitude":-115.782997131,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":4001,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LBBG","iata":"BOJ","local":"","name":"Burgas Airport","category":"large_airport","iso_country":"BG","iso_region":"BG-02","municipality":"Burgas","elevation_ft":135,"latitude":42.56959915161133,"longitude":27.515199661254883,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":10505,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LBGO","iata":"GOZ","local":"","name":"Gorna Oryahovitsa Airport","category":"medium_airport","iso_country":"BG","iso_region":"BG-04","municipality":"Gorna Oryahovitsa","elevation_ft":285,"latitude":43.151402,"longitude":25.7129,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8028,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCXP","iata":"CSN","local":"CXP","name":"Carson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Carson City","elevation_ft":4697,"latitude":39.1922,"longitude":-119.734001,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTKA","iata":"TBJ","local":"","name":"Tabarka-Aïn Draham International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-32","municipality":"Tabarka","elevation_ft":230,"latitude":36.98,"longitude":8.87694,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9416,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCYS","iata":"CYS","local":"CYS","name":"Cheyenne Regional Jerry Olson Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cheyenne","elevation_ft":6159,"latitude":41.155701,"longitude":-104.811997,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":9270,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":6690,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":134.425}],"has_metar":true,"public":true},{"icao":"KCXO","iata":"CXO","local":"CXO","name":"Conroe-North Houston Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":245,"latitude":30.351801,"longitude":-95.414497,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":7501,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.325},{"id":"LCL/P","frequency_mhz":124.125}],"has_metar":true,"public":true},{"icao":"KCZT","iata":"CZT","local":"CZT","name":"Dimmit County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":599,"latitude":28.5221996307,"longitude":-99.823600769,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LBSF","iata":"SOF","local":"","name":"Sofia Airport","category":"large_airport","iso_country":"BG","iso_region":"BG-22","municipality":"Sofia","elevation_ft":1742,"latitude":42.696357,"longitude":23.417671,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LBWN","iata":"VAR","local":"","name":"Varna Airport","category":"large_airport","iso_country":"BG","iso_region":"BG-03","municipality":"Varna","elevation_ft":230,"latitude":43.232101,"longitude":27.8251,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8258,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LCLK","iata":"LCA","local":"","name":"Larnaca International Airport","category":"large_airport","iso_country":"CY","iso_region":"CY-04","municipality":"Larnaca","elevation_ft":8,"latitude":34.875099,"longitude":33.624901,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9823,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LDZD","iata":"ZAD","local":"","name":"Zadar Airport","category":"medium_airport","iso_country":"HR","iso_region":"HR-13","municipality":"Zemunik Donji (Zadar)","elevation_ft":289,"latitude":44.094988,"longitude":15.354879,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8202,"width_ft":148,"surface":"H"},{"id":"04/22","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LDPL","iata":"PUY","local":"","name":"Pula Airport","category":"medium_airport","iso_country":"HR","iso_region":"HR-18","municipality":"Pula","elevation_ft":274,"latitude":44.89350128173828,"longitude":13.922200202941896,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9665,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LDRI","iata":"RJK","local":"","name":"Rijeka Airport","category":"medium_airport","iso_country":"HR","iso_region":"HR-08","municipality":"Rijeka","elevation_ft":278,"latitude":45.21689987182617,"longitude":14.570300102233888,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LDOS","iata":"OSI","local":"","name":"Osijek Airport","category":"medium_airport","iso_country":"HR","iso_region":"HR-14","municipality":"Osijek","elevation_ft":290,"latitude":45.4627,"longitude":18.8102,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LBPD","iata":"PDV","local":"","name":"Plovdiv International Airport","category":"medium_airport","iso_country":"BG","iso_region":"BG-16","municipality":"Plovdiv","elevation_ft":597,"latitude":42.067799,"longitude":24.8508,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTA","iata":"TUN","local":"","name":"Tunis Carthage International Airport","category":"large_airport","iso_country":"TN","iso_region":"TN-11","municipality":"Tunis","elevation_ft":22,"latitude":36.851002,"longitude":10.2272,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"11/29","length_ft":9350,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEBL","iata":"BCN","local":"","name":"Josep Tarradellas Barcelona-El Prat Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-CT","municipality":"Barcelona","elevation_ft":12,"latitude":41.2971,"longitude":2.07846,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":10997,"width_ft":197,"surface":"H"},{"id":"07R/25L","length_ft":8727,"width_ft":197,"surface":"H"},{"id":"02/20","length_ft":8294,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.98},{"id":"TWR","frequency_mhz":118.32}],"has_metar":true,"public":true},{"icao":"LEAS","iata":"OVD","local":"","name":"Asturias Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-AS","municipality":"Ranón","elevation_ft":416,"latitude":43.563599,"longitude":-6.03462,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7234,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEBB","iata":"BIO","local":"","name":"Bilbao Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-PV","municipality":"Bilbao","elevation_ft":138,"latitude":43.301102,"longitude":-2.91061,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8530,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":6266,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEBG","iata":"RGS","local":"","name":"Burgos Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CL","municipality":"Burgos","elevation_ft":2962,"latitude":42.357601,"longitude":-3.62076,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LECH","iata":"CDT","local":"","name":"Castellón-Costa Azahar Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-VC","municipality":"Castellón de la Plana","elevation_ft":1182,"latitude":40.213889,"longitude":0.073333,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LECO","iata":"LCG","local":"","name":"A Coruña Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-GA","municipality":"Culleredo","elevation_ft":326,"latitude":43.302101,"longitude":-8.37726,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7178,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEGE","iata":"GRO","local":"","name":"Girona-Costa Brava Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CT","municipality":"Girona","elevation_ft":468,"latitude":41.904639,"longitude":2.761774,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEAB","iata":"ABC","local":"","name":"Albacete Airport / Los Llanos Air Base","category":"medium_airport","iso_country":"ES","iso_region":"ES-CM","municipality":"Albacete","elevation_ft":2302,"latitude":38.948502,"longitude":-1.86352,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEAM","iata":"LEI","local":"","name":"Almería Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-AN","municipality":"Almería","elevation_ft":70,"latitude":36.843899,"longitude":-2.3701,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEBA","iata":"ODB","local":"","name":"Córdoba Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-AN","municipality":"Córdoba","elevation_ft":297,"latitude":37.841999,"longitude":-4.84888,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7352,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEPA","iata":"PMI","local":"","name":"Palma de Mallorca Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-IB","municipality":"Palma de Mallorca","elevation_ft":27,"latitude":39.551701,"longitude":2.73881,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":10728,"width_ft":148,"surface":"H"},{"id":"06R/24L","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.25},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"LELN","iata":"LEN","local":"","name":"León Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CL","municipality":"León","elevation_ft":3006,"latitude":42.589001,"longitude":-5.65556,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEMH","iata":"MAH","local":"","name":"Menorca Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-IB","municipality":"Mahón (Maó)","elevation_ft":302,"latitude":39.862598,"longitude":4.21865,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8366,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEHC","iata":"HSK","local":"","name":"Huesca-Pirineos Airport","category":"small_airport","iso_country":"ES","iso_region":"ES-AR","municipality":"Monflorite/Alcalá del Obispo","elevation_ft":1769,"latitude":42.076099,"longitude":-0.316667,"has_tower":false,"has_beacon":false,"runways":[{"id":"12R/30L","length_ft":6890,"width_ft":148,"surface":"H"},{"id":"12L/30R","length_ft":2018,"width_ft":39,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEPP","iata":"PNA","local":"","name":"Pamplona Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-NC","municipality":"Pamplona","elevation_ft":1504,"latitude":42.77,"longitude":-1.64633,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":7890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEGR","iata":"GRX","local":"","name":"F.G.L. Airport Granada-Jaén Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-AN","municipality":"Granada","elevation_ft":1860,"latitude":37.188702,"longitude":-3.77736,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9514,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEJR","iata":"XRY","local":"","name":"Jerez Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-AN","municipality":"Jerez de la Frontera","elevation_ft":93,"latitude":36.744598,"longitude":-6.06011,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LELC","iata":"MJV","local":"","name":"San Javier Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-MC","municipality":"San Javier","elevation_ft":11,"latitude":37.775002,"longitude":-0.812389,"has_tower":true,"has_beacon":false,"runways":[{"id":"05R/23L","length_ft":7612,"width_ft":148,"surface":"H"},{"id":"05L/23R","length_ft":5174,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEMG","iata":"AGP","local":"","name":"Málaga-Costa del Sol Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-AN","municipality":"Málaga","elevation_ft":53,"latitude":36.6749,"longitude":-4.49911,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"12/30","length_ft":9022,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.37},{"id":"TWR","frequency_mhz":118.15}],"has_metar":true,"public":true},{"icao":"CYIO","iata":"YIO","local":"","name":"Pond Inlet Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Pond Inlet","elevation_ft":181,"latitude":72.6832962036,"longitude":-77.9666976929,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4006,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LESA","iata":"SLM","local":"","name":"Salamanca Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CL","municipality":"Salamanca","elevation_ft":2595,"latitude":40.952099,"longitude":-5.50199,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8245,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEST","iata":"SCQ","local":"","name":"Santiago-Rosalía de Castro Airport","category":"large_airport","iso_country":"ES","iso_region":"ES-GA","municipality":"Santiago de Compostela","elevation_ft":1213,"latitude":42.896301,"longitude":-8.41514,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LERS","iata":"REU","local":"","name":"Reus Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CT","municipality":"Reus","elevation_ft":233,"latitude":41.1474,"longitude":1.16717,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8068,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LESO","iata":"EAS","local":"","name":"San Sebastián Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-PV","municipality":"Hondarribia","elevation_ft":16,"latitude":43.356499,"longitude":-1.79061,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5755,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEVC","iata":"VLC","local":"","name":"Valencia Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-VC","municipality":"Valencia","elevation_ft":240,"latitude":39.4893,"longitude":-0.481625,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10548,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEVD","iata":"VLL","local":"","name":"Valladolid Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CL","municipality":"Valladolid","elevation_ft":2776,"latitude":41.7061,"longitude":-4.85194,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9859,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEVX","iata":"VGO","local":"","name":"Vigo Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-GA","municipality":"Vigo","elevation_ft":856,"latitude":42.2318,"longitude":-8.62677,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7825,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEXJ","iata":"SDR","local":"","name":"Seve Ballesteros-Santander Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CB","municipality":"Santander","elevation_ft":16,"latitude":43.427101,"longitude":-3.82001,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7612,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FAMM","iata":"MBD","local":"","name":"Mmabatho International Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-NW","municipality":"Mafeking","elevation_ft":4181,"latitude":-25.798400878900004,"longitude":25.5480003357,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":14761,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEZL","iata":"SVQ","local":"","name":"Sevilla Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-AN","municipality":"Sevilla","elevation_ft":112,"latitude":37.417999,"longitude":-5.89311,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11037,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FALE","iata":"DUR","local":"","name":"King Shaka International Airport","category":"large_airport","iso_country":"ZA","iso_region":"ZA-NL","municipality":"Durban","elevation_ft":295,"latitude":-29.6144444444,"longitude":31.1197222222,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":12139,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBO","iata":"TLS","local":"","name":"Toulouse-Blagnac Airport","category":"large_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Toulouse/Blagnac","elevation_ft":499,"latitude":43.629101,"longitude":1.36382,"has_tower":true,"has_beacon":false,"runways":[{"id":"14R/32L","length_ft":11493,"width_ft":148,"surface":"H"},{"id":"14L/32R","length_ft":9925,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFAQ","iata":"BYF","local":"","name":"Albert-Picardie Airport","category":"small_airport","iso_country":"FR","iso_region":"FR-HDF","municipality":"Méaulte","elevation_ft":364,"latitude":49.970049,"longitude":2.693939,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBA","iata":"AGF","local":"","name":"Agen-La Garenne Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Agen/La Garenne","elevation_ft":204,"latitude":44.17470169067383,"longitude":0.5905560255050659,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7103,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBE","iata":"EGC","local":"","name":"Bergerac-Roumanière Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Bergerac/Roumanière","elevation_ft":171,"latitude":44.82529830932617,"longitude":0.5186110138893127,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7234,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBH","iata":"LRH","local":"","name":"La Rochelle-Île de Ré Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"La Rochelle/Île de Ré","elevation_ft":74,"latitude":46.17919921875,"longitude":-1.1952799558639526,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7260,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBI","iata":"PIS","local":"","name":"Poitiers-Biard Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Poitiers/Biard","elevation_ft":423,"latitude":46.58769989013672,"longitude":0.3066659867763519,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7710,"width_ft":148,"surface":"H"},{"id":"03L/21R","length_ft":4393,"width_ft":328,"surface":"S"},{"id":"03R/21L","length_ft":2297,"width_ft":328,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBL","iata":"LIG","local":"","name":"Limoges Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Limoges/Bellegarde","elevation_ft":1300,"latitude":45.86280059814453,"longitude":1.1794400215148926,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8005,"width_ft":148,"surface":"H"},{"id":"03R/21L","length_ft":2625,"width_ft":262,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBM","iata":"","local":"","name":"Mont-de-Marsan (BA 118) Air Base","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Mont-de-Marsan","elevation_ft":203,"latitude":43.911701,"longitude":-0.5075,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFAT","iata":"LTQ","local":"","name":"Le Touquet-Côte d'Opale Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-HDF","municipality":"Le Touquet-Paris-Plage","elevation_ft":36,"latitude":50.518284,"longitude":1.621656,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6070,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDBQ","iata":"DBQ","local":"DBQ","name":"Dubuque Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Dubuque","elevation_ft":1077,"latitude":42.402,"longitude":-90.709503,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6502,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":6327,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"FAKN","iata":"MQP","local":"","name":"Kruger Mpumalanga International Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-MP","municipality":"Mpumalanga","elevation_ft":2829,"latitude":-25.3831996918,"longitude":31.1056003571,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10696,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDAB","iata":"DAB","local":"DAB","name":"Daytona Beach International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Daytona Beach","elevation_ft":34,"latitude":29.179899,"longitude":-81.058098,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":10500,"width_ft":150,"surface":"A"},{"id":"07R/25L","length_ft":3195,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":6001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":132.875}],"has_metar":true,"public":true},{"icao":"KDAL","iata":"DAL","local":"DAL","name":"Dallas Love Field","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":487,"latitude":32.847099,"longitude":-96.851799,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":7752,"width_ft":150,"surface":"C"},{"id":"13R/31L","length_ft":8800,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":120.15},{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"LFST","iata":"SXB","local":"","name":"Strasbourg Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-GES","municipality":"Strasbourg","elevation_ft":505,"latitude":48.53829956054688,"longitude":7.628230094909668,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFCK","iata":"DCM","local":"","name":"Castres-Mazamet Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Castres/Mazamet","elevation_ft":788,"latitude":43.55630111694336,"longitude":2.289180040359497,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5971,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFCR","iata":"RDZ","local":"","name":"Rodez-Marcillac Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Rodez/Marcillac","elevation_ft":1910,"latitude":44.407901763916016,"longitude":2.4826700687408447,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6709,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFLC","iata":"CFE","local":"","name":"Clermont-Ferrand Auvergne Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-ARA","municipality":"Clermont-Ferrand/Auvergne","elevation_ft":1090,"latitude":45.7867012024,"longitude":3.1691699028,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9885,"width_ft":148,"surface":"H"},{"id":"08L/26R","length_ft":2982,"width_ft":164,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFLN","iata":"SYT","local":"","name":"Saint-Yan Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BFC","municipality":"Saint-Yan","elevation_ft":796,"latitude":46.41249847412109,"longitude":4.0132598876953125,"has_tower":true,"has_beacon":false,"runways":[{"id":"15L/33R","length_ft":6673,"width_ft":148,"surface":"H"},{"id":"15R/33L","length_ft":3937,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBT","iata":"LDE","local":"","name":"Tarbes-Lourdes-Pyrénées Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Tarbes/Lourdes/Pyrénées","elevation_ft":1260,"latitude":43.1786994934082,"longitude":-0.0064389999024569,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFBZ","iata":"BIQ","local":"","name":"Biarritz-Anglet-Bayonne Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Biarritz/Anglet/Bayonne","elevation_ft":245,"latitude":43.4683333,"longitude":-1.5311111,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7382,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDAG","iata":"DAG","local":"DAG","name":"Barstow Daggett Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Daggett","elevation_ft":1930,"latitude":34.85369873,"longitude":-116.7870026,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5123,"width_ft":100,"surface":"A"},{"id":"08/26","length_ft":6402,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDBN","iata":"DBN","local":"DBN","name":"W H 'Bud' Barron Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dublin","elevation_ft":309,"latitude":32.5644,"longitude":-82.985298,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5171,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFLS","iata":"GNB","local":"","name":"Grenoble-Isère Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-ARA","municipality":"Saint-Étienne-de-Saint-Geoirs","elevation_ft":1302,"latitude":45.3629,"longitude":5.32937,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFMV","iata":"AVN","local":"","name":"Avignon-Caumont Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-PAC","municipality":"Avignon/Caumont","elevation_ft":124,"latitude":43.90729904174805,"longitude":4.901830196380615,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6168,"width_ft":148,"surface":"H"},{"id":"17R/35L","length_ft":2297,"width_ft":164,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFLX","iata":"CHR","local":"","name":"Châteauroux-Déols \"Marcel Dassault\" Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-CVL","municipality":"Châteauroux/Déols","elevation_ft":529,"latitude":46.860278,"longitude":1.721111,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFMT","iata":"MPL","local":"","name":"Montpellier-Méditerranée Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Montpellier/Méditerranée","elevation_ft":17,"latitude":43.57619857788086,"longitude":3.96301007270813,"has_tower":true,"has_beacon":false,"runways":[{"id":"12L/30R","length_ft":8530,"width_ft":148,"surface":"H"},{"id":"12R/30L","length_ft":3609,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFOA","iata":"","local":"","name":"Avord (BA 702) Air Base","category":"medium_airport","iso_country":"FR","iso_region":"FR-CVL","municipality":"Avord","elevation_ft":580,"latitude":47.053299,"longitude":2.6325,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":11493,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFMK","iata":"CCF","local":"","name":"Carcassonne Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Carcassonne/Salvaza","elevation_ft":433,"latitude":43.21599960327149,"longitude":2.3063199520111084,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6726,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFMP","iata":"PGF","local":"","name":"Perpignan-Rivesaltes (Llabanère) Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Perpignan/Rivesaltes","elevation_ft":144,"latitude":42.74039840698242,"longitude":2.8706700801849365,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8202,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":3560,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFMU","iata":"BZR","local":"","name":"Béziers-Vias Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-OCC","municipality":"Béziers/Vias","elevation_ft":56,"latitude":43.32350158691406,"longitude":3.353899955749512,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFPG","iata":"CDG","local":"","name":"Charles de Gaulle International Airport","category":"large_airport","iso_country":"FR","iso_region":"FR-IDF","municipality":"Paris","elevation_ft":392,"latitude":49.012798,"longitude":2.55,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":13829,"width_ft":148,"surface":"H"},{"id":"09R/28L","length_ft":13779,"width_ft":148,"surface":"H"},{"id":"09L/27R","length_ft":8858,"width_ft":197,"surface":"H"},{"id":"08R/26R","length_ft":8858,"width_ft":197,"surface":"-"}],"frequencies":[{"id":"ATIS-E","frequency_mhz":127.12},{"id":"ATIS-F","frequency_mhz":126.17},{"id":"TWR","frequency_mhz":119.25}],"has_metar":true,"public":true},{"icao":"LFOB","iata":"BVA","local":"","name":"Paris-Beauvais Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-HDF","municipality":"Tillé","elevation_ft":359,"latitude":49.454399,"longitude":2.11278,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7969,"width_ft":148,"surface":"H"},{"id":"04/22","length_ft":2323,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFOH","iata":"LEH","local":"","name":"Le Havre-Octeville Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NOR","municipality":"Le Havre","elevation_ft":313,"latitude":49.534038,"longitude":0.088406,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7546,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFOK","iata":"XCR","local":"","name":"Châlons-Vatry Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-GES","municipality":"Bussy-Lettrée","elevation_ft":587,"latitude":48.77333,"longitude":4.20611,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":12664,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFOP","iata":"URO","local":"","name":"Rouen Vallée de Seine Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NOR","municipality":"Boos","elevation_ft":512,"latitude":49.386674,"longitude":1.183519,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5577,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFOT","iata":"TUF","local":"","name":"Tours-Val-de-Loire Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-CVL","municipality":"Tours/Val de Loire (Loire Valley)","elevation_ft":357,"latitude":47.4322013855,"longitude":0.727605998516,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7887,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFOV","iata":"LVA","local":"","name":"Laval-Entrammes Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-PDL","municipality":"Laval/Entrammes","elevation_ft":330,"latitude":48.03139877319336,"longitude":-0.7429860234260559,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5453,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRC","iata":"CER","local":"","name":"Cherbourg-Maupertus Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NOR","municipality":"Cherbourg/Maupertus","elevation_ft":459,"latitude":49.65010070800781,"longitude":-1.4702800512313845,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8005,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFQQ","iata":"LIL","local":"","name":"Lille Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-HDF","municipality":"Lesquin","elevation_ft":157,"latitude":50.563332,"longitude":3.086886,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9268,"width_ft":148,"surface":"H"},{"id":"01/19","length_ft":5184,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRB","iata":"BES","local":"","name":"Brest Bretagne Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BRE","municipality":"Brest/Guipavas","elevation_ft":325,"latitude":48.447898864746094,"longitude":-4.418540000915527,"has_tower":true,"has_beacon":false,"runways":[{"id":"07R/25L","length_ft":10171,"width_ft":148,"surface":"H"},{"id":"07L/25R","length_ft":2297,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FBMN","iata":"MUB","local":"","name":"Maun Airport","category":"medium_airport","iso_country":"BW","iso_region":"BW-NW","municipality":"Maun","elevation_ft":3093,"latitude":-19.97260093688965,"longitude":23.43110084533692,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":12139,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRK","iata":"CFR","local":"","name":"Caen-Carpiquet Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-NOR","municipality":"Caen/Carpiquet","elevation_ft":256,"latitude":49.173302,"longitude":-0.45,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6234,"width_ft":148,"surface":"H"},{"id":"13L/31R","length_ft":2625,"width_ft":164,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRM","iata":"LME","local":"","name":"Le Mans-Arnage Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-PDL","municipality":"Le Mans/Arnage","elevation_ft":194,"latitude":47.94860076904297,"longitude":0.2016669958829879,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4659,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRN","iata":"RNS","local":"","name":"Rennes-Saint-Jacques Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BRE","municipality":"Rennes/Saint-Jacques","elevation_ft":124,"latitude":48.0695,"longitude":-1.73479,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6896,"width_ft":148,"surface":"H"},{"id":"14/32","length_ft":2789,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRS","iata":"NTE","local":"","name":"Nantes Atlantique Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-PDL","municipality":"Nantes","elevation_ft":90,"latitude":47.153198242200006,"longitude":-1.61073005199,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/31","length_ft":9514,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRV","iata":"VNE","local":"","name":"Vannes-Meucon Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BRE","municipality":"Vannes/Meucon","elevation_ft":446,"latitude":47.72330093383789,"longitude":-2.718559980392456,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5020,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFSD","iata":"DIJ","local":"","name":"Dijon-Bourgogne Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BFC","municipality":"Ouges","elevation_ft":726,"latitude":47.268902,"longitude":5.09,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":7874,"width_ft":148,"surface":"H"},{"id":"01/19","length_ft":3937,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFSL","iata":"BVE","local":"","name":"Brive-Souillac","category":"medium_airport","iso_country":"FR","iso_region":"FR-NAQ","municipality":"Brive la Gaillarde","elevation_ft":1016,"latitude":45.039722,"longitude":1.485556,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFSN","iata":"ENC","local":"","name":"Nancy-Essey Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-GES","municipality":"Tomblaine","elevation_ft":751,"latitude":48.692101,"longitude":6.23046,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5249,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFSO","iata":"","local":"","name":"Nancy-Ochey (BA 133) Air Base","category":"medium_airport","iso_country":"FR","iso_region":"FR-GES","municipality":"Thuilley-aux-Groseilles","elevation_ft":1106,"latitude":48.583099,"longitude":5.955,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRH","iata":"LRT","local":"","name":"Lorient South Brittany (Bretagne Sud) Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BRE","municipality":"Lorient/Lann/Bihoué","elevation_ft":160,"latitude":47.76060104370117,"longitude":-3.440000057220459,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7884,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":5479,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FCPP","iata":"PNR","local":"","name":"Antonio Agostinho-Neto International Airport","category":"medium_airport","iso_country":"CG","iso_region":"CG-5","municipality":"Pointe Noire","elevation_ft":55,"latitude":-4.81603,"longitude":11.8866,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8596,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FCBB","iata":"BZV","local":"","name":"Maya-Maya Airport","category":"medium_airport","iso_country":"CG","iso_region":"CG-12","municipality":"Brazzaville","elevation_ft":1048,"latitude":-4.251699924468994,"longitude":15.253000259399414,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEC","iata":"DEC","local":"DEC","name":"Decatur Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Decatur","elevation_ft":682,"latitude":39.834598541259766,"longitude":-88.8656997680664,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":8496,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":6799,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5298,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":126.35}],"has_metar":true,"public":true},{"icao":"KDDC","iata":"DDC","local":"DDC","name":"Dodge City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Dodge City","elevation_ft":2594,"latitude":37.76340103149414,"longitude":-99.9655990600586,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4649,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6899,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEH","iata":"DEH","local":"DEH","name":"Decorah Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Decorah","elevation_ft":1158,"latitude":43.275501,"longitude":-91.739403,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDCU","iata":"DCU","local":"DCU","name":"Pryor Field Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Decatur","elevation_ft":592,"latitude":34.652698516799994,"longitude":-86.94539642330001,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6107,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGIR","iata":"HER","local":"","name":"Heraklion International Nikos Kazantzakis Airport","category":"large_airport","iso_country":"GR","iso_region":"GR-M","municipality":"Heraklion","elevation_ft":115,"latitude":35.339699,"longitude":25.1803,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8904,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFSX","iata":"","local":"","name":"Luxeuil-Saint-Sauveur (BA 116) Air Base","category":"medium_airport","iso_country":"FR","iso_region":"FR-BFC","municipality":"Saint-Sauveur","elevation_ft":913,"latitude":47.787747,"longitude":6.353419,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7982,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFYR","iata":"","local":"","name":"Romorantin Pruniers Airfield","category":"small_airport","iso_country":"FR","iso_region":"FR-CVL","municipality":"UNKNOWN","elevation_ft":289,"latitude":47.317543,"longitude":1.691036,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3609,"width_ft":328,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFTH","iata":"TLN","local":"","name":"Toulon-Hyères Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-PAC","municipality":"Toulon/Hyères/Le Palyvestre","elevation_ft":7,"latitude":43.0973014832,"longitude":6.14602994919,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6959,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":5935,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGAL","iata":"AXD","local":"","name":"Alexandroupoli Democritus Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-A","municipality":"Alexandroupolis","elevation_ft":24,"latitude":40.8559,"longitude":25.956301,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8471,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDGW","iata":"DGW","local":"DGW","name":"Converse County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":4933,"latitude":42.79719925,"longitude":-105.3860016,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4760,"width_ft":75,"surface":"G"},{"id":"11/29","length_ft":6534,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDHN","iata":"DHN","local":"DHN","name":"Dothan Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Dothan","elevation_ft":401,"latitude":31.3213005065918,"longitude":-85.44960021972656,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":8499,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5498,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":135.725}],"has_metar":true,"public":true},{"icao":"KDFI","iata":"DFI","local":"DFI","name":"Defiance Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Defiance","elevation_ft":707,"latitude":41.3375015259,"longitude":-84.4288024902,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4199,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEW","iata":"","local":"DEW","name":"Deer Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Deer Park","elevation_ft":2211,"latitude":47.96659851,"longitude":-117.427002,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3200,"width_ft":60,"surface":"A"},{"id":"16/34","length_ft":6101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDHT","iata":"DHT","local":"DHT","name":"Dalhart Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dalhart","elevation_ft":3991,"latitude":36.0225982666,"longitude":-102.54699707,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5440,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":6400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDC","iata":"","local":"","name":"Princeton Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Town of Princeton","elevation_ft":2298,"latitude":49.4681015015,"longitude":-120.511001587,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3932,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDEQ","iata":"","local":"DEQ","name":"J Lynn Helms Sevier County Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"DeQueen","elevation_ft":355,"latitude":34.047001,"longitude":-94.399399,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDIJ","iata":"","local":"DIJ","name":"Driggs/Reed Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Driggs","elevation_ft":6229,"latitude":43.742667,"longitude":-111.096829,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLN","iata":"DLN","local":"DLN","name":"Dillon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Dillon","elevation_ft":5241,"latitude":45.2554016113,"longitude":-112.553001404,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3600,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYEV","iata":"YEV","local":"","name":"Inuvik Mike Zubko Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Inuvik","elevation_ft":224,"latitude":68.30419921880001,"longitude":-133.483001709,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6006,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLH","iata":"DLH","local":"DLH","name":"Duluth International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":1428,"latitude":46.842098,"longitude":-92.193604,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5719,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":10591,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":124.1}],"has_metar":true,"public":true},{"icao":"KDLL","iata":"","local":"DLL","name":"Baraboo Wisconsin Dells Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Baraboo","elevation_ft":979,"latitude":43.522701,"longitude":-89.770203,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5010,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":2746,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDKB","iata":"","local":"DKB","name":"DeKalb Taylor Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"DeKalb","elevation_ft":914,"latitude":41.936316,"longitude":-88.704128,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7026,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":4201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDIK","iata":"DIK","local":"DIK","name":"Dickinson Theodore Roosevelt Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Dickinson","elevation_ft":2592,"latitude":46.7974014282,"longitude":-102.802001953,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4700,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":7301,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLO","iata":"","local":"DLO","name":"Delano Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Delano","elevation_ft":314,"latitude":35.745601654052734,"longitude":-119.23699951171876,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5659,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLF","iata":"DLF","local":"DLF","name":"Laughlin Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1082,"latitude":29.359501,"longitude":-100.778002,"has_tower":true,"has_beacon":true,"runways":[{"id":"13C/31C","length_ft":8852,"width_ft":150,"surface":"A"},{"id":"13L/31R","length_ft":8316,"width_ft":150,"surface":"A"},{"id":"13R/31L","length_ft":6571,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":114.4},{"id":"LCL/P","frequency_mhz":125.2}],"has_metar":true,"public":true},{"icao":"KDKX","iata":"","local":"DKX","name":"Knoxville Downtown Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":833,"latitude":35.963902,"longitude":-83.873901,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3499,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDKR","iata":"","local":"DKR","name":"Houston County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":348,"latitude":31.306999,"longitude":-95.403801,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDNS","iata":"DNS","local":"DNS","name":"Denison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Denison","elevation_ft":1274,"latitude":41.9864006,"longitude":-95.38069916,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":2019,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LHBP","iata":"BUD","local":"","name":"Budapest Liszt Ferenc International Airport","category":"large_airport","iso_country":"HU","iso_region":"HU-BU","municipality":"Budapest","elevation_ft":495,"latitude":47.43018,"longitude":19.262393,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":12162,"width_ft":148,"surface":"H"},{"id":"13R/31L","length_ft":9875,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":117.3},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"LHDC","iata":"DEB","local":"","name":"Debrecen International Airport","category":"medium_airport","iso_country":"HU","iso_region":"HU-HB","municipality":"Debrecen","elevation_ft":359,"latitude":47.488899,"longitude":21.615299,"has_tower":true,"has_beacon":false,"runways":[{"id":"04R/22L","length_ft":8202,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LHKE","iata":"","local":"","name":"Kecskemét Air Base","category":"medium_airport","iso_country":"HU","iso_region":"HU-BK","municipality":"Kecskemét","elevation_ft":376,"latitude":46.9175,"longitude":19.749201,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8199,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LHPP","iata":"PEV","local":"","name":"Pécs-Pogány Airport","category":"medium_airport","iso_country":"HU","iso_region":"HU-BA","municipality":"Pécs-Pogány","elevation_ft":1000,"latitude":45.990898,"longitude":18.240996,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4921,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBBR","iata":"BRU","local":"","name":"Brussels Airport","category":"large_airport","iso_country":"BE","iso_region":"BE-BRU","municipality":"Zaventem","elevation_ft":175,"latitude":50.901402,"longitude":4.48444,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":11936,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":10535,"width_ft":148,"surface":"H"},{"id":"02/20","length_ft":9800,"width_ft":164,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.47}],"has_metar":true,"public":true},{"icao":"EBLG","iata":"LGG","local":"","name":"Liège Airport","category":"medium_airport","iso_country":"BE","iso_region":"BE-WLG","municipality":"Grâce-Hollogne","elevation_ft":659,"latitude":50.638574,"longitude":5.443897,"has_tower":true,"has_beacon":false,"runways":[{"id":"04R/22L","length_ft":12106,"width_ft":148,"surface":"H"},{"id":"04L/23R","length_ft":7677,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBOS","iata":"OST","local":"","name":"Oostende-Brugge International Airport","category":"medium_airport","iso_country":"BE","iso_region":"BE-VWV","municipality":"Oostende","elevation_ft":13,"latitude":51.1998,"longitude":2.874673,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBAW","iata":"ANR","local":"","name":"Antwerp International Airport (Deurne)","category":"medium_airport","iso_country":"BE","iso_region":"BE-VAN","municipality":"Antwerp","elevation_ft":39,"latitude":51.190667,"longitude":4.463153,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4954,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GLRB","iata":"ROB","local":"","name":"Roberts International Airport","category":"large_airport","iso_country":"LR","iso_region":"LR-MG","municipality":"Monrovia","elevation_ft":31,"latitude":6.23379,"longitude":-10.3623,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":11000,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDLS","iata":"DLS","local":"DLS","name":"Columbia Gorge Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Dallesport / The Dalles","elevation_ft":247,"latitude":45.620979,"longitude":-121.170777,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4647,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":5097,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDMA","iata":"DMA","local":"DMA","name":"Davis Monthan Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2704,"latitude":32.1665000916,"longitude":-110.883003235,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":13645,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.85}],"has_metar":true,"public":true},{"icao":"KDMN","iata":"DMN","local":"DMN","name":"Deming Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Deming","elevation_ft":4314,"latitude":32.262298584,"longitude":-107.721000671,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5675,"width_ft":60,"surface":"A"},{"id":"08/26","length_ft":8018,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDNN","iata":"DNN","local":"DNN","name":"Dalton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dalton","elevation_ft":709,"latitude":34.72290039,"longitude":-84.87020111,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5496,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICC","iata":"CTA","local":"CT03","name":"Catania-Fontanarossa Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-82","municipality":"Catania","elevation_ft":39,"latitude":37.466801,"longitude":15.0664,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7992,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICJ","iata":"PMO","local":"PA03","name":"Falcone–Borsellino Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-82","municipality":"Palermo","elevation_ft":65,"latitude":38.175999,"longitude":13.091,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":10912,"width_ft":197,"surface":"H"},{"id":"02/20","length_ft":6785,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GEML","iata":"MLN","local":"","name":"Melilla Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-ML","municipality":"Melilla","elevation_ft":156,"latitude":35.2798,"longitude":-2.95626,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4701,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMAD","iata":"AGA","local":"","name":"Al Massira Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-AGD","municipality":"Agadir (Temsia)","elevation_ft":250,"latitude":30.322478,"longitude":-9.412003,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBCV","iata":"","local":"","name":"Chièvres Air Base","category":"medium_airport","iso_country":"BE","iso_region":"BE-WHT","municipality":"Chièvres","elevation_ft":194,"latitude":50.575801849365234,"longitude":3.8310000896453857,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8196,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIME","iata":"BGY","local":"BG01","name":"Milan Bergamo Airport / Antonio Locatelli Air Base","category":"large_airport","iso_country":"IT","iso_region":"IT-25","municipality":"Orio al Serio (BG)","elevation_ft":782,"latitude":45.670725,"longitude":9.709223,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":9636,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":114.95},{"id":"TWR","frequency_mhz":125.87}],"has_metar":true,"public":true},{"icao":"LIMF","iata":"TRN","local":"TO11","name":"Turin Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-21","municipality":"Caselle Torinese (TO)","elevation_ft":989,"latitude":45.200802,"longitude":7.64963,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10827,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIML","iata":"LIN","local":"MI11","name":"Milano Linate Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-25","municipality":"Segrate (MI)","elevation_ft":353,"latitude":45.445099,"longitude":9.27674,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8012,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIMJ","iata":"GOA","local":"GE01","name":"Genoa Cristoforo Colombo Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-42","municipality":"Genova (GE)","elevation_ft":13,"latitude":44.412039,"longitude":8.840732,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9567,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIMZ","iata":"CUF","local":"CN03","name":"Cuneo International Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-21","municipality":"Levaldigi (CN)","elevation_ft":1267,"latitude":44.547001,"longitude":7.62322,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDRM","iata":"DRE","local":"DRM","name":"Drummond Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Drummond Island","elevation_ft":668,"latitude":46.0093002319,"longitude":-83.74389648440001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2500,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDPA","iata":"DPA","local":"DPA","name":"Dupage Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/West Chicago","elevation_ft":759,"latitude":41.90779877,"longitude":-88.24859619,"has_tower":true,"has_beacon":false,"runways":[{"id":"02L/20R","length_ft":7571,"width_ft":150,"surface":"C"},{"id":"02R/20L","length_ft":6451,"width_ft":100,"surface":"C"},{"id":"10/28","length_ft":4750,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":3399,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":132.075}],"has_metar":true,"public":true},{"icao":"LIPZ","iata":"VCE","local":"VE05","name":"Venice Marco Polo Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-34","municipality":"Venezia (VE)","elevation_ft":7,"latitude":45.505299,"longitude":12.3519,"has_tower":true,"has_beacon":true,"runways":[{"id":"04R/22L","length_ft":10827,"width_ft":148,"surface":"H"},{"id":"04L/22R","length_ft":9121,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.22},{"id":"TWR","frequency_mhz":120.2}],"has_metar":true,"public":true},{"icao":"LIRF","iata":"FCO","local":"RM11","name":"Rome–Fiumicino Leonardo da Vinci International Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-62","municipality":"Rome","elevation_ft":13,"latitude":41.804532,"longitude":12.251998,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":12802,"width_ft":197,"surface":"H"},{"id":"16R/34L","length_ft":12802,"width_ft":197,"surface":"H"},{"id":"16C/34C","length_ft":11818,"width_ft":148,"surface":"H"},{"id":"07/25","length_ft":10849,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.12},{"id":"TWR","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"LIRN","iata":"NAP","local":"NA01","name":"Naples International Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-72","municipality":"Napoli","elevation_ft":294,"latitude":40.886002,"longitude":14.2908,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8622,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIRP","iata":"PSA","local":"PI05","name":"Pisa International Airport","category":"large_airport","iso_country":"IT","iso_region":"IT-52","municipality":"Pisa","elevation_ft":6,"latitude":43.683899,"longitude":10.3927,"has_tower":true,"has_beacon":false,"runways":[{"id":"04R/22L","length_ft":9816,"width_ft":148,"surface":"H"},{"id":"04L/22R","length_ft":8976,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIRQ","iata":"FLR","local":"FI04","name":"Peretola Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-52","municipality":"Firenze","elevation_ft":142,"latitude":43.810001,"longitude":11.2051,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5118,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIPY","iata":"AOI","local":"AN01","name":"Marche Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-57","municipality":"Ancona","elevation_ft":49,"latitude":43.616299,"longitude":13.3623,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9728,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIPQ","iata":"TRS","local":"GO02","name":"Trieste–Friuli Venezia Giulia Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-36","municipality":"Ronchi dei Legionari (GO)","elevation_ft":39,"latitude":45.827499,"longitude":13.4722,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIPO","iata":"VBS","local":"BS04","name":"Brescia Gabriele d'Annunzio Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-25","municipality":"Montichiari (BS)","elevation_ft":355,"latitude":45.428902,"longitude":10.3306,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":9810,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDSM","iata":"DSM","local":"DSM","name":"Des Moines International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":958,"latitude":41.534,"longitude":-93.663101,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6601,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":9001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.55}],"has_metar":true,"public":true},{"icao":"KDRO","iata":"DRO","local":"DRO","name":"Durango La Plata County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Durango","elevation_ft":6685,"latitude":37.151501,"longitude":-107.753998,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9201,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDRT","iata":"DRT","local":"DRT","name":"Del Rio International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1002,"latitude":29.3742008209,"longitude":-100.927001953,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6300,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"},{"id":"H2","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EBFS","iata":"","local":"","name":"Florennes Air Base","category":"medium_airport","iso_country":"BE","iso_region":"BE-WNA","municipality":"Florennes","elevation_ft":935,"latitude":50.2433013916,"longitude":4.64583015442,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":11106,"width_ft":148,"surface":"H"},{"id":"08R/26L","length_ft":7382,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LKPR","iata":"PRG","local":"","name":"Václav Havel Airport Prague","category":"large_airport","iso_country":"CZ","iso_region":"CZ-PR","municipality":"Prague","elevation_ft":1247,"latitude":50.103514,"longitude":14.256992,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":12188,"width_ft":148,"surface":"H"},{"id":"12/30","length_ft":10663,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.15},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"LKMT","iata":"OSR","local":"","name":"Ostrava Leos Janáček Airport","category":"medium_airport","iso_country":"CZ","iso_region":"CZ-MO","municipality":"Mošnov","elevation_ft":844,"latitude":49.696301,"longitude":18.111099,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":11519,"width_ft":207,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LKKV","iata":"KLV","local":"","name":"Karlovy Vary Airport","category":"medium_airport","iso_country":"CZ","iso_region":"CZ-KA","municipality":"Karlovy Vary","elevation_ft":1989,"latitude":50.202999,"longitude":12.915,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7054,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LKPD","iata":"PED","local":"","name":"Pardubice Airport","category":"medium_airport","iso_country":"CZ","iso_region":"CZ-PA","municipality":"Pardubice","elevation_ft":741,"latitude":50.01340103149414,"longitude":15.73859977722168,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8202,"width_ft":246,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDRI","iata":"DRI","local":"DRI","name":"Beauregard Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"DeRidder","elevation_ft":202,"latitude":30.831699,"longitude":-93.339897,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4218,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5494,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUC","iata":"DUC","local":"DUC","name":"Halliburton Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Duncan","elevation_ft":1114,"latitude":34.47090149,"longitude":-97.9598999,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6650,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTL","iata":"DTL","local":"DTL","name":"Detroit Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Detroit Lakes","elevation_ft":1397,"latitude":46.824301,"longitude":-95.883322,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5201,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":1890,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUG","iata":"DUG","local":"DUG","name":"Bisbee Douglas International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Douglas Bisbee","elevation_ft":4154,"latitude":31.4689998627,"longitude":-109.603996277,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4966,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":6430,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTA","iata":"DTA","local":"DTA","name":"Delta Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Delta","elevation_ft":4759,"latitude":39.3805999756,"longitude":-112.508003235,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6065,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUA","iata":"DUA","local":"DUA","name":"Durant Regional Airport - Eaker Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Durant","elevation_ft":699,"latitude":33.942299,"longitude":-96.395057,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDTS","iata":"DSI","local":"DTS","name":"Destin Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Destin","elevation_ft":23,"latitude":30.400101,"longitude":-86.471497,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":133.925}],"has_metar":true,"public":true},{"icao":"KDTN","iata":"DTN","local":"DTN","name":"Shreveport Downtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":179,"latitude":32.5401992798,"longitude":-93.7450027466,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4198,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":5016,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.225}],"has_metar":true,"public":true},{"icao":"KDTO","iata":"","local":"DTO","name":"Denton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":642,"latitude":33.2006988525,"longitude":-97.1979980469,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":7002,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.325},{"id":"LCL/P","frequency_mhz":119.95}],"has_metar":true,"public":true},{"icao":"KDVP","iata":"NSL","local":"DVP","name":"Slayton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Slayton","elevation_ft":1623,"latitude":43.986801,"longitude":-95.7826,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3005,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDAH","iata":"HDF","local":"","name":"Heringsdorf Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-MV","municipality":"Heringsdorf","elevation_ft":93,"latitude":53.8787002563,"longitude":14.152299881,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7562,"width_ft":115,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDUX","iata":"","local":"DUX","name":"Moore County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dumas","elevation_ft":3705,"latitude":35.8578987121582,"longitude":-102.01300048828124,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDH","iata":"HAM","local":"","name":"Hamburg Helmut Schmidt Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-HH","municipality":"Hamburg","elevation_ft":53,"latitude":53.630402,"longitude":9.98823,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":12024,"width_ft":150,"surface":"H"},{"id":"05/23","length_ft":10663,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.12},{"id":"TWR","frequency_mhz":121.27}],"has_metar":true,"public":true},{"icao":"KDVN","iata":"DVN","local":"DVN","name":"Davenport Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Davenport","elevation_ft":751,"latitude":41.610432,"longitude":-90.589693,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4001,"width_ft":100,"surface":"C"},{"id":"15/33","length_ft":5511,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDVK","iata":"","local":"DVK","name":"Stuart Powell Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Danville","elevation_ft":1022,"latitude":37.579409,"longitude":-84.774347,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":1971,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDVL","iata":"DVL","local":"DVL","name":"Devils Lake Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Devils Lake","elevation_ft":1456,"latitude":48.114201,"longitude":-98.908798,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4314,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":6400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDVO","iata":"NOT","local":"DVO","name":"Marin County Airport - Gnoss Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Novato","elevation_ft":2,"latitude":38.143600463867,"longitude":-122.55599975586,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3303,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDWA","iata":"","local":"DWA","name":"Yolo County Davis Woodland Winters Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Davis/Woodland/Winters","elevation_ft":100,"latitude":38.57910156,"longitude":-121.8570023,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDXX","iata":"","local":"DXX","name":"Lac Qui Parle County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Louisburg","elevation_ft":1082,"latitude":44.986198,"longitude":-96.177696,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3003,"width_ft":135,"surface":"T"},{"id":"14/32","length_ft":3300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECS","iata":"ECS","local":"ECS","name":"Mondell Field","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Newcastle","elevation_ft":4174,"latitude":43.88379,"longitude":-104.314156,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5310,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDK","iata":"CGN","local":"","name":"Cologne Bonn Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Köln (Cologne)","elevation_ft":302,"latitude":50.865898,"longitude":7.14274,"has_tower":true,"has_beacon":true,"runways":[{"id":"14L/32R","length_ft":12517,"width_ft":197,"surface":"H"},{"id":"06/24","length_ft":8067,"width_ft":148,"surface":"H"},{"id":"14R/32L","length_ft":6113,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.12},{"id":"TWR","frequency_mhz":124.97}],"has_metar":true,"public":true},{"icao":"KDYT","iata":"","local":"DYT","name":"Sky Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":610,"latitude":46.721900939941406,"longitude":-92.04340362548828,"has_tower":false,"has_beacon":true,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":1500,"surface":"W"},{"id":"13W/31W","length_ft":10000,"width_ft":2000,"surface":"W"},{"id":"14/32","length_ft":2602,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYS","iata":"DYS","local":"DYS","name":"Dyess Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1789,"latitude":32.420799,"longitude":-99.854599,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":13500,"width_ft":300,"surface":"A"},{"id":"163/343","length_ft":3500,"width_ft":60,"surface":"-"},{"id":"164/344","length_ft":3498,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133}],"has_metar":true,"public":true},{"icao":"KDYB","iata":"","local":"DYB","name":"Summerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Summerville","elevation_ft":56,"latitude":33.0634,"longitude":-80.279297,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMI","iata":"ESU","local":"","name":"Essaouira-Mogador Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-ESI","municipality":"Essaouira","elevation_ft":384,"latitude":31.397499,"longitude":-9.68167,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8553,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDZJ","iata":"","local":"DZJ","name":"Blairsville Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Blairsville","elevation_ft":1911,"latitude":34.855098724365234,"longitude":-83.99690246582031,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYA","iata":"","local":"DYA","name":"Demopolis Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Demopolis","elevation_ft":113,"latitude":32.46379852294922,"longitude":-87.9541015625,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDZB","iata":"","local":"DZB","name":"Horseshoe Bay Resort Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Horseshoe Bay","elevation_ft":1093,"latitude":30.52709961,"longitude":-98.35870361,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5977,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEAN","iata":"EAN","local":"EAN","name":"Phifer Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Wheatland","elevation_ft":4776,"latitude":42.0555,"longitude":-104.929001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMN","iata":"CMN","local":"","name":"Mohammed V International Airport","category":"large_airport","iso_country":"MA","iso_region":"MA-CAS","municipality":"Casablanca","elevation_ft":656,"latitude":33.3675,"longitude":-7.58997,"has_tower":true,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":12195,"width_ft":148,"surface":"H"},{"id":"17R/35L","length_ft":12175,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMX","iata":"RAK","local":"","name":"Menara Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-MAR","municipality":"Marrakech","elevation_ft":1545,"latitude":31.6068992615,"longitude":-8.03629970551,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECP","iata":"ECP","local":"ECP","name":"Northwest Florida Beaches International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City Beach","elevation_ft":69,"latitude":30.357106,"longitude":-85.795414,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":10000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.95},{"id":"ATIS","frequency_mhz":119.975}],"has_metar":true,"public":true},{"icao":"LMML","iata":"MLA","local":"","name":"Malta International Airport","category":"large_airport","iso_country":"MT","iso_region":"MT-25","municipality":"Valletta","elevation_ft":300,"latitude":35.857498,"longitude":14.4775,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":10991,"width_ft":190,"surface":"H"},{"id":"05/23","length_ft":7785,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LOWW","iata":"VIE","local":"","name":"Vienna International Airport","category":"large_airport","iso_country":"AT","iso_region":"AT-9","municipality":"Vienna","elevation_ft":600,"latitude":48.110298,"longitude":16.5697,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"11/29","length_ft":11484,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.95},{"id":"TWR","frequency_mhz":119.4}],"has_metar":true,"public":true},{"icao":"LOWG","iata":"GRZ","local":"","name":"Graz Airport","category":"medium_airport","iso_country":"AT","iso_region":"AT-6","municipality":"Feldkirchen bei Graz","elevation_ft":1115,"latitude":46.9911,"longitude":15.4396,"has_tower":true,"has_beacon":false,"runways":[{"id":"16C/34C","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LOWK","iata":"KLU","local":"","name":"Klagenfurt Airport","category":"medium_airport","iso_country":"AT","iso_region":"AT-2","municipality":"Klagenfurt am Wörthersee","elevation_ft":1472,"latitude":46.642502,"longitude":14.3377,"has_tower":true,"has_beacon":false,"runways":[{"id":"10L/28R","length_ft":8924,"width_ft":148,"surface":"H"},{"id":"10R/28L","length_ft":2329,"width_ft":82,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LOWI","iata":"INN","local":"","name":"Innsbruck Airport","category":"medium_airport","iso_country":"AT","iso_region":"AT-7","municipality":"Innsbruck","elevation_ft":1907,"latitude":47.260201,"longitude":11.344,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LOWS","iata":"SZG","local":"","name":"Salzburg Airport","category":"medium_airport","iso_country":"AT","iso_region":"AT-5","municipality":"Salzburg","elevation_ft":1411,"latitude":47.793301,"longitude":13.0043,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9022,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LOWL","iata":"LNZ","local":"","name":"Linz-Hörsching Airport / Vogler Air Base","category":"medium_airport","iso_country":"AT","iso_region":"AT-4","municipality":"Linz","elevation_ft":980,"latitude":48.2332,"longitude":14.1875,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPBJ","iata":"BYJ","local":"","name":"Beja Airport / Airbase","category":"medium_airport","iso_country":"PT","iso_region":"PT-02","municipality":"Beja","elevation_ft":636,"latitude":38.078899,"longitude":-7.9324,"has_tower":true,"has_beacon":false,"runways":[{"id":"01L/19R","length_ft":11319,"width_ft":197,"surface":"H"},{"id":"01R/19L","length_ft":11316,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEAT","iata":"EAT","local":"EAT","name":"Pangborn Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Wenatchee","elevation_ft":1249,"latitude":47.3988990784,"longitude":-120.207000732,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMZ","iata":"OZZ","local":"","name":"Ouarzazate Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-OUA","municipality":"Ouarzazate","elevation_ft":3782,"latitude":30.9391002655,"longitude":-6.909430027010001,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEAR","iata":"EAR","local":"EAR","name":"Kearney Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NE","municipality":"Kearney","elevation_ft":2131,"latitude":40.727001,"longitude":-99.006798,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4498,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":7094,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEBG","iata":"","local":"EBG","name":"South Texas International at Edinburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Edinburg","elevation_ft":75,"latitude":26.4417,"longitude":-98.1222,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEBS","iata":"EBS","local":"EBS","name":"Webster City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Webster City","elevation_ft":1122,"latitude":42.43659973,"longitude":-93.86889648,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2663,"width_ft":90,"surface":"T"},{"id":"14/32","length_ft":3851,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMFF","iata":"FEZ","local":"","name":"Fes Saïss International Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-FES","municipality":"Saïss","elevation_ft":1900,"latitude":33.927299,"longitude":-4.97796,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEEN","iata":"EEN","local":"EEN","name":"Dillant Hopkins Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NH","municipality":"Keene","elevation_ft":488,"latitude":42.898399,"longitude":-72.270798,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6201,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPPR","iata":"OPO","local":"","name":"Francisco de Sá Carneiro Airport","category":"large_airport","iso_country":"PT","iso_region":"PT-13","municipality":"Porto","elevation_ft":228,"latitude":41.2481002808,"longitude":-8.68138980865,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":11417,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.3},{"id":"TWR","frequency_mhz":118}],"has_metar":true,"public":true},{"icao":"LPPT","iata":"LIS","local":"","name":"Humberto Delgado Airport (Lisbon Portela Airport)","category":"large_airport","iso_country":"PT","iso_region":"PT-11","municipality":"Lisbon","elevation_ft":374,"latitude":38.7813,"longitude":-9.13592,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":12484,"width_ft":148,"surface":"H"},{"id":"17/35","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.15},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"LPMR","iata":"QLR","local":"","name":"Monte Real Air Base","category":"medium_airport","iso_country":"PT","iso_region":"PT-10","municipality":"UNKNOWN","elevation_ft":187,"latitude":39.828335,"longitude":-8.8875,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8068,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LQSA","iata":"SJJ","local":"","name":"Sarajevo International Airport","category":"medium_airport","iso_country":"BA","iso_region":"BA-BIH","municipality":"Sarajevo","elevation_ft":1708,"latitude":43.8246,"longitude":18.331499,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPPS","iata":"PXO","local":"","name":"Porto Santo Airport","category":"medium_airport","iso_country":"PT","iso_region":"PT-30","municipality":"Vila Baleira","elevation_ft":341,"latitude":33.0733985901,"longitude":-16.3500003815,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRBC","iata":"BCM","local":"","name":"Bacău Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-BC","municipality":"Bacău","elevation_ft":607,"latitude":46.52190017700195,"longitude":26.91029930114746,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRSV","iata":"SCV","local":"","name":"Suceava Stefan cel Mare Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-SV","municipality":"Suceava","elevation_ft":1375,"latitude":47.6875,"longitude":26.35409927368164,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8071,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRCL","iata":"CLJ","local":"","name":"Cluj Avram Iancu International Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-CJ","municipality":"Cluj-Napoca","elevation_ft":1039,"latitude":46.787425,"longitude":23.684292,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6693,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRIA","iata":"IAS","local":"","name":"Iaşi Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-IS","municipality":"Iaşi","elevation_ft":411,"latitude":47.180278,"longitude":27.620833,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LROD","iata":"OMR","local":"","name":"Oradea International Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-BH","municipality":"Oradea","elevation_ft":465,"latitude":47.025299072265625,"longitude":21.90250015258789,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRSM","iata":"SUJ","local":"","name":"Satu Mare Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-SM","municipality":"Satu Mare","elevation_ft":405,"latitude":47.70330047607422,"longitude":22.88570022583008,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRSB","iata":"SBZ","local":"","name":"Sibiu International Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-SB","municipality":"Sibiu","elevation_ft":1496,"latitude":45.78559875488281,"longitude":24.09129905700684,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8629,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRCV","iata":"CRA","local":"","name":"Craiova International Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-DJ","municipality":"Craiova","elevation_ft":626,"latitude":44.3181,"longitude":23.888599,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRCK","iata":"CND","local":"","name":"Mihail Kogălniceanu International Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-CT","municipality":"Constanţa","elevation_ft":353,"latitude":44.36220169067383,"longitude":28.488300323486328,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRBS","iata":"BBU","local":"","name":"Băneasa International Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-B","municipality":"Bucharest","elevation_ft":297,"latitude":44.503201,"longitude":26.1021,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":10167,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LQTZ","iata":"TZL","local":"","name":"Tuzla International Airport","category":"medium_airport","iso_country":"BA","iso_region":"BA-BIH","municipality":"Dubrave Gornje","elevation_ft":784,"latitude":44.458698,"longitude":18.7248,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8150,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDJ","iata":"","local":"EDJ","name":"Bellefontaine Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bellefontaine","elevation_ft":1122,"latitude":40.37229919,"longitude":-83.81900024,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEET","iata":"","local":"EET","name":"Shelby County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Alabaster","elevation_ft":586,"latitude":33.17699814,"longitude":-86.78279877,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDU","iata":"","local":"EDU","name":"University Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Davis","elevation_ft":69,"latitude":38.53150177001953,"longitude":-121.78600311279295,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3176,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEED","iata":"EED","local":"EED","name":"Needles Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Needles","elevation_ft":983,"latitude":34.7663002014,"longitude":-114.623001099,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4235,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":5005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEEO","iata":"","local":"EEO","name":"Meeker Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Meeker","elevation_ft":6421,"latitude":40.04880142211914,"longitude":-107.88600158691406,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECU","iata":"","local":"ECU","name":"Edwards County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rocksprings","elevation_ft":2372,"latitude":29.9468994140625,"longitude":-100.17400360107422,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4050,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDN","iata":"ETS","local":"EDN","name":"Enterprise Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Enterprise","elevation_ft":361,"latitude":31.29969978,"longitude":-85.89990234,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5080,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEDC","iata":"","local":"EDC","name":"Austin Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pflugerville","elevation_ft":620,"latitude":30.398049,"longitude":-97.566909,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6025,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":1550,"width_ft":25,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KEGT","iata":"","local":"EGT","name":"Wellington Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wellington","elevation_ft":1277,"latitude":37.32360076904297,"longitude":-97.38829803466795,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5201,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LRTR","iata":"TSR","local":"","name":"Timişoara Traian Vuia Airport","category":"medium_airport","iso_country":"RO","iso_region":"RO-TM","municipality":"Timişoara","elevation_ft":348,"latitude":45.80989837646485,"longitude":21.337900161743164,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDL","iata":"DUS","local":"","name":"Düsseldorf Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Düsseldorf","elevation_ft":147,"latitude":51.289501,"longitude":6.76678,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"05L/23R","length_ft":8859,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":115.15},{"id":"TWR","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"KEFT","iata":"","local":"EFT","name":"Monroe Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Monroe","elevation_ft":1086,"latitude":42.61489868164063,"longitude":-89.59040069580078,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3000,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEGI","iata":"EGI","local":"EGI","name":"Duke Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":191,"latitude":30.65040016,"longitude":-86.52290344,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8025,"width_ft":150,"surface":"A"},{"id":"180/360","length_ft":3500,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.2}],"has_metar":true,"public":true},{"icao":"KEGE","iata":"EGE","local":"EGE","name":"Eagle County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Eagle","elevation_ft":6548,"latitude":39.64260101,"longitude":-106.9179993,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":9000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":135.575}],"has_metar":true,"public":true},{"icao":"KEKY","iata":"","local":"EKY","name":"Bessemer Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Bessemer","elevation_ft":700,"latitude":33.312901,"longitude":-86.925903,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6007,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEFK","iata":"EFK","local":"EFK","name":"Northeast Kingdom International Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Newport","elevation_ft":930,"latitude":44.888802,"longitude":-72.229202,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3996,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":5301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMFO","iata":"OUD","local":"","name":"Oujda Angads Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-OUJ","municipality":"Ahl Angad","elevation_ft":1535,"latitude":34.789558,"longitude":-1.926041,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMME","iata":"RBA","local":"","name":"Rabat-Salé Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-RBA","municipality":"Rabat","elevation_ft":276,"latitude":34.051498,"longitude":-6.75152,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDM","iata":"MUC","local":"","name":"Munich Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BY","municipality":"Munich","elevation_ft":1487,"latitude":48.353802,"longitude":11.7861,"has_tower":true,"has_beacon":true,"runways":[{"id":"08L/26R","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"08R/26L","length_ft":13123,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.12},{"id":"TWR","frequency_mhz":118.7}],"has_metar":true,"public":true},{"icao":"EDDN","iata":"NUE","local":"","name":"Nuremberg Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BY","municipality":"Nuremberg","elevation_ft":1046,"latitude":49.498699,"longitude":11.078056,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKS","iata":"","local":"EKS","name":"Ennis Big Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ennis","elevation_ft":5423,"latitude":45.271801,"longitude":-111.649002,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEHR","iata":"","local":"EHR","name":"Henderson City County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Henderson","elevation_ft":387,"latitude":37.8078,"longitude":-87.685699,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKO","iata":"EKO","local":"EKO","name":"Elko Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Elko","elevation_ft":5140,"latitude":40.82490158081055,"longitude":-115.79199981689452,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7454,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3015,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDE","iata":"ERF","local":"","name":"Erfurt-Weimar Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-TH","municipality":"Erfurt","elevation_ft":1036,"latitude":50.979801,"longitude":10.9581,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/278","length_ft":8530,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKM","iata":"EKI","local":"EKM","name":"Elkhart Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Elkhart","elevation_ft":778,"latitude":41.7193984985,"longitude":-86.00319671630001,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2480,"width_ft":250,"surface":"T"},{"id":"09/27","length_ft":6500,"width_ft":120,"surface":"C"},{"id":"18/36","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5}],"has_metar":true,"public":true},{"icao":"KEKQ","iata":"","local":"EKQ","name":"Wayne County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Monticello","elevation_ft":963,"latitude":36.85530090332031,"longitude":-84.8561019897461,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDG","iata":"FMO","local":"","name":"Münster Osnabrück Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Greven","elevation_ft":160,"latitude":52.134602,"longitude":7.68483,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7119,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEHA","iata":"","local":"EHA","name":"Elkhart Morton County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Elkhart","elevation_ft":3622,"latitude":37.000702,"longitude":-101.879997,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4900,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":4907,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEIK","iata":"","local":"EIK","name":"Erie Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Erie","elevation_ft":5130,"latitude":40.010200500488,"longitude":-105.047996521,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4700,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELK","iata":"ELK","local":"ELK","name":"Elk City Regional Business Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Elk City","elevation_ft":2013,"latitude":35.43080139,"longitude":-99.39430237,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5399,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEMP","iata":"EMP","local":"EMP","name":"Emporia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Emporia","elevation_ft":1208,"latitude":38.3320999146,"longitude":-96.1912002563,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5005,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":3881,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELD","iata":"ELD","local":"ELD","name":"South Arkansas Regional Airport at Goodwin Field","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"El Dorado","elevation_ft":277,"latitude":33.221001,"longitude":-92.813301,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6601,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELN","iata":"ELN","local":"ELN","name":"Bowers Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":1764,"latitude":47.03300095,"longitude":-120.5309982,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4300,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELY","iata":"ELY","local":"ELY","name":"Ely Airport Yelland Field","category":"medium_airport","iso_country":"US","iso_region":"US-NV","municipality":"Ely","elevation_ft":6259,"latitude":39.29970169,"longitude":-114.8420029,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4825,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":6017,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELP","iata":"ELP","local":"ELP","name":"El Paso International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3959,"latitude":31.80719948,"longitude":-106.3779984,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":12020,"width_ft":150,"surface":"A"},{"id":"08L/26R","length_ft":5499,"width_ft":75,"surface":"C"},{"id":"08R/26L","length_ft":9025,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"D-ATIS","frequency_mhz":120}],"has_metar":true,"public":true},{"icao":"GOOY","iata":"DKR","local":"","name":"Léopold Sédar Senghor International Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-DK","municipality":"Dakar","elevation_ft":85,"latitude":14.7397,"longitude":-17.4902,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":11450,"width_ft":148,"surface":"H"},{"id":"03/21","length_ft":4898,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELO","iata":"LYU","local":"ELO","name":"Ely Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ely","elevation_ft":1456,"latitude":47.82450104,"longitude":-91.83070374,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5596,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KELA","iata":"ELA","local":"ELA","name":"Eagle Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Lake","elevation_ft":184,"latitude":29.600599288900003,"longitude":-96.3218994141,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4280,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDB","iata":"BER","local":"","name":"Berlin Brandenburg Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BR","municipality":"Berlin","elevation_ft":157,"latitude":52.362247,"longitude":13.500672,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.95},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"KEOK","iata":"EOK","local":"EOK","name":"Keokuk Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Keokuk","elevation_ft":671,"latitude":40.4598999023,"longitude":-91.4284973145,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":100,"surface":"C"},{"id":"14/32","length_ft":3576,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GOSS","iata":"XLS","local":"","name":"Saint Louis Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-SL","municipality":"Saint Louis","elevation_ft":9,"latitude":16.049814,"longitude":-16.461039,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6234,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KENL","iata":"ENL","local":"ENL","name":"Centralia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Centralia","elevation_ft":534,"latitude":38.515099,"longitude":-89.091103,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3300,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEND","iata":"END","local":"END","name":"Vance Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Enid","elevation_ft":1307,"latitude":36.339199,"longitude":-97.916496,"has_tower":true,"has_beacon":true,"runways":[{"id":"17C/35C","length_ft":9217,"width_ft":150,"surface":"A"},{"id":"17L/35R","length_ft":5024,"width_ft":150,"surface":"C"},{"id":"17R/35L","length_ft":9217,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":115.4},{"id":"LCL/P","frequency_mhz":124.05}],"has_metar":true,"public":true},{"icao":"KEPH","iata":"EPH","local":"EPH","name":"Ephrata Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ephrata","elevation_ft":1276,"latitude":47.307598,"longitude":-119.515999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5500,"width_ft":75,"surface":"A"},{"id":"04/22","length_ft":3467,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":3843,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KENV","iata":"ENV","local":"ENV","name":"Wendover Airport","category":"medium_airport","iso_country":"US","iso_region":"US-UT","municipality":"Wendover","elevation_ft":4237,"latitude":40.7187004089,"longitude":-114.03099823,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10002,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":8002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEMT","iata":"EMT","local":"EMT","name":"San Gabriel Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"El Monte","elevation_ft":296,"latitude":34.086102,"longitude":-118.035004,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3995,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.75},{"id":"LCL/P","frequency_mhz":121.2}],"has_metar":true,"public":true},{"icao":"GQNO","iata":"NKC","local":"","name":"Nouakchott–Oumtounsy International Airport","category":"large_airport","iso_country":"MR","iso_region":"MR-NKC","municipality":"Nouakchott","elevation_ft":9,"latitude":18.31,"longitude":-15.969722,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":11155,"width_ft":197,"surface":"H"},{"id":"06/24","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMTA","iata":"AHU","local":"","name":"Cherif Al Idrissi Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-HOC","municipality":"Al Hoceima","elevation_ft":95,"latitude":35.177101135253906,"longitude":-3.83951997756958,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEQA","iata":"EDK","local":"EQA","name":"Captain Jack Thomas El Dorado Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"El Dorado","elevation_ft":1378,"latitude":37.7741012573,"longitude":-96.8175964355,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4204,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":4200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDC","iata":"DRS","local":"","name":"Dresden Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SN","municipality":"Dresden","elevation_ft":755,"latitude":51.134123,"longitude":13.767831,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9350,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMTT","iata":"TNG","local":"","name":"Tangier Ibn Battuta Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-TNG","municipality":"Tangier","elevation_ft":62,"latitude":35.731741,"longitude":-5.921459,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KERI","iata":"ERI","local":"ERI","name":"Erie International Tom Ridge Field","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Erie","elevation_ft":732,"latitude":42.083127,"longitude":-80.173867,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3508,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":8420,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":120.35}],"has_metar":true,"public":true},{"icao":"EDBC","iata":"CSO","local":"","name":"Cochstedt Airport","category":"small_airport","iso_country":"DE","iso_region":"DE-ST","municipality":"Hecklingen","elevation_ft":594,"latitude":51.8564,"longitude":11.4203,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8200,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KESC","iata":"ESC","local":"ESC","name":"Delta County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Escanaba","elevation_ft":609,"latitude":45.7226982117,"longitude":-87.0936965942,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5016,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":6498,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KESN","iata":"ESN","local":"ESN","name":"Easton Airport / Newnam Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Easton","elevation_ft":72,"latitude":38.804199,"longitude":-76.069,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":4003,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.525},{"id":"ATIS","frequency_mhz":124.475}],"has_metar":true,"public":true},{"icao":"KERV","iata":"ERV","local":"ERV","name":"Kerrville / Kerr County Airport at Louis Schreiner Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrville","elevation_ft":1617,"latitude":29.9767,"longitude":-99.085701,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3597,"width_ft":58,"surface":"A"},{"id":"12/30","length_ft":6004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KESF","iata":"ESF","local":"ESF","name":"Esler Army Airfield / Esler Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":112,"latitude":31.394266,"longitude":-92.294082,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5999,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5601,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEST","iata":"EST","local":"EST","name":"Estherville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Estherville","elevation_ft":1319,"latitude":43.40739822,"longitude":-94.74639893,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2989,"width_ft":90,"surface":"T"},{"id":"16/34","length_ft":4797,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVU","iata":"","local":"EVU","name":"Northwest Missouri Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Maryville","elevation_ft":1145,"latitude":40.35250092,"longitude":-94.91500092,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4600,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDS","iata":"STR","local":"","name":"Stuttgart Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Stuttgart","elevation_ft":1276,"latitude":48.689899,"longitude":9.22196,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":10974,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":126.12},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"EDDV","iata":"HAJ","local":"","name":"Hannover Airport","category":"large_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Hannover","elevation_ft":183,"latitude":52.461102,"longitude":9.68508,"has_tower":true,"has_beacon":false,"runways":[{"id":"09L/27R","length_ft":10499,"width_ft":148,"surface":"H"},{"id":"09R/27L","length_ft":7677,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEUG","iata":"EUG","local":"EUG","name":"Mahlon Sweet Field","category":"medium_airport","iso_country":"US","iso_region":"US-OR","municipality":"Eugene","elevation_ft":374,"latitude":44.12459945678711,"longitude":-123.21199798583984,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"16R/34L","length_ft":8009,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"LCL/P","frequency_mhz":124.15},{"id":"ATIS","frequency_mhz":125.225}],"has_metar":true,"public":true},{"icao":"EDLP","iata":"PAD","local":"","name":"Paderborn Lippstadt Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Büren","elevation_ft":699,"latitude":51.614101,"longitude":8.61632,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7152,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVM","iata":"EVM","local":"EVM","name":"Eveleth/Virginia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Eveleth","elevation_ft":1379,"latitude":47.425098,"longitude":-92.498497,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":2050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEUF","iata":"EUF","local":"EUF","name":"Weedon Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Eufaula","elevation_ft":285,"latitude":31.9512996674,"longitude":-85.1288986206,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEUL","iata":"","local":"EUL","name":"Caldwell Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Caldwell","elevation_ft":2432,"latitude":43.641899,"longitude":-116.636002,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KETH","iata":"","local":"ETH","name":"Wheaton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wheaton","elevation_ft":1025,"latitude":45.78049850463867,"longitude":-96.5435028076172,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":1953,"width_ft":175,"surface":"T"},{"id":"16/34","length_ft":3298,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KETN","iata":"ETN","local":"ETN","name":"Eastland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eastland","elevation_ft":1464,"latitude":32.4135017395,"longitude":-98.8097991943,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEWK","iata":"EWK","local":"EWK","name":"Newton City-County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Newton","elevation_ft":1533,"latitude":38.0582008362,"longitude":-97.2744979858,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3501,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":7003,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GQPP","iata":"NDB","local":"","name":"Nouadhibou International Airport","category":"medium_airport","iso_country":"MR","iso_region":"MR-08","municipality":"Nouadhibou","elevation_ft":24,"latitude":20.9330997467041,"longitude":-17.030000686645508,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7956,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GVAC","iata":"SID","local":"","name":"Amílcar Cabral International Airport","category":"large_airport","iso_country":"CV","iso_region":"CV-B","municipality":"Espargos","elevation_ft":177,"latitude":16.7414,"longitude":-22.9494,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LSZH","iata":"ZRH","local":"","name":"Zürich Airport","category":"large_airport","iso_country":"CH","iso_region":"CH-ZH","municipality":"Zurich","elevation_ft":1417,"latitude":47.458056,"longitude":8.548056,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":12139,"width_ft":197,"surface":"H"},{"id":"14/32","length_ft":10827,"width_ft":197,"surface":"H"},{"id":"10/28","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":129},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"LSGC","iata":"","local":"","name":"Les Eplatures Airport","category":"medium_airport","iso_country":"CH","iso_region":"CH-NE","municipality":"La Chaux-de-Fonds","elevation_ft":3368,"latitude":47.0839004517,"longitude":6.792840003970001,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3576,"width_ft":89,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LSGS","iata":"SIR","local":"","name":"Sion Airport","category":"medium_airport","iso_country":"CH","iso_region":"CH-VS","municipality":"Sion","elevation_ft":1582,"latitude":46.219166,"longitude":7.326944,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6562,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LSZB","iata":"BRN","local":"","name":"Bern Airport","category":"medium_airport","iso_country":"CH","iso_region":"CH-BE","municipality":"Bern","elevation_ft":1671,"latitude":46.912868,"longitude":7.498512,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5676,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LSME","iata":"EML","local":"","name":"Emmen Air Base","category":"medium_airport","iso_country":"CH","iso_region":"CH-LU","municipality":"UNKNOWN","elevation_ft":1400,"latitude":47.092444,"longitude":8.305184,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8208,"width_ft":130,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LSZA","iata":"LUG","local":"","name":"Lugano Airport","category":"medium_airport","iso_country":"CH","iso_region":"CH-TI","municipality":"Agno","elevation_ft":915,"latitude":46.004299,"longitude":8.91058,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4642,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LSZS","iata":"SMV","local":"","name":"Samedan Airport","category":"medium_airport","iso_country":"CH","iso_region":"CH-GR","municipality":"Samedan","elevation_ft":5600,"latitude":46.5341,"longitude":9.88411,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6037,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDFH","iata":"HHN","local":"","name":"Frankfurt-Hahn Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-RP","municipality":"Frankfurt am Main (Lautzenhausen)","elevation_ft":1649,"latitude":49.9487,"longitude":7.26389,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/31","length_ft":12467,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEWB","iata":"EWB","local":"EWB","name":"New Bedford Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"New Bedford","elevation_ft":80,"latitude":41.67610168457031,"longitude":-70.95690155029297,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5400,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":126.85}],"has_metar":true,"public":true},{"icao":"KFFT","iata":"FFT","local":"FFT","name":"Capital City Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Frankfort","elevation_ft":806,"latitude":38.181698,"longitude":-84.906764,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVV","iata":"EVV","local":"EVV","name":"Evansville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Evansville","elevation_ft":418,"latitude":38.0369987488,"longitude":-87.5324020386,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8021,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":3497,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":6286,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":120.2}],"has_metar":true,"public":true},{"icao":"KEVW","iata":"EVW","local":"EVW","name":"Evanston-Uinta County Airport-Burns Field","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Evanston","elevation_ft":7143,"latitude":41.27479935,"longitude":-111.0350037,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEXX","iata":"","local":"EXX","name":"Davidson County Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lexington","elevation_ft":733,"latitude":35.781101,"longitude":-80.303802,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDJA","iata":"FMM","local":"","name":"Memmingen Allgau Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BY","municipality":"Memmingen","elevation_ft":2077,"latitude":47.9888000488,"longitude":10.2395000458,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8629,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEZZ","iata":"","local":"EZZ","name":"Cameron Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Shoal Township","elevation_ft":1040,"latitude":39.7276,"longitude":-94.276398,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAI","iata":"AYT","local":"","name":"Antalya International Airport","category":"large_airport","iso_country":"TR","iso_region":"TR-07","municipality":"Antalya","elevation_ft":177,"latitude":36.898701,"longitude":30.800501,"has_tower":true,"has_beacon":true,"runways":[{"id":"18C/36C","length_ft":11155,"width_ft":148,"surface":"H"},{"id":"18L/36R","length_ft":11155,"width_ft":148,"surface":"H"},{"id":"18R/36L","length_ft":9809,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":118},{"id":"TWR","frequency_mhz":126.1}],"has_metar":true,"public":true},{"icao":"LTAP","iata":"MZH","local":"","name":"Amasya Merzifon Airport","category":"small_airport","iso_country":"TR","iso_region":"TR-05","municipality":"Amasya","elevation_ft":1758,"latitude":40.829399,"longitude":35.521999,"has_tower":true,"has_beacon":false,"runways":[{"id":"05L/23R","length_ft":10636,"width_ft":148,"surface":"H"},{"id":"05R/23L","length_ft":10604,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GVNP","iata":"RAI","local":"","name":"Praia International Airport","category":"medium_airport","iso_country":"CV","iso_region":"CV-S","municipality":"Praia","elevation_ft":230,"latitude":14.924500465393066,"longitude":-23.49349975585937,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFAM","iata":"FAM","local":"FAM","name":"Farmington Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Farmington","elevation_ft":946,"latitude":37.76110077,"longitude":-90.4285965,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4222,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEYW","iata":"EYW","local":"EYW","name":"Key West International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Key West","elevation_ft":3,"latitude":24.556101,"longitude":-81.759598,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5076,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":119.675}],"has_metar":true,"public":true},{"icao":"KFAT","iata":"FAT","local":"FAT","name":"Fresno Yosemite International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fresno","elevation_ft":336,"latitude":36.776199,"longitude":-119.718002,"has_tower":true,"has_beacon":true,"runways":[{"id":"11L/29R","length_ft":9539,"width_ft":150,"surface":"A"},{"id":"11R/29L","length_ft":8008,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.2},{"id":"ATIS","frequency_mhz":121.35}],"has_metar":true,"public":true},{"icao":"KFFX","iata":"","local":"FFX","name":"Fremont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Fremont","elevation_ft":772,"latitude":43.43930054,"longitude":-85.99490356,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6501,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":3502,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEZM","iata":"","local":"EZM","name":"Heart of Georgia Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Eastman","elevation_ft":304,"latitude":32.21419906616211,"longitude":-83.12799835205078,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6506,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.425},{"id":"LCL/P","frequency_mhz":124.55}],"has_metar":true,"public":true},{"icao":"GVSV","iata":"VXE","local":"","name":"São Pedro Airport","category":"medium_airport","iso_country":"CV","iso_region":"CV-B","municipality":"São Pedro","elevation_ft":66,"latitude":16.8332,"longitude":-25.0553,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDFM","iata":"MHG","local":"","name":"Mannheim-City Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Mannheim","elevation_ft":308,"latitude":49.473057,"longitude":8.514167,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3497,"width_ft":82,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBJ","iata":"ADB","local":"","name":"Adnan Menderes International Airport","category":"large_airport","iso_country":"TR","iso_region":"TR-35","municipality":"Gaziemir","elevation_ft":412,"latitude":38.2924,"longitude":27.157,"has_tower":true,"has_beacon":true,"runways":[{"id":"16R/23L","length_ft":10630,"width_ft":148,"surface":"H"},{"id":"16L/34R","length_ft":10630,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":129.2},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"LTBH","iata":"CKZ","local":"","name":"Çanakkale Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-17","municipality":"Çanakkale","elevation_ft":23,"latitude":40.1376991272,"longitude":26.4267997742,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7710,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBQ","iata":"KCO","local":"","name":"Cengiz Topel Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-41","municipality":"Kartepe","elevation_ft":182,"latitude":40.735001,"longitude":30.0833,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9810,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDR","iata":"SCN","local":"","name":"Saarbrücken Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SL","municipality":"Saarbrücken","elevation_ft":1058,"latitude":49.2145996094,"longitude":7.10950994492,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6529,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDGS","iata":"SGE","local":"","name":"Siegerland Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Burbach","elevation_ft":1966,"latitude":50.707699,"longitude":8.08297,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5315,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDHL","iata":"LBC","local":"","name":"Lübeck Blankensee Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SH","municipality":"Lübeck","elevation_ft":53,"latitude":53.8054008484,"longitude":10.7192001343,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6896,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDDW","iata":"BRE","local":"","name":"Bremen Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-HB","municipality":"Bremen","elevation_ft":14,"latitude":53.046786,"longitude":8.78932,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6693,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEAT","iata":"ATZ","local":"","name":"Asyut International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-AST","municipality":"Asyut","elevation_ft":748,"latitude":27.050818,"longitude":31.016309,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9905,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFBL","iata":"FBL","local":"FBL","name":"Faribault Municipal Airport-Liz Wall Strohfus Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Faribault","elevation_ft":1060,"latitude":44.32844,"longitude":-93.312534,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2300,"width_ft":175,"surface":"T"},{"id":"12/30","length_ft":4257,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFCH","iata":"FCH","local":"FCH","name":"Fresno Chandler Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fresno","elevation_ft":279,"latitude":36.732399,"longitude":-119.82,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3627,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCF","iata":"KSY","local":"","name":"Kars Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-36","municipality":"Kars","elevation_ft":5889,"latitude":40.562198638916016,"longitude":43.1150016784668,"has_tower":true,"has_beacon":false,"runways":[{"id":"06L/24R","length_ft":11483,"width_ft":148,"surface":"H"},{"id":"06R/24L","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCG","iata":"TZX","local":"","name":"Trabzon International Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-61","municipality":"Trabzon","elevation_ft":104,"latitude":40.995098,"longitude":39.7897,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8661,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBU","iata":"TEQ","local":"","name":"Tekirdağ Çorlu Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-59","municipality":"Çorlu","elevation_ft":574,"latitude":41.13819885253906,"longitude":27.919099807739254,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBR","iata":"YEI","local":"","name":"Bursa Yenişehir Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-16","municipality":"Bursa","elevation_ft":764,"latitude":40.2551994324,"longitude":29.5625991821,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/25R","length_ft":9820,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":9820,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFBR","iata":"FBR","local":"FBR","name":"Fort Bridger Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Fort Bridger","elevation_ft":7034,"latitude":41.3918991089,"longitude":-110.406997681,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6404,"width_ft":75,"surface":"A"},{"id":"07/25","length_ft":3520,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFCS","iata":"FCS","local":"FCS","name":"Butts AAF (Fort Carson) Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Carson","elevation_ft":5838,"latitude":38.67839813,"longitude":-104.7570038,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4500,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":108.8},{"id":"LCL/P","frequency_mhz":125.5},{"id":"LCL/P","frequency_mhz":41.5}],"has_metar":true,"public":true},{"icao":"HEBL","iata":"ABS","local":"","name":"Abu Simbel Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-ASN","municipality":"Abu Simbel","elevation_ft":614,"latitude":22.367657,"longitude":31.609962,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HECA","iata":"CAI","local":"","name":"Cairo International Airport","category":"large_airport","iso_country":"EG","iso_region":"EG-C","municipality":"Cairo","elevation_ft":322,"latitude":30.111534,"longitude":31.396694,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"05C/23C","length_ft":13120,"width_ft":197,"surface":"H"},{"id":"05L/23R","length_ft":10830,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":122.6},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"KFDR","iata":"FDR","local":"FDR","name":"Frederick Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Frederick","elevation_ft":1258,"latitude":34.35200119,"longitude":-98.98390198,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4812,"width_ft":60,"surface":"C"},{"id":"12/30","length_ft":4578,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":6099,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEGN","iata":"HRG","local":"","name":"Hurghada International Airport","category":"large_airport","iso_country":"EG","iso_region":"EG-BA","municipality":"Hurghada","elevation_ft":32,"latitude":27.176776,"longitude":33.796692,"has_tower":true,"has_beacon":false,"runways":[{"id":"16R/34L","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"16L/34R","length_ft":13123,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDHK","iata":"KEL","local":"","name":"Kiel-Holtenau Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SH","municipality":"Kiel","elevation_ft":102,"latitude":54.379444,"longitude":10.145278,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4134,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDLW","iata":"DTM","local":"","name":"Dortmund Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NW","municipality":"Dortmund","elevation_ft":425,"latitude":51.518299,"longitude":7.61224,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFEP","iata":"FEP","local":"FEP","name":"Albertus Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Freeport","elevation_ft":859,"latitude":42.2462005615,"longitude":-89.58200073239999,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5504,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":2285,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":2404,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFC","iata":"","local":"FFC","name":"Peachtree City Falcon Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":808,"latitude":33.3572998046875,"longitude":-84.5718002319336,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5768,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFL","iata":"FFL","local":"FFL","name":"Fairfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Fairfield","elevation_ft":799,"latitude":41.053024,"longitude":-91.980114,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2505,"width_ft":140,"surface":"T"},{"id":"18/36","length_ft":5503,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFET","iata":"FET","local":"FET","name":"Fremont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Fremont","elevation_ft":1204,"latitude":41.44910049,"longitude":-96.52020264,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6353,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDTY","iata":"","local":"","name":"Adolf Würth Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Schwäbisch Hall","elevation_ft":1299,"latitude":49.1183319092,"longitude":9.783888816829998,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5052,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDVE","iata":"BWE","local":"","name":"Braunschweig-Wolfsburg Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Braunschweig","elevation_ft":295,"latitude":52.319199,"longitude":10.5561,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDVK","iata":"KSF","local":"","name":"Kassel Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-HE","municipality":"Calden","elevation_ft":820,"latitude":51.420699,"longitude":9.392152,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTFJ","iata":"SAW","local":"","name":"Istanbul Sabiha Gökçen International Airport","category":"large_airport","iso_country":"TR","iso_region":"TR-34","municipality":"Pendik, Istanbul","elevation_ft":312,"latitude":40.898602,"longitude":29.3092,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.55},{"id":"TWR","frequency_mhz":118.8}],"has_metar":true,"public":true},{"icao":"LWSK","iata":"SKP","local":"","name":"Skopje International Airport","category":"large_airport","iso_country":"MK","iso_region":"MK-008","municipality":"Ilinden","elevation_ft":781,"latitude":41.958087,"longitude":21.622581,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9678,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LXGB","iata":"GIB","local":"","name":"Gibraltar Airport","category":"medium_airport","iso_country":"GI","iso_region":"GI-U-A","municipality":"Gibraltar","elevation_ft":12,"latitude":36.151199,"longitude":-5.34966,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5833,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LUKK","iata":"KIV","local":"","name":"Chişinău International Airport","category":"medium_airport","iso_country":"MD","iso_region":"MD-CU","municipality":"Chişinău","elevation_ft":399,"latitude":46.92770004272461,"longitude":28.93099975585937,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":11778,"width_ft":148,"surface":"H"},{"id":"09/27","length_ft":7818,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LYNI","iata":"INI","local":"","name":"Niš Constantine the Great Airport","category":"medium_airport","iso_country":"RS","iso_region":"RS-20","municipality":"Niš","elevation_ft":648,"latitude":43.337009,"longitude":21.85451,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LYKV","iata":"KVO","local":"","name":"Morava Airport","category":"medium_airport","iso_country":"RS","iso_region":"RS-18","municipality":"Kraljevo","elevation_ft":686,"latitude":43.817519,"longitude":20.586662,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":7431,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTFH","iata":"SZF","local":"","name":"Samsun-Çarşamba Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-55","municipality":"Samsun","elevation_ft":18,"latitude":41.254501,"longitude":36.567101,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDNY","iata":"FDH","local":"","name":"Friedrichshafen Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-BW","municipality":"Friedrichshafen","elevation_ft":1367,"latitude":47.671299,"longitude":9.51149,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7730,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFIT","iata":"","local":"FIT","name":"Fitchburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Fitchburg","elevation_ft":348,"latitude":42.55410003662109,"longitude":-71.75900268554688,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKL","iata":"FKL","local":"FKL","name":"Venango Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Franklin","elevation_ft":1540,"latitude":41.3778991699,"longitude":-79.8603973389,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5200,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":3593,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKA","iata":"","local":"FKA","name":"Fillmore County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Preston","elevation_ft":1277,"latitude":43.67679977,"longitude":-92.17970276,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFHR","iata":"FRD","local":"FHR","name":"Friday Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Friday Harbor","elevation_ft":113,"latitude":48.5219993591,"longitude":-123.024002075,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3402,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFHU","iata":"FHU","local":"FHU","name":"Sierra Vista Municipal Airport / Libby Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Fort Huachuca / Sierra Vista","elevation_ft":4719,"latitude":31.587383,"longitude":-110.348225,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4285,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":12001,"width_ft":150,"surface":"C"},{"id":"12/30","length_ft":5366,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.95},{"id":"ATIS","frequency_mhz":134.75}],"has_metar":true,"public":true},{"icao":"EDWE","iata":"EME","local":"","name":"Emden Airport","category":"small_airport","iso_country":"DE","iso_region":"DE-NI","municipality":"Emden","elevation_ft":3,"latitude":53.391109,"longitude":7.2275,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4265,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EETN","iata":"TLL","local":"","name":"Lennart Meri Tallinn Airport","category":"large_airport","iso_country":"EE","iso_region":"EE-37","municipality":"Tallinn","elevation_ft":131,"latitude":59.41329956049999,"longitude":24.8327999115,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":11417,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HELX","iata":"LXR","local":"","name":"Luxor International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-LX","municipality":"Luxor","elevation_ft":276,"latitude":25.674629,"longitude":32.700012,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LZKZ","iata":"KSC","local":"","name":"Košice Airport","category":"medium_airport","iso_country":"SK","iso_region":"SK-KI","municipality":"Košice","elevation_ft":755,"latitude":48.66310119628906,"longitude":21.241100311279297,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LZTT","iata":"TAT","local":"","name":"Poprad-Tatry Airport","category":"medium_airport","iso_country":"SK","iso_region":"SK-PV","municipality":"Poprad","elevation_ft":2356,"latitude":49.073601,"longitude":20.2411,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8530,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":2493,"width_ft":148,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LYVR","iata":"","local":"","name":"Vršac International Airport","category":"small_airport","iso_country":"RS","iso_region":"RS-04","municipality":"UNKNOWN","elevation_ft":276,"latitude":45.1469,"longitude":21.3099,"has_tower":true,"has_beacon":false,"runways":[{"id":"01R/19L","length_ft":3281,"width_ft":82,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFMM","iata":"","local":"FMM","name":"Fort Morgan Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Morgan","elevation_ft":4569,"latitude":40.335758,"longitude":-103.804371,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2468,"width_ft":100,"surface":"T"},{"id":"14/32","length_ft":5731,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5216,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKS","iata":"","local":"FKS","name":"Frankfort Dow Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Frankfort","elevation_ft":633,"latitude":44.62519836425781,"longitude":-86.20079803466797,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4050,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLD","iata":"FLD","local":"FLD","name":"Fond du Lac County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fond du Lac","elevation_ft":808,"latitude":43.7711982727,"longitude":-88.48840332030001,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3602,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5941,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLL","iata":"FLL","local":"FLL","name":"Fort Lauderdale Hollywood International Airport","category":"large_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":9,"latitude":26.072599,"longitude":-80.152702,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"D-ATIS","frequency_mhz":135}],"has_metar":true,"public":true},{"icao":"KFLG","iata":"FLG","local":"FLG","name":"Flagstaff Pulliam International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Flagstaff","elevation_ft":7014,"latitude":35.1385,"longitude":-111.670998,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.8},{"id":"LCL/P","frequency_mhz":134.55}],"has_metar":true,"public":true},{"icao":"KFLP","iata":"FLP","local":"FLP","name":"Marion County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Flippin","elevation_ft":719,"latitude":36.29090118,"longitude":-92.59030151,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEMA","iata":"RMF","local":"","name":"Marsa Alam International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-BA","municipality":"Marsa Alam","elevation_ft":213,"latitude":25.555548,"longitude":34.59245,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":10640,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESG","iata":"HMB","local":"","name":"Suhaj Mubarak International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-SHG","municipality":"Suhaj","elevation_ft":322,"latitude":26.339115,"longitude":31.737624,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESH","iata":"SSH","local":"","name":"Sharm El Sheikh International Airport","category":"large_airport","iso_country":"EG","iso_region":"EG-JS","municipality":"Sharm El Sheikh","elevation_ft":191,"latitude":27.977272,"longitude":34.394717,"has_tower":true,"has_beacon":false,"runways":[{"id":"04L/22R","length_ft":10108,"width_ft":148,"surface":"H"},{"id":"04R/22L","length_ft":10108,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFNB","iata":"","local":"FNB","name":"Brenner Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Falls City","elevation_ft":984,"latitude":40.078800201416016,"longitude":-95.59200286865234,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3999,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOA","iata":"","local":"FOA","name":"Flora Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Flora","elevation_ft":473,"latitude":38.66490173339844,"longitude":-88.4530029296875,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5003,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":2715,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFMY","iata":"FMY","local":"FMY","name":"Page Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":17,"latitude":26.58659935,"longitude":-81.86329650879999,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6406,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4910,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119},{"id":"ATIS","frequency_mhz":123.725}],"has_metar":true,"public":true},{"icao":"KFOE","iata":"FOE","local":"FOE","name":"Topeka Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":1078,"latitude":38.950901,"longitude":-95.663597,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7002,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":12803,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.8},{"id":"ATIS","frequency_mhz":128.25}],"has_metar":true,"public":true},{"icao":"KFOD","iata":"FOD","local":"FOD","name":"Fort Dodge Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IA","municipality":"Fort Dodge","elevation_ft":1156,"latitude":42.55149841,"longitude":-94.19259644,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6547,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":5301,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFMN","iata":"FMN","local":"FMN","name":"Four Corners Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NM","municipality":"Farmington","elevation_ft":5506,"latitude":36.741199,"longitude":-108.230003,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"07/25","length_ft":6704,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KFNT","iata":"FNT","local":"FNT","name":"Bishop International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MI","municipality":"Flint","elevation_ft":782,"latitude":42.96540069580078,"longitude":-83.74359893798828,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":7201,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":7852,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.3},{"id":"ATIS","frequency_mhz":133.15}],"has_metar":true,"public":true},{"icao":"KFNL","iata":"FNL","local":"FNL","name":"Northern Colorado Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Loveland","elevation_ft":5016,"latitude":40.448763,"longitude":-105.011244,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2189,"width_ft":40,"surface":"A"},{"id":"15/33","length_ft":8500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":135.075}],"has_metar":true,"public":true},{"icao":"HESX","iata":"SPX","local":"","name":"Sphinx International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-GZ","municipality":"Al Jiza","elevation_ft":482,"latitude":30.108078,"longitude":30.889252,"has_tower":true,"has_beacon":false,"runways":[{"id":"16R/34L","length_ft":11975,"width_ft":197,"surface":"H"},{"id":"16L/34R","length_ft":9843,"width_ft":197,"surface":"H"},{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFRM","iata":"FRM","local":"FRM","name":"Fairmont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Fairmont","elevation_ft":1162,"latitude":43.643901825,"longitude":-94.4156036377,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3300,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EEPU","iata":"EPU","local":"","name":"Pärnu Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-67","municipality":"Pärnu","elevation_ft":47,"latitude":58.41899871826172,"longitude":24.47279930114746,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6463,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFRH","iata":"FRH","local":"FRH","name":"French Lick Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"French Lick","elevation_ft":792,"latitude":38.5061988831,"longitude":-86.63690185550001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFPR","iata":"FPR","local":"FPR","name":"St Lucie County International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":24,"latitude":27.49510002,"longitude":-80.36830139,"has_tower":true,"has_beacon":true,"runways":[{"id":"10L/28R","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"10R/28L","length_ft":6492,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4755,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.2},{"id":"ATIS","frequency_mhz":134.825}],"has_metar":true,"public":true},{"icao":"KFRI","iata":"FRI","local":"FRI","name":"Marshall Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Fort Riley (Junction City)","elevation_ft":1065,"latitude":39.053021,"longitude":-96.764202,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4503,"width_ft":100,"surface":"C"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.025},{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KFOT","iata":"","local":"FOT","name":"Rohnerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fortuna","elevation_ft":393,"latitude":40.55390167,"longitude":-124.1330032,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOM","iata":"FIL","local":"FOM","name":"Fillmore Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Fillmore","elevation_ft":4985,"latitude":38.95830154,"longitude":-112.362999,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5040,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFOZ","iata":"","local":"FOZ","name":"Bigfork Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bigfork","elevation_ft":1348,"latitude":47.78279876708984,"longitude":-93.65019989013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3998,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFPK","iata":"","local":"FPK","name":"Fitch H Beach Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Charlotte","elevation_ft":891,"latitude":42.574501,"longitude":-84.811401,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3510,"width_ft":75,"surface":"C"},{"id":"15/33","length_ft":2298,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EEKE","iata":"URE","local":"","name":"Kuressaare Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-74","municipality":"Kuressaare","elevation_ft":14,"latitude":58.22990036010742,"longitude":22.50950050354004,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6562,"width_ft":98,"surface":"H"},{"id":"05/23","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSW","iata":"FMS","local":"FSW","name":"Fort Madison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Fort Madison","elevation_ft":724,"latitude":40.659113,"longitude":-91.327763,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSM","iata":"FSM","local":"FSM","name":"Fort Smith Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fort Smith","elevation_ft":469,"latitude":35.336601,"longitude":-94.367401,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":9318,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KFSD","iata":"FSD","local":"FSD","name":"Sioux Falls Regional Airport / Joe Foss Field","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Sioux Falls","elevation_ft":1429,"latitude":43.585463,"longitude":-96.741152,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":9000,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":3151,"width_ft":75,"surface":"C"},{"id":"15/33","length_ft":8000,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":126.6}],"has_metar":true,"public":true},{"icao":"KFSI","iata":"FSI","local":"FSI","name":"Henry Post Army Air Field (Fort Sill)","category":"medium_airport","iso_country":"US","iso_region":"US-OK","municipality":"Fort Sill","elevation_ft":1189,"latitude":34.64979935,"longitude":-98.40219879,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.95},{"id":"ATIS","frequency_mhz":135.425}],"has_metar":true,"public":true},{"icao":"CYPL","iata":"YPL","local":"","name":"Pickle Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Pickle Lake","elevation_ft":1267,"latitude":51.4463996887207,"longitude":-90.21420288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5217,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSK","iata":"FSK","local":"FSK","name":"Fort Scott Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Fort Scott","elevation_ft":918,"latitude":37.7984008789,"longitude":-94.7694015503,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4403,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSO","iata":"","local":"FSO","name":"Franklin County State Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Swanton","elevation_ft":228,"latitude":44.9403,"longitude":-73.097504,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EDXW","iata":"GWT","local":"","name":"Westerland Sylt Airport","category":"medium_airport","iso_country":"DE","iso_region":"DE-SH","municipality":"Westerland","elevation_ft":51,"latitude":54.9132,"longitude":8.34047,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6955,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":5564,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EETU","iata":"TAY","local":"","name":"Tartu Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-7B","municipality":"Tartu","elevation_ft":220,"latitude":58.307499,"longitude":26.690399,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5906,"width_ft":102,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRV","iata":"YRV","local":"","name":"Revelstoke Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Revelstoke","elevation_ft":1459,"latitude":50.962245,"longitude":-118.184258,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5155,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKI","iata":"KAJ","local":"","name":"Kajaani Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-05","municipality":"Kajaani","elevation_ft":483,"latitude":64.2855,"longitude":27.6924,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8199,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFWA","iata":"FWA","local":"FWA","name":"Fort Wayne International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":814,"latitude":40.9785,"longitude":-85.195099,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":11981,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":4001,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":8002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":121.25}],"has_metar":true,"public":true},{"icao":"KFWC","iata":"","local":"FWC","name":"Fairfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Fairfield","elevation_ft":436,"latitude":38.37860107421875,"longitude":-88.4126968383789,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":1999,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFTY","iata":"FTY","local":"FTY","name":"Fulton County Airport Brown Field","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":841,"latitude":33.7790985107,"longitude":-84.5214004517,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5797,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4158,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.45},{"id":"ATIS","frequency_mhz":120.175}],"has_metar":true,"public":true},{"icao":"KFTW","iata":"FTW","local":"FTW","name":"Fort Worth Meacham International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":710,"latitude":32.819801,"longitude":-97.362396,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":7502,"width_ft":150,"surface":"C"},{"id":"17/35","length_ft":4005,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.7}],"has_metar":true,"public":true},{"icao":"KFUL","iata":"FUL","local":"FUL","name":"Fullerton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fullerton","elevation_ft":96,"latitude":33.8720016479,"longitude":-117.980003357,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3121,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":125.05}],"has_metar":true,"public":true},{"icao":"KFVE","iata":"WFK","local":"FVE","name":"Northern Aroostook Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Frenchville","elevation_ft":988,"latitude":47.2854995728,"longitude":-68.31279754639999,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKU","iata":"KUO","local":"","name":"Kuopio Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-15","municipality":"Kuopio / Siilinjärvi","elevation_ft":323,"latitude":63.007099,"longitude":27.7978,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9186,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKT","iata":"KTT","local":"","name":"Kittilä Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Kittilä","elevation_ft":644,"latitude":67.700996398926,"longitude":24.846799850464,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFIV","iata":"IVL","local":"","name":"Ivalo Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Ivalo","elevation_ft":481,"latitude":68.607299804688,"longitude":27.405300140381,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8199,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFXE","iata":"FXE","local":"FXE","name":"Fort Lauderdale Executive Airport","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":13,"latitude":26.1972999573,"longitude":-80.1707000732,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":6002,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.85},{"id":"LCL/P","frequency_mhz":120.9}],"has_metar":true,"public":true},{"icao":"EFKE","iata":"KEM","local":"","name":"Kemi-Tornio Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Kemi / Tornio","elevation_ft":61,"latitude":65.778701782227,"longitude":24.582099914551,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8212,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFYV","iata":"FYV","local":"FYV","name":"Drake Field","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fayetteville","elevation_ft":1251,"latitude":36.00510025024414,"longitude":-94.17009735107422,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6005,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.575},{"id":"LCL/P","frequency_mhz":128}],"has_metar":true,"public":true},{"icao":"KFXY","iata":"FXY","local":"FXY","name":"Forest City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Forest City","elevation_ft":1229,"latitude":43.23469925,"longitude":-93.62409973,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2707,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":5796,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFYM","iata":"FYM","local":"FYM","name":"Fayetteville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Fayetteville","elevation_ft":984,"latitude":35.059700012200004,"longitude":-86.5640029907,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5900,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFWS","iata":"","local":"FWS","name":"Fort Worth Spinks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":700,"latitude":32.56520080566406,"longitude":-97.30809783935548,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":3660,"width_ft":60,"surface":"T"},{"id":"18R/36L","length_ft":6002,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.025},{"id":"LCL/P","frequency_mhz":124.625}],"has_metar":true,"public":true},{"icao":"EFJY","iata":"JYV","local":"","name":"Jyväskylä Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-08","municipality":"Jyväskylän Maalaiskunta","elevation_ft":459,"latitude":62.399502,"longitude":25.678301,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8533,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGBG","iata":"GBG","local":"GBG","name":"Galesburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Galesburg","elevation_ft":764,"latitude":40.9379997253,"longitude":-90.431098938,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5792,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":3600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFKK","iata":"KOK","local":"","name":"Kokkola-Pietarsaari Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-07","municipality":"Kokkola / Kruunupyy","elevation_ft":84,"latitude":63.721199,"longitude":23.143101,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":197,"surface":"H"},{"id":"11/29","length_ft":2297,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGF","iata":"","local":"GGF","name":"Grant Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grant","elevation_ft":3425,"latitude":40.86949921,"longitude":-101.7330017,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4797,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGAF","iata":"","local":"GAF","name":"Hutson Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grafton","elevation_ft":824,"latitude":48.40470123291016,"longitude":-97.37090301513672,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4074,"width_ft":115,"surface":"T"},{"id":"17/35","length_ft":3898,"width_ft":74,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFHK","iata":"HEL","local":"","name":"Helsinki Vantaa Airport","category":"large_airport","iso_country":"FI","iso_region":"FI-18","municipality":"Helsinki","elevation_ft":179,"latitude":60.3172,"longitude":24.963301,"has_tower":true,"has_beacon":true,"runways":[{"id":"04R/22L","length_ft":11286,"width_ft":197,"surface":"H"},{"id":"04L/22R","length_ft":10039,"width_ft":197,"surface":"H"},{"id":"15/33","length_ft":9518,"width_ft":197,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":135.1},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KGCC","iata":"GCC","local":"GCC","name":"Northeast Wyoming Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WY","municipality":"Gillette","elevation_ft":4365,"latitude":44.3489,"longitude":-105.539001,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5804,"width_ft":75,"surface":"C"},{"id":"16/34","length_ft":7501,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFET","iata":"ENF","local":"","name":"Enontekio Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-10","municipality":"Enontekio","elevation_ft":1005,"latitude":68.362602233887,"longitude":23.424299240112,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6565,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGAO","iata":"","local":"GAO","name":"South Lafourche Leonard Miller Jr Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Galliano","elevation_ft":1,"latitude":29.441052,"longitude":-90.261129,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6500,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGAG","iata":"GAG","local":"GAG","name":"Gage Heibeck Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Gage","elevation_ft":2223,"latitude":36.295502,"longitude":-99.776398,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5033,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MBPV","iata":"PLS","local":"","name":"Providenciales International Airport","category":"large_airport","iso_country":"TC","iso_region":"TC-PR","municipality":"Providenciales","elevation_ft":15,"latitude":21.773697,"longitude":-72.268321,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7598,"width_ft":148,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":132.45}],"has_metar":true,"public":true},{"icao":"EFLP","iata":"LPP","local":"","name":"Lappeenranta Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-02","municipality":"Lappeenranta","elevation_ft":349,"latitude":61.044601,"longitude":28.144743,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGDB","iata":"","local":"GDB","name":"Granite Falls Municipal Airport / Lenzen-Roe Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Granite Falls","elevation_ft":1047,"latitude":44.7533,"longitude":-95.556,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4357,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGAA","iata":"BFS","local":"","name":"Belfast International Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-NIR","municipality":"Belfast","elevation_ft":268,"latitude":54.6575012207,"longitude":-6.21582984924,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9121,"width_ft":148,"surface":"H"},{"id":"17/35","length_ft":6204,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGDV","iata":"GDV","local":"GDV","name":"Dawson Community Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Glendive","elevation_ft":2458,"latitude":47.13869858,"longitude":-104.8069992,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3002,"width_ft":60,"surface":"A"},{"id":"12/30","length_ft":5704,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCN","iata":"GCN","local":"GCN","name":"Grand Canyon National Park Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Grand Canyon - Tusayan","elevation_ft":6609,"latitude":35.9524,"longitude":-112.147003,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8999,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119},{"id":"ATIS","frequency_mhz":124.3}],"has_metar":true,"public":true},{"icao":"KGCK","iata":"GCK","local":"GCK","name":"Garden City Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Garden City","elevation_ft":2891,"latitude":37.9275016785,"longitude":-100.723999023,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":5700,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":7299,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.15}],"has_metar":true,"public":true},{"icao":"KHBV","iata":"","local":"HBV","name":"Jim Hogg County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hebbronville","elevation_ft":663,"latitude":27.34959983825684,"longitude":-98.73699951171876,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCM","iata":"","local":"GCM","name":"Claremore Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Claremore","elevation_ft":733,"latitude":36.292701721191406,"longitude":-95.47959899902344,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGCY","iata":"GCY","local":"GCY","name":"Greeneville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Greeneville","elevation_ft":1608,"latitude":36.195648,"longitude":-82.811482,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGDJ","iata":"","local":"GDJ","name":"Granbury Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":835,"latitude":32.442222,"longitude":-97.824444,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGCC","iata":"MAN","local":"","name":"Manchester Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Manchester","elevation_ft":257,"latitude":53.349375,"longitude":-2.279521,"has_tower":true,"has_beacon":true,"runways":[{"id":"05R/23L","length_ft":10007,"width_ft":148,"surface":"H"},{"id":"05L/23R","length_ft":10000,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.18},{"id":"TWR","frequency_mhz":118.62}],"has_metar":true,"public":true},{"icao":"CYSC","iata":"YSC","local":"","name":"Sherbrooke Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Sherbrooke","elevation_ft":792,"latitude":45.438599,"longitude":-71.691399,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEY","iata":"GEY","local":"GEY","name":"South Big Horn County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Greybull","elevation_ft":3939,"latitude":44.51679993,"longitude":-108.0830002,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3953,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":7003,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFMA","iata":"MHQ","local":"","name":"Mariehamn Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-01","municipality":"Mariehamn","elevation_ft":17,"latitude":60.1222,"longitude":19.898199,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6243,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZU","iata":"YZU","local":"","name":"Whitecourt Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Whitecourt","elevation_ft":2567,"latitude":54.14390182495117,"longitude":-115.78700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5797,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGFK","iata":"GFK","local":"GFK","name":"Grand Forks International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grand Forks","elevation_ft":845,"latitude":47.949299,"longitude":-97.176102,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":4206,"width_ft":100,"surface":"C"},{"id":"09R/27L","length_ft":3300,"width_ft":60,"surface":"C"},{"id":"17L/35R","length_ft":3901,"width_ft":75,"surface":"C"},{"id":"17R/35L","length_ft":7351,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H10","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H11","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H12","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H3","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H4","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H5","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H6","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H7","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H8","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H9","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"ATIS","frequency_mhz":119.4}],"has_metar":true,"public":true},{"icao":"KGEG","iata":"GEG","local":"GEG","name":"Spokane International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2376,"latitude":47.6199,"longitude":-117.533997,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":11002,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":8199,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":124.325}],"has_metar":true,"public":true},{"icao":"KGEZ","iata":"","local":"GEZ","name":"Shelbyville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":803,"latitude":39.586044,"longitude":-85.804024,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":2671,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEV","iata":"","local":"GEV","name":"Ashe County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Jefferson","elevation_ft":3180,"latitude":36.432418,"longitude":-81.418519,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFTP","iata":"TMP","local":"","name":"Tampere-Pirkkala Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-11","municipality":"Tampere / Pirkkala","elevation_ft":390,"latitude":61.414101,"longitude":23.604401,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFVA","iata":"VAA","local":"","name":"Vaasa Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-12","municipality":"Vaasa","elevation_ft":19,"latitude":63.050701,"longitude":21.762199,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGKJ","iata":"MEJ","local":"GKJ","name":"Port Meadville Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Meadville","elevation_ft":1399,"latitude":41.626499,"longitude":-80.214699,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGG","iata":"GGG","local":"GGG","name":"East Texas Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Longview","elevation_ft":365,"latitude":32.38399887084961,"longitude":-94.71150207519533,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6110,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.2},{"id":"ATIS","frequency_mhz":119.65}],"has_metar":true,"public":true},{"icao":"KGGW","iata":"GGW","local":"GGW","name":"Wokal Field/Glasgow-Valley County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"Glasgow","elevation_ft":2296,"latitude":48.212502,"longitude":-106.614998,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5000,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGJT","iata":"GJT","local":"GJT","name":"Grand Junction Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4858,"latitude":39.126663,"longitude":-108.529387,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5501,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":10503,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":118.55}],"has_metar":true,"public":true},{"icao":"KGGI","iata":"","local":"GGI","name":"Grinnell Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Grinnell","elevation_ft":1008,"latitude":41.70991,"longitude":-92.736052,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGHW","iata":"","local":"GHW","name":"Glenwood Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Glenwood","elevation_ft":1393,"latitude":45.64390182495117,"longitude":-95.32039642333984,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2778,"width_ft":196,"surface":"T"},{"id":"15/33","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGP","iata":"","local":"GGP","name":"Logansport Cass County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Logansport","elevation_ft":738,"latitude":40.711201,"longitude":-86.374901,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGKT","iata":"GKT","local":"GKT","name":"Gatlinburg-Pigeon Forge Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sevierville","elevation_ft":1014,"latitude":35.85779953,"longitude":-83.52870178219999,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5506,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EFTU","iata":"TKU","local":"","name":"Turku Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-19","municipality":"Turku","elevation_ft":161,"latitude":60.514099,"longitude":22.2628,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLW","iata":"GLW","local":"GLW","name":"Glasgow Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Glasgow","elevation_ft":716,"latitude":37.03179932,"longitude":-85.9536972,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5302,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLH","iata":"GLH","local":"GLH","name":"Mid Delta Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"Greenville","elevation_ft":131,"latitude":33.4828987121582,"longitude":-90.98560333251952,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":8001,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":7019,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119}],"has_metar":true,"public":true},{"icao":"KGNB","iata":"","local":"GNB","name":"Granby Grand County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Granby","elevation_ft":8203,"latitude":40.08969879150391,"longitude":-105.91699981689452,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLD","iata":"GLD","local":"GLD","name":"Goodland Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KS","municipality":"Goodland","elevation_ft":3656,"latitude":39.370701,"longitude":-101.699753,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4001,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":5499,"width_ft":100,"surface":"C"},{"id":"17/35","length_ft":1754,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGLS","iata":"GLS","local":"GLS","name":"Scholes International At Galveston Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":6,"latitude":29.265300750732425,"longitude":-94.8603973388672,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.575}],"has_metar":true,"public":true},{"icao":"KGLY","iata":"","local":"GLY","name":"Clinton Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Clinton","elevation_ft":822,"latitude":38.35660171508789,"longitude":-93.68419647216795,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4001,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGMJ","iata":"","local":"GMJ","name":"Grove Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Grove","elevation_ft":831,"latitude":36.60680008,"longitude":-94.73860168,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA16","iata":"","local":"LA16","name":"Castille Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Breaux Bridge","elevation_ft":25,"latitude":30.244017,"longitude":-91.868341,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2817,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA17","iata":"","local":"","name":"Pioneer Field Flight Park Ultralightport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Bossier City","elevation_ft":173,"latitude":32.601799,"longitude":-93.694099,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA18","iata":"","local":"LA18","name":"Bunkie General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Bunkie","elevation_ft":100,"latitude":30.952255,"longitude":-92.175266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA19","iata":"","local":"LA19","name":"CHRISTUS Coushatta Health Care Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Coushatta","elevation_ft":102,"latitude":32.02128,"longitude":-93.34435,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA20","iata":"","local":"LA20","name":"CHRISTUS St Frances Cabrini Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":147,"latitude":31.28324,"longitude":-92.46289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA22","iata":"","local":"LA22","name":"PG&E Livermore Training Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Livermore","elevation_ft":572,"latitude":37.699064,"longitude":-121.709742,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA23","iata":"","local":"LA23","name":"Citizens Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Columbia","elevation_ft":190,"latitude":32.07809829711914,"longitude":-92.09420013427734,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA24","iata":"","local":"LA24","name":"St Tammany Parish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Covington","elevation_ft":18,"latitude":30.467275,"longitude":-90.11305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA27","iata":"","local":"LA27","name":"Texas Eastern Transmission Maintenance Hq Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":15,"latitude":30.223596,"longitude":-93.131044,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H3","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H4","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA28","iata":"","local":"LA28","name":"Louisiana State Police Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":55,"latitude":30.448200225800004,"longitude":-91.1060028076,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA21","iata":"","local":"LA21","name":"Chloe Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":10,"latitude":30.25489997863769,"longitude":-93.13520050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA25","iata":"","local":"LA25","name":"Central Farmers Coop Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Mamou","elevation_ft":68,"latitude":30.697399139404297,"longitude":-92.41400146484376,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3000,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA29","iata":"","local":"LA29","name":"Byrd Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Leesville","elevation_ft":250,"latitude":31.137544,"longitude":-93.269162,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA33","iata":"","local":"LA33","name":"Cuba Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Monroe","elevation_ft":80,"latitude":32.575997,"longitude":-92.108324,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA37","iata":"","local":"LA37","name":"West Feliciana Parish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":120,"latitude":30.78470039367676,"longitude":-91.36530303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA38","iata":"","local":"LA38","name":"Pelican Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Slidell","elevation_ft":0,"latitude":30.26689910888672,"longitude":-89.8052978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":2000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA39","iata":"","local":"LA39","name":"Chalkley Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Bell City","elevation_ft":5,"latitude":30.01070022583008,"longitude":-93.05130004882812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA43","iata":"","local":"LA43","name":"Air Logistics 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":23,"latitude":30.04520034790039,"longitude":-91.88150024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA44","iata":"","local":"LA44","name":"Calpine Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"St Gabriel","elevation_ft":13,"latitude":30.2307662964,"longitude":-90.0640182495,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA32","iata":"","local":"LA32","name":"Lake Air Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Arthur","elevation_ft":11,"latitude":30.094679,"longitude":-92.70092,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":175,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA41","iata":"","local":"LA41","name":"Dupuis Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Breaux Bridge","elevation_ft":20,"latitude":30.315667,"longitude":-91.940778,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA30","iata":"","local":"LA30","name":"Phoenix Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Rayne","elevation_ft":31,"latitude":30.248199462890625,"longitude":-92.24169921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":500,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA35","iata":"","local":"LA35","name":"Summerville Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Le Compte","elevation_ft":77,"latitude":31.161677,"longitude":-92.421551,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA45","iata":"","local":"LA45","name":"Landmark of Plaquemine Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Plaquemine","elevation_ft":19,"latitude":30.261346,"longitude":-91.246122,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA47","iata":"","local":"LA47","name":"Marathon Venice Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":-3,"latitude":29.28610038757324,"longitude":-89.36389923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA49","iata":"","local":"LA49","name":"Fourchon Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Leeville","elevation_ft":5,"latitude":29.10269927978516,"longitude":-90.1854019165039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA53","iata":"","local":"LA53","name":"Tensas Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Newellton","elevation_ft":96,"latitude":31.978588,"longitude":-91.264538,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA54","iata":"","local":"LA54","name":"Gilliam Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Gilliam","elevation_ft":194,"latitude":32.840474,"longitude":-93.839898,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA55","iata":"","local":"LA55","name":"Lake Charles Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":15,"latitude":30.205156,"longitude":-93.197735,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA58","iata":"","local":"","name":"Peter Creek Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Spearsville","elevation_ft":200,"latitude":32.979,"longitude":-92.593201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":59,"width_ft":59,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA59","iata":"","local":"LA59","name":"Thibodaux Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Thibodaux","elevation_ft":14,"latitude":29.7863006592,"longitude":-90.8140029907,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA57","iata":"","local":"LA57","name":"Kinder Ag Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Eunice","elevation_ft":45,"latitude":30.399099,"longitude":-92.408997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA50","iata":"","local":"LA50","name":"Detel Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hessmer","elevation_ft":63,"latitude":31.04783,"longitude":-92.136019,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA52","iata":"","local":"","name":"T & M Ag Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Dixie","elevation_ft":185,"latitude":32.698883,"longitude":-93.822847,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2900,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA62","iata":"","local":"LA62","name":"Grande View Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Creole","elevation_ft":2,"latitude":29.843799,"longitude":-93.004932,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA63","iata":"","local":"LA63","name":"Travis Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bastrop","elevation_ft":122,"latitude":32.97169876098633,"longitude":-91.83080291748048,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA64","iata":"","local":"LA64","name":"Bayou Boeuf Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Amelia","elevation_ft":2,"latitude":29.683500289916992,"longitude":-91.10009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":10000,"width_ft":500,"surface":"W"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H10","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H4","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H5","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H6","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H7","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H8","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H9","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA65","iata":"","local":"LA65","name":"Acadian Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Eunice","elevation_ft":56,"latitude":30.496716,"longitude":-92.38715,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA66","iata":"","local":"LA66","name":"Arco Morgan City Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Amelia","elevation_ft":0,"latitude":29.642200469970703,"longitude":-91.10199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA69","iata":"","local":"LA69","name":"Jenkins Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":50,"latitude":30.471599578857425,"longitude":-91.07959747314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1500,"width_ft":300,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA72","iata":"","local":"LA72","name":"Dauterive Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":14,"latitude":30.007400512695312,"longitude":-91.79399871826172,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA74","iata":"","local":"LA74","name":"CAGC Berwick Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Berwick","elevation_ft":13,"latitude":29.704634,"longitude":-91.22276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA71","iata":"","local":"LA71","name":"O'Brien Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Iowa","elevation_ft":26,"latitude":30.22439956665039,"longitude":-93.0001983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA68","iata":"","local":"LA68","name":"Zaunbrecher Strip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Iota","elevation_ft":26,"latitude":30.31579971313477,"longitude":-92.5198974609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2350,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA78","iata":"","local":"LA78","name":"Cagc Dock Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":6,"latitude":29.789400100708008,"longitude":-93.32240295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA80","iata":"","local":"LA80","name":"Popeyes Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":6,"latitude":29.968299865722656,"longitude":-90.18229675292967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA81","iata":"","local":"","name":"Cheneyville / Dyer Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Cheneyville","elevation_ft":63,"latitude":31.001191,"longitude":-92.280221,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA82","iata":"","local":"LA82","name":"VA Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":150,"latitude":31.353165,"longitude":-92.436937,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA84","iata":"","local":"LA84","name":"Our Lady of the Lake Ascension Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Gonzales","elevation_ft":10,"latitude":30.209653,"longitude":-90.930762,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA85","iata":"","local":"","name":"Odeco Cocodrie Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Cocodrie","elevation_ft":3,"latitude":29.249399,"longitude":-90.662003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA86","iata":"","local":"LA86","name":"Tenneco-Cocodrie Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cocodrie","elevation_ft":3,"latitude":29.235548,"longitude":-90.670103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA88","iata":"","local":"","name":"Hensgens Strip","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Crowley","elevation_ft":35,"latitude":30.344601,"longitude":-92.343201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA87","iata":"","local":"LA87","name":"Covington-Vincent Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Covington","elevation_ft":35,"latitude":30.509599685668945,"longitude":-90.15290069580078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA83","iata":"","local":"LA83","name":"McCutcheon Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Clinton","elevation_ft":272,"latitude":30.886467,"longitude":-91.03117,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA76","iata":"","local":"LA76","name":"Spillers Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Breaux Bridge","elevation_ft":16,"latitude":30.226554,"longitude":-91.898789,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA77","iata":"","local":"LA77","name":"Tebow Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bunkie","elevation_ft":60,"latitude":30.9632,"longitude":-92.174599,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA89","iata":"","local":"","name":"Southern Baptist Hospital Helipad","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":114,"latitude":29.937308,"longitude":-90.104795,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA92","iata":"","local":"LA92","name":"Union Dulac Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Dulac","elevation_ft":0,"latitude":29.37299919128418,"longitude":-90.72059631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA93","iata":"","local":"LA93","name":"Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":36,"latitude":29.916927,"longitude":-90.127931,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA94","iata":"","local":"","name":"Corkern Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Enon","elevation_ft":105,"latitude":30.722401,"longitude":-90.065399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA95","iata":"","local":"LA95","name":"Abbeville General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Abbeville","elevation_ft":13,"latitude":29.974361,"longitude":-92.108433,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA96","iata":"","local":"LA96","name":"Riverbend Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Saint Francisville","elevation_ft":115,"latitude":30.7609,"longitude":-91.3386,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA98","iata":"","local":"LA98","name":"West Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":0,"latitude":29.13190078735352,"longitude":-89.38809967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":5000,"width_ft":75,"surface":"W"},{"id":"H1","length_ft":48,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA99","iata":"","local":"LA99","name":"Ochsner Medical Center Baton Rouge Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":40,"latitude":30.441905,"longitude":-90.999402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LAKU","iata":"KFZ","local":"","name":"Kukës International Airport","category":"medium_airport","iso_country":"AL","iso_region":"AL-07","municipality":"Kukës","elevation_ft":1120,"latitude":42.035802,"longitude":20.415955,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7211,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA90","iata":"","local":"LA90","name":"Walsh Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Crowley","elevation_ft":26,"latitude":30.294333775838,"longitude":-92.426200866699,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2197,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LCEN","iata":"ECN","local":"","name":"Nicosia (Lefkoşa) Ercan International Airport","category":"medium_airport","iso_country":"CY","iso_region":"CY-02","municipality":"Tymbou (Kirklar)","elevation_ft":404,"latitude":35.152337,"longitude":33.506584,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9039,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LCPH","iata":"PFO","local":"","name":"Paphos International Airport","category":"medium_airport","iso_country":"CY","iso_region":"CY-06","municipality":"Paphos","elevation_ft":41,"latitude":34.717999,"longitude":32.485699,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8855,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LCRA","iata":"AKT","local":"","name":"RAF Akrotiri","category":"medium_airport","iso_country":"CY","iso_region":"CY-XX","municipality":"Akrotiri","elevation_ft":76,"latitude":34.590401,"longitude":32.9879,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9006,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LDSP","iata":"SPU","local":"","name":"Split Airport","category":"medium_airport","iso_country":"HR","iso_region":"HR-17","municipality":"Split","elevation_ft":79,"latitude":43.53889846801758,"longitude":16.29800033569336,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8366,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LEBZ","iata":"BJZ","local":"","name":"Badajoz Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-EX","municipality":"Badajoz","elevation_ft":609,"latitude":38.8913,"longitude":-6.82133,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9357,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFAC","iata":"CQF","local":"","name":"Calais-Dunkerque Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-HDF","municipality":"Marck","elevation_ft":12,"latitude":50.962101,"longitude":1.95476,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5036,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LERL","iata":"CQM","local":"","name":"Ciudad Real International Airport","category":"medium_airport","iso_country":"ES","iso_region":"ES-CM","municipality":"Ciudad Real","elevation_ft":0,"latitude":38.856479,"longitude":-3.969944,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":13123,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM20","iata":"","local":"","name":"Benedict Airpark","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Roswell","elevation_ft":3556,"latitude":33.251241,"longitude":-104.442027,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":705,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFHP","iata":"LPY","local":"","name":"Le Puy-Loudes Airfield","category":"medium_airport","iso_country":"FR","iso_region":"FR-ARA","municipality":"Le Puy/Loudes","elevation_ft":2731,"latitude":45.0807,"longitude":3.76289,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4570,"width_ft":98,"surface":"H"},{"id":"15R/33L","length_ft":3084,"width_ft":262,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFKB","iata":"BIA","local":"","name":"Bastia-Poretta Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-COR","municipality":"Bastia/Poretta","elevation_ft":26,"latitude":42.55270004272461,"longitude":9.48373031616211,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFKC","iata":"CLY","local":"","name":"Calvi-Sainte-Catherine Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-COR","municipality":"Calvi/Sainte-Catherine","elevation_ft":209,"latitude":42.5244444,"longitude":8.7930556,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7579,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFKJ","iata":"AJA","local":"","name":"Ajaccio-Napoléon Bonaparte Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-COR","municipality":"Ajaccio/Napoléon Bonaparte","elevation_ft":18,"latitude":41.92359924316406,"longitude":8.8029203414917,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7897,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFLW","iata":"AUR","local":"","name":"Aurillac Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-ARA","municipality":"Aurillac","elevation_ft":2096,"latitude":44.89139938354492,"longitude":2.4219400882720947,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5577,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL95","iata":"","local":"LL95","name":"Clarke Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Roselle","elevation_ft":805,"latitude":41.9863448836,"longitude":-88.1004622579,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFRT","iata":"SBK","local":"","name":"Saint-Brieuc-Armor Airport","category":"medium_airport","iso_country":"FR","iso_region":"FR-BRE","municipality":"Saint-Brieuc/Armor","elevation_ft":453,"latitude":48.5378,"longitude":-2.85444,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LFVP","iata":"FSP","local":"","name":"St Pierre Airport","category":"medium_airport","iso_country":"PM","iso_region":"PM-SP","municipality":"Saint-Pierre","elevation_ft":27,"latitude":46.76290130615234,"longitude":-56.173099517822266,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5900,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGAD","iata":"PYR","local":"","name":"Andravida Air Base","category":"medium_airport","iso_country":"GR","iso_region":"GR-G","municipality":"Andravida","elevation_ft":55,"latitude":37.9207,"longitude":21.292601,"has_tower":true,"has_beacon":false,"runways":[{"id":"16L/34R","length_ft":10299,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGBL","iata":"VOL","local":"","name":"Nea Anchialos National Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-E","municipality":"Nea Anchialos","elevation_ft":83,"latitude":39.219601,"longitude":22.7943,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9052,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGHI","iata":"JKH","local":"","name":"Chios Island National Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-K","municipality":"Chios Island","elevation_ft":15,"latitude":38.34320068359375,"longitude":26.140600204467773,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4957,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGIO","iata":"IOA","local":"","name":"Ioannina King Pyrrhus National Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-D","municipality":"Ioannina","elevation_ft":1558,"latitude":39.6964,"longitude":20.8225,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7881,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKC","iata":"KIT","local":"","name":"Kithira Airport","category":"small_airport","iso_country":"GR","iso_region":"GR-I","municipality":"Kithira Island","elevation_ft":1045,"latitude":36.2742996216,"longitude":23.0170001984,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4793,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKF","iata":"EFL","local":"","name":"Kefallinia Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-F","municipality":"Kefallinia Island","elevation_ft":59,"latitude":38.12009811401367,"longitude":20.5004997253418,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7992,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKL","iata":"KLX","local":"","name":"Kalamata Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-J","municipality":"Kalamata","elevation_ft":26,"latitude":37.06829833984375,"longitude":22.02549934387207,"has_tower":true,"has_beacon":false,"runways":[{"id":"17R/35L","length_ft":8868,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKO","iata":"KGS","local":"","name":"Kos Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-L","municipality":"Kos Island","elevation_ft":412,"latitude":36.79330062866211,"longitude":27.091699600219727,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7841,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKP","iata":"AOK","local":"","name":"Karpathos Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-L","municipality":"Karpathos Island","elevation_ft":66,"latitude":35.421398,"longitude":27.146,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7871,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKR","iata":"CFU","local":"","name":"Corfu Ioannis Kapodistrias International Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-F","municipality":"Kerkyra (Corfu)","elevation_ft":6,"latitude":39.601898,"longitude":19.911699,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7785,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGKV","iata":"KVA","local":"","name":"Kavala Alexander the Great International Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-A","municipality":"Kavala","elevation_ft":18,"latitude":40.9133,"longitude":24.6192,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGLM","iata":"LXS","local":"","name":"Limnos Airport","category":"small_airport","iso_country":"GR","iso_region":"GR-K","municipality":"Limnos Island","elevation_ft":14,"latitude":39.917098999,"longitude":25.236299514799995,"has_tower":true,"has_beacon":false,"runways":[{"id":"04R/22L","length_ft":9895,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGMK","iata":"JMK","local":"","name":"Mykonos Island National Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-L","municipality":"Mykonos","elevation_ft":405,"latitude":37.435101,"longitude":25.348101,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6240,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGMT","iata":"MJT","local":"","name":"Mytilene International Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-K","municipality":"Mytilene","elevation_ft":60,"latitude":39.057272,"longitude":26.598887,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7894,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGPZ","iata":"PVK","local":"","name":"Aktion National Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-D","municipality":"Aktio-Vonitsa","elevation_ft":11,"latitude":38.925499,"longitude":20.765301,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/23R","length_ft":9419,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGRP","iata":"RHO","local":"","name":"Diagoras Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-L","municipality":"Rhodes","elevation_ft":17,"latitude":36.405399,"longitude":28.086201,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGSA","iata":"CHQ","local":"","name":"Chania International Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-M","municipality":"Souda","elevation_ft":490,"latitude":35.5317,"longitude":24.1497,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":10984,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGSK","iata":"JSI","local":"","name":"Skiathos Island National Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-E","municipality":"Skiathos","elevation_ft":54,"latitude":39.177101,"longitude":23.5037,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5341,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGSM","iata":"SMI","local":"","name":"Samos Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-K","municipality":"Samos Island","elevation_ft":19,"latitude":37.689999,"longitude":26.911699,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6706,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGSR","iata":"JTR","local":"","name":"Santorini Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-L","municipality":"Santorini Island","elevation_ft":127,"latitude":36.399200439453125,"longitude":25.47929954528809,"has_tower":true,"has_beacon":false,"runways":[],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGST","iata":"JSH","local":"","name":"Sitia Airport","category":"medium_airport","iso_country":"GR","iso_region":"GR-M","municipality":"Crete Island","elevation_ft":376,"latitude":35.21609878540039,"longitude":26.101299285888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6804,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LGSY","iata":"SKU","local":"","name":"Skiros Airport","category":"small_airport","iso_country":"GR","iso_region":"GR-H","municipality":"Skiros Island","elevation_ft":44,"latitude":38.9676017761,"longitude":24.4871997833,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9847,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LHPA","iata":"","local":"","name":"Pápa Air Base","category":"small_airport","iso_country":"HU","iso_region":"HU-VE","municipality":"Pápa","elevation_ft":466,"latitude":47.363602,"longitude":17.500799,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7877,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LHSM","iata":"SOB","local":"","name":"Hévíz–Balaton Airport","category":"medium_airport","iso_country":"HU","iso_region":"HU-ZA","municipality":"Sármellék","elevation_ft":408,"latitude":46.686391,"longitude":17.159084,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIBC","iata":"CRV","local":"KR01","name":"Crotone Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-78","municipality":"Crotone","elevation_ft":522,"latitude":38.9972,"longitude":17.0802,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIBF","iata":"FOG","local":"FG05","name":"Foggia \"Gino Lisa\" Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-75","municipality":"Foggia","elevation_ft":265,"latitude":41.432899,"longitude":15.535,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5692,"width_ft":154,"surface":"-"}],"frequencies":[{"id":"","frequency_mhz":0}],"has_metar":true,"public":true},{"icao":"LIBP","iata":"PSR","local":"PE01","name":"Abruzzo Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-65","municipality":"Pescara","elevation_ft":48,"latitude":42.431702,"longitude":14.1811,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7936,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICA","iata":"SUF","local":"CZ02","name":"Lamezia Terme Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-78","municipality":"Lamezia Terme (CZ)","elevation_ft":39,"latitude":38.905399,"longitude":16.2423,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9892,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICB","iata":"CIY","local":"RG06","name":"Comiso Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-82","municipality":"Comiso","elevation_ft":623,"latitude":36.994601,"longitude":14.607182,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8327,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICD","iata":"LMP","local":"AG01","name":"Lampedusa Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-82","municipality":"Lampedusa","elevation_ft":70,"latitude":35.497898,"longitude":12.6181,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5889,"width_ft":14,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICG","iata":"PNL","local":"TP02","name":"Pantelleria Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-82","municipality":"Pantelleria (TP)","elevation_ft":628,"latitude":36.816502,"longitude":11.9689,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5692,"width_ft":148,"surface":"H"},{"id":"03/21","length_ft":3612,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICR","iata":"REG","local":"RC01","name":"Reggio Calabria Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-78","municipality":"Reggio Calabria","elevation_ft":96,"latitude":38.071201,"longitude":15.6516,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":6752,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS13","iata":"","local":"LS13","name":"Omni Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Carencro","elevation_ft":50,"latitude":30.347900390625,"longitude":-92.04119873046876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LICT","iata":"TPS","local":"TP01","name":"Vincenzo Florio Airport Trapani-Birgi","category":"medium_airport","iso_country":"IT","iso_region":"IT-82","municipality":"Trapani (TP)","elevation_ft":25,"latitude":37.9114,"longitude":12.488,"has_tower":true,"has_beacon":false,"runways":[{"id":"13R/31L","length_ft":8842,"width_ft":148,"surface":"H"},{"id":"13L/31R","length_ft":8461,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIEA","iata":"AHO","local":"SS02","name":"Alghero-Fertilia Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-88","municipality":"Alghero","elevation_ft":87,"latitude":40.632099,"longitude":8.29077,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIEO","iata":"OLB","local":"SS03","name":"Olbia Costa Smeralda Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-88","municipality":"Olbia (SS)","elevation_ft":37,"latitude":40.898701,"longitude":9.51763,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8990,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LIMP","iata":"PMF","local":"PR03","name":"Parma Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-45","municipality":"Parma (PR)","elevation_ft":161,"latitude":44.826351,"longitude":10.29705,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6969,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LIRS","iata":"GRS","local":"GR06","name":"Grosseto Air Base","category":"medium_airport","iso_country":"IT","iso_region":"IT-52","municipality":"Grosetto","elevation_ft":17,"latitude":42.759701,"longitude":11.0719,"has_tower":true,"has_beacon":false,"runways":[{"id":"03L/21R","length_ft":9823,"width_ft":148,"surface":"H"},{"id":"03R/21L","length_ft":7723,"width_ft":85,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LKTB","iata":"BRQ","local":"","name":"Brno-Tuřany Airport","category":"medium_airport","iso_country":"CZ","iso_region":"CZ-JM","municipality":"Brno","elevation_ft":778,"latitude":49.15129852294922,"longitude":16.694400787353516,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8694,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL01","iata":"","local":"LL01","name":"USF Family Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Monmouth","elevation_ft":760,"latitude":40.921607,"longitude":-90.659007,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL04","iata":"","local":"LL04","name":"Morris Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Morris","elevation_ft":512,"latitude":41.370119,"longitude":-88.42731,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL08","iata":"","local":"LL08","name":"Advanced Asphalt Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Princeton","elevation_ft":705,"latitude":41.385724,"longitude":-89.471599,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL07","iata":"","local":"LL07","name":"Herb Tautz Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Carroll","elevation_ft":853,"latitude":42.06258,"longitude":-89.968114,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL11","iata":"","local":"LL11","name":"Edward Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Naperville","elevation_ft":702,"latitude":41.76060104370117,"longitude":-88.15029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL14","iata":"","local":"LL14","name":"NW Lake Forest Hospital-Grayslake Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Grayslake","elevation_ft":823,"latitude":42.337678,"longitude":-88.009039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL24","iata":"","local":"LL24","name":"Sunset Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Saint George","elevation_ft":665,"latitude":41.205837,"longitude":-87.784882,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2640,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL25","iata":"","local":"LL25","name":"Community Hospital of Ottawa Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Ottawa","elevation_ft":480,"latitude":41.358195,"longitude":-88.824964,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL29","iata":"","local":"LL29","name":"Pana Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pana","elevation_ft":685,"latitude":39.37889862060547,"longitude":-89.08439636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL32","iata":"","local":"LL32","name":"C D Maulding Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Paxton","elevation_ft":800,"latitude":40.446556,"longitude":-88.065333,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2630,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL34","iata":"","local":"LL34","name":"Thorp Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Wapella","elevation_ft":750,"latitude":40.219343,"longitude":-88.921983,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL35","iata":"","local":"LL35","name":"Chicago Fire Department Air Sea Rescue Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":598,"latitude":41.724402,"longitude":-87.526394,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL27","iata":"","local":"LL27","name":"Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Macomb","elevation_ft":702,"latitude":40.454200744628906,"longitude":-90.62349700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2550,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL13","iata":"","local":"LL13","name":"Stoney Real Estate Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Enfield","elevation_ft":460,"latitude":38.04859924316406,"longitude":-88.30059814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2275,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL26","iata":"","local":"LL26","name":"Schaller Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Athens","elevation_ft":434,"latitude":38.275001525878906,"longitude":-89.87090301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2235,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL37","iata":"","local":"LL37","name":"OSF Saint Francis Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Peoria","elevation_ft":585,"latitude":40.7016983032,"longitude":-89.5932006836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"},{"id":"H2","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL39","iata":"","local":"LL39","name":"Curanda Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Morris","elevation_ft":620,"latitude":41.25749969482422,"longitude":-88.47779846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL42","iata":"","local":"LL42","name":"St James Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pontiac","elevation_ft":660,"latitude":40.87110137939453,"longitude":-88.68060302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL45","iata":"","local":"LL45","name":"Lindell Loveless Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Gillespie","elevation_ft":657,"latitude":39.18230056762695,"longitude":-89.8218002319336,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3650,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL46","iata":"","local":"LL46","name":"Read Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Piper City","elevation_ft":663,"latitude":40.83530044555664,"longitude":-88.15280151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2110,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL49","iata":"","local":"LL49","name":"Raymond Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Jerseyville","elevation_ft":658,"latitude":39.062198638916016,"longitude":-90.27220153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL51","iata":"","local":"LL51","name":"Riley's Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Plainfield","elevation_ft":663,"latitude":41.60419845581055,"longitude":-88.27369689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL59","iata":"","local":"LL59","name":"Palmahim Air Base","category":"small_airport","iso_country":"IL","iso_region":"IL-M","municipality":"Palmahim","elevation_ft":32,"latitude":31.8979,"longitude":34.6908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL55","iata":"","local":"LL55","name":"Gentry Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Polo","elevation_ft":865,"latitude":41.99089813232422,"longitude":-89.55979919433594,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL38","iata":"","local":"LL38","name":"Stutzke Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sterling","elevation_ft":740,"latitude":41.81054,"longitude":-89.838188,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL77","iata":"","local":"LL77","name":"Herrens Bess Hollow Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kampsville","elevation_ft":580,"latitude":39.305,"longitude":-90.699722,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1924,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL64","iata":"","local":"LL64","name":"Ralph E. Daniels Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Putnam","elevation_ft":457,"latitude":41.199501037597656,"longitude":-89.39450073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL78","iata":"","local":"LL78","name":"LZ Fairwinds Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":752,"latitude":42.312005,"longitude":-89.151853,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL83","iata":"","local":"LL83","name":"Javon Bea Hospital-Rockton Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":731,"latitude":42.29908,"longitude":-89.099818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL84","iata":"","local":"LL84","name":"St Anthony Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":860,"latitude":42.26950073242188,"longitude":-89.00340270996094,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL74","iata":"","local":"LL74","name":"Maple Hurst Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rochelle","elevation_ft":823,"latitude":42.008399963378906,"longitude":-89.04869842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL90","iata":"","local":"LL90","name":"McCurdy Strip","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Caledonia","elevation_ft":960,"latitude":42.446962,"longitude":-88.900472,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL91","iata":"","local":"LL91","name":"Hillman Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rock City","elevation_ft":870,"latitude":42.416005,"longitude":-89.453053,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LLHA","iata":"HFA","local":"","name":"Haifa International Airport","category":"medium_airport","iso_country":"IL","iso_region":"IL-HA","municipality":"Haifa","elevation_ft":28,"latitude":32.80939865112305,"longitude":35.04309844970703,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4324,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPAZ","iata":"SMA","local":"","name":"Santa Maria Airport","category":"medium_airport","iso_country":"PT","iso_region":"PT-20","municipality":"Vila do Porto","elevation_ft":308,"latitude":36.97140121459961,"longitude":-25.17060089111328,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10000,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LOXZ","iata":"","local":"","name":"Hinterstoisser Air Base","category":"medium_airport","iso_country":"AT","iso_region":"AT-6","municipality":"Zeltweg","elevation_ft":2264,"latitude":47.202801,"longitude":14.7442,"has_tower":true,"has_beacon":false,"runways":[{"id":"08R/26L","length_ft":9023,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LPFL","iata":"FLW","local":"","name":"Flores Airport","category":"medium_airport","iso_country":"PT","iso_region":"PT-20","municipality":"Santa Cruz das Flores","elevation_ft":112,"latitude":39.455299377441406,"longitude":-31.13139915466309,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4403,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPHR","iata":"HOR","local":"","name":"Horta Airport","category":"medium_airport","iso_country":"PT","iso_region":"PT-20","municipality":"Horta","elevation_ft":118,"latitude":38.519901275634766,"longitude":-28.715900421142575,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5233,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPLA","iata":"TER","local":"","name":"Lajes Airport","category":"medium_airport","iso_country":"PT","iso_region":"PT-20","municipality":"Praia da Vitória","elevation_ft":180,"latitude":38.761799,"longitude":-27.090799,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":10860,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LPPD","iata":"PDL","local":"","name":"João Paulo II Airport","category":"large_airport","iso_country":"PT","iso_region":"PT-20","municipality":"Ponta Delgada","elevation_ft":259,"latitude":37.7411994934,"longitude":-25.6979007721,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7621,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LQBK","iata":"BNX","local":"","name":"Banja Luka International Airport","category":"medium_airport","iso_country":"BA","iso_region":"BA-SRP","municipality":"Banja Luka","elevation_ft":400,"latitude":44.94139862060547,"longitude":17.297500610351562,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LQMO","iata":"OMO","local":"","name":"Mostar International Airport","category":"medium_airport","iso_country":"BA","iso_region":"BA-BIH","municipality":"Mostar","elevation_ft":156,"latitude":43.282901763916016,"longitude":17.84589958190918,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":7874,"width_ft":161,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS01","iata":"","local":"LS01","name":"Shell Pipe Line Gibson Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Gibson","elevation_ft":5,"latitude":29.62859,"longitude":-90.93357,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H3","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H4","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H5","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS02","iata":"","local":"LS02","name":"North Oaks Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Hammond","elevation_ft":38,"latitude":30.465981,"longitude":-90.462588,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS03","iata":"","local":"","name":"Stephen's Flying Service Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Winnsboro","elevation_ft":89,"latitude":32.293301,"longitude":-91.5933,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS06","iata":"","local":"LS06","name":"Pointe Coupee General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Roads","elevation_ft":37,"latitude":30.68320083618164,"longitude":-91.46119689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS07","iata":"","local":"LS07","name":"Lsu Health Science Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":336,"latitude":32.48059844970703,"longitude":-93.76219940185548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS08","iata":"","local":"LNQ","name":"Boothville Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Buras","elevation_ft":3,"latitude":29.353982,"longitude":-89.437355,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3491,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS09","iata":"","local":"","name":"Sylvester's Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Ville Platte","elevation_ft":70,"latitude":30.695801,"longitude":-92.317596,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS11","iata":"","local":"","name":"Liddieville Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Winnsboro","elevation_ft":73,"latitude":32.1535,"longitude":-91.843696,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS12","iata":"","local":"LS12","name":"Bastian Bay Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Buras","elevation_ft":10,"latitude":29.31410026550293,"longitude":-89.61419677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS10","iata":"","local":"LS10","name":"Reynolds Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Westlake","elevation_ft":20,"latitude":30.2721004486084,"longitude":-93.31179809570312,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS15","iata":"","local":"","name":"Diamond Shamrock Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Jeanerette","elevation_ft":20,"latitude":29.891062,"longitude":-91.6802,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS16","iata":"","local":"LS16","name":"Circle G Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Jigger","elevation_ft":75,"latitude":32.010896,"longitude":-91.756761,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1320,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS17","iata":"","local":"LS17","name":"Jack Kent Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Slidell","elevation_ft":0,"latitude":30.06599998474121,"longitude":-89.618896484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS19","iata":"","local":"LS19","name":"Houma Terrebonne Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Chauvin","elevation_ft":3,"latitude":29.2504997253418,"longitude":-90.66230010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS20","iata":"","local":"","name":"Riverview Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Gonzales","elevation_ft":10,"latitude":30.208023,"longitude":-90.9312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS21","iata":"","local":"","name":"Southland Strip Ultralightport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Houma","elevation_ft":10,"latitude":29.6705,"longitude":-90.770597,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS22","iata":"","local":"LS22","name":"St Helena Parish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Greensburg","elevation_ft":180,"latitude":30.831807,"longitude":-90.666556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS23","iata":"","local":"LS23","name":"Womens's and Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":30,"latitude":30.153398,"longitude":-92.04629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS24","iata":"","local":"LS24","name":"Touro Infirmary Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":50,"latitude":29.926818,"longitude":-90.093226,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS26","iata":"","local":"","name":"Caillou Island Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Cocodrie","elevation_ft":0,"latitude":29.120001,"longitude":-90.493797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2503,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS27","iata":"","local":"LS27","name":"Rapides Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":125,"latitude":31.3158,"longitude":-92.44987,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS28","iata":"","local":"LS28","name":"Barataria Bay Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Ecaille","elevation_ft":3,"latitude":29.37859916687012,"longitude":-89.85449981689453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS29","iata":"","local":"","name":"South 40 Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":16,"latitude":30.123501,"longitude":-93.251801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":57,"width_ft":57,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS30","iata":"","local":"LS30","name":"University Health Conway Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Monroe","elevation_ft":79,"latitude":32.44918,"longitude":-92.107537,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS31","iata":"","local":"LS31","name":"Fresh Water Bayou Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Intercoastal City","elevation_ft":4,"latitude":29.60149955749512,"longitude":-92.26010131835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS32","iata":"","local":"","name":"St Jude Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Kenner","elevation_ft":24,"latitude":30.025491,"longitude":-90.270587,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS37","iata":"","local":"LS37","name":"West Calcasieu Cameron Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Sulphur","elevation_ft":11,"latitude":30.229900360107425,"longitude":-93.3687973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS42","iata":"","local":"LS42","name":"Acadia General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Crowley","elevation_ft":24,"latitude":30.226565,"longitude":-92.363985,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS39","iata":"","local":"LS39","name":"Country Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Watson","elevation_ft":49,"latitude":30.589399337768555,"longitude":-90.9845962524414,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS36","iata":"","local":"LS36","name":"Light Plane Flyers Airfield","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Iowa","elevation_ft":25,"latitude":30.250200271606445,"longitude":-92.97200012207033,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1335,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS38","iata":"","local":"LS38","name":"Richard's Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":15,"latitude":30.01309967041016,"longitude":-91.86920166015624,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS40","iata":"","local":"LS40","name":"St Charles Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Ama","elevation_ft":13,"latitude":29.95190048217773,"longitude":-90.28610229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3900,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS45","iata":"","local":"LS82","name":"Entergy Waterford 3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Killona","elevation_ft":15,"latitude":29.992084,"longitude":-90.467768,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS46","iata":"","local":"","name":"Blount Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Monterey","elevation_ft":50,"latitude":31.4585,"longitude":-91.822899,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS47","iata":"","local":"LS47","name":"Marine Shale Processors Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Morgan City","elevation_ft":20,"latitude":29.66270065307617,"longitude":-91.12840270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS48","iata":"","local":"LS48","name":"Assumption Comunity Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Napoleonville","elevation_ft":15,"latitude":29.9570999146,"longitude":-91.0336990356,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS50","iata":"","local":"","name":"Squires Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Rayville","elevation_ft":80,"latitude":32.429901,"longitude":-91.724297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":93,"width_ft":93,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS51","iata":"","local":"LS51","name":"Northshore Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Slidell","elevation_ft":14,"latitude":30.28689956665039,"longitude":-89.7406005859375,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS52","iata":"","local":"LS52","name":"Era Helicopters Venice Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":0,"latitude":29.287399291992188,"longitude":-89.3677978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS53","iata":"","local":"LS53","name":"Ville Platte Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Ville Platte","elevation_ft":75,"latitude":30.681900024414062,"longitude":-92.26599884033205,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS55","iata":"","local":"LS55","name":"William Olefins LLC","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Geismar","elevation_ft":13,"latitude":30.231202,"longitude":-91.051603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS56","iata":"","local":"LS56","name":"Medicant Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Grand Isle","elevation_ft":15,"latitude":29.336599349975582,"longitude":-89.98419952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS57","iata":"","local":"LS57","name":"River Parish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"LaPlace","elevation_ft":10,"latitude":30.072662,"longitude":-90.513879,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":27,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS58","iata":"","local":"LS58","name":"Christus Ochsner Lake Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":16,"latitude":30.180329,"longitude":-93.250987,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS63","iata":"","local":"","name":"West Delta Receiving Station Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":2,"latitude":29.219508,"longitude":-89.396218,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS64","iata":"","local":"LS64","name":"District 8 Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Gibson","elevation_ft":0,"latitude":29.688499450683597,"longitude":-90.98729705810548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS66","iata":"","local":"LS66","name":"Petro Com Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Harahan","elevation_ft":10,"latitude":29.970199584960938,"longitude":-90.20339965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS67","iata":"","local":"LS67","name":"Avoyelles Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Marksville","elevation_ft":75,"latitude":31.14379,"longitude":-92.062029,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS71","iata":"","local":"LS71","name":"Raceland Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Raceland","elevation_ft":10,"latitude":29.72800064086914,"longitude":-90.59429931640624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS73","iata":"","local":"LS73","name":"Amax Metals Recovery Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Braithwaite","elevation_ft":7,"latitude":29.863042,"longitude":-89.968066,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS74","iata":"","local":"LS74","name":"Utec Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":10,"latitude":30.226900100708008,"longitude":-93.19989776611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS75","iata":"","local":"LS75","name":"Cameron Shore Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":4,"latitude":29.819228,"longitude":-93.338696,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS78","iata":"","local":"LS78","name":"Willis-Knighton Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":253,"latitude":32.487004,"longitude":-93.778321,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS77","iata":"","local":"LS77","name":"Magnolia Airpark","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Slaughter","elevation_ft":140,"latitude":30.727067,"longitude":-91.148736,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS68","iata":"","local":"LS68","name":"Ken Guidry #1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Abbeville","elevation_ft":10,"latitude":29.9347,"longitude":-92.213501,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS79","iata":"","local":"LS79","name":"Hardtner Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Urania","elevation_ft":90,"latitude":31.861299514770508,"longitude":-92.2760009765625,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS81","iata":"","local":"LS81","name":"Lake Charles Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":15,"latitude":30.11440086364746,"longitude":-93.21209716796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS82","iata":"","local":"LS82","name":"Air Logistics (Lake Charles) Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":15,"latitude":30.13719940185547,"longitude":-93.18289947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS83","iata":"","local":"LS83","name":"Delta Dusters Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Newellton","elevation_ft":77,"latitude":32.061737,"longitude":-91.251454,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2750,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS84","iata":"","local":"LS84","name":"Compressor Station 524 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Leeville","elevation_ft":3,"latitude":29.216100692749,"longitude":-90.215896606445,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2015,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS85","iata":"","local":"LS85","name":"East Jefferson General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Metairie","elevation_ft":37,"latitude":30.012774,"longitude":-90.181945,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS87","iata":"","local":"","name":"Compressor Station 527 Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Happy Jack","elevation_ft":3,"latitude":29.5149,"longitude":-89.730598,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS90","iata":"","local":"","name":"Caddo Detention Center Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Keithville","elevation_ft":294,"latitude":32.2601,"longitude":-93.937912,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS94","iata":"","local":"LS94","name":"Alon USA Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Krotz Springs","elevation_ft":36,"latitude":30.532936,"longitude":-91.750232,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS91","iata":"","local":"LS91","name":"Tim Bullard Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Arnaudville","elevation_ft":32,"latitude":30.417548,"longitude":-91.974739,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS88","iata":"","local":"LS88","name":"Kreswell Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Eunice","elevation_ft":42,"latitude":30.449677,"longitude":-92.326258,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2029,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS95","iata":"","local":"LS95","name":"Mackie Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Glenmora","elevation_ft":135,"latitude":30.979400634765625,"longitude":-92.58709716796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS96","iata":"","local":"LS96","name":"Ochsner Medical Institutions Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Jefferson","elevation_ft":7,"latitude":29.96765,"longitude":-90.14298,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS97","iata":"","local":"LS97","name":"Myu Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Luling","elevation_ft":12,"latitude":29.92959976196289,"longitude":-90.35399627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LS98","iata":"","local":"LS98","name":"Sabine Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Many","elevation_ft":250,"latitude":31.560699462890625,"longitude":-93.47209930419922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAG","iata":"UAB","local":"","name":"İncirlik Air Base","category":"medium_airport","iso_country":"TR","iso_region":"TR-01","municipality":"Sarıçam","elevation_ft":238,"latitude":37.002102,"longitude":35.4259,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10000,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAH","iata":"AFY","local":"","name":"Afyon Air Base","category":"medium_airport","iso_country":"TR","iso_region":"TR-03","municipality":"Afyonkarahisar","elevation_ft":3310,"latitude":38.726398,"longitude":30.601101,"has_tower":true,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":12005,"width_ft":148,"surface":"H"},{"id":"13R/31L","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAJ","iata":"GZT","local":"","name":"Gaziantep International Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-27","municipality":"Gaziantep","elevation_ft":2315,"latitude":36.947201,"longitude":37.478699,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAL","iata":"KFS","local":"","name":"Kastamonu Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-37","municipality":"Kastamonu","elevation_ft":3520,"latitude":41.314201,"longitude":33.795799,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7382,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAN","iata":"KYA","local":"","name":"Konya Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-42","municipality":"Konya","elevation_ft":3392,"latitude":37.979,"longitude":32.561901,"has_tower":true,"has_beacon":false,"runways":[{"id":"01R/19L","length_ft":10984,"width_ft":148,"surface":"H"},{"id":"01L/19R","length_ft":10984,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAR","iata":"VAS","local":"","name":"Sivas Nuri Demirağ Airport","category":"small_airport","iso_country":"TR","iso_region":"TR-58","municipality":"Sivas","elevation_ft":5239,"latitude":39.813801,"longitude":36.9035,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":12503,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAS","iata":"ONQ","local":"","name":"Zonguldak Çaycuma Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-67","municipality":"Zonguldak","elevation_ft":44,"latitude":41.506401,"longitude":32.0886,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6991,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAT","iata":"MLX","local":"","name":"Malatya Erhaç Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-44","municipality":"Malatya","elevation_ft":2828,"latitude":38.4352989197,"longitude":38.0909996033,"has_tower":true,"has_beacon":false,"runways":[{"id":"03L/21R","length_ft":10991,"width_ft":148,"surface":"H"},{"id":"03R/21L","length_ft":10991,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAU","iata":"ASR","local":"","name":"Kayseri Erkilet Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-38","municipality":"Kayseri","elevation_ft":3463,"latitude":38.770401001,"longitude":35.4953994751,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAW","iata":"TJK","local":"","name":"Tokat Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-60","municipality":"Tokat","elevation_ft":1831,"latitude":40.307430267333984,"longitude":36.367408752441406,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAY","iata":"DNZ","local":"","name":"Çardak Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-20","municipality":"Denizli","elevation_ft":2795,"latitude":37.7855987549,"longitude":29.7012996674,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTAZ","iata":"NAV","local":"","name":"Nevşehir Kapadokya Airport","category":"small_airport","iso_country":"TR","iso_region":"TR-50","municipality":"Nevşehir","elevation_ft":3100,"latitude":38.7719,"longitude":34.5345,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBD","iata":"CII","local":"","name":"Aydın Çıldır Airport","category":"small_airport","iso_country":"TR","iso_region":"TR-09","municipality":"Aydın","elevation_ft":102,"latitude":37.815389,"longitude":27.887566,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4708,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBF","iata":"BZI","local":"","name":"Balıkesir Merkez Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-10","municipality":"UNKNOWN","elevation_ft":340,"latitude":39.61930084228516,"longitude":27.926000595092773,"has_tower":true,"has_beacon":false,"runways":[{"id":"18R/36L","length_ft":9816,"width_ft":75,"surface":"H"},{"id":"18L/36R","length_ft":9810,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBG","iata":"BDM","local":"","name":"Bandırma Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-10","municipality":"Bandırma","elevation_ft":170,"latitude":40.318001,"longitude":27.977699,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9875,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBO","iata":"USQ","local":"","name":"Uşak Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-64","municipality":"Uşak","elevation_ft":2897,"latitude":38.681499,"longitude":29.471701,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8399,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBT","iata":"","local":"","name":"Akhisar Airport / Akhisar Air Base","category":"medium_airport","iso_country":"TR","iso_region":"TR-45","municipality":"Akhisar","elevation_ft":263,"latitude":38.808899,"longitude":27.8339,"has_tower":true,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":9813,"width_ft":148,"surface":"H"},{"id":"13R/31L","length_ft":9813,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBY","iata":"AOE","local":"","name":"Anadolu Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-26","municipality":"Eskişehir","elevation_ft":2588,"latitude":39.809898,"longitude":30.5194,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9843,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTBZ","iata":"KZR","local":"","name":"Zafer Airport","category":"small_airport","iso_country":"TR","iso_region":"TR-43","municipality":"Altıntaş","elevation_ft":3327,"latitude":39.113079,"longitude":30.128111,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCA","iata":"EZS","local":"","name":"Elazığ Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-23","municipality":"Elazığ","elevation_ft":2927,"latitude":38.597974,"longitude":39.28348,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/25R","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCC","iata":"DIY","local":"","name":"Diyarbakır Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-21","municipality":"Diyarbakır","elevation_ft":2251,"latitude":37.893902,"longitude":40.201,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":11644,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCD","iata":"ERC","local":"","name":"Erzincan Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-24","municipality":"Erzincan","elevation_ft":3783,"latitude":39.7102012634,"longitude":39.5270004272,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCE","iata":"ERZ","local":"","name":"Erzurum International Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-25","municipality":"Erzurum","elevation_ft":5763,"latitude":39.956501,"longitude":41.1702,"has_tower":true,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":12500,"width_ft":148,"surface":"H"},{"id":"08R/26L","length_ft":12500,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCI","iata":"VAN","local":"","name":"Van Ferit Melen Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-65","municipality":"Van","elevation_ft":5480,"latitude":38.46820068359375,"longitude":43.332298278808594,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9022,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCJ","iata":"BAL","local":"","name":"Batman Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-72","municipality":"Batman","elevation_ft":1822,"latitude":37.9290008545,"longitude":41.1166000366,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":10000,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCK","iata":"MSR","local":"","name":"Muş Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-49","municipality":"Muş","elevation_ft":4157,"latitude":38.74779891967773,"longitude":41.66120147705078,"has_tower":true,"has_beacon":false,"runways":[{"id":"11R/29L","length_ft":11647,"width_ft":75,"surface":"H"},{"id":"11L/29R","length_ft":11647,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCL","iata":"SXZ","local":"","name":"Siirt Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-56","municipality":"Siirt","elevation_ft":2001,"latitude":37.97890090942383,"longitude":41.84040069580078,"has_tower":true,"has_beacon":false,"runways":[{"id":"=06/24","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCM","iata":"NOP","local":"","name":"Sinop Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-57","municipality":"Sinop","elevation_ft":20,"latitude":42.018313,"longitude":35.071774,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCN","iata":"KCM","local":"","name":"Kahramanmaraş Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-46","municipality":"Kahramanmaraş","elevation_ft":1723,"latitude":37.5388259888,"longitude":36.9535217285,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCO","iata":"AJI","local":"","name":"Ağrı Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-04","municipality":"Ağrı","elevation_ft":5462,"latitude":39.655642,"longitude":43.025742,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCS","iata":"GNY","local":"","name":"Şanlıurfa GAP Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-63","municipality":"Şanlıurfa","elevation_ft":2708,"latitude":37.445663,"longitude":38.895592,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":13123,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCV","iata":"NKT","local":"","name":"Şırnak Şerafettin Elçi Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-73","municipality":"Şırnak","elevation_ft":2038,"latitude":37.3647,"longitude":42.0582,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTCW","iata":"YKO","local":"","name":"Hakkari Yüksekova Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-30","municipality":"Hakkari","elevation_ft":6400,"latitude":37.5497,"longitude":44.2381,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTDA","iata":"HTY","local":"","name":"Hatay Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-31","municipality":"Antakya","elevation_ft":269,"latitude":36.362778,"longitude":36.282223,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTFD","iata":"EDO","local":"","name":"Balıkesir Koca Seyit Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-10","municipality":"Edremit","elevation_ft":50,"latitude":39.5546,"longitude":27.0138,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LTFG","iata":"GZP","local":"","name":"Gazipaşa-Alanya Airport","category":"medium_airport","iso_country":"TR","iso_region":"TR-07","municipality":"Gazipaşa","elevation_ft":92,"latitude":36.299217,"longitude":32.300598,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7710,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LUCH","iata":"","local":"","name":"Cahul International Airport","category":"medium_airport","iso_country":"MD","iso_region":"MD-CH","municipality":"Cahul","elevation_ft":652,"latitude":45.8438,"longitude":28.2637,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5587,"width_ft":115,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LWOH","iata":"OHD","local":"","name":"Ohrid St. Paul the Apostle Airport","category":"medium_airport","iso_country":"MK","iso_region":"MK-003","municipality":"Ohrid","elevation_ft":2313,"latitude":41.18,"longitude":20.7423,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8360,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LYTV","iata":"TIV","local":"","name":"Tivat Airport","category":"medium_airport","iso_country":"ME","iso_region":"ME-19","municipality":"Tivat","elevation_ft":20,"latitude":42.40470123291016,"longitude":18.72330093383789,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LZPP","iata":"PZY","local":"","name":"Piešťany Airport","category":"medium_airport","iso_country":"SK","iso_region":"SK-TA","municipality":"Piešťany","elevation_ft":545,"latitude":48.62519836425781,"longitude":17.828399658203125,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LZSL","iata":"SLD","local":"","name":"Sliač Airport","category":"medium_airport","iso_country":"SK","iso_region":"SK-BC","municipality":"Sliač","elevation_ft":1043,"latitude":48.63779830932617,"longitude":19.13409996032715,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":7600,"width_ft":190,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LZZI","iata":"ILZ","local":"","name":"Žilina-Dolný Hričov Airport","category":"medium_airport","iso_country":"SK","iso_region":"SK-ZI","municipality":"Dolný Hričov","elevation_ft":1020,"latitude":49.233292,"longitude":18.613386,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3773,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA01","iata":"","local":"MA01","name":"Gillette Stadium Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Foxborough","elevation_ft":271,"latitude":42.088661,"longitude":-71.263289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA02","iata":"","local":"MA02","name":"MSP GHQ Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Framingham","elevation_ft":203,"latitude":42.296594,"longitude":-71.415831,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA09","iata":"","local":"MA09","name":"Mojarr Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Dudley","elevation_ft":458,"latitude":42.050324,"longitude":-71.890213,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA10","iata":"","local":"MA10","name":"Chambers Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Somerville","elevation_ft":60,"latitude":42.378163,"longitude":-71.088552,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA11","iata":"","local":"MA11","name":"Dog Fish Bar Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Aquinnah","elevation_ft":8,"latitude":41.354222,"longitude":-70.804756,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA12","iata":"","local":"MA12","name":"Marston Mills Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Marstons Mills","elevation_ft":44,"latitude":41.66899871826172,"longitude":-70.4175033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":3600,"width_ft":200,"surface":"W"},{"id":"17W/35W","length_ft":1500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA13","iata":"","local":"MA13","name":"Nugent Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Gloucester","elevation_ft":100,"latitude":42.62789916992188,"longitude":-70.63780212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA14","iata":"","local":"MA14","name":"Wheeler's Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Gloucester","elevation_ft":35,"latitude":42.6393013,"longitude":-70.68029785,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA15","iata":"","local":"MA15","name":"Pond Road Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Gloucester","elevation_ft":50,"latitude":42.62839889526367,"longitude":-70.64340209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA17","iata":"","local":"","name":"Avco/Lowell Heliport","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Lowell","elevation_ft":131,"latitude":42.615398,"longitude":-71.3209,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":3000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA20","iata":"","local":"MA20","name":"Beverly Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Beverly","elevation_ft":84,"latitude":42.566200256347656,"longitude":-70.87750244140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA21","iata":"","local":"MA21","name":"Baybank Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Burlington","elevation_ft":150,"latitude":42.481201171875,"longitude":-71.20760345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA22","iata":"","local":"MA22","name":"The Beat Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":55,"latitude":42.315128,"longitude":-71.049264,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA23","iata":"","local":"MA23","name":"North Bay Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Osterville","elevation_ft":10,"latitude":41.62730026245117,"longitude":-70.39969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA25","iata":"","local":"MA25","name":"Long Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Brewster","elevation_ft":31,"latitude":41.73210144042969,"longitude":-70.06109619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5000,"width_ft":1000,"surface":"W"},{"id":"09W/27W","length_ft":6000,"width_ft":1000,"surface":"W"},{"id":"12W/30W","length_ft":6000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA27","iata":"","local":"MA27","name":"Goddard Hosp Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Brockton","elevation_ft":200,"latitude":42.1003990173,"longitude":-71.0820007324,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI33","iata":"","local":"","name":"Adair Airstrip","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Richmond","elevation_ft":631,"latitude":42.792301,"longitude":-82.639397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA29","iata":"","local":"MA29","name":"Camp Edwards Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Bourne","elevation_ft":135,"latitude":41.67150115966797,"longitude":-70.5647964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":117,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA31","iata":"","local":"MA31","name":"Charlton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Fall River","elevation_ft":240,"latitude":41.709775,"longitude":-71.14683,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA32","iata":"","local":"MA32","name":"Atlantic Trade Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Worcester","elevation_ft":570,"latitude":42.26119995117188,"longitude":-71.76950073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA33","iata":"","local":"MA33","name":"Sagamore Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Ipswich","elevation_ft":200,"latitude":42.64189910888672,"longitude":-70.82679748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA34","iata":"","local":"MA34","name":"Moore Dogs Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Carver","elevation_ft":110,"latitude":41.92539978027344,"longitude":-70.80339813232422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA35","iata":"","local":"MA35","name":"Hat Factory Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Amesbury","elevation_ft":10,"latitude":42.83509826660156,"longitude":-70.93109893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA37","iata":"","local":"MA37","name":"Falmouth Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Falmouth","elevation_ft":105,"latitude":41.56510162353516,"longitude":-70.62449645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA38","iata":"","local":"MA38","name":"Fitchburg Paper Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Fitchburg","elevation_ft":525,"latitude":42.57979965209961,"longitude":-71.82869720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":24,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA39","iata":"","local":"MA39","name":"Brigham & Women's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":200,"latitude":42.336382,"longitude":-71.106809,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA40","iata":"","local":"MA40","name":"Diesel Dogs Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Gardner","elevation_ft":325,"latitude":42.543399810791016,"longitude":-71.96839904785156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":3000,"width_ft":150,"surface":"W"},{"id":"11W/29W","length_ft":4000,"width_ft":150,"surface":"W"},{"id":"15W/33W","length_ft":4000,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA41","iata":"","local":"MA41","name":"Princess Lane Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Hopkinton","elevation_ft":135,"latitude":42.22439956665039,"longitude":-71.55970001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA36","iata":"","local":"MA36","name":"Snow Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Ipswich","elevation_ft":61,"latitude":42.666500091552734,"longitude":-70.85299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA42","iata":"","local":"MA42","name":"US Coast Guard Gloucester Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Gloucester","elevation_ft":10,"latitude":42.6101,"longitude":-70.660004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA45","iata":"","local":"MA45","name":"Simmons Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Hanover","elevation_ft":90,"latitude":42.125143,"longitude":-70.843835,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA46","iata":"","local":"MA46","name":"Army National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Milford","elevation_ft":300,"latitude":42.13069915771485,"longitude":-71.48419952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA47","iata":"","local":"MA47","name":"Chicopee Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Chicopee","elevation_ft":245,"latitude":42.18259811401367,"longitude":-72.5615005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA48","iata":"","local":"MA48","name":"Raytheon Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Lexington","elevation_ft":130,"latitude":42.430650833333,"longitude":-71.252556388889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA49","iata":"","local":"MA49","name":"Metro-Swift Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Peabody","elevation_ft":40,"latitude":42.54119873046875,"longitude":-70.92759704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA50","iata":"","local":"MA50","name":"Compaq Marlboro Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Marlboro","elevation_ft":430,"latitude":42.32619857788086,"longitude":-71.57620239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"},{"id":"H2","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA51","iata":"","local":"MA51","name":"Richie's Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"North Dartmouth","elevation_ft":104,"latitude":41.63819885253906,"longitude":-71.03890228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA54","iata":"","local":"MA54","name":"B-Town Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Belchertown","elevation_ft":320,"latitude":42.30009841918945,"longitude":-72.42620086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA53","iata":"UWA","local":"MA53","name":"Ware Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Ware","elevation_ft":483,"latitude":42.282001495361,"longitude":-72.214797973633,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2030,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA52","iata":"","local":"MA52","name":"Sids Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Maynard","elevation_ft":220,"latitude":42.43817138671875,"longitude":-71.47024536132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA57","iata":"","local":"MA57","name":"Us Property & Fiscal Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Natick","elevation_ft":200,"latitude":42.28340148925781,"longitude":-71.36620330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA60","iata":"","local":"MA60","name":"St Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Middleborough","elevation_ft":140,"latitude":41.89400100708008,"longitude":-70.91500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA62","iata":"","local":"","name":"Sampson Pond Heliport","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Carver","elevation_ft":167,"latitude":41.860401,"longitude":-70.751701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA65","iata":"","local":"MA65","name":"Island Air Service Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Rochester","elevation_ft":53,"latitude":41.77180099487305,"longitude":-70.87310028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4000,"width_ft":500,"surface":"W"},{"id":"N/S","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA66","iata":"","local":"","name":"Wolomolopoag STOLport","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Sharon","elevation_ft":276,"latitude":42.100701,"longitude":-71.207802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA67","iata":"","local":"MA67","name":"Tgp Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Agawam","elevation_ft":120,"latitude":42.03450012207031,"longitude":-72.63200378417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA68","iata":"","local":"MA68","name":"Massachusetts Mutual Life Insurance Co Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Springfield","elevation_ft":206,"latitude":42.116209,"longitude":-72.542545,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA69","iata":"","local":"MA69","name":"New England Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Stoneham","elevation_ft":219,"latitude":42.45149993896485,"longitude":-71.08699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA71","iata":"","local":"MA71","name":"Davna Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Millis","elevation_ft":145,"latitude":42.15510177612305,"longitude":-71.38619995117188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA74","iata":"","local":"MA74","name":"Larson's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Tyngsboro","elevation_ft":90,"latitude":42.69150161743164,"longitude":-71.41809844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":2500,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA55","iata":"","local":"MA55","name":"Muskeget Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Muskeget Island","elevation_ft":90,"latitude":41.33480072021485,"longitude":-70.29949951171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1100,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA76","iata":"","local":"MA76","name":"Waltham Weston Hospital & Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Waltham","elevation_ft":75,"latitude":42.36759948730469,"longitude":-71.24810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA78","iata":"","local":"MA78","name":"Russell Mill Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Plymouth","elevation_ft":55,"latitude":41.91790008544922,"longitude":-70.62779998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":2800,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA79","iata":"","local":"MA79","name":"Digital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Westfield","elevation_ft":260,"latitude":42.175899505615234,"longitude":-72.72480010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA81","iata":"","local":"MA81","name":"Digital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Westminster","elevation_ft":1100,"latitude":42.55509948730469,"longitude":-71.92559814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA83","iata":"","local":"MA83","name":"Hubbard Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Webster","elevation_ft":510,"latitude":42.0275993347168,"longitude":-71.85030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA87","iata":"","local":"","name":"Horseneck Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Westport","elevation_ft":0,"latitude":41.509801,"longitude":-71.038101,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":2500,"width_ft":60,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA92","iata":"","local":"MA92","name":"Prospect Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Waltham","elevation_ft":270,"latitude":42.39789962768555,"longitude":-71.25779724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA93","iata":"","local":"MA93","name":"Bay Bank Ii Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Burlington","elevation_ft":148,"latitude":42.481201171875,"longitude":-71.20950317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA89","iata":"","local":"MA89","name":"B&B Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"New Braintree","elevation_ft":980,"latitude":42.346099853515625,"longitude":-72.10389709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA77","iata":"","local":"MA77","name":"Blueberry Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Washington","elevation_ft":2000,"latitude":42.375099182128906,"longitude":-73.14759826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA88","iata":"","local":"MA88","name":"Albert Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Worthington","elevation_ft":1425,"latitude":42.390098571777344,"longitude":-72.93090057373047,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA94","iata":"","local":"MA94","name":"Parker Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Worcester","elevation_ft":520,"latitude":42.27539825439453,"longitude":-71.79869842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA95","iata":"","local":"MA95","name":"Bear Hole Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"West Springfield","elevation_ft":235,"latitude":42.12649917602539,"longitude":-72.66950225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA96","iata":"","local":"","name":"Rent-A-Tool Heliport","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Revere","elevation_ft":0,"latitude":42.427898,"longitude":-70.984497,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA98","iata":"","local":"MA98","name":"Anna Jaques Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Newburyport","elevation_ft":100,"latitude":42.81449890136719,"longitude":-70.89089965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MA99","iata":"","local":"MA99","name":"Princess House Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Taunton","elevation_ft":12,"latitude":41.86119842529297,"longitude":-71.10780334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MBGT","iata":"GDT","local":"","name":"JAGS McCartney International Airport","category":"medium_airport","iso_country":"TC","iso_region":"TC-GT","municipality":"Cockburn Town","elevation_ft":13,"latitude":21.4445,"longitude":-71.142303,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6368,"width_ft":148,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"MD00","iata":"","local":"MD00","name":"Fair's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Pocomoke City","elevation_ft":22,"latitude":38.046199798583984,"longitude":-75.55329895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1875,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MBNC","iata":"NCA","local":"","name":"North Caicos Airport","category":"medium_airport","iso_country":"TC","iso_region":"TC-NC","municipality":"North Caicos","elevation_ft":10,"latitude":21.916094,"longitude":-71.942954,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4193,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD02","iata":"","local":"MD02","name":"St. Mary's Hospital East Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Leonardtown","elevation_ft":96,"latitude":38.30149841308594,"longitude":-76.63680267333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD07","iata":"","local":"","name":"Sacred Heart Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Cumberland","elevation_ft":1428,"latitude":39.655417,"longitude":-78.795524,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD08","iata":"","local":"MD08","name":"Gregory May Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Havre De Grace","elevation_ft":51,"latitude":39.5345993,"longitude":-76.10630035,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD10","iata":"","local":"MD10","name":"Baltimore Police Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":170,"latitude":39.290327,"longitude":-76.607675,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":182,"width_ft":122,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD13","iata":"","local":"MD13","name":"Black & Decker/Parking Lot 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Towson","elevation_ft":472,"latitude":39.39899826049805,"longitude":-76.58830261230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD20","iata":"","local":"MD20","name":"Greer Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Taneytown","elevation_ft":520,"latitude":39.635919,"longitude":-77.122886,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD19","iata":"","local":"MD19","name":"Hybarc Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Chestertown","elevation_ft":50,"latitude":39.20320129394531,"longitude":-76.02490234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD04","iata":"","local":"MD04","name":"Rossneck Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Cambridge","elevation_ft":5,"latitude":38.56890106201172,"longitude":-76.23580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD05","iata":"","local":"MD05","name":"Finagin Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Welcome","elevation_ft":185,"latitude":38.510921,"longitude":-77.122193,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2575,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD14","iata":"","local":"MD14","name":"Robinson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Hughesville","elevation_ft":20,"latitude":38.524208,"longitude":-76.683161,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD12","iata":"","local":"MD12","name":"Bell Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Emmittsburg","elevation_ft":370,"latitude":39.63639831542969,"longitude":-77.29280090332031,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD25","iata":"","local":"MD25","name":"Howard County General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Columbia","elevation_ft":470,"latitude":39.214599609375,"longitude":-76.88639831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD26","iata":"","local":"","name":"Beltsville Shop Heliport","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Beltsville","elevation_ft":185,"latitude":39.050097,"longitude":-76.890503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":97,"width_ft":97,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD27","iata":"","local":"MD27","name":"Chalk Point Generating Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Eagle Harbor","elevation_ft":80,"latitude":38.55649948,"longitude":-76.69270325,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":330,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD29","iata":"","local":"MD29","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Easton","elevation_ft":63,"latitude":38.77220153808594,"longitude":-76.0718994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD30","iata":"","local":"MD30","name":"Craig Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Hagerstown","elevation_ft":628,"latitude":39.64179992675781,"longitude":-77.74970245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD32","iata":"","local":"MD32","name":"Fort Detrick Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Fort Detrick(Frederick)","elevation_ft":350,"latitude":39.436500549316406,"longitude":-77.42050170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD33","iata":"","local":"MD33","name":"Dorchester General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Cambridge","elevation_ft":12,"latitude":38.5718002319336,"longitude":-76.06770324707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":140,"width_ft":140,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD34","iata":"","local":"","name":"Gaithersburg Heliport","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Gaithersburg","elevation_ft":424,"latitude":39.15344,"longitude":-77.216649,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD35","iata":"","local":"MD35","name":"Spring Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Salisbury","elevation_ft":42,"latitude":38.432179,"longitude":-75.659237,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2200,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":3400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD28","iata":"","local":"MD28","name":"Ewing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Easton","elevation_ft":50,"latitude":38.80929946899414,"longitude":-75.99220275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD31","iata":"","local":"MD31","name":"Forest Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Forest Hill","elevation_ft":476,"latitude":39.5801010131836,"longitude":-76.37470245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3261,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD36","iata":"","local":"MD36","name":"Tar Cove Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Glen Burnie","elevation_ft":8,"latitude":39.14509963989258,"longitude":-76.50140380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD37","iata":"","local":"MD37","name":"Citizens Bank Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Laurel","elevation_ft":312,"latitude":39.087100982666016,"longitude":-76.89720153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD40","iata":"","local":"MD40","name":"Mrs Bozman Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Jacksonville","elevation_ft":620,"latitude":39.54949951171875,"longitude":-76.56269836425781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD49","iata":"","local":"MD49","name":"Peninsula Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Salisbury","elevation_ft":79,"latitude":38.362299,"longitude":-75.597324,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD51","iata":"","local":"MD51","name":"Kent & Queen Anne's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Chestertown","elevation_ft":52,"latitude":39.317901611328125,"longitude":-76.06379699707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD52","iata":"","local":"MD52","name":"Mccready Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Crisfield","elevation_ft":3,"latitude":37.96670150756836,"longitude":-75.86630249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD45","iata":"","local":"MD45","name":"Hampton Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Leonardtown","elevation_ft":18,"latitude":38.2307014465332,"longitude":-76.62879943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD50","iata":"","local":"MD50","name":"Chesapeake Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Lusby","elevation_ft":116,"latitude":38.361198,"longitude":-76.405197,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD42","iata":"","local":"MD42","name":"Keymar Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Keymar","elevation_ft":437,"latitude":39.619392,"longitude":-77.228544,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD55","iata":"","local":"MD55","name":"Holly Springs Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Nanjemoy","elevation_ft":90,"latitude":38.39759826660156,"longitude":-77.18609619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD57","iata":"","local":"MD57","name":"Beverly Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Pocomoke City","elevation_ft":10,"latitude":38.00597,"longitude":-75.616236,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD58","iata":"","local":"MD58","name":"Montgomery County Police Norwood Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Olney","elevation_ft":430,"latitude":39.12720108,"longitude":-77.02249908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD65","iata":"","local":"MD65","name":"Western Maryland Health System Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Cumberland","elevation_ft":675,"latitude":39.646667,"longitude":-78.731944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDP","iata":"YDP","local":"","name":"Nain Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Nain","elevation_ft":22,"latitude":56.550778,"longitude":-61.682224,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1986,"width_ft":75,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD68","iata":"","local":"MD68","name":"Berg's Field","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Stevenson","elevation_ft":330,"latitude":39.41120147705078,"longitude":-76.71640014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDQ","iata":"YDQ","local":"","name":"Dawson Creek Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Dawson Creek","elevation_ft":2148,"latitude":55.7422981262207,"longitude":-120.18299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1986,"width_ft":75,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDM","iata":"XRR","local":"YDM","name":"Ross River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Ross River","elevation_ft":2314,"latitude":61.9706001282,"longitude":-132.42300415,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5113,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYER","iata":"YER","local":"","name":"Fort Severn Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Fort Severn","elevation_ft":48,"latitude":56.01890182495117,"longitude":-87.67610168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3518,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYEY","iata":"YEY","local":"","name":"Amos/Magny Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Amos","elevation_ft":1068,"latitude":48.563903,"longitude":-78.249702,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYFB","iata":"YFB","local":"","name":"Iqaluit Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Iqaluit","elevation_ft":110,"latitude":63.756402,"longitude":-68.555801,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8605,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYFO","iata":"YFO","local":"","name":"Flin Flon Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Flin Flon","elevation_ft":997,"latitude":54.6781005859375,"longitude":-101.68199920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5004,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYFR","iata":"YFR","local":"","name":"Fort Resolution Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Resolution","elevation_ft":526,"latitude":61.1808013916,"longitude":-113.690002441,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4001,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYFT","iata":"YMN","local":"","name":"Makkovik Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Makkovik","elevation_ft":234,"latitude":55.077335,"longitude":-59.187942,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2592,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGE","iata":"","local":"","name":"Golden Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Golden","elevation_ft":2575,"latitude":51.299196,"longitude":-116.982002,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4528,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGH","iata":"YGH","local":"","name":"Fort Good Hope Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Good Hope","elevation_ft":268,"latitude":66.24079895019531,"longitude":-128.6510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4434,"width_ft":99,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGK","iata":"YGK","local":"","name":"Kingston Norman Rogers Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Kingston","elevation_ft":305,"latitude":44.2253,"longitude":-76.596901,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"07/25","length_ft":3909,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGL","iata":"YGL","local":"","name":"La Grande Rivière Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"La Grande Rivière","elevation_ft":639,"latitude":53.625301361083984,"longitude":-77.7042007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6487,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGP","iata":"YGP","local":"","name":"Gaspé (Michel-Pouliot) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Gaspé","elevation_ft":112,"latitude":48.7752990723,"longitude":-64.4785995483,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5488,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGR","iata":"YGR","local":"","name":"Îles-de-la-Madeleine Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Les Îles-de-la-Madeleine","elevation_ft":35,"latitude":47.425242,"longitude":-61.778612,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4493,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":3608,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGT","iata":"YGT","local":"","name":"Igloolik Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Igloolik","elevation_ft":174,"latitude":69.3647003174,"longitude":-81.8161010742,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4095,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGV","iata":"YGV","local":"","name":"Havre-Saint-Pierre Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Havre-Saint-Pierre","elevation_ft":124,"latitude":50.281898,"longitude":-63.611401,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGW","iata":"YGW","local":"","name":"Kuujjuarapik Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Kuujjuarapik","elevation_ft":34,"latitude":55.28189849853516,"longitude":-77.76529693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5082,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGX","iata":"YGX","local":"","name":"Gillam Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Gillam","elevation_ft":476,"latitude":56.35749816894531,"longitude":-94.71060180664062,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5034,"width_ft":131,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYGZ","iata":"YGZ","local":"","name":"Grise Fiord Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Grise Fiord","elevation_ft":146,"latitude":76.4261016846,"longitude":-82.90920257570001,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1675,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHA","iata":"YQC","local":"","name":"Quaqtaq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Quaqtaq","elevation_ft":103,"latitude":61.0463981628418,"longitude":-69.6177978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3520,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHE","iata":"YHE","local":"","name":"Hope Airport / FVRD Regional Airpark","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Hope","elevation_ft":128,"latitude":49.368865,"longitude":-121.49495,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3960,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHI","iata":"YHI","local":"","name":"Ulukhaktok Holman Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Ulukhaktok","elevation_ft":117,"latitude":70.76280212402344,"longitude":-117.80599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4300,"width_ft":99,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHM","iata":"YHM","local":"","name":"John C. Munro Hamilton International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Hamilton","elevation_ft":780,"latitude":43.1735992432,"longitude":-79.93499755859999,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6010,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":10006,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.6},{"id":"TWR","frequency_mhz":125}],"has_metar":true,"public":true},{"icao":"CYHO","iata":"YHO","local":"","name":"Hopedale Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Hopedale","elevation_ft":39,"latitude":55.448757,"longitude":-60.228124,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2501,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHR","iata":"YHR","local":"","name":"Chevery Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Chevery","elevation_ft":39,"latitude":50.46889877319336,"longitude":-59.63669967651367,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYHZ","iata":"YHZ","local":"","name":"Halifax / Stanfield International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-NS","municipality":"Halifax","elevation_ft":477,"latitude":44.8807983398,"longitude":-63.5085983276,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":10500,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":7700,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":121},{"id":"TWR","frequency_mhz":118.4}],"has_metar":true,"public":true},{"icao":"CYIK","iata":"YIK","local":"","name":"Ivujivik Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Ivujivik","elevation_ft":126,"latitude":62.41730117797852,"longitude":-77.92530059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3521,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYIV","iata":"YIV","local":"","name":"Island Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Island Lake","elevation_ft":770,"latitude":53.857200622558594,"longitude":-94.65360260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYJF","iata":"YJF","local":"","name":"Fort Liard Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Liard","elevation_ft":708,"latitude":60.2358016968,"longitude":-123.46900177,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2946,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYJT","iata":"YJT","local":"","name":"Stephenville Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Stephenville","elevation_ft":84,"latitude":48.5442008972168,"longitude":-58.54999923706055,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10011,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKF","iata":"YKF","local":"","name":"Waterloo Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Kitchener","elevation_ft":1055,"latitude":43.4608001709,"longitude":-80.3786010742,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4103,"width_ft":148,"surface":"A"},{"id":"08/26","length_ft":7003,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKG","iata":"YWB","local":"","name":"Kangiqsujuaq (Wakeham Bay) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Kangiqsujuaq","elevation_ft":501,"latitude":61.5886001587,"longitude":-71.929397583,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/343","length_ft":3520,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKL","iata":"YKL","local":"","name":"Schefferville Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Schefferville","elevation_ft":1709,"latitude":54.805301666259766,"longitude":-66.8052978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKO","iata":"AKV","local":"","name":"Akulivik Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Akulivik","elevation_ft":75,"latitude":60.81859970092773,"longitude":-78.14859771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3521,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYJP","iata":"","local":"","name":"Fort Providence Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Providence","elevation_ft":524,"latitude":61.31940078735352,"longitude":-117.6060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2999,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYKD","iata":"LAK","local":"","name":"Aklavik/Freddie Carmichael Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Aklavik","elevation_ft":23,"latitude":68.223297,"longitude":-135.00599,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3002,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYJN","iata":"YJN","local":"","name":"St Jean Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"St Jean","elevation_ft":136,"latitude":45.29439926147461,"longitude":-73.28109741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2474,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":2765,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYKQ","iata":"YKQ","local":"","name":"Waskaganish Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Waskaganish","elevation_ft":80,"latitude":51.47330093383789,"longitude":-78.75830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3511,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYKZ","iata":"YKZ","local":"","name":"Buttonville Municipal Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Toronto","elevation_ft":650,"latitude":43.86220169067383,"longitude":-79.37000274658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3897,"width_ft":100,"surface":"A"},{"id":"03/21","length_ft":2694,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLA","iata":"YPJ","local":"","name":"Aupaluk Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Aupaluk","elevation_ft":119,"latitude":59.29669952392578,"longitude":-69.59970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3521,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLC","iata":"YLC","local":"","name":"Kimmirut Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Kimmirut","elevation_ft":175,"latitude":62.848253,"longitude":-69.877853,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1899,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLJ","iata":"YLJ","local":"","name":"Meadow Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Meadow Lake","elevation_ft":1576,"latitude":54.125301361083984,"longitude":-108.52300262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5016,"width_ft":98,"surface":"A"},{"id":"17/35","length_ft":2270,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLQ","iata":"YLQ","local":"","name":"La Tuque Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"La Tuque","elevation_ft":548,"latitude":47.4096984863,"longitude":-72.7889022827,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLB","iata":"YLB","local":"","name":"Lac La Biche Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Lac La Biche","elevation_ft":1884,"latitude":54.7703018188,"longitude":-112.031997681,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5704,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYLS","iata":"YLK","local":"CYLS","name":"Barrie-Lake Simcoe Regional Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Barrie","elevation_ft":972,"latitude":44.485989,"longitude":-79.555687,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLT","iata":"YLT","local":"","name":"Alert Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Alert","elevation_ft":100,"latitude":82.517799,"longitude":-62.280602,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5500,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYLU","iata":"XGR","local":"","name":"Kangiqsualujjuaq (Georges River) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Kangiqsualujjuaq","elevation_ft":215,"latitude":58.711399,"longitude":-65.992798,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3521,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMH","iata":"YMH","local":"","name":"Mary's Harbour Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Mary's Harbour","elevation_ft":38,"latitude":52.302837,"longitude":-55.847626,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2545,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMO","iata":"YMO","local":"","name":"Moosonee Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Moosonee","elevation_ft":30,"latitude":51.29109954833984,"longitude":-80.60780334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4001,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3500,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMT","iata":"YMT","local":"","name":"Chapais Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Chibougamau","elevation_ft":1270,"latitude":49.77190017700195,"longitude":-74.5280990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6495,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMU","iata":"YUD","local":"","name":"Umiujaq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Umiujaq","elevation_ft":250,"latitude":56.53609848022461,"longitude":-76.51830291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3521,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYMW","iata":"YMW","local":"YMW","name":"Maniwaki Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Messines","elevation_ft":656,"latitude":46.2728,"longitude":-75.990601,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4921,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYNA","iata":"YNA","local":"","name":"Natashquan Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Natashquan","elevation_ft":39,"latitude":50.18999862670898,"longitude":-61.78919982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4495,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYNC","iata":"YNC","local":"","name":"Wemindji Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Wemindji","elevation_ft":66,"latitude":53.01060104370117,"longitude":-78.83110046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3511,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYNE","iata":"YNE","local":"","name":"Norway House Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Norway House","elevation_ft":734,"latitude":53.95830154418945,"longitude":-97.84420013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3902,"width_ft":105,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYNM","iata":"YNM","local":"","name":"Matagami Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Matagami","elevation_ft":918,"latitude":49.76169967651367,"longitude":-77.80280303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOO","iata":"YOO","local":"CYOO","name":"Oshawa Executive Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Oshawa","elevation_ft":460,"latitude":43.922798,"longitude":-78.894997,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2670,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYOS","iata":"YOS","local":"","name":"Owen Sound / Billy Bishop Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Owen Sound","elevation_ft":1007,"latitude":44.5903015137,"longitude":-80.8375015259,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3932,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPA","iata":"YPA","local":"","name":"Prince Albert Glass Field","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Prince Albert","elevation_ft":1405,"latitude":53.2141990662,"longitude":-105.672996521,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5001,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPC","iata":"YPC","local":"","name":"Paulatuk (Nora Aliqatchialuk Ruben) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Paulatuk","elevation_ft":15,"latitude":69.3608381154,"longitude":-124.075469971,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4003,"width_ft":99,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPG","iata":"YPG","local":"","name":"Portage-la-Prairie / Southport Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Portage la Prairie","elevation_ft":885,"latitude":49.903099,"longitude":-98.273817,"has_tower":false,"has_beacon":false,"runways":[{"id":"13R/31L","length_ft":7000,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPH","iata":"YPH","local":"","name":"Inukjuak Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Inukjuak","elevation_ft":83,"latitude":58.471900939941406,"longitude":-78.07689666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3520,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPN","iata":"YPN","local":"","name":"Port-Menier Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Port-Menier","elevation_ft":167,"latitude":49.836399,"longitude":-64.288597,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4888,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPO","iata":"YPO","local":"","name":"Peawanuck Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Peawanuck","elevation_ft":173,"latitude":54.98809814453125,"longitude":-85.44329833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3518,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPQ","iata":"YPQ","local":"","name":"Peterborough Municipal Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Peterborough","elevation_ft":628,"latitude":44.23,"longitude":-78.363297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQA","iata":"YQA","local":"","name":"Muskoka Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Muskoka","elevation_ft":925,"latitude":44.974700927734375,"longitude":-79.30329895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQH","iata":"YQH","local":"","name":"Watson Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Watson Lake","elevation_ft":2255,"latitude":60.11640167236328,"longitude":-128.82200622558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYPU","iata":"","local":"","name":"Puntzi Mountain Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Puntzi Mountain","elevation_ft":2985,"latitude":52.11280059814453,"longitude":-124.1449966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6012,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYQI","iata":"YQI","local":"","name":"Yarmouth Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NS","municipality":"Yarmouth","elevation_ft":141,"latitude":43.82690048217773,"longitude":-66.08809661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQR","iata":"YQR","local":"","name":"Regina International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Regina","elevation_ft":1894,"latitude":50.43190002441406,"longitude":-104.66600036621094,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":7901,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":6200,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":127},{"id":"TWR","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"CYQS","iata":"YQS","local":"","name":"St Thomas Municipal Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"St Thomas","elevation_ft":778,"latitude":42.77000045776367,"longitude":-81.11080169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2640,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":5050,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":2640,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQV","iata":"YQV","local":"","name":"Yorkton Municipal Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Yorkton","elevation_ft":1635,"latitude":51.26470184326172,"longitude":-102.46199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4800,"width_ft":148,"surface":"A"},{"id":"13/31","length_ft":2984,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQX","iata":"YQX","local":"","name":"Gander International Airport / CFB Gander","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Gander","elevation_ft":496,"latitude":48.936258,"longitude":-54.567719,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10200,"width_ft":200,"surface":"A"},{"id":"13/31","length_ft":8900,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYQY","iata":"YQY","local":"","name":"Sydney / J.A. Douglas McCurdy Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NS","municipality":"Sydney","elevation_ft":203,"latitude":46.1614,"longitude":-60.047798,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7070,"width_ft":200,"surface":"A"},{"id":"18/36","length_ft":5997,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRB","iata":"YRB","local":"","name":"Resolute Bay Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Resolute Bay","elevation_ft":215,"latitude":74.7169036865,"longitude":-94.9693984985,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6504,"width_ft":197,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRI","iata":"YRI","local":"","name":"Rivière-du-Loup Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Rivière-du-Loup","elevation_ft":427,"latitude":47.76440048217773,"longitude":-69.58470153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRJ","iata":"YRJ","local":"","name":"Roberval Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Roberval","elevation_ft":586,"latitude":48.52000045776367,"longitude":-72.2656021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRO","iata":"YRO","local":"CYRO","name":"Ottawa / Rockcliffe Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Ottawa","elevation_ft":188,"latitude":45.4603004456,"longitude":-75.64610290530001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRP","iata":"","local":"YRP","name":"Ottawa / Carp Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Ottawa","elevation_ft":382,"latitude":45.3191986084,"longitude":-76.0222015381,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3937,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYRM","iata":"YRM","local":"","name":"Rocky Mountain House Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Rocky Mountain House","elevation_ft":3244,"latitude":52.4296989441,"longitude":-114.903999329,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5513,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYSB","iata":"YSB","local":"","name":"Sudbury Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sudbury","elevation_ft":1141,"latitude":46.625,"longitude":-80.79889678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":600,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":5000,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSG","iata":"","local":"","name":"Saint-Georges Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Saint-Georges","elevation_ft":893,"latitude":46.096401,"longitude":-70.714699,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5108,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSH","iata":"YSH","local":"","name":"Smiths Falls-Montague (Russ Beach) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Smiths Falls","elevation_ft":416,"latitude":44.945801,"longitude":-75.940598,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSK","iata":"YSK","local":"","name":"Sanikiluaq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Sanikiluaq","elevation_ft":104,"latitude":56.5377998352,"longitude":-79.2466964722,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3807,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSL","iata":"YSL","local":"","name":"Saint-Léonard Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NB","municipality":"Saint-Léonard","elevation_ft":793,"latitude":47.157097,"longitude":-67.836242,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSM","iata":"YSM","local":"","name":"Fort Smith Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Smith","elevation_ft":671,"latitude":60.020302,"longitude":-111.961998,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"03/21","length_ft":1797,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSN","iata":"YCM","local":"","name":"Niagara District Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Niagara-on-the-Lake","elevation_ft":321,"latitude":43.1917,"longitude":-79.1717,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":75,"surface":"A"},{"id":"06/24","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":2000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSU","iata":"YSU","local":"","name":"Summerside Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-PE","municipality":"Slemon Park","elevation_ft":56,"latitude":46.440601,"longitude":-63.833599,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8000,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYSY","iata":"YSY","local":"","name":"Sachs Harbour (David Nasogaluak Jr. Saaryuaq) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Sachs Harbour","elevation_ft":282,"latitude":71.9938964844,"longitude":-125.242996216,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4002,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTA","iata":"YTA","local":"","name":"Pembroke Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Pembroke","elevation_ft":529,"latitude":45.86439895629883,"longitude":-77.25170135498047,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTH","iata":"YTH","local":"","name":"Thompson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Thompson","elevation_ft":729,"latitude":55.80110168457031,"longitude":-97.86419677734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5800,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5079,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTL","iata":"YTL","local":"","name":"Big Trout Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Big Trout Lake","elevation_ft":729,"latitude":53.81779861450195,"longitude":-89.89689636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3906,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTQ","iata":"YTQ","local":"","name":"Tasiujaq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Tasiujaq","elevation_ft":122,"latitude":58.66780090332031,"longitude":-69.95580291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3519,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTR","iata":"YTR","local":"","name":"CFB Trenton","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Trenton","elevation_ft":283,"latitude":44.118900299072266,"longitude":-77.5280990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10000,"width_ft":200,"surface":"A"},{"id":"13/31","length_ft":3025,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYTZ","iata":"YTZ","local":"","name":"Billy Bishop Toronto City Centre Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Toronto","elevation_ft":252,"latitude":43.627499,"longitude":-79.396202,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":4000,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":2780,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVV","iata":"YVV","local":"","name":"Wiarton Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Wiarton","elevation_ft":729,"latitude":44.7458,"longitude":-81.107201,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5021,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUT","iata":"YUT","local":"","name":"Naujaat Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Repulse Bay","elevation_ft":80,"latitude":66.5214,"longitude":-86.224701,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYUY","iata":"YUY","local":"","name":"Rouyn Noranda Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Rouyn-Noranda","elevation_ft":988,"latitude":48.20610046386719,"longitude":-78.83560180664062,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7485,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVO","iata":"YVO","local":"","name":"Val-d'Or Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Val-d'Or","elevation_ft":1107,"latitude":48.0532989502,"longitude":-77.7827987671,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYVP","iata":"YVP","local":"","name":"Kuujjuaq Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Kuujjuaq","elevation_ft":129,"latitude":58.096099853515625,"longitude":-68.4269027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5000,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYWJ","iata":"YWJ","local":"","name":"Déline Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Déline","elevation_ft":703,"latitude":65.211098,"longitude":-123.435997,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3933,"width_ft":99,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYWK","iata":"YWK","local":"","name":"Wabush Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Wabush","elevation_ft":1808,"latitude":52.92190170288086,"longitude":-66.8644027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXJ","iata":"YXJ","local":"","name":"Fort St John / North Peace Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Fort Saint John","elevation_ft":2280,"latitude":56.238098,"longitude":-120.739998,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6909,"width_ft":150,"surface":"A"},{"id":"03/21","length_ft":6698,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXP","iata":"YXP","local":"","name":"Pangnirtung Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Pangnirtung","elevation_ft":75,"latitude":66.1449966431,"longitude":-65.71360015869999,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2920,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXN","iata":"YXN","local":"","name":"Whale Cove Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Whale Cove","elevation_ft":40,"latitude":62.24000167849999,"longitude":-92.5980987549,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3937,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYWY","iata":"YWY","local":"","name":"Wrigley Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Wrigley","elevation_ft":489,"latitude":63.20940017700195,"longitude":-123.43699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3500,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYXQ","iata":"YXQ","local":"","name":"Beaver Creek Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Beaver Creek","elevation_ft":2131,"latitude":62.410301208496094,"longitude":-140.86700439453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3745,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXR","iata":"YXR","local":"","name":"Earlton (Timiskaming Regional) Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Earlton","elevation_ft":800,"latitude":47.6974006546,"longitude":-79.8473453522,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5998,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":3019,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXT","iata":"YXT","local":"","name":"Northwest Regional Airport Terrace-Kitimat","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Terrace","elevation_ft":713,"latitude":54.468498,"longitude":-128.576009,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5373,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":7498,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXU","iata":"YXU","local":"","name":"London Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"London","elevation_ft":912,"latitude":43.035599,"longitude":-81.1539,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8800,"width_ft":200,"surface":"A"},{"id":"09/27","length_ft":6300,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYXY","iata":"YXY","local":"","name":"Whitehorse / Erik Nielsen International Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Whitehorse","elevation_ft":2317,"latitude":60.709599,"longitude":-135.067001,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1798,"width_ft":75,"surface":"A"},{"id":"13L/31R","length_ft":4018,"width_ft":80,"surface":"A"},{"id":"13R/31L","length_ft":9500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3}],"has_metar":true,"public":true},{"icao":"CYXZ","iata":"YXZ","local":"","name":"Wawa Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Wawa","elevation_ft":942,"latitude":47.96670150756836,"longitude":-84.78669738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4429,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYB","iata":"YYB","local":"","name":"North Bay Jack Garland Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"North Bay","elevation_ft":1215,"latitude":46.363602,"longitude":-79.422798,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":10000,"width_ft":200,"surface":"A"},{"id":"13/31","length_ft":2500,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":4474,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYD","iata":"YYD","local":"","name":"Smithers Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Smithers","elevation_ft":1712,"latitude":54.82469940185547,"longitude":-127.18299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":7544,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYE","iata":"YYE","local":"","name":"Fort Nelson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Fort Nelson","elevation_ft":1253,"latitude":58.8363990784,"longitude":-122.597000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6402,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":3575,"width_ft":77,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYG","iata":"YYG","local":"","name":"Charlottetown Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-PE","municipality":"Charlottetown","elevation_ft":160,"latitude":46.290000915527344,"longitude":-63.12110137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7002,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYH","iata":"YYH","local":"","name":"Taloyoak Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Taloyoak","elevation_ft":92,"latitude":69.5467,"longitude":-93.576698,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4009,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYR","iata":"YYR","local":"","name":"Goose Bay Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Goose Bay","elevation_ft":160,"latitude":53.3191986084,"longitude":-60.4258003235,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9584,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYYT","iata":"YYT","local":"","name":"St. John's International Airport","category":"large_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"St. John's","elevation_ft":461,"latitude":47.618599,"longitude":-52.7519,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":8502,"width_ft":200,"surface":"A"},{"id":"16/34","length_ft":7005,"width_ft":200,"surface":"A"},{"id":"02/20","length_ft":5028,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":128},{"id":"TWR","frequency_mhz":120.6}],"has_metar":true,"public":true},{"icao":"CYYY","iata":"YYY","local":"","name":"Mont Joli Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Mont-Joli","elevation_ft":172,"latitude":48.60860061645508,"longitude":-68.20809936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":3954,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZE","iata":"YZE","local":"","name":"Gore Bay Manitoulin Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Gore Bay","elevation_ft":623,"latitude":45.8853,"longitude":-82.567802,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5500,"width_ft":100,"surface":"A"},{"id":"05/23","length_ft":2615,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZG","iata":"YZG","local":"","name":"Salluit Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Salluit","elevation_ft":743,"latitude":62.17940139770508,"longitude":-75.66719818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3523,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZV","iata":"YZV","local":"","name":"Sept-Îles Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Sept-Îles","elevation_ft":180,"latitude":50.22330093383789,"longitude":-66.2656021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6552,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5771,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZW","iata":"YZW","local":"","name":"Teslin Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Teslin","elevation_ft":2313,"latitude":60.17279815673828,"longitude":-132.7429962158203,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4993,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZX","iata":"YZX","local":"","name":"CFB Greenwood","category":"medium_airport","iso_country":"CA","iso_region":"CA-NS","municipality":"Greenwood","elevation_ft":92,"latitude":44.98440170288086,"longitude":-64.91690063476562,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7999,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":7999,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYZY","iata":"","local":"","name":"Mackenzie Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Mackenzie","elevation_ft":2264,"latitude":55.304402,"longitude":-123.132004,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5033,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZBF","iata":"ZBF","local":"","name":"Bathurst Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NB","municipality":"South Tetagouche","elevation_ft":193,"latitude":47.6297,"longitude":-65.738899,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5613,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZEM","iata":"ZEM","local":"","name":"Eastmain River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Eastmain River","elevation_ft":24,"latitude":52.22639846801758,"longitude":-78.52249908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3512,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZFA","iata":"ZFA","local":"","name":"Faro Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Faro","elevation_ft":2351,"latitude":62.20750045776367,"longitude":-133.37600708007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3997,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZBB","iata":"YDT","local":"","name":"Boundary Bay Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Delta","elevation_ft":6,"latitude":49.0742,"longitude":-123.012001,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5606,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":3750,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":125.5},{"id":"LCL/P","frequency_mhz":127.6}],"has_metar":false,"public":true},{"icao":"CZAM","iata":"YSN","local":"","name":"Shuswap Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Salmon Arm","elevation_ft":1751,"latitude":50.682802,"longitude":-119.228996,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4261,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CZFN","iata":"ZFN","local":"","name":"Tulita Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Tulita","elevation_ft":332,"latitude":64.909697,"longitude":-125.572998,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3935,"width_ft":99,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZJN","iata":"ZJN","local":"","name":"Swan River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Swan River","elevation_ft":1100,"latitude":52.120602,"longitude":-101.236,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3935,"width_ft":100,"surface":"A"},{"id":"08/26","length_ft":1957,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZMD","iata":"MSA","local":"","name":"Muskrat Dam Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Muskrat Dam","elevation_ft":911,"latitude":53.44139862060547,"longitude":-91.76280212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3508,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CZUM","iata":"ZUM","local":"","name":"Churchill Falls Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Churchill Falls","elevation_ft":1442,"latitude":53.5619010925293,"longitude":-64.10639953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5500,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAAD","iata":"BUJ","local":"","name":"Bou Saada Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-28","municipality":"Ouled Sidi Brahim","elevation_ft":1506,"latitude":35.3325,"longitude":4.20639,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7218,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CZHP","iata":"ZHP","local":"","name":"High Prairie Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"High Prairie","elevation_ft":1974,"latitude":55.3936004639,"longitude":-116.474998474,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4332,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DABB","iata":"AAE","local":"","name":"Annaba Rabah Bitat Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-23","municipality":"Annaba","elevation_ft":16,"latitude":36.826781,"longitude":7.81334,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"05/23","length_ft":7513,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DABS","iata":"TEE","local":"","name":"Cheikh Larbi Tébessi Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-12","municipality":"Tébessi","elevation_ft":2661,"latitude":35.4315986633,"longitude":8.12071990967,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"12/30","length_ft":7874,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAFH","iata":"HRM","local":"","name":"Hassi R'Mel Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-03","municipality":"Hassi R'Mel","elevation_ft":2540,"latitude":32.930401,"longitude":3.31154,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9800,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DATM","iata":"BMW","local":"","name":"Bordj Badji Mokhtar Airport","category":"small_airport","iso_country":"DZ","iso_region":"DZ-52","municipality":"Bordj Badji Mokhtar","elevation_ft":1303,"latitude":21.3778,"longitude":0.92698,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUA","iata":"AZR","local":"","name":"Touat Cheikh Sidi Mohamed Belkebir Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-01","municipality":"Adrar","elevation_ft":919,"latitude":27.837601,"longitude":-0.186414,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUB","iata":"BSK","local":"","name":"Biskra - Mohamed Khider Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-07","municipality":"Biskra","elevation_ft":289,"latitude":34.793301,"longitude":5.73823,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9514,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUE","iata":"ELG","local":"","name":"El Golea Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-50","municipality":"El Menia","elevation_ft":1306,"latitude":30.580732,"longitude":2.861595,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":11319,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":5900,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DAUL","iata":"LOO","local":"","name":"Laghouat - Molay Ahmed Medeghri Airport","category":"medium_airport","iso_country":"DZ","iso_region":"DZ-03","municipality":"Laghouat","elevation_ft":2510,"latitude":33.7644,"longitude":2.92834,"has_tower":true,"has_beacon":false,"runways":[{"id":"16L/34R","length_ft":12480,"width_ft":150,"surface":"H"},{"id":"16R/34L","length_ft":12470,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DBBB","iata":"COO","local":"","name":"Cadjehoun Airport","category":"medium_airport","iso_country":"BJ","iso_region":"BJ-AQ","municipality":"Cotonou","elevation_ft":19,"latitude":6.357230186462402,"longitude":2.384350061416626,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC01","iata":"","local":"DC01","name":"Washington Post Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":175,"latitude":38.903111,"longitude":-77.030648,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":139,"width_ft":66,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC03","iata":"","local":"DC03","name":"Us Park Police Eagle's Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":14,"latitude":38.86650085449219,"longitude":-76.9927978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC04","iata":"","local":"DC04","name":"Spirit of Washington Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":15,"latitude":38.874298095703125,"longitude":-77.02140045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC06","iata":"","local":"DC06","name":"Metropolitan Police Department 2nd District Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":106,"latitude":38.934833,"longitude":-77.074821,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC07","iata":"","local":"DC07","name":"MPD 5th Metropolitan Police Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":383,"latitude":38.9151001,"longitude":-76.97329712,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC08","iata":"","local":"DC08","name":"WHC Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":205,"latitude":38.9290008545,"longitude":-77.01640319820001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC09","iata":"","local":"DC09","name":"Medstar Georgetown University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":165,"latitude":38.910368,"longitude":-77.077693,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC16","iata":"","local":"DC16","name":"Metropolitan Police Department 3rd District Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":130,"latitude":38.917922,"longitude":-77.038125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC17","iata":"","local":"DC17","name":"Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":285,"latitude":38.92729949951172,"longitude":-77.01409912109375,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DC52","iata":"","local":"DC52","name":"Sibley Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":289,"latitude":38.936934,"longitude":-77.110548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE02","iata":"","local":"DE02","name":"Delaware State Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Dover","elevation_ft":50,"latitude":39.20009994506836,"longitude":-75.53299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE03","iata":"","local":"DE03","name":"Dover Downs Helistop","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Dover","elevation_ft":28,"latitude":39.18339920043945,"longitude":-75.52459716796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE16","iata":"","local":"DE16","name":"Rollins Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Wilmington","elevation_ft":595,"latitude":39.79084,"longitude":-75.547805,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE21","iata":"","local":"DE21","name":"West Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Frankford","elevation_ft":21,"latitude":38.517901,"longitude":-75.159874,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE14","iata":"","local":"DE14","name":"Huey Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Bridgeville","elevation_ft":45,"latitude":38.74399948120117,"longitude":-75.53489685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE17","iata":"","local":"DE17","name":"Sugar Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Greenwood","elevation_ft":45,"latitude":38.77790069580078,"longitude":-75.58329772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE15","iata":"","local":"DE15","name":"Pevey Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Seaford","elevation_ft":40,"latitude":38.61259841918945,"longitude":-75.69969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE22","iata":"","local":"","name":"Del-Mar Ford Heliport","category":"closed","iso_country":"US","iso_region":"US-DE","municipality":"Cheswold","elevation_ft":55,"latitude":39.216801,"longitude":-75.583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE24","iata":"","local":"DE24","name":"Elliott Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Dover","elevation_ft":25,"latitude":39.11149978637695,"longitude":-75.50550079345703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE26","iata":"","local":"DE26","name":"ChristianaCare Christiana Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Newark","elevation_ft":89,"latitude":39.687564,"longitude":-75.667069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H3","length_ft":80,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE30","iata":"","local":"DE30","name":"Bracebridge Iii Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Wilmington","elevation_ft":125,"latitude":39.735599517822266,"longitude":-75.5353012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":83,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE39","iata":"","local":"DE39","name":"ChristianaCare Wilmington Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Wilmington","elevation_ft":200,"latitude":39.751111,"longitude":-75.550556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DGAA","iata":"ACC","local":"","name":"Kotoka International Airport","category":"large_airport","iso_country":"GH","iso_region":"GH-AA","municipality":"Accra","elevation_ft":205,"latitude":5.605189800262451,"longitude":-0.1667860001325607,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":11175,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DE23","iata":"","local":"DE23","name":"Ockel Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Milton","elevation_ft":47,"latitude":38.750301361083984,"longitude":-75.36000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DGLE","iata":"TML","local":"","name":"Tamale Airport","category":"medium_airport","iso_country":"GH","iso_region":"GH-NP","municipality":"Tamale","elevation_ft":553,"latitude":9.55718994140625,"longitude":-0.8632140159606934,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":11155,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DIBK","iata":"BYK","local":"","name":"Bouaké Airport","category":"medium_airport","iso_country":"CI","iso_region":"CI-VB","municipality":"Bouaké","elevation_ft":1230,"latitude":7.7388,"longitude":-5.07367,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DIYO","iata":"ASK","local":"","name":"Yamoussoukro Airport","category":"medium_airport","iso_country":"CI","iso_region":"CI-YM","municipality":"Yamoussoukro","elevation_ft":699,"latitude":6.9031701088,"longitude":-5.36558008194,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNIB","iata":"IBA","local":"","name":"Ibadan Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-OY","municipality":"Ibadan","elevation_ft":725,"latitude":7.362460136413574,"longitude":3.97832989692688,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DGSI","iata":"KMS","local":"","name":"Kumasi Airport","category":"medium_airport","iso_country":"GH","iso_region":"GH-AH","municipality":"Kumasi","elevation_ft":942,"latitude":6.714560031890869,"longitude":-1.5908199548721311,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6542,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNCA","iata":"CBQ","local":"","name":"Margaret Ekpo International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-CR","municipality":"Calabar","elevation_ft":210,"latitude":4.976019859313965,"longitude":8.347200393676758,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8038,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNIM","iata":"QOW","local":"","name":"Sam Mbakwe International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-IM","municipality":"Owerri","elevation_ft":373,"latitude":5.427060127258301,"longitude":7.206029891967773,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNIL","iata":"ILR","local":"","name":"Ilorin International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-KW","municipality":"Ilorin","elevation_ft":1126,"latitude":8.440210342407227,"longitude":4.493919849395752,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10171,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNKA","iata":"KAD","local":"","name":"Kaduna Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-KD","municipality":"Kaduna","elevation_ft":2073,"latitude":10.696000099182127,"longitude":7.320109844207764,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNMM","iata":"LOS","local":"","name":"Murtala Muhammed International Airport","category":"large_airport","iso_country":"NG","iso_region":"NG-LA","municipality":"Lagos","elevation_ft":135,"latitude":6.5773701667785645,"longitude":3.321160078048706,"has_tower":true,"has_beacon":true,"runways":[{"id":"18R/36L","length_ft":12795,"width_ft":197,"surface":"H"},{"id":"18L/36R","length_ft":9000,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.8},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"DNSO","iata":"SKO","local":"","name":"Sadiq Abubakar III International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-SO","municipality":"Sokoto","elevation_ft":1010,"latitude":12.916299819946287,"longitude":5.207190036773682,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNYO","iata":"YOL","local":"","name":"Yola Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-AD","municipality":"Yola","elevation_ft":599,"latitude":9.257550239562988,"longitude":12.430399894714355,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNZA","iata":"ZAR","local":"","name":"Zaria Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-KD","municipality":"Zaria","elevation_ft":2170,"latitude":11.1302,"longitude":7.68581,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5400,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DNMK","iata":"MDI","local":"","name":"Makurdi Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-BE","municipality":"Makurdi","elevation_ft":371,"latitude":7.70388,"longitude":8.61394,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNMA","iata":"MIU","local":"","name":"Maiduguri International Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-BO","municipality":"Maiduguri","elevation_ft":1099,"latitude":11.855299949645996,"longitude":13.080900192260742,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DRRM","iata":"MFQ","local":"","name":"Maradi Airport","category":"medium_airport","iso_country":"NE","iso_region":"NE-4","municipality":"Maradi","elevation_ft":1240,"latitude":13.5024995803833,"longitude":7.1267499923706055,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6070,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DRRT","iata":"THZ","local":"","name":"Tahoua Airport","category":"medium_airport","iso_country":"NE","iso_region":"NE-5","municipality":"Tahoua","elevation_ft":1266,"latitude":14.8757,"longitude":5.26536,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7054,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DRZF","iata":"","local":"","name":"Diffa Airport","category":"small_airport","iso_country":"NE","iso_region":"NE-2","municipality":"Diffa","elevation_ft":994,"latitude":13.372900009155272,"longitude":12.626700401306152,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5906,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTB","iata":"","local":"","name":"Bizerte Sidi Ahmed Air Base","category":"medium_airport","iso_country":"TN","iso_region":"TN-23","municipality":"Borj Challouf","elevation_ft":20,"latitude":37.242356,"longitude":9.787016,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9800,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTG","iata":"GAE","local":"","name":"Gabès Matmata International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-81","municipality":"Gabès","elevation_ft":407,"latitude":33.733691,"longitude":9.91941,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9869,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTR","iata":"EBM","local":"","name":"El Borma Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-83","municipality":"El Borma","elevation_ft":827,"latitude":31.70429992675781,"longitude":9.254619598388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DRZA","iata":"AJY","local":"","name":"Mano Dayak International Airport","category":"medium_airport","iso_country":"NE","iso_region":"NE-1","municipality":"Agadez","elevation_ft":1657,"latitude":16.965999603271484,"longitude":8.000109672546387,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/25R","length_ft":9843,"width_ft":98,"surface":"H"},{"id":"07R/25L","length_ft":6791,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DTTX","iata":"SFA","local":"","name":"Sfax Thyna International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-61","municipality":"Sfax","elevation_ft":85,"latitude":34.71799850463867,"longitude":10.690999984741213,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DTTZ","iata":"TOE","local":"","name":"Tozeur Nefta International Airport","category":"medium_airport","iso_country":"TN","iso_region":"TN-72","municipality":"Tozeur","elevation_ft":287,"latitude":33.939701080322266,"longitude":8.110560417175293,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10577,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"DXSK","iata":"","local":"","name":"Sokodé Airport","category":"small_airport","iso_country":"TG","iso_region":"TG-C","municipality":"Sokodé","elevation_ft":1214,"latitude":8.994275,"longitude":1.153004,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3280,"width_ft":70,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EEKA","iata":"KDL","local":"","name":"Kärdla Airport","category":"medium_airport","iso_country":"EE","iso_region":"EE-39","municipality":"Kärdla","elevation_ft":18,"latitude":58.99079895019531,"longitude":22.830699920654297,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4987,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EFJO","iata":"JOE","local":"","name":"Joensuu Airport","category":"medium_airport","iso_country":"FI","iso_region":"FI-13","municipality":"Joensuu / Liperi","elevation_ft":398,"latitude":62.662899,"longitude":29.6075,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8202,"width_ft":171,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGAE","iata":"LDY","local":"","name":"City of Derry Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-NIR","municipality":"Derry","elevation_ft":22,"latitude":55.04280090332031,"longitude":-7.161109924316406,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6460,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EGBE","iata":"CVT","local":"","name":"Coventry Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Coventry","elevation_ft":267,"latitude":52.3697013855,"longitude":-1.47971999645,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6588,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EGCN","iata":"","local":"","name":"Robin Hood Doncaster Sheffield Airport","category":"closed","iso_country":"GB","iso_region":"GB-ENG","municipality":"Doncaster","elevation_ft":55,"latitude":53.480538,"longitude":-1.010656,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9495,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGHH","iata":"BOH","local":"","name":"Bournemouth Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Bournemouth","elevation_ft":38,"latitude":50.779999,"longitude":-1.8425,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7451,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGHI","iata":"SOU","local":"","name":"Southampton Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Southampton","elevation_ft":44,"latitude":50.950298,"longitude":-1.3568,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5653,"width_ft":121,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGEO","iata":"OBN","local":"","name":"Oban Airport","category":"small_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"North Connel","elevation_ft":20,"latitude":56.4635009765625,"longitude":-5.399670124053955,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4147,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EGKB","iata":"BQH","local":"","name":"London Biggin Hill Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"London","elevation_ft":598,"latitude":51.33079910279999,"longitude":0.0324999988079,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5925,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGLL","iata":"LHR","local":"","name":"London Heathrow Airport","category":"large_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"London","elevation_ft":83,"latitude":51.4706,"longitude":-0.461941,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":12802,"width_ft":164,"surface":"H"},{"id":"09R/27L","length_ft":12008,"width_ft":164,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.07},{"id":"TWR","frequency_mhz":118.5}],"has_metar":true,"public":true},{"icao":"EGMC","iata":"SEN","local":"","name":"London Southend Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Southend-on-Sea, Essex","elevation_ft":49,"latitude":51.570562,"longitude":0.693627,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6089,"width_ft":118,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNH","iata":"BLK","local":"","name":"Blackpool International Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Blackpool","elevation_ft":34,"latitude":53.77170181274414,"longitude":-3.0286099910736084,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6132,"width_ft":151,"surface":"H"},{"id":"13/31","length_ft":3274,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNM","iata":"LBA","local":"","name":"Leeds Bradford Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Leeds","elevation_ft":681,"latitude":53.865898,"longitude":-1.66057,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7382,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGNV","iata":"MME","local":"","name":"Teesside International Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Darlington, Durham","elevation_ft":120,"latitude":54.509201,"longitude":-1.42941,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7516,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGSY","iata":"","local":"","name":"Sheffield City Heliport","category":"closed","iso_country":"GB","iso_region":"GB-ENG","municipality":"Sheffield","elevation_ft":231,"latitude":53.394299,"longitude":-1.38849,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5997,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EGTC","iata":"","local":"","name":"Cranfield Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Cranfield","elevation_ft":360,"latitude":52.072201,"longitude":-0.616667,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5902,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD40","iata":"","local":"","name":"Gardner Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Gardner","elevation_ft":76,"latitude":27.3445,"longitude":-81.792296,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EIKN","iata":"NOC","local":"","name":"Ireland West Knock Airport","category":"medium_airport","iso_country":"IE","iso_region":"IE-MO","municipality":"Charlestown","elevation_ft":665,"latitude":53.910301,"longitude":-8.81849,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7546,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EIKY","iata":"KIR","local":"","name":"Kerry Airport","category":"medium_airport","iso_country":"IE","iso_region":"IE-KY","municipality":"Killarney","elevation_ft":112,"latitude":52.180901,"longitude":-9.52378,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EIWF","iata":"WAT","local":"","name":"Waterford Airport","category":"medium_airport","iso_country":"IE","iso_region":"IE-WD","municipality":"Waterford","elevation_ft":119,"latitude":52.187198638916016,"longitude":-7.086959838867188,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4701,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EIDL","iata":"CFN","local":"","name":"Donegal Airport","category":"medium_airport","iso_country":"IE","iso_region":"IE-DL","municipality":"Donegal","elevation_ft":30,"latitude":55.0442008972168,"longitude":-8.340999603271484,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4908,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ENSB","iata":"LYR","local":"","name":"Svalbard Airport, Longyear","category":"medium_airport","iso_country":"NO","iso_region":"NO-21","municipality":"Longyearbyen","elevation_ft":88,"latitude":78.246101379395,"longitude":15.465600013733,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8127,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"EPWR","iata":"WRO","local":"","name":"Copernicus Wrocław Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-DS","municipality":"Wrocław","elevation_ft":404,"latitude":51.103719,"longitude":16.882096,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8212,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ESNN","iata":"SDL","local":"","name":"Sundsvall-Härnösand Airport","category":"medium_airport","iso_country":"SE","iso_region":"SE-Y","municipality":"Sundsvall/ Härnösand","elevation_ft":16,"latitude":62.528099060058594,"longitude":17.443899154663086,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6411,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA00","iata":"","local":"FA00","name":"Advent Health Winter Garden ER Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Winter Garden","elevation_ft":127,"latitude":28.523111,"longitude":-81.589028,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA01","iata":"","local":"FA01","name":"St Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Port Charlotte","elevation_ft":13,"latitude":26.993659,"longitude":-82.095235,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA03","iata":"","local":"","name":"Southfork Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Duette","elevation_ft":109,"latitude":27.603901,"longitude":-82.192903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA04","iata":"","local":"FA04","name":"Mease Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Dunedin","elevation_ft":35,"latitude":28.01420021057129,"longitude":-82.78199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA05","iata":"","local":"FA05","name":"Holiday Isle Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Islamorada","elevation_ft":0,"latitude":24.93490028381348,"longitude":-80.60089874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3900,"width_ft":2250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA06","iata":"","local":"FA06","name":"Pinellas County Sheriff's Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Largo","elevation_ft":76,"latitude":27.89139938354492,"longitude":-82.78929901123047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA09","iata":"","local":"FA09","name":"Arliss M Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fairfield","elevation_ft":200,"latitude":29.34079933166504,"longitude":-82.26370239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA10","iata":"","local":"","name":"BSO Public Safety Helistop","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":8,"latitude":26.124546,"longitude":-80.176543,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA11","iata":"","local":"FA11","name":"Bird Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jennings","elevation_ft":150,"latitude":30.62240028381348,"longitude":-83.2593002319336,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA12","iata":"","local":"FA12","name":"Shands Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":334,"latitude":29.63909912109375,"longitude":-82.34539794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":72,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA13","iata":"","local":"FA13","name":"Treasure Lagoon Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Cocoa","elevation_ft":0,"latitude":28.4475,"longitude":-80.722361,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":3000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA15","iata":"","local":"FA15","name":"Hamilton Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jasper","elevation_ft":152,"latitude":30.52330017089844,"longitude":-82.95649719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA16","iata":"","local":"FA16","name":"Jay Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":252,"latitude":30.94989967346192,"longitude":-87.15080261230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA17","iata":"","local":"FA17","name":"Kissimmee Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":53,"latitude":28.289441,"longitude":-81.404995,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":1800,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA19","iata":"","local":"FA19","name":"Palms West Hospital Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Loxahatchee","elevation_ft":21,"latitude":26.680599212646484,"longitude":-80.8405990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA20","iata":"","local":"FA20","name":"Post Electric Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":10,"latitude":30.20800018310547,"longitude":-85.67579650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA18","iata":"","local":"FA18","name":"Devils Garden Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":18,"latitude":28.451099395751957,"longitude":-81.00029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA21","iata":"","local":"FA21","name":"Memorial Hospital West Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pembroke Pines","elevation_ft":12,"latitude":26.014299392700195,"longitude":-80.3114013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA22","iata":"","local":"FA22","name":"Dove Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":12,"latitude":27.33340072631836,"longitude":-82.43009948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":93,"width_ft":93,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA23","iata":"","local":"FA23","name":"Sarasota Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":100,"latitude":27.317800521850582,"longitude":-82.52980041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":48,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA25","iata":"","local":"FA25","name":"Black Creek Pass Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tallahasse","elevation_ft":95,"latitude":30.50095,"longitude":-84.0781,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1415,"width_ft":100,"surface":"T"},{"id":"15/33","length_ft":977,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA26","iata":"","local":"FA26","name":"Dogwood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Havana","elevation_ft":200,"latitude":30.53720092773437,"longitude":-84.45189666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA27","iata":"","local":"","name":"Ellsworth Field","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Arcadia","elevation_ft":60,"latitude":27.205838,"longitude":-81.780617,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA28","iata":"","local":"FA28","name":"AAS Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":26,"latitude":27.359167,"longitude":-80.486944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA29","iata":"","local":"FA29","name":"Lumar Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Perry","elevation_ft":65,"latitude":30.130800247192383,"longitude":-83.54940032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA33","iata":"","local":"FA33","name":"Mosquito Ctl Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":25,"latitude":27.272499084472656,"longitude":-82.36609649658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA34","iata":"","local":"FA34","name":"Beach Mosquito Control District Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City Beach","elevation_ft":14,"latitude":30.207999,"longitude":-85.82924,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA35","iata":"","local":"FA35","name":"Lindbergh's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":9,"latitude":25.61949920654297,"longitude":-80.48870086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA30","iata":"","local":"FA30","name":"Redtail Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Morriston","elevation_ft":65,"latitude":29.2791996002,"longitude":-82.5,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA36","iata":"","local":"FA36","name":"White Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chiefland","elevation_ft":46,"latitude":29.512699127197266,"longitude":-82.87480163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3909,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA41","iata":"","local":"FA41","name":"Mosquito Control Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":20,"latitude":30.44109916687012,"longitude":-81.47730255126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA43","iata":"","local":"FA43","name":"Dog Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Carrabelle","elevation_ft":4,"latitude":29.810698,"longitude":-84.588508,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2700,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA45","iata":"","local":"FA45","name":"Lake Wales Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Wales","elevation_ft":125,"latitude":27.91634,"longitude":-81.548982,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA47","iata":"","local":"FA47","name":"Doris Ison Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":7,"latitude":25.56618,"longitude":-80.35818,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":114,"width_ft":86,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA50","iata":"","local":"FA50","name":"Wings-N-Wheels Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Reddick","elevation_ft":82,"latitude":29.3614006042,"longitude":-82.1498031616,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA52","iata":"","local":"FA52","name":"AdventHealth Sebring Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sebring","elevation_ft":154,"latitude":27.538057,"longitude":-81.509274,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA51","iata":"","local":"FA51","name":"Sky Manor Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":15,"latitude":26.739,"longitude":-81.506203,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA38","iata":"","local":"FA38","name":"Woods and Lakes Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Oklawaha","elevation_ft":100,"latitude":29.12360000610352,"longitude":-81.88700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2900,"width_ft":97,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA53","iata":"","local":"FA53","name":"Eagles Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Auburndale","elevation_ft":125,"latitude":28.04389953613281,"longitude":-81.84860229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA56","iata":"","local":"FA56","name":"North Florida Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":143,"latitude":29.661500930786133,"longitude":-82.41210174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA57","iata":"","local":"FA57","name":"Archer Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Archer","elevation_ft":82,"latitude":29.53420066833496,"longitude":-82.52439880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA58","iata":"","local":"","name":"AdventHealth North Pinellas Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Tarpon Springs","elevation_ft":39,"latitude":28.13264,"longitude":-82.758417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":47,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA59","iata":"","local":"FA59","name":"Nitv Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Wellington","elevation_ft":18,"latitude":26.63400077819824,"longitude":-80.22419738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA61","iata":"","local":"FA61","name":"UF Health Jacksonville Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":25,"latitude":30.349533,"longitude":-81.665481,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA62","iata":"","local":"FA62","name":"Santa Fe River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Alachua","elevation_ft":145,"latitude":29.916900634766,"longitude":-82.483200073242,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA65","iata":"","local":"FA65","name":"Memorial Hospital Jacksonville Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":15,"latitude":30.289331,"longitude":-81.601429,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":57,"width_ft":57,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA66","iata":"","local":"","name":"Travel Lodge Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Neptune Beach","elevation_ft":28,"latitude":30.3241,"longitude":-81.411797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA69","iata":"","local":"FA69","name":"Duda Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Belle Glade","elevation_ft":14,"latitude":26.587799072265625,"longitude":-80.63729858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA60","iata":"","local":"FA60","name":"Vince's Condominium Association Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":115,"latitude":27.23889923095703,"longitude":-81.38590240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA55","iata":"","local":"FA55","name":"Garnair Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bonifay","elevation_ft":105,"latitude":30.779699325561523,"longitude":-85.76830291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA70","iata":"","local":"FA70","name":"Saint Joseph's Hospital North Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lutz","elevation_ft":60,"latitude":28.130569,"longitude":-82.509252,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA73","iata":"","local":"FA73","name":"Oak Harbor Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Haines City","elevation_ft":130,"latitude":28.1289005279541,"longitude":-81.68789672851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":7000,"width_ft":2000,"surface":"W"},{"id":"NW/SE","length_ft":7000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA75","iata":"","local":"","name":"Flying Bonefish Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Marathon","elevation_ft":0,"latitude":24.768498,"longitude":-80.946198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA76","iata":"","local":"FA76","name":"Nicklaus Childrens Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":54,"latitude":25.7409301,"longitude":-80.294641,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA77","iata":"","local":"","name":"Lowe's Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":54,"latitude":27.3309,"longitude":-82.290604,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA78","iata":"","local":"FA78","name":"Robinestte Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":58,"latitude":28.333,"longitude":-81.25,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":3500,"width_ft":75,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA79","iata":"","local":"FA79","name":"Doan Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"South Daytona","elevation_ft":13,"latitude":29.16550064086914,"longitude":-81.02729797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA82","iata":"","local":"","name":"Good Samaritan Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":17,"latitude":26.725199,"longitude":-80.055705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA84","iata":"","local":"FA84","name":"Lake Tarpon Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Palm Harbor","elevation_ft":3,"latitude":28.125,"longitude":-82.726944,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":2000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA83","iata":"","local":"FA83","name":"Orlando North Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Zellwood","elevation_ft":80,"latitude":28.72156,"longitude":-81.654825,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA74","iata":"","local":"FA74","name":"Romor Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ochopee","elevation_ft":12,"latitude":25.98564,"longitude":-81.041733,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1860,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA71","iata":"","local":"FA71","name":"The Cedars Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cedar Key","elevation_ft":8,"latitude":29.22800064086914,"longitude":-82.9437026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA87","iata":"","local":"FA87","name":"Sarasota Memorial Hospital North Port ER Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"North Port","elevation_ft":25,"latitude":27.056666,"longitude":-82.159444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA88","iata":"","local":"FA88","name":"Pittman Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":83,"latitude":30.425042,"longitude":-83.048469,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA89","iata":"","local":"FA89","name":"Suwanee Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"White Springs,","elevation_ft":133,"latitude":30.373585,"longitude":-82.71963,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA90","iata":"","local":"FA90","name":"Port Canaveral Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Port Canaveral","elevation_ft":10,"latitude":28.4052556,"longitude":-80.6186694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA91","iata":"","local":"FA91","name":"Orange County Convention Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":92,"latitude":28.430844,"longitude":-81.456296,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA94","iata":"","local":"FA94","name":"ONeals Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":63,"latitude":28.231111,"longitude":-81.234444,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":5444,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA95","iata":"","local":"FA95","name":"Advent Health Lake Mary ER Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Mary","elevation_ft":68,"latitude":28.783739,"longitude":-81.348728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA96","iata":"","local":"FA96","name":"HCA Florida Oviedo Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Oviedo","elevation_ft":32,"latitude":28.658047,"longitude":-81.228452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA97","iata":"","local":"FA97","name":"Indian River County Sheriff's Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":24,"latitude":27.665992,"longitude":-80.425021,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA98","iata":"","local":"FA98","name":"North Collier Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":7,"latitude":26.273841,"longitude":-81.787872,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FA99","iata":"","local":"FA99","name":"Fantasy Field Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Chehalis","elevation_ft":300,"latitude":46.587833,"longitude":-122.865778,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FCOD","iata":"OLL","local":"","name":"Oyo Ollombo Airport","category":"medium_airport","iso_country":"CG","iso_region":"CG-14","municipality":"Oyo","elevation_ft":1073,"latitude":-1.226666,"longitude":15.91,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD00","iata":"","local":"FD00","name":"Dade County Mosquito Control Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Medley","elevation_ft":7,"latitude":25.8273399639,"longitude":-80.3424784541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD01","iata":"","local":"","name":"Hidden Acres Airpark","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Monticello","elevation_ft":34,"latitude":30.2796,"longitude":-84.048797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD02","iata":"","local":"FD02","name":"Patch O Blue Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Orange Springs","elevation_ft":80,"latitude":29.485001,"longitude":-82.022003,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD05","iata":"","local":"FD05","name":"Mariners Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tavernier","elevation_ft":9,"latitude":25.00693,"longitude":-80.52233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD06","iata":"","local":"FD06","name":"Lake Bird Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lutz","elevation_ft":70,"latitude":28.18090057373047,"longitude":-82.45559692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD10","iata":"","local":"","name":"Ringhaver Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Brooksville","elevation_ft":100,"latitude":28.631701,"longitude":-82.422302,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2975,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD11","iata":"","local":"FD11","name":"FPC Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":8,"latitude":30.32382,"longitude":-81.66744,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD12","iata":"","local":"FD12","name":"Toho Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":80,"latitude":28.25029945373535,"longitude":-81.3915023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":3000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD13","iata":"","local":"","name":"Cleveland Clinic Florida Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Weston","elevation_ft":8,"latitude":26.0889,"longitude":-80.365799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD09","iata":"","local":"FD09","name":"Rlm Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Kenansville","elevation_ft":75,"latitude":27.809999465942383,"longitude":-80.85890197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD04","iata":"","local":"FD04","name":"Leeward Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala/Belleview","elevation_ft":86,"latitude":29.0841007232666,"longitude":-82.03230285644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6247,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD03","iata":"","local":"FD03","name":"The Funny Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":200,"latitude":30.800199508666992,"longitude":-86.43550109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD14","iata":"","local":"FD14","name":"Paniola Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Citra","elevation_ft":140,"latitude":29.37529945373535,"longitude":-82.05809783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD16","iata":"","local":"FD16","name":"Flying C Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Branford","elevation_ft":75,"latitude":29.96579933166504,"longitude":-82.872802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD17","iata":"","local":"FD17","name":"Motorsports Complex VIP Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":6,"latitude":25.448601,"longitude":-80.410004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD18","iata":"","local":"FD18","name":"Tallahassee Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tallahassee","elevation_ft":279,"latitude":30.457577,"longitude":-84.260405,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD19","iata":"","local":"FD19","name":"Lawnwood Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":18,"latitude":27.432888,"longitude":-80.346037,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":63,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD21","iata":"","local":"","name":"Doctors Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Perry","elevation_ft":26,"latitude":30.12768,"longitude":-83.5788255,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4073,"width_ft":500,"surface":"W"},{"id":"18W/36W","length_ft":5313,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD22","iata":"","local":"FD22","name":"Melrose Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hawthorne","elevation_ft":159,"latitude":29.666997,"longitude":-81.952734,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD26","iata":"","local":"FD26","name":"Kirkland Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Graceville","elevation_ft":180,"latitude":30.981800079345703,"longitude":-85.49240112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD24","iata":"","local":"FD24","name":"Southern Fruit Groves Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Port St. Lucie","elevation_ft":26,"latitude":27.221200942993164,"longitude":-80.52059936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2873,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD27","iata":"","local":"FD27","name":"Cuyler Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Glen St Mary","elevation_ft":120,"latitude":30.362699508666992,"longitude":-82.2261962890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3250,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD28","iata":"","local":"FD28","name":"Orlando Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":157,"latitude":28.525176,"longitude":-81.377165,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD31","iata":"","local":"FD31","name":"Bradley Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort White","elevation_ft":20,"latitude":29.92799949645996,"longitude":-82.70120239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD32","iata":"","local":"","name":"Lake Gibson High School Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":165,"latitude":28.1336,"longitude":-81.942903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD34","iata":"","local":"FD34","name":"Motorsports Complex EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":6,"latitude":25.453985,"longitude":-80.407115,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD36","iata":"","local":"FD36","name":"Advent Health East Orlando Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":113,"latitude":28.541224,"longitude":-81.279941,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD39","iata":"","local":"FD39","name":"Flying Cow Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":19,"latitude":27.1556,"longitude":-80.691704,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2345,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD29","iata":"","local":"FD29","name":"Flying Dutchman Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":75,"latitude":29.130800247192383,"longitude":-82.11930084228516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD38","iata":"","local":"FD38","name":"Wellington Aero Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":19,"latitude":26.646499633789062,"longitude":-80.29419708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4055,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD33","iata":"","local":"FD33","name":"Green Swamp Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":115,"latitude":28.211700439453125,"longitude":-81.99870300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD35","iata":"","local":"FD35","name":"Redhead Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ebro","elevation_ft":102,"latitude":30.49049949645996,"longitude":-85.83940124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4200,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD41","iata":"","local":"FD41","name":"Grand Cypress Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":105,"latitude":28.38149,"longitude":-81.515508,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD42","iata":"","local":"FD42","name":"Cooksey Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":90,"latitude":30.211599349975582,"longitude":-83.05460357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD43","iata":"","local":"","name":"Oaks Helistop","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Venice","elevation_ft":14,"latitude":27.2064,"longitude":-82.488197,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":2993,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD44","iata":"","local":"FD44","name":"Eagles Nest Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crescent City","elevation_ft":63,"latitude":29.4269444,"longitude":-81.6041667,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":100,"surface":"T"},{"id":"18W/36W","length_ft":3300,"width_ft":125,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD45","iata":"","local":"FD45","name":"HCA Florida Fort Walton-Destin Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Walton Beach","elevation_ft":47,"latitude":30.455208,"longitude":-86.632621,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD46","iata":"","local":"FD46","name":"Goddard Seadrome Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Frostproof","elevation_ft":78,"latitude":27.755300521850582,"longitude":-81.51399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":17000,"width_ft":5000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD47","iata":"","local":"FD47","name":"Gulf Breeze Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Gulf Breeze","elevation_ft":14,"latitude":30.36066,"longitude":-87.156245,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD48","iata":"","local":"FD48","name":"Deep Forest Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":24,"latitude":30.241899490356445,"longitude":-81.44979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6425,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD49","iata":"","local":"FD49","name":"Montgomery's Flying M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Panasoffkee","elevation_ft":70,"latitude":28.77359962463379,"longitude":-82.13040161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD50","iata":"","local":"FD50","name":"The Trails Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mayo","elevation_ft":45,"latitude":30.109100341796875,"longitude":-83.1886978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2070,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":3465,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD52","iata":"","local":"FD52","name":"Orlando Health St Cloud Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":70,"latitude":28.24389,"longitude":-81.303454,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD53","iata":"","local":"FD53","name":"Cub Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Dade City","elevation_ft":70,"latitude":28.4533,"longitude":-82.214996,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD54","iata":"","local":"","name":"Former Orlando Helitours Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":80,"latitude":28.3345,"longitude":-81.503765,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD55","iata":"","local":"FD55","name":"Rutten Dusting Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Havana","elevation_ft":260,"latitude":30.679399490356445,"longitude":-84.36910247802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2190,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD56","iata":"","local":"FD56","name":"Inhome Medical Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Crescent City","elevation_ft":55,"latitude":29.45439910888672,"longitude":-81.51920318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD58","iata":"","local":"FD58","name":"Ascension St. Vincent's Southside Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":25,"latitude":30.25492,"longitude":-81.583078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD59","iata":"","local":"","name":"Babcock H.Q. Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Punta Gorda","elevation_ft":34,"latitude":26.869499,"longitude":-81.717598,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2464,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD60","iata":"","local":"FD60","name":"Calhoun Sheriff's Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Altha","elevation_ft":214,"latitude":30.58690071105957,"longitude":-85.10379791259766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD61","iata":"","local":"FD61","name":"Wright Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":104,"latitude":30.17659950256348,"longitude":-82.9979019165039,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD62","iata":"","local":"FD62","name":"Waters Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Meade","elevation_ft":125,"latitude":27.780083,"longitude":-81.643278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD63","iata":"","local":"FD63","name":"Squires Aviation Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jasper","elevation_ft":110,"latitude":30.513211,"longitude":-83.196845,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD64","iata":"","local":"FD64","name":"Bay Pines Veterans Administration Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"St Petersburg","elevation_ft":9,"latitude":27.8080997467041,"longitude":-82.77449798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":80,"width_ft":56,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD65","iata":"","local":"FD65","name":"Bartow High School Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bartow","elevation_ft":116,"latitude":27.8799991607666,"longitude":-81.84120178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD66","iata":"","local":"FD66","name":"Cape Coral Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Cape Coral","elevation_ft":11,"latitude":26.638648,"longitude":-81.94137,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD67","iata":"","local":"FD67","name":"Lee Memorial Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":12,"latitude":26.628744,"longitude":-81.874731,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD68","iata":"","local":"","name":"Wakulla Club Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"St. Marks","elevation_ft":15,"latitude":30.195601,"longitude":-84.246594,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":4000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD69","iata":"","local":"FD69","name":"Lake Apopka South Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Winter Garden","elevation_ft":65,"latitude":28.5734722,"longitude":-81.5949445,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":3320,"width_ft":60,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD71","iata":"","local":"FD71","name":"O'Brien Airpark East/West Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Branford","elevation_ft":55,"latitude":30.04829979,"longitude":-82.98390198,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD73","iata":"","local":"","name":"Los Olas Center Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":198,"latitude":26.1187,"longitude":-80.138702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD75","iata":"","local":"","name":"Gulf Aerospace Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Oldsmar","elevation_ft":48,"latitude":28.0411,"longitude":-82.655098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD76","iata":"","local":"FD76","name":"Thomas Contracting Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":20,"latitude":30.157778,"longitude":-81.537778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD78","iata":"","local":"FD78","name":"Kennedy Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Groveland","elevation_ft":94,"latitude":28.603099822998047,"longitude":-81.84950256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":2000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD77","iata":"","local":"FD77","name":"Wimauma Air Park","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Wimauma","elevation_ft":100,"latitude":27.71199989318848,"longitude":-82.28289794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD74","iata":"","local":"FD74","name":"Gamebird Groves Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":36,"latitude":28.066814,"longitude":-80.902536,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD79","iata":"","local":"FD79","name":"Jordan Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Belleview","elevation_ft":56,"latitude":29.01409912109375,"longitude":-81.97810363769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD80","iata":"","local":"FD80","name":"Manatee Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Old Town","elevation_ft":7,"latitude":29.505800247192383,"longitude":-82.98390197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":2400,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD81","iata":"","local":"FD81","name":"Gleim Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":170,"latitude":29.702699661254883,"longitude":-82.42569732666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD82","iata":"","local":"","name":"Porter Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":180,"latitude":30.839218,"longitude":-87.102999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD83","iata":"","local":"FD83","name":"Stout Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":65,"latitude":28.25860023498535,"longitude":-81.38400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD84","iata":"","local":"FD84","name":"Delta Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":200,"latitude":30.125200271606445,"longitude":-82.6636962890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD85","iata":"","local":"FD85","name":"DeSoto Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Arcadia","elevation_ft":65,"latitude":27.227924,"longitude":-81.849732,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD86","iata":"","local":"FD86","name":"Deep Woods Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Deland","elevation_ft":45,"latitude":29.03030014038086,"longitude":-81.4469985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD87","iata":"","local":"FD87","name":"Jacksonville John E Good Pre-Trial Detention Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":162,"latitude":30.325752,"longitude":-81.650906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD90","iata":"","local":"FD90","name":"Lafayette Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"De Leon Springs","elevation_ft":35,"latitude":29.16860008239746,"longitude":-81.26480102539062,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD91","iata":"","local":"FD91","name":"Baptist Medical Center of Nassau Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fernandina Beach","elevation_ft":20,"latitude":30.65369987487793,"longitude":-81.44819641113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":68,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD89","iata":"","local":"FD89","name":"Collier/Pine Barren Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Century","elevation_ft":220,"latitude":30.82710075378418,"longitude":-87.3582992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD92","iata":"","local":"FD92","name":"Southerland Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Geneva","elevation_ft":15,"latitude":28.732799530029297,"longitude":-81.07869720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2120,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD95","iata":"","local":"","name":"Goose Nest Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Santa Rosa Beach","elevation_ft":0,"latitude":30.3988,"longitude":-86.188904,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3052,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD97","iata":"","local":"FD97","name":"NCH Downtown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":42,"latitude":26.151028,"longitude":-81.797769,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD98","iata":"","local":"FD98","name":"Ferguson Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Winter Springs","elevation_ft":10,"latitude":28.71470069885254,"longitude":-81.27010345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FD99","iata":"","local":"FD99","name":"Dr. P. Phillips Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":98,"latitude":28.429591,"longitude":-81.477099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FGBT","iata":"BSG","local":"","name":"Bata Airport","category":"medium_airport","iso_country":"GQ","iso_region":"GQ-LI","municipality":"Bata","elevation_ft":13,"latitude":1.90547,"longitude":9.80568,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10860,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FHAW","iata":"ASI","local":"","name":"RAF Ascension Island","category":"medium_airport","iso_country":"SH","iso_region":"SH-AC","municipality":"Cat Hill","elevation_ft":278,"latitude":-7.9696,"longitude":-14.3937,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":10019,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD93","iata":"","local":"FD93","name":"Yellow River Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Holt","elevation_ft":150,"latitude":30.686354,"longitude":-86.747564,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2550,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FJDG","iata":"NKW","local":"","name":"Diego Garcia Naval Support Facility","category":"medium_airport","iso_country":"IO","iso_region":"IO-U-A","municipality":"Diego Garcia","elevation_ft":9,"latitude":-7.31327,"longitude":72.411102,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":12004,"width_ft":200,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL02","iata":"","local":"FL02","name":"Fox Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Branford","elevation_ft":72,"latitude":29.88940048217773,"longitude":-82.79869842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2480,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL03","iata":"","local":"","name":"Department of Corrections Field","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Lake Butler","elevation_ft":131,"latitude":29.99001,"longitude":-82.362058,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL01","iata":"","local":"FL01","name":"Crews Homestead Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Avon Park","elevation_ft":90,"latitude":27.6210994720459,"longitude":-81.61060333251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3125,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FIMR","iata":"RRG","local":"","name":"Sir Charles Gaetan Duval Airport","category":"medium_airport","iso_country":"MU","iso_region":"MU-VP","municipality":"Port Mathurin","elevation_ft":95,"latitude":-19.7577,"longitude":63.361,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4222,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL17","iata":"","local":"FL17","name":"Ruckel Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Niceville","elevation_ft":67,"latitude":30.51959991455078,"longitude":-86.43830108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FKKL","iata":"MVR","local":"","name":"Salak Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-EN","municipality":"Maroua","elevation_ft":1390,"latitude":10.45139980316162,"longitude":14.257399559020996,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FKKR","iata":"GOU","local":"","name":"Garoua International Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-NO","municipality":"Garoua","elevation_ft":794,"latitude":9.33588981628418,"longitude":13.370100021362305,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL04","iata":"","local":"FL04","name":"Pate Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Caryville","elevation_ft":90,"latitude":30.692100524902344,"longitude":-85.75689697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":5000,"width_ft":4000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL05","iata":"","local":"","name":"Hill Landing Strip","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":160,"latitude":30.175501,"longitude":-82.606499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL06","iata":"","local":"","name":"Golden Harvest Flying Svc Inc Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":255,"latitude":30.903,"longitude":-87.0439,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL07","iata":"","local":"FL07","name":"Wings N Sunsets LLC Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":130,"latitude":30.2502002716,"longitude":-82.92400360110001,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2163,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL08","iata":"","local":"FL08","name":"Florida Sheriffs Boys Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":93,"latitude":30.41550064086914,"longitude":-83.0165023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL09","iata":"","local":"FL09","name":"Kittyhawk Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":90,"latitude":30.33880043029785,"longitude":-83.14430236816406,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL10","iata":"","local":"FL10","name":"Little River Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mc Alpin","elevation_ft":90,"latitude":30.114999771118164,"longitude":-82.90899658203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2668,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":3375,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL11","iata":"","local":"FL11","name":"Thrifts Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Macclenny","elevation_ft":100,"latitude":30.34939956665039,"longitude":-82.12090301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL12","iata":"","local":"FL12","name":"Ingalls Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miccosukee","elevation_ft":183,"latitude":30.590499877929688,"longitude":-84.03040313720703,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL13","iata":"","local":"FL13","name":"Spencer's Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Middleburg","elevation_ft":150,"latitude":30.06859970092773,"longitude":-81.96070098876953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL14","iata":"","local":"","name":"Vosika's Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Chipley","elevation_ft":69,"latitude":30.7799,"longitude":-85.598,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL15","iata":"","local":"","name":"Steep Head Farm Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Clarksville","elevation_ft":60,"latitude":30.420635,"longitude":-85.299246,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL18","iata":"","local":"FL18","name":"Suwannee Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"O'Brien","elevation_ft":50,"latitude":30.090499877929688,"longitude":-83.05460357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL19","iata":"","local":"FL19","name":"Crosswind Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":74,"latitude":29.24530029296875,"longitude":-82.35369873046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3900,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL20","iata":"","local":"FL20","name":"The Villages Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"The Villages","elevation_ft":85,"latitude":28.949711,"longitude":-81.959891,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL21","iata":"","local":"FL21","name":"Berlin Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Oceanway","elevation_ft":20,"latitude":30.46299934387207,"longitude":-81.61509704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL22","iata":"","local":"FL22","name":"Saint Lucie Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Port Saint Lucie","elevation_ft":16,"latitude":27.288434,"longitude":-80.292856,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL23","iata":"","local":"","name":"Strazzulla Groves Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":27,"latitude":27.4975,"longitude":-80.53487,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL24","iata":"","local":"FL24","name":"HCA Florida West Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pensacola","elevation_ft":100,"latitude":30.516544,"longitude":-87.219685,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL25","iata":"","local":"","name":"Fudruckers Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Destin","elevation_ft":20,"latitude":30.391001,"longitude":-86.4533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":54,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL26","iata":"","local":"","name":"Kitching Cove Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Port St Lucie","elevation_ft":0,"latitude":27.250299,"longitude":-80.322247,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL27","iata":"","local":"FL27","name":"Lake City Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":120,"latitude":30.043800354003903,"longitude":-82.60399627685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3175,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL28","iata":"","local":"FL28","name":"State Prison Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Raiford","elevation_ft":123,"latitude":30.05579948425293,"longitude":-82.17230224609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4856,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL30","iata":"","local":"FL30","name":"HCA New Port Richey Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"New Port Richey","elevation_ft":25,"latitude":28.235162,"longitude":-82.722374,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL32","iata":"","local":"FL32","name":"HCA Florida Bayonet Point Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Hudson","elevation_ft":10,"latitude":28.362416,"longitude":-82.688025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL33","iata":"","local":"FL33","name":"Watson Flight Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Trenton","elevation_ft":55,"latitude":29.66830062866211,"longitude":-82.82620239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1950,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL36","iata":"","local":"","name":"Tocoi Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"St. Augustine","elevation_ft":35,"latitude":29.867472,"longitude":-81.367361,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL38","iata":"","local":"FL38","name":"Care Flight Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":29,"latitude":27.982466,"longitude":-82.493799,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":80,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL39","iata":"","local":"FL39","name":"Wellington Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":60,"latitude":26.63759994506836,"longitude":-80.20449829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL40","iata":"","local":"","name":"Graham Landing Strip - Moore Haven Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Moore Haven","elevation_ft":18,"latitude":26.841688,"longitude":-81.151648,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3153,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL42","iata":"","local":"FL42","name":"King Seaaero Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Winter Haven","elevation_ft":133,"latitude":28.03860092163086,"longitude":-81.75370025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":4500,"width_ft":4500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL43","iata":"","local":"FL43","name":"Burntwood Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":119,"latitude":28.258100509643555,"longitude":-81.93060302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL41","iata":"","local":"FL41","name":"Okeelanta Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"South Bay","elevation_ft":14,"latitude":26.581199645996097,"longitude":-80.75589752197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3700,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL35","iata":"","local":"FL35","name":"Geraci Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lutz","elevation_ft":65,"latitude":28.174999237060547,"longitude":-82.48777770996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL34","iata":"","local":"FL34","name":"Eglin Test Site B6 Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Valparaiso","elevation_ft":120,"latitude":30.63190078735352,"longitude":-86.74720001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5022,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL44","iata":"","local":"FL44","name":"Smokey's Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Daytona Beach","elevation_ft":10,"latitude":29.23080062866211,"longitude":-81.0280990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL45","iata":"","local":"FL45","name":"Manatee Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bradenton","elevation_ft":10,"latitude":27.49575,"longitude":-82.562537,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL46","iata":"","local":"","name":"Bartram Farms Air Park","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Elkton","elevation_ft":17,"latitude":29.821178,"longitude":-81.497058,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL47","iata":"","local":"","name":"Ashley Field","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Eustis","elevation_ft":80,"latitude":28.8925,"longitude":-81.5569,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL49","iata":"","local":"FL49","name":"Bernie Little Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":90,"latitude":29.169700622558597,"longitude":-82.14949798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL50","iata":"","local":"FL50","name":"Rossi Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":183,"latitude":30.1466007232666,"longitude":-82.57230377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3513,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL51","iata":"","local":"FL51","name":"WPTV Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":33,"latitude":26.71407,"longitude":-80.063884,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL52","iata":"","local":"FL52","name":"Angel's Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tallahassee","elevation_ft":160,"latitude":30.4810009,"longitude":-84.08679962,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL53","iata":"","local":"FL53","name":"Joey Anderson Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Marianna","elevation_ft":114,"latitude":30.734600067138672,"longitude":-85.18489837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL54","iata":"","local":"FL54","name":"Flying Tiger Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Worthington","elevation_ft":115,"latitude":29.93549919128418,"longitude":-82.41069793701172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":60,"surface":"C"},{"id":"18/36","length_ft":4000,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL55","iata":"","local":"FL55","name":"Sanford Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Sanford","elevation_ft":6,"latitude":28.822799682617188,"longitude":-81.26329803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL56","iata":"","local":"","name":"Williams Hawgwild Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":20,"latitude":27.410157,"longitude":-80.429342,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL57","iata":"","local":"FL57","name":"Carter Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Apopka","elevation_ft":80,"latitude":28.618900299072266,"longitude":-81.50869750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL58","iata":"","local":"FL58","name":"Johary Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Belleview","elevation_ft":72,"latitude":29.02639961242676,"longitude":-81.98789978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3543,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL60","iata":"","local":"FL60","name":"Reynolds Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Green Cove Springs","elevation_ft":21,"latitude":29.97249984741211,"longitude":-81.66089630126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":240,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL61","iata":"","local":"FL61","name":"Mc Ginley Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":84,"latitude":29.0261001587,"longitude":-82.2123031616,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3365,"width_ft":80,"surface":"T"},{"id":"18/36","length_ft":2650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL62","iata":"","local":"FL62","name":"Bradshaw Tree Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Deland","elevation_ft":55,"latitude":28.948601,"longitude":-81.413101,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL63","iata":"","local":"","name":"Idle Wild Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":80,"latitude":29.289101,"longitude":-82.322305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL65","iata":"","local":"","name":"Mac-Ivor & Friends Airstrip","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Hollywood","elevation_ft":4,"latitude":26.0448,"longitude":-80.373398,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL66","iata":"","local":"FL66","name":"Peach Orchard Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Archer","elevation_ft":75,"latitude":29.55970001220703,"longitude":-82.49949645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1965,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL68","iata":"","local":"FL68","name":"Sheriff's South Multi District Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":71,"latitude":29.10580062866211,"longitude":-82.09089660644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL69","iata":"","local":"FL69","name":"Grande Oaks Golf Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Davie","elevation_ft":10,"latitude":26.07979965209961,"longitude":-80.25479888916016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL70","iata":"","local":"FL70","name":"Wfla-Tv 8 Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":60,"latitude":27.94389915466309,"longitude":-82.46170043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL71","iata":"","local":"FL71","name":"Pennington Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"De Funiak Springs","elevation_ft":40,"latitude":30.374399185180664,"longitude":-86.17939758300781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL67","iata":"","local":"FL67","name":"Evans Properties Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":24,"latitude":27.27779960632324,"longitude":-80.58589935302734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL72","iata":"","local":"FL72","name":"Mezrah Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":6,"latitude":27.94750022888184,"longitude":-82.39089965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":4000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL73","iata":"","local":"","name":"Lykes Palmdale Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Palmdale","elevation_ft":42,"latitude":26.9478,"longitude":-81.318703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL76","iata":"","local":"FL76","name":"Seven Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":50,"latitude":28.96389961242676,"longitude":-82.21949768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL79","iata":"","local":"","name":"Lockheed Martin-Ocala Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":82,"latitude":29.085814,"longitude":-81.984253,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL80","iata":"","local":"FL80","name":"Lee Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lowell","elevation_ft":100,"latitude":29.334699630737305,"longitude":-82.16680145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL82","iata":"","local":"FL82","name":"Oak Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Interlachen","elevation_ft":72,"latitude":29.580536,"longitude":-81.861181,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL83","iata":"","local":"","name":"WSVN Television Channel 7 Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":4,"latitude":25.850356,"longitude":-80.154464,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1839,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL84","iata":"","local":"FL84","name":"Flying-A-Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fernandina Beach","elevation_ft":25,"latitude":30.60110092163086,"longitude":-81.57039642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL78","iata":"","local":"FL78","name":"Lewis Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Brandon","elevation_ft":45,"latitude":27.89859962463379,"longitude":-82.18260192871094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL77","iata":"","local":"FL77","name":"Calusa Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miles City","elevation_ft":15,"latitude":26.05578,"longitude":-81.06318,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1835,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL75","iata":"","local":"FL75","name":"Indian Hammock Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Drum","elevation_ft":65,"latitude":27.54199981689453,"longitude":-80.83309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL81","iata":"","local":"FL81","name":"Triple B Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":210,"latitude":30.78190040588379,"longitude":-86.46720123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL85","iata":"","local":"FL85","name":"Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pensacola","elevation_ft":115,"latitude":30.429609,"longitude":-87.230689,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL87","iata":"","local":"FL87","name":"Intra Coastal Police Sub-Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"North Miami Beach","elevation_ft":6,"latitude":25.91699981689453,"longitude":-80.1498031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL92","iata":"","local":"FL92","name":"L M Hughey Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":27,"latitude":27.9414005279541,"longitude":-82.535400390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL93","iata":"","local":"FL93","name":"Mount Sinai Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami Beach","elevation_ft":6,"latitude":25.81450080871582,"longitude":-80.14119720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL94","iata":"","local":"FL94","name":"Florida Power & Light County Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":107,"latitude":25.7682331637,"longitude":-80.34499235450001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL95","iata":"","local":"FL95","name":"Broocke Air Patch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Winter Beach","elevation_ft":22,"latitude":27.70859909057617,"longitude":-80.45279693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL97","iata":"","local":"FL97","name":"Tangerine Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Zellwood","elevation_ft":125,"latitude":28.760299682617188,"longitude":-81.60590362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL98","iata":"","local":"FL98","name":"Kelly Tractor Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":8,"latitude":25.826578,"longitude":-80.333485,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL99","iata":"","local":"FL99","name":"Flying-H Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fruitland Park","elevation_ft":80,"latitude":28.876100540161133,"longitude":-81.88899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FL91","iata":"","local":"FA02","name":"Big Cypress Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Sunniland","elevation_ft":22,"latitude":26.309799,"longitude":-81.227303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL90","iata":"","local":"FL90","name":"Salty Approach Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":6,"latitude":26.6033992767,"longitude":-82.2201004028,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNBC","iata":"SSY","local":"","name":"Mbanza Congo Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-ZAI","municipality":"Mbanza Congo","elevation_ft":1860,"latitude":-6.269899845123291,"longitude":14.246999740600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6316,"width_ft":130,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNSO","iata":"SZA","local":"","name":"Soyo Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-ZAI","municipality":"Soyo","elevation_ft":15,"latitude":-6.141089916229248,"longitude":12.371800422668455,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5987,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNDU","iata":"DUE","local":"","name":"Dundo Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-LNO","municipality":"Chitato","elevation_ft":2451,"latitude":-7.400889873504639,"longitude":20.818500518798828,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FOOG","iata":"POG","local":"","name":"Port Gentil Airport","category":"medium_airport","iso_country":"GA","iso_region":"GA-8","municipality":"Port Gentil","elevation_ft":13,"latitude":-0.7117390036582947,"longitude":8.754380226135254,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FOON","iata":"MVB","local":"","name":"M'Vengue El Hadj Omar Bongo Ondimba International Airport","category":"medium_airport","iso_country":"GA","iso_region":"GA-2","municipality":"Franceville","elevation_ft":1450,"latitude":-1.6561599969863892,"longitude":13.437999725341797,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":10105,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNUG","iata":"UGO","local":"","name":"Uige Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-UIG","municipality":"Uige","elevation_ft":2720,"latitude":-7.60306978225708,"longitude":15.027799606323242,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7400,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FPST","iata":"TMS","local":"","name":"São Tomé International Airport","category":"medium_airport","iso_country":"ST","iso_region":"ST-01","municipality":"São Tomé","elevation_ft":33,"latitude":0.378175,"longitude":6.71215,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7087,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FTTA","iata":"SRH","local":"","name":"Sarh Airport","category":"small_airport","iso_country":"TD","iso_region":"TD-MC","municipality":"Sarh","elevation_ft":1198,"latitude":9.14444,"longitude":18.374399,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/20","length_ft":5906,"width_ft":131,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FZNA","iata":"GOM","local":"","name":"Goma International Airport","category":"medium_airport","iso_country":"CD","iso_region":"CD-NK","municipality":"Goma","elevation_ft":5089,"latitude":-1.66617,"longitude":29.237929,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9826,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FTTC","iata":"AEH","local":"","name":"Abeche Airport","category":"medium_airport","iso_country":"TD","iso_region":"TD-OD","municipality":"Abeche","elevation_ft":1788,"latitude":13.847,"longitude":20.844299,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9186,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FTTD","iata":"MQQ","local":"","name":"Moundou Airport","category":"medium_airport","iso_country":"TD","iso_region":"TD-LO","municipality":"Moundou","elevation_ft":1407,"latitude":8.62441,"longitude":16.0714,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FTTY","iata":"FYT","local":"","name":"Faya Largeau Airport","category":"medium_airport","iso_country":"TD","iso_region":"TD-BO","municipality":"UNKNOWN","elevation_ft":771,"latitude":17.917101,"longitude":19.111099,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FYWB","iata":"WVB","local":"","name":"Walvis Bay Airport","category":"medium_airport","iso_country":"UNKNOWN","iso_region":"NA-ER","municipality":"Walvis Bay","elevation_ft":299,"latitude":-22.9799,"longitude":14.6453,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6959,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"FZIC","iata":"FKI","local":"","name":"Bangoka International Airport","category":"medium_airport","iso_country":"CD","iso_region":"CD-TS","municipality":"Kisangani","elevation_ft":1417,"latitude":0.481638997793,"longitude":25.3379993439,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA01","iata":"","local":"","name":"Flying H Ranch Inc Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Jackson","elevation_ft":722,"latitude":33.1978,"longitude":-84.084396,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1860,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA02","iata":"","local":"","name":"Howard Private Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Jackson","elevation_ft":720,"latitude":33.357008,"longitude":-83.963442,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA05","iata":"","local":"","name":"Ramada Inn Antebellum Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Madison","elevation_ft":660,"latitude":33.553591,"longitude":-83.47145,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA07","iata":"","local":"","name":"Crawford Hendrix Farm Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Statesboro","elevation_ft":100,"latitude":32.239672,"longitude":-81.640434,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA11","iata":"","local":"GA11","name":"Childrens Health Care of Atlanta at Scottish Rite Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1158,"latitude":33.907207,"longitude":-84.354127,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA12","iata":"","local":"","name":"Tallassee Plantation Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Albany","elevation_ft":240,"latitude":31.5835,"longitude":-84.390503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA13","iata":"","local":"","name":"Double 'O' Farm Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Albany","elevation_ft":297,"latitude":31.534901,"longitude":-84.002096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA10","iata":"","local":"GA10","name":"Ridgeview Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Zebulon","elevation_ft":854,"latitude":33.080396,"longitude":-84.359121,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA06","iata":"","local":"GA06","name":"Monticello Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Monticello","elevation_ft":690,"latitude":33.33250045776367,"longitude":-83.72689819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA04","iata":"","local":"GA04","name":"Mallards Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Locust Grove","elevation_ft":837,"latitude":33.364574,"longitude":-84.168249,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA00","iata":"","local":"GA00","name":"Kintail Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Monroe","elevation_ft":810,"latitude":33.82559967041016,"longitude":-83.63970184326172,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA03","iata":"","local":"GA03","name":"Wilson Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Ringgold","elevation_ft":795,"latitude":34.86949920654297,"longitude":-85.19969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA14","iata":"","local":"GA14","name":"Pinebloom Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Albany","elevation_ft":170,"latitude":31.402999877929688,"longitude":-84.32270050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA15","iata":"","local":"","name":"Klockner Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Bostwick","elevation_ft":740,"latitude":33.708698,"longitude":-83.579101,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA19","iata":"","local":"","name":"Hearn Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Claxton","elevation_ft":185,"latitude":32.15691,"longitude":-81.888442,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1982,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA20","iata":"","local":"GA20","name":"Stafford Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Saint Marys","elevation_ft":28,"latitude":30.8111,"longitude":-81.462799,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA21","iata":"","local":"GA21","name":"Patterson Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Darien","elevation_ft":10,"latitude":31.46129989624023,"longitude":-81.33869934082031,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA22","iata":"","local":"GA22","name":"Jordans Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Arlington","elevation_ft":250,"latitude":31.438499450683597,"longitude":-84.70829772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA24","iata":"","local":"GA24","name":"Monroe County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Forsyth","elevation_ft":1620,"latitude":33.030902,"longitude":-83.945049,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA26","iata":"","local":"GA26","name":"Fort Gordon Hqs Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Gordon(Augusta)","elevation_ft":458,"latitude":33.4203987121582,"longitude":-82.13960266113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA28","iata":"","local":"GA28","name":"East Georgia Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Statesboro","elevation_ft":212,"latitude":32.40530014038086,"longitude":-81.76830291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA29","iata":"","local":"GA29","name":"Wellers Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hollonville","elevation_ft":843,"latitude":33.156087,"longitude":-84.431201,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA16","iata":"","local":"GA16","name":"Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Bostwick","elevation_ft":710,"latitude":33.724300384521484,"longitude":-83.56680297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA23","iata":"","local":"GA23","name":"Wyatt Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Summerville","elevation_ft":720,"latitude":34.57830047607422,"longitude":-85.38390350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2750,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA30","iata":"","local":"","name":"Eliott Barrow Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Matthews","elevation_ft":400,"latitude":33.2001,"longitude":-82.266502,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA32","iata":"","local":"GA32","name":"Candler County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Metter","elevation_ft":95,"latitude":32.407555,"longitude":-82.065178,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA33","iata":"","local":"GA33","name":"West Georgia Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Lagrange","elevation_ft":756,"latitude":33.03120040893555,"longitude":-85.05580139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":105,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA34","iata":"","local":"","name":"Tootle Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Reidsville","elevation_ft":202,"latitude":32.032028,"longitude":-82.044178,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA36","iata":"","local":"","name":"Foothills-Holcomb Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Marble Hill","elevation_ft":1425,"latitude":34.391701,"longitude":-84.241699,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA37","iata":"","local":"GA37","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Savannah","elevation_ft":20,"latitude":32.02109909057617,"longitude":-81.0802993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA38","iata":"","local":"GA38","name":"Walton County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Monroe","elevation_ft":869,"latitude":33.78319931,"longitude":-83.71790314,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA40","iata":"","local":"GA40","name":"Beaver Trail Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Gainesville","elevation_ft":1200,"latitude":34.25419998168945,"longitude":-83.96849822998047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA42","iata":"","local":"","name":"Crowe Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Sylvester","elevation_ft":330,"latitude":31.6168,"longitude":-83.883202,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA43","iata":"","local":"GA43","name":"Briggs Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Guyton","elevation_ft":78,"latitude":32.3213996887207,"longitude":-81.42669677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA35","iata":"","local":"GA35","name":"Cypress Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Bloomingdale","elevation_ft":30,"latitude":32.157848,"longitude":-81.396418,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA31","iata":"","local":"GA31","name":"Two Rocks Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Palmetto","elevation_ft":964,"latitude":33.469422,"longitude":-84.669026,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA45","iata":"","local":"GA45","name":"Townsend Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Townsend","elevation_ft":26,"latitude":31.54330062866211,"longitude":-81.53479766845703,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA47","iata":"","local":"GA47","name":"Bivins Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Waycross","elevation_ft":134,"latitude":31.184121,"longitude":-82.271421,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2350,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA48","iata":"","local":"GA48","name":"Mclendon Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Edison","elevation_ft":360,"latitude":31.586111,"longitude":-84.790556,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA49","iata":"","local":"","name":"Thistle Field","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Yatesville","elevation_ft":730,"latitude":32.927898,"longitude":-84.141296,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA51","iata":"","local":"GA51","name":"Vogtle Electric Generating Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Waynesboro","elevation_ft":130,"latitude":33.12519836425781,"longitude":-81.74539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA52","iata":"","local":"GA52","name":"Emory Saint Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1035,"latitude":33.908356,"longitude":-84.351043,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA53","iata":"","local":"","name":"Rollins Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":810,"latitude":33.81514,"longitude":-84.369923,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":850,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA54","iata":"","local":"GA54","name":"Interstate North Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":875,"latitude":33.900901794433594,"longitude":-84.46920013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA55","iata":"","local":"GA55","name":"Northside Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1050,"latitude":33.909843,"longitude":-84.355688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA58","iata":"","local":"GA58","name":"Dekalb Police Dept Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Avondale Estates","elevation_ft":1080,"latitude":33.7773017883,"longitude":-84.242401123,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA59","iata":"","local":"GA59","name":"Antique Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Barnesville","elevation_ft":800,"latitude":33.100101470947266,"longitude":-84.05850219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA50","iata":"","local":"GA50","name":"Dream Team Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Madison","elevation_ft":604,"latitude":33.59682,"longitude":-83.519469,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA60","iata":"","local":"GA60","name":"Memorial Satilla Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Waycross","elevation_ft":40,"latitude":31.224215,"longitude":-82.347642,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA64","iata":"","local":"GA64","name":"Emory University Hospital Midtown Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1050,"latitude":33.768688,"longitude":-84.386855,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA65","iata":"","local":"","name":"Mercer Airfield","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Calhoun","elevation_ft":660,"latitude":34.437,"longitude":-84.919702,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1508,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA66","iata":"","local":"GA66","name":"Piedmont Hospital Bridge Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":939,"latitude":33.809669,"longitude":-84.39515,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA70","iata":"","local":"GA70","name":"Hamilton Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Dalton","elevation_ft":727,"latitude":34.78900146484375,"longitude":-84.97270202636719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA71","iata":"","local":"GA71","name":"South Fulton Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"East Point","elevation_ft":952,"latitude":33.67959976196289,"longitude":-84.4271011352539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":74,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA72","iata":"","local":"GA72","name":"Pratermill Flight Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dalton","elevation_ft":780,"latitude":34.88169860839844,"longitude":-84.88970184326172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA68","iata":"","local":"GA68","name":"Flying H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":800,"latitude":33.11285,"longitude":-84.450366,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA61","iata":"","local":"GA61","name":"Kenley Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Brooks","elevation_ft":780,"latitude":33.269234,"longitude":-84.497624,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA67","iata":"","local":"GA67","name":"King Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Clarkesville","elevation_ft":1840,"latitude":34.7681999206543,"longitude":-83.59290313720703,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1610,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA77","iata":"","local":"","name":"Wallace Field","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Rome","elevation_ft":810,"latitude":34.135798,"longitude":-85.112197,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA78","iata":"","local":"GA78","name":"Appling General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Baxley","elevation_ft":250,"latitude":31.768800735473636,"longitude":-82.34850311279297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA82","iata":"","local":"","name":"Morgan Farm Field","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Covington","elevation_ft":700,"latitude":33.595901,"longitude":-83.804102,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2750,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA84","iata":"","local":"GA84","name":"McDonald Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1080,"latitude":34.203613,"longitude":-84.051783,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":320,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA85","iata":"","local":"GA85","name":"State Capitol Parking Lot Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1000,"latitude":33.747445,"longitude":-84.388266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":28,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA89","iata":"","local":"GA89","name":"Diamond S Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lovejoy","elevation_ft":910,"latitude":33.475799560546875,"longitude":-84.27690124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA75","iata":"","local":"GA75","name":"Meadowlark Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":784,"latitude":33.08729934692383,"longitude":-84.40519714355469,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA87","iata":"","local":"GA87","name":"High Valley Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Suches","elevation_ft":2800,"latitude":34.69810104370117,"longitude":-84.01270294189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA80","iata":"","local":"GA80","name":"Whispering Pines Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Conyers","elevation_ft":940,"latitude":33.78229904174805,"longitude":-83.98880004882812,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA76","iata":"","local":"GA76","name":"Broken Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Forsyth","elevation_ft":620,"latitude":33.15489959716797,"longitude":-83.8988037109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA83","iata":"","local":"GA83","name":"Windy Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Covington","elevation_ft":740,"latitude":33.54679870605469,"longitude":-83.80549621582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA93","iata":"","local":"","name":"Bishops Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":870,"latitude":33.445301,"longitude":-84.4067,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA96","iata":"","local":"GA96","name":"Fort Mcpherson Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Mcpherson","elevation_ft":1052,"latitude":33.712501525878906,"longitude":-84.43060302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA97","iata":"","local":"","name":"Joseph G Lapointe(Martin Army Hospital) Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Fort Benning(Columbus)","elevation_ft":405,"latitude":32.383499,"longitude":-84.933296,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GA92","iata":"","local":"GA92","name":"Beck Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":990,"latitude":33.52123,"longitude":-84.510211,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA99","iata":"","local":"GA99","name":"Miami Valley Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Valley","elevation_ft":468,"latitude":32.547414,"longitude":-83.801177,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GAMB","iata":"MZI","local":"","name":"Mopti Ambodédjo International Airport","category":"medium_airport","iso_country":"ML","iso_region":"ML-5","municipality":"Sévaré","elevation_ft":906,"latitude":14.5128,"longitude":-4.07956,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8333,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GAGO","iata":"GAQ","local":"","name":"Gao Airport","category":"medium_airport","iso_country":"ML","iso_region":"ML-7","municipality":"UNKNOWN","elevation_ft":870,"latitude":16.2484,"longitude":-0.005456,"has_tower":true,"has_beacon":false,"runways":[{"id":"06L/24R","length_ft":8202,"width_ft":148,"surface":"H"},{"id":"06R/24L","length_ft":5906,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA98","iata":"","local":"GA98","name":"Grayhill Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"LaGrange","elevation_ft":750,"latitude":32.9489021301,"longitude":-85.05052948,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA94","iata":"","local":"GA94","name":"McLendon Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":900,"latitude":33.491501,"longitude":-84.489403,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1433,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA90","iata":"","local":"GA90","name":"Walker Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":875,"latitude":33.451329,"longitude":-84.408624,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE00","iata":"","local":"GE00","name":"Morris Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-GA","municipality":"Evans","elevation_ft":102,"latitude":33.60969924926758,"longitude":-82.13580322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE01","iata":"","local":"GE01","name":"Christians Folly Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Naylor","elevation_ft":208,"latitude":30.930423,"longitude":-83.079386,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE02","iata":"","local":"GE02","name":"Adventhealth Gordon Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Calhoun","elevation_ft":711,"latitude":34.51035,"longitude":-84.927729,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE03","iata":"","local":"","name":"Lanier Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1225,"latitude":34.169231,"longitude":-84.169575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE04","iata":"","local":"GE04","name":"Mclendon Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Mulberry Grove","elevation_ft":650,"latitude":32.666944,"longitude":-84.965556,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE05","iata":"","local":"GE05","name":"Gibson Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lafayette","elevation_ft":750,"latitude":34.6156005859375,"longitude":-85.34310150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE13","iata":"","local":"GE13","name":"FMC Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Rome","elevation_ft":595,"latitude":34.259997,"longitude":-85.180322,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE14","iata":"","local":"GE14","name":"Elite Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Ocilla","elevation_ft":325,"latitude":31.518333,"longitude":-83.1325,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE15","iata":"","local":"GE15","name":"Rabit Hole III Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Rutledge","elevation_ft":760,"latitude":33.612327,"longitude":-83.650498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":600,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE20","iata":"","local":"GE20","name":"Critter Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Louisville","elevation_ft":330,"latitude":33.054297,"longitude":-82.324862,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1400,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE21","iata":"","local":"GE21","name":"Anderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Bainbridge","elevation_ft":138,"latitude":31.018681,"longitude":-84.392917,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3350,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE24","iata":"","local":"GE24","name":"Se Georgia Health System-Brunswick Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Brunswick","elevation_ft":33,"latitude":31.17530059814453,"longitude":-81.48529815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE28","iata":"","local":"GE28","name":"Emory Johns Creek Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Johns Creek","elevation_ft":1060,"latitude":34.067405,"longitude":-84.177461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE12","iata":"","local":"GE12","name":"Richter Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Ashburn","elevation_ft":357,"latitude":31.74860000610352,"longitude":-83.57360076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4693,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE27","iata":"","local":"GE27","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Byron","elevation_ft":475,"latitude":32.60219955444336,"longitude":-83.75420379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE33","iata":"","local":"GE33","name":"River Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Locust Grove","elevation_ft":718,"latitude":33.304319,"longitude":-84.136798,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE11","iata":"","local":"GE11","name":"Hogjowl Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Layfayette","elevation_ft":1790,"latitude":34.60580062866211,"longitude":-85.46189880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE34","iata":"","local":"GE34","name":"Stone Mountain Park Public Safety Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Stone Mountain","elevation_ft":895,"latitude":33.818889,"longitude":-84.150556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE88","iata":"","local":"GE88","name":"Floyd County Sheriffs Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Rome","elevation_ft":670,"latitude":34.281389,"longitude":-85.141944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GE92","iata":"","local":"GE92","name":"Rabbit Hole II Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Buckhead","elevation_ft":460,"latitude":33.49961,"longitude":-83.320635,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GGOV","iata":"OXB","local":"","name":"Osvaldo Vieira International Airport","category":"medium_airport","iso_country":"GW","iso_region":"GW-BS","municipality":"Bissau","elevation_ft":129,"latitude":11.894800186157228,"longitude":-15.65369987487793,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMAT","iata":"TTA","local":"","name":"Tan Tan Airport","category":"medium_airport","iso_country":"MA","iso_region":"MA-TNT","municipality":"Tan Tan","elevation_ft":653,"latitude":28.44820022583008,"longitude":-11.161299705505373,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE53","iata":"","local":"GE53","name":"Chigger Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Locust Grove","elevation_ft":800,"latitude":33.316745,"longitude":-84.150612,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE35","iata":"","local":"GE35","name":"Southern Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Bostwick","elevation_ft":121,"latitude":33.731389,"longitude":-83.469722,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GMAZ","iata":"","local":"","name":"Zagora Airport","category":"small_airport","iso_country":"MA","iso_region":"MA-TIZ","municipality":"Zagora","elevation_ft":2631,"latitude":30.320299,"longitude":-5.86667,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9843,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GMMH","iata":"VIL","local":"","name":"Dakhla Airport","category":"medium_airport","iso_country":"EH","iso_region":"EH-U-A","municipality":"Dakhla","elevation_ft":36,"latitude":23.7183,"longitude":-15.932,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKEM","iata":"","local":"","name":"Embu Airport","category":"small_airport","iso_country":"KE","iso_region":"KE-400","municipality":"Embu","elevation_ft":4150,"latitude":-0.57327,"longitude":37.49726,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3110,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GMMD","iata":"BEM","local":"","name":"Beni Mellal Airport","category":"small_airport","iso_country":"MA","iso_region":"MA-BEM","municipality":"Oulad Yaich","elevation_ft":1694,"latitude":32.401895,"longitude":-6.315905,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8169,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GOGS","iata":"CSK","local":"","name":"Cap Skirring Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-ZG","municipality":"Cap Skirring","elevation_ft":52,"latitude":12.39533,"longitude":-16.748,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GOTK","iata":"KGG","local":"","name":"Kédougou Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-TC","municipality":"Kédougou","elevation_ft":584,"latitude":12.57229995727539,"longitude":-12.22029972076416,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5900,"width_ft":60,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA52","iata":"","local":"","name":"Freedom Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Estherville","elevation_ft":1350,"latitude":43.443001,"longitude":-94.848,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"GOSM","iata":"MAX","local":"","name":"Ouro Sogui Airport","category":"medium_airport","iso_country":"SN","iso_region":"SN-MT","municipality":"Ouro Sogui","elevation_ft":85,"latitude":15.5936,"longitude":-13.3228,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6300,"width_ft":100,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GQPA","iata":"ATR","local":"","name":"Atar International Airport","category":"medium_airport","iso_country":"MR","iso_region":"MR-07","municipality":"Atar","elevation_ft":734,"latitude":20.506799697875977,"longitude":-13.04319953918457,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9855,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GOSP","iata":"POD","local":"","name":"Podor Airport","category":"small_airport","iso_country":"SN","iso_region":"SN-SL","municipality":"Podor","elevation_ft":20,"latitude":16.678155,"longitude":-14.964957,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5120,"width_ft":100,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GUCY","iata":"CKY","local":"","name":"Conakry International Airport","category":"medium_airport","iso_country":"GN","iso_region":"GN-C","municipality":"Conakry","elevation_ft":72,"latitude":9.57689,"longitude":-13.612,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HAAB","iata":"ADD","local":"","name":"Addis Ababa Bole International Airport","category":"large_airport","iso_country":"ET","iso_region":"ET-AA","municipality":"Addis Ababa","elevation_ft":7630,"latitude":8.97789,"longitude":38.799301,"has_tower":true,"has_beacon":true,"runways":[{"id":"07R/25L","length_ft":12468,"width_ft":148,"surface":"H"},{"id":"07L/25R","length_ft":12139,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"HAMK","iata":"MQX","local":"","name":"Alula Aba Nega Airport","category":"medium_airport","iso_country":"ET","iso_region":"ET-TI","municipality":"Mekelle","elevation_ft":7396,"latitude":13.4674,"longitude":39.533501,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HABD","iata":"BJR","local":"","name":"Bahir Dar Airport","category":"medium_airport","iso_country":"ET","iso_region":"ET-AM","municipality":"Bahir Dar","elevation_ft":5978,"latitude":11.6081,"longitude":37.321602,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":12139,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HALA","iata":"AWA","local":"","name":"Hawassa International Airport","category":"medium_airport","iso_country":"ET","iso_region":"ET-XSD","municipality":"Hawassa","elevation_ft":5450,"latitude":7.099869,"longitude":38.396187,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GQPZ","iata":"OUZ","local":"","name":"Tazadit Airport","category":"small_airport","iso_country":"MR","iso_region":"MR-11","municipality":"Zouérate","elevation_ft":1119,"latitude":22.757345,"longitude":-12.482228,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HDAM","iata":"JIB","local":"","name":"Djibouti-Ambouli Airport","category":"large_airport","iso_country":"DJ","iso_region":"DJ-DJ","municipality":"Djibouti City","elevation_ft":49,"latitude":11.5473,"longitude":43.1595,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10325,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEAR","iata":"AAC","local":"","name":"El Arish International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-SIN","municipality":"El Arish","elevation_ft":118,"latitude":31.078565,"longitude":33.836791,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9905,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEAX","iata":"","local":"","name":"El Nuzha Airport","category":"closed","iso_country":"EG","iso_region":"EG-ALX","municipality":"Alexandria","elevation_ft":-6,"latitude":31.181681,"longitude":29.94629,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7221,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEIS","iata":"","local":"","name":"Ismailia Air Base","category":"medium_airport","iso_country":"EG","iso_region":"EG-IS","municipality":"Ismailia","elevation_ft":43,"latitude":30.597951,"longitude":32.235689,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":10400,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEAL","iata":"DBB","local":"","name":"El Alamein International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-MT","municipality":"El Alamein","elevation_ft":154,"latitude":30.930326,"longitude":28.463076,"has_tower":true,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":11483,"width_ft":148,"surface":"H"},{"id":"13R/31L","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HCMF","iata":"BSA","local":"","name":"Bosaso / Bender Qassim International Airport","category":"small_airport","iso_country":"SO","iso_region":"SO-BR","municipality":"Bosaso","elevation_ft":3,"latitude":11.275235,"longitude":49.139231,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HEMM","iata":"MUH","local":"","name":"Marsa Matruh International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-MT","municipality":"Marsa Matruh","elevation_ft":75,"latitude":31.338225,"longitude":27.217577,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEOW","iata":"GSQ","local":"","name":"El Owainat East International Airport","category":"small_airport","iso_country":"EG","iso_region":"EG-WAD","municipality":"Sharq El Owainat","elevation_ft":843,"latitude":22.584256,"longitude":28.721609,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HEPS","iata":"PSD","local":"","name":"Port Said International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-PTS","municipality":"Port Said","elevation_ft":10,"latitude":31.279285,"longitude":32.240582,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7707,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESC","iata":"SKV","local":"","name":"Saint Catherine International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-JS","municipality":"Saint Catherine","elevation_ft":4402,"latitude":28.684601,"longitude":34.062681,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6939,"width_ft":118,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESN","iata":"ASW","local":"","name":"Aswan International Airport","category":"medium_airport","iso_country":"EG","iso_region":"EG-ASN","municipality":"Aswan","elevation_ft":650,"latitude":23.968137,"longitude":32.824445,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":11158,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HESW","iata":"SEW","local":"","name":"Siwa Oasis North Airport","category":"small_airport","iso_country":"EG","iso_region":"EG-MT","municipality":"Siwa Oasis","elevation_ft":289,"latitude":29.346234,"longitude":25.505624,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5906,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI01","iata":"HPV","local":"HI01","name":"Princeville Airport","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Hanalei","elevation_ft":344,"latitude":22.209313,"longitude":-159.44515,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3560,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI02","iata":"","local":"","name":"Peleau Airport","category":"closed","iso_country":"US","iso_region":"US-HI","municipality":"Hakalau","elevation_ft":1088,"latitude":19.902201,"longitude":-155.16601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI03","iata":"","local":"HI03","name":"Hanamaulu Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Hanamaulu","elevation_ft":404,"latitude":22.041896,"longitude":-159.388746,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI04","iata":"","local":"HI04","name":"Hilo Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Hilo","elevation_ft":487,"latitude":19.718464,"longitude":-155.114422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":86,"width_ft":86,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI05","iata":"","local":"HI05","name":"Honokaa Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Honokaa","elevation_ft":1440,"latitude":20.083599,"longitude":-155.501999,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI07","iata":"WKL","local":"HI07","name":"Waikoloa Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Waikoloa Village","elevation_ft":119,"latitude":19.920546,"longitude":-155.860628,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI18","iata":"","local":"HI18","name":"Lucy Henriques Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Waimea (Kamuela)","elevation_ft":2707,"latitude":20.02174,"longitude":-155.663466,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI22","iata":"","local":"HI22","name":"Tinian Heliport","category":"heliport","iso_country":"MP","iso_region":"MP-U-A","municipality":"San Jose, Tinian","elevation_ft":75,"latitude":14.963692,"longitude":145.627127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI23","iata":"","local":"HI23","name":"Mountain View Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Mountain View","elevation_ft":1500,"latitude":19.546359,"longitude":-155.108116,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI24","iata":"","local":"HI24","name":"Heco-Waiau Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Honolulu","elevation_ft":6,"latitude":21.3908,"longitude":-157.964996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI27","iata":"","local":"HI27","name":"Upper Paauilo Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Paauilo","elevation_ft":1520,"latitude":20.028196,"longitude":-155.388162,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1400,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI28","iata":"","local":"HI28","name":"Pahala Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Pahala","elevation_ft":1195,"latitude":19.215392,"longitude":-155.468559,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1650,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI33","iata":"","local":"HI33","name":"Haiku Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Lihue","elevation_ft":385,"latitude":21.966071,"longitude":-159.426963,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI38","iata":"","local":"HI38","name":"The Queen's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Honolulu","elevation_ft":102,"latitude":21.308197,"longitude":-157.853645,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI40","iata":"","local":"HI40","name":"Kuakini Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Honolulu","elevation_ft":175,"latitude":21.32111,"longitude":-157.85669,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI46","iata":"","local":"HI46","name":"HI 23 (Puhi) Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Puhi","elevation_ft":480,"latitude":21.944914,"longitude":-159.439831,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI49","iata":"","local":"HI49","name":"Panda Airport","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kaunakakai","elevation_ft":250,"latitude":21.148991,"longitude":-157.258432,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1920,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI50","iata":"","local":"HI50","name":"Hyatt Regency Maui Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Lahaina","elevation_ft":102,"latitude":20.912204,"longitude":-156.691287,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":232,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI52","iata":"","local":"HI52","name":"Rainshed Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Volcano Village","elevation_ft":4000,"latitude":19.433268,"longitude":-155.25991,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI55","iata":"","local":"HI55","name":"Moanalua Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Honolulu","elevation_ft":18,"latitude":21.3641,"longitude":-157.899002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI57","iata":"","local":"HI57","name":"Kahuku Fire & Police Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Kahuku","elevation_ft":11,"latitude":21.674228,"longitude":-157.946414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI58","iata":"","local":"HI58","name":"Turtle Bay Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Kahuku","elevation_ft":13,"latitude":21.703852,"longitude":-157.995384,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI63","iata":"","local":"HI63","name":"Coral Ocean Point Pro-Shop Heliport","category":"heliport","iso_country":"MP","iso_region":"MP-U-A","municipality":"Koblerville, Saipan","elevation_ft":125,"latitude":15.114978,"longitude":145.701649,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":67,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HI64","iata":"","local":"HI64","name":"Tinian Dynasty Heliport","category":"heliport","iso_country":"MP","iso_region":"MP-U-A","municipality":"San Jose, Tinian","elevation_ft":175,"latitude":14.962748,"longitude":145.629863,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKEL","iata":"EDL","local":"","name":"Eldoret International Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-700","municipality":"Eldoret","elevation_ft":6941,"latitude":0.4044579863548279,"longitude":35.23889923095703,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKJK","iata":"NBO","local":"","name":"Jomo Kenyatta International Airport","category":"large_airport","iso_country":"KE","iso_region":"KE-110","municipality":"Nairobi","elevation_ft":5330,"latitude":-1.31923997402,"longitude":36.9277992249,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":13507,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKMO","iata":"MBA","local":"","name":"Moi International Airport","category":"large_airport","iso_country":"KE","iso_region":"KE-300","municipality":"Mombasa","elevation_ft":200,"latitude":-4.03483,"longitude":39.5942,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10991,"width_ft":148,"surface":"H"},{"id":"15/33","length_ft":3609,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HKWJ","iata":"WJR","local":"","name":"Wajir Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-500","municipality":"Wajir","elevation_ft":770,"latitude":1.73324,"longitude":40.091599,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9186,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HKKI","iata":"KIS","local":"","name":"Kisumu Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-600","municipality":"Kisumu","elevation_ft":3734,"latitude":-0.0861390009522438,"longitude":34.72890090942383,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10804,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HLGT","iata":"GHT","local":"","name":"Ghat Airport","category":"medium_airport","iso_country":"LY","iso_region":"LY-GT","municipality":"Ghat","elevation_ft":2296,"latitude":25.1455993652,"longitude":10.1426000595,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HLGD","iata":"SRX","local":"","name":"Sirt International Airport / Ghardabiya Airbase","category":"medium_airport","iso_country":"LY","iso_region":"LY-SR","municipality":"Sirt","elevation_ft":267,"latitude":31.063499,"longitude":16.594999,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HKGA","iata":"GAS","local":"","name":"Garissa Airport","category":"small_airport","iso_country":"KE","iso_region":"KE-500","municipality":"Garissa","elevation_ft":475,"latitude":-0.4635080099105835,"longitude":39.64830017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3869,"width_ft":62,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HLLB","iata":"BEN","local":"","name":"Benina International Airport","category":"medium_airport","iso_country":"LY","iso_region":"LY-BA","municipality":"Benina","elevation_ft":433,"latitude":32.096802,"longitude":20.269501,"has_tower":true,"has_beacon":false,"runways":[{"id":"15R/33L","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"15L/33R","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HLLQ","iata":"LAQ","local":"","name":"Al Abraq International Airport","category":"medium_airport","iso_country":"LY","iso_region":"LY-JA","municipality":"Al Albraq","elevation_ft":2157,"latitude":32.7887,"longitude":21.9643,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":11811,"width_ft":161,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HLLT","iata":"","local":"","name":"Tripoli International Airport","category":"closed","iso_country":"LY","iso_region":"LY-TB","municipality":"Tripoli","elevation_ft":263,"latitude":32.663502,"longitude":13.159,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"18/36","length_ft":8281,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HLON","iata":"HUQ","local":"","name":"Hon Airport","category":"small_airport","iso_country":"LY","iso_region":"LY-JU","municipality":"UNKNOWN","elevation_ft":919,"latitude":29.1101,"longitude":15.9656,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5905,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HLTQ","iata":"TOB","local":"","name":"Tobruk International Airport","category":"small_airport","iso_country":"LY","iso_region":"LY-BU","municipality":"Adam","elevation_ft":519,"latitude":31.861,"longitude":23.907,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HRZA","iata":"KME","local":"","name":"Kamembe Airport","category":"medium_airport","iso_country":"RW","iso_region":"RW-04","municipality":"Kamembe","elevation_ft":5192,"latitude":-2.462239980697632,"longitude":28.907899856567383,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4767,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HSOB","iata":"EBD","local":"","name":"El-Obeid Airport","category":"medium_airport","iso_country":"SD","iso_region":"SD-09","municipality":"El-Obeid","elevation_ft":1927,"latitude":13.1532,"longitude":30.2327,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9810,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HLLS","iata":"SEB","local":"","name":"Sabha Airport","category":"medium_airport","iso_country":"LY","iso_region":"LY-SB","municipality":"Sabha","elevation_ft":1427,"latitude":26.992452,"longitude":14.466162,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":11811,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":4462,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTDA","iata":"DAR","local":"","name":"Julius Nyerere International Airport","category":"large_airport","iso_country":"TZ","iso_region":"TZ-02","municipality":"Dar es Salaam","elevation_ft":182,"latitude":-6.87811,"longitude":39.202599,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9843,"width_ft":151,"surface":"H"},{"id":"14/32","length_ft":3281,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HTDO","iata":"DOD","local":"","name":"Dodoma Airport","category":"medium_airport","iso_country":"TZ","iso_region":"TZ-03","municipality":"Dodoma","elevation_ft":3673,"latitude":-6.17044,"longitude":35.752602,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9022,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HTIR","iata":"IRI","local":"","name":"Iringa Airport","category":"medium_airport","iso_country":"TZ","iso_region":"TZ-04","municipality":"Nduli","elevation_ft":4678,"latitude":-7.668630123138428,"longitude":35.75210189819336,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5509,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HTKJ","iata":"JRO","local":"","name":"Kilimanjaro International Airport","category":"medium_airport","iso_country":"TZ","iso_region":"TZ-01","municipality":"Arusha","elevation_ft":2932,"latitude":-3.42941,"longitude":37.074501,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"HTMP","iata":"NPY","local":"","name":"Mpanda Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-20","municipality":"Mpanda","elevation_ft":3520,"latitude":-6.355374,"longitude":31.084116,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTMG","iata":"","local":"","name":"Morogoro Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-16","municipality":"Morogoro","elevation_ft":1676,"latitude":-6.797220230102539,"longitude":37.653099060058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3504,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HSSK","iata":"KRT","local":"","name":"Khartoum International Airport","category":"large_airport","iso_country":"SD","iso_region":"SD-03","municipality":"Khartoum","elevation_ft":1265,"latitude":15.5895,"longitude":32.5532,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9774,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTMW","iata":"MWZ","local":"","name":"Mwanza Airport","category":"medium_airport","iso_country":"TZ","iso_region":"TZ-18","municipality":"Mwanza","elevation_ft":3763,"latitude":-2.4444899559021,"longitude":32.932701110839844,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":12178,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTKA","iata":"TKQ","local":"","name":"Kigoma Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-08","municipality":"Kigoma","elevation_ft":2700,"latitude":-4.8862,"longitude":29.6709,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5906,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTMU","iata":"MUZ","local":"","name":"Musoma Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-13","municipality":"Musoma","elevation_ft":3806,"latitude":-1.503,"longitude":33.8021,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5249,"width_ft":108,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTBU","iata":"BKZ","local":"","name":"Bukoba Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-05","municipality":"Bukoba","elevation_ft":3784,"latitude":-1.332,"longitude":31.8212,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4593,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTZA","iata":"ZNZ","local":"","name":"Abeid Amani Karume International Airport","category":"large_airport","iso_country":"TZ","iso_region":"TZ-07","municipality":"Zanzibar","elevation_ft":54,"latitude":-6.22202,"longitude":39.224899,"has_tower":true,"has_beacon":false,"runways":[{"id":"18i/36","length_ft":9915,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA02","iata":"","local":"","name":"Hoff Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Bellevue","elevation_ft":1025,"latitude":42.262001,"longitude":-90.580101,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2235,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA03","iata":"","local":"","name":"Lemons Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Falls","elevation_ft":970,"latitude":42.522052,"longitude":-92.492148,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA04","iata":"","local":"IA04","name":"Winneshiek Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Decorah","elevation_ft":892,"latitude":43.29410172,"longitude":-91.77449799,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA05","iata":"","local":"","name":"Rathbun Lake Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Centerville","elevation_ft":1200,"latitude":40.8517,"longitude":-92.8585,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA06","iata":"","local":"","name":"Sig-Nor Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Sigourney","elevation_ft":818,"latitude":41.3833,"longitude":-92.183502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA07","iata":"","local":"","name":"Grismore Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Corydon","elevation_ft":1100,"latitude":40.766701,"longitude":-93.300201,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA08","iata":"","local":"IA08","name":"Riedesel Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Lohrville","elevation_ft":1150,"latitude":42.278099060058594,"longitude":-94.55169677734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2620,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTSU","iata":"SUT","local":"","name":"Sumbawanga Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-20","municipality":"Sumbawanga","elevation_ft":5960,"latitude":-7.948889,"longitude":31.610278,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4975,"width_ft":108,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTTB","iata":"TBO","local":"","name":"Tabora Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-24","municipality":"Tabora","elevation_ft":3868,"latitude":-5.076389789581299,"longitude":32.83330154418945,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6198,"width_ft":98,"surface":"H"},{"id":"08/26","length_ft":2920,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HUSO","iata":"SRT","local":"","name":"Soroti Airport","category":"medium_airport","iso_country":"UG","iso_region":"UG-E","municipality":"Soroti","elevation_ft":3697,"latitude":1.7276899814605713,"longitude":33.622798919677734,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6102,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA09","iata":"","local":"IA09","name":"Grinnell Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Grinnell","elevation_ft":18,"latitude":41.72579956054688,"longitude":-92.70349884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA10","iata":"","local":"IA10","name":"MercyOne Dubuque Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Dubuque","elevation_ft":1050,"latitude":42.49165,"longitude":-90.675864,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA12","iata":"","local":"","name":"Lloyd's Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Clear Lake","elevation_ft":1220,"latitude":43.097197,"longitude":-93.402199,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2658,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA13","iata":"","local":"IA13","name":"Cherokee Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Cherokee","elevation_ft":900,"latitude":42.0853004456,"longitude":-95.5699996948,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA14","iata":"","local":"","name":"Walters Heliport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Guttenberg","elevation_ft":1050,"latitude":42.805801,"longitude":-91.118202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA15","iata":"","local":"","name":"Hawk Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Hawkeye","elevation_ft":1115,"latitude":42.886902,"longitude":-91.936096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA18","iata":"","local":"","name":"Poyner Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Jesup","elevation_ft":960,"latitude":42.470798,"longitude":-92.088501,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2193,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA19","iata":"","local":"IA19","name":"Lucas County Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Chariton","elevation_ft":1049,"latitude":41.02750015258789,"longitude":-93.30239868164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA20","iata":"","local":"","name":"Loess Hills Landing","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Sidney","elevation_ft":1180,"latitude":40.760309,"longitude":-95.708792,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1710,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA21","iata":"","local":"","name":"Schurr Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Le Claire","elevation_ft":720,"latitude":41.59663,"longitude":-90.38669,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA22","iata":"","local":"","name":"Orr-Port Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"New London","elevation_ft":790,"latitude":40.9384,"longitude":-91.403503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA26","iata":"","local":"","name":"Carter Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Stockport","elevation_ft":750,"latitude":40.808399,"longitude":-91.808502,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA28","iata":"","local":"","name":"Sherman Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Hiawatha","elevation_ft":860,"latitude":42.062501,"longitude":-91.687023,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA29","iata":"","local":"IA29","name":"Allen Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Waterloo","elevation_ft":899,"latitude":42.52690124511719,"longitude":-92.339599609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA34","iata":"","local":"IA34","name":"Mahaska County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Oskaloosa","elevation_ft":800,"latitude":41.30049896240234,"longitude":-93.62989807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA33","iata":"","local":"IA33","name":"Dad's Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Rockwell","elevation_ft":1200,"latitude":43.01190185546875,"longitude":-93.24240112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA30","iata":"","local":"IA30","name":"Kleis Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Zwingle","elevation_ft":1050,"latitude":42.29999923706055,"longitude":-90.7500991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA35","iata":"","local":"IA35","name":"Ruckl Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Council Bluffs","elevation_ft":970,"latitude":41.187198638916016,"longitude":-95.9041976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA31","iata":"","local":"IA31","name":"Beeds Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Hampton","elevation_ft":1148,"latitude":42.7666015625,"longitude":-93.24600219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2390,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA25","iata":"","local":"IA25","name":"Bartlett Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Solon","elevation_ft":820,"latitude":41.80059814453125,"longitude":-91.43990325927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA37","iata":"","local":"IA37","name":"Horn Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Ida Grove","elevation_ft":1325,"latitude":42.33890151977539,"longitude":-95.45999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA38","iata":"","local":"","name":"De Louis Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":1250,"latitude":41.5481,"longitude":-93.429199,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA39","iata":"","local":"","name":"Anamosa Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Anamosa","elevation_ft":880,"latitude":42.1128,"longitude":-91.288201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA40","iata":"","local":"IA40","name":"Osceola Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Sibley","elevation_ft":1537,"latitude":43.40999984741211,"longitude":-95.74250030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA42","iata":"","local":"","name":"Sielaff Helo Pad","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Iowa Falls","elevation_ft":1040,"latitude":42.472198,"longitude":-93.304398,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2812,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA43","iata":"","local":"","name":"Strawberry Point Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Strawberry Point","elevation_ft":1100,"latitude":42.691898,"longitude":-91.533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1700,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA45","iata":"","local":"","name":"Willie's Bomber Patch Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Marcus","elevation_ft":1446,"latitude":42.775002,"longitude":-95.846102,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2750,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA46","iata":"","local":"IA46","name":"Wayne County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Corydon","elevation_ft":1093,"latitude":40.7578010559082,"longitude":-93.31849670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA47","iata":"","local":"","name":"Day Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Grimes","elevation_ft":980,"latitude":41.640202,"longitude":-93.8088,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA49","iata":"","local":"","name":"Jirak Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Fort Atkinson","elevation_ft":1180,"latitude":43.145,"longitude":-92.053497,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA50","iata":"","local":"","name":"Sigourney Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Sigourney","elevation_ft":697,"latitude":41.290798,"longitude":-92.188004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA51","iata":"","local":"","name":"De Soto Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"De Soto","elevation_ft":1000,"latitude":41.541698,"longitude":-94.008597,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2231,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA53","iata":"","local":"IA53","name":"MercyOne Dyersville Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Dyersville","elevation_ft":960,"latitude":42.476711,"longitude":-91.130117,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA55","iata":"","local":"IA55","name":"Myrtue Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Harlan","elevation_ft":1231,"latitude":41.649200439453125,"longitude":-95.32420349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA57","iata":"","local":"IA57","name":"Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Oelwein","elevation_ft":1119,"latitude":42.67390060424805,"longitude":-91.90180206298828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA59","iata":"","local":"","name":"Bickel Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Keokuk","elevation_ft":680,"latitude":40.391701,"longitude":-91.416801,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA60","iata":"","local":"","name":"Iowa Army National Guard Heliport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Waterloo","elevation_ft":866,"latitude":42.554406,"longitude":-92.38477,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA61","iata":"","local":"","name":"Estle Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Fairfield","elevation_ft":800,"latitude":41.07982,"longitude":-91.946039,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":800,"width_ft":45,"surface":"T"},{"id":"18/36","length_ft":800,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA62","iata":"","local":"","name":"Wheatley Farms Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Elkhorn","elevation_ft":1310,"latitude":41.533298,"longitude":-95.075302,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2570,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA64","iata":"","local":"IA64","name":"Iowa Methodist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":990,"latitude":41.58940124511719,"longitude":-93.6331024169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":75,"surface":"C"},{"id":"H2","length_ft":66,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA65","iata":"","local":"","name":"Donnellson Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Donnellson","elevation_ft":700,"latitude":40.620899,"longitude":-91.541801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA56","iata":"","local":"IA56","name":"Farrar Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Farrar","elevation_ft":916,"latitude":41.78049850463867,"longitude":-93.37940216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA67","iata":"","local":"IA67","name":"Cass County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Atlantic","elevation_ft":1250,"latitude":41.401100158691406,"longitude":-94.9918975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA68","iata":"","local":"","name":"Freedom Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"La Motte","elevation_ft":1055,"latitude":42.266701,"longitude":-90.6007,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA71","iata":"","local":"IA71","name":"Indianola Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Indianola","elevation_ft":900,"latitude":41.35969924926758,"longitude":-93.55909729003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA72","iata":"","local":"IA72","name":"Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Rapids","elevation_ft":850,"latitude":41.97859954833984,"longitude":-91.65519714355467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA73","iata":"","local":"IA73","name":"St Lukes Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Rapids","elevation_ft":759,"latitude":41.98469924926758,"longitude":-91.6615982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA74","iata":"","local":"IA74","name":"Trinity Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Fort Dodge","elevation_ft":1000,"latitude":42.4925003052,"longitude":-94.1919021606,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA75","iata":"","local":"","name":"Mays Island Helistop","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Rapids","elevation_ft":815,"latitude":41.9758,"longitude":-91.670197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":45,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA76","iata":"","local":"","name":"Cobb Farm Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Corydon","elevation_ft":1100,"latitude":40.7281,"longitude":-93.3433,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":340,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA77","iata":"","local":"","name":"Keitzer Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Mediapolis","elevation_ft":755,"latitude":41.026402,"longitude":-91.1418,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA78","iata":"","local":"IA78","name":"Virginia Gay Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Vinton","elevation_ft":245,"latitude":42.17359924,"longitude":-92.01239777,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":59,"width_ft":59,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA79","iata":"","local":"IA79","name":"Palo Alto County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Emmetsburg","elevation_ft":1210,"latitude":43.101898193359375,"longitude":-94.70469665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA81","iata":"","local":"IA81","name":"Genesis Medical Center West Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Davenport","elevation_ft":169,"latitude":41.54280090332031,"longitude":-90.59239959716795,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA82","iata":"","local":"IA82","name":"Mercy Hospital Medical Center Private Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":894,"latitude":41.59999847412109,"longitude":-93.62100219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA85","iata":"","local":"IA85","name":"Tuinstra Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Indianola","elevation_ft":900,"latitude":41.43510055541992,"longitude":-93.54049682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA86","iata":"","local":"IA86","name":"Hedgewood Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Indianola","elevation_ft":990,"latitude":41.266700744628906,"longitude":-93.5093994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA88","iata":"","local":"IA88","name":"Quiet Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Mc Causland","elevation_ft":504,"latitude":41.704200744628906,"longitude":-90.46820068359376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA89","iata":"","local":"IA89","name":"Woodward State Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Woodward","elevation_ft":1060,"latitude":41.871700286865234,"longitude":-93.91439819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA90","iata":"","local":"IA90","name":"Humboldt County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Humboldt","elevation_ft":1102,"latitude":42.733022,"longitude":-94.231147,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA91","iata":"","local":"IA91","name":"Montgomery County Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Red Oak","elevation_ft":1181,"latitude":41.02719879150391,"longitude":-95.2147979736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA92","iata":"","local":"IA92","name":"University of Iowa Hospitals & Clinic No2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Iowa City","elevation_ft":790,"latitude":41.66749954223633,"longitude":-91.6001968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA94","iata":"","local":"","name":"Nesler Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Moorland","elevation_ft":1147,"latitude":42.4333,"longitude":-94.2836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2575,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA83","iata":"","local":"IA83","name":"Kohlhaas Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Livermore","elevation_ft":1153,"latitude":42.954883,"longitude":-94.167638,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2550,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA84","iata":"","local":"IA84","name":"Lawton Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Lawton","elevation_ft":1235,"latitude":42.48329925537109,"longitude":-96.20030212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2320,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA95","iata":"","local":"IA95","name":"Hcph Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Webster City","elevation_ft":1080,"latitude":42.45890045166016,"longitude":-93.82379913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA96","iata":"","local":"IA96","name":"Mercy One Primghar Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Primghar","elevation_ft":1520,"latitude":43.088299,"longitude":-95.623901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA98","iata":"","local":"IA98","name":"Iowa Lutheran Hospital Life Flight Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":856,"latitude":41.60219955444336,"longitude":-93.6104965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IA99","iata":"","local":"IA99","name":"Dickinson County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Spirit Lake","elevation_ft":1455,"latitude":43.41749954223633,"longitude":-95.1239013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID02","iata":"","local":"ID02","name":"Coeur D'Alene Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2174,"latitude":47.67210006713867,"longitude":-116.78399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID03","iata":"","local":"ID03","name":"Kootenai Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2230,"latitude":47.69599914550781,"longitude":-116.79499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID04","iata":"","local":"","name":"J-Lazy-M Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Fish Haven","elevation_ft":6190,"latitude":42.028926,"longitude":-111.41289,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2085,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID06","iata":"","local":"","name":"Ranch Aero Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Hayden Lake","elevation_ft":2315,"latitude":47.8288,"longitude":-116.783997,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3566,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID00","iata":"","local":"ID00","name":"Hubler Field","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Caldwell","elevation_ft":2385,"latitude":43.69570159912109,"longitude":-116.63800048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID20","iata":"","local":"ID20","name":"Hubof's Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Post Falls","elevation_ft":2000,"latitude":47.733001708984375,"longitude":-117,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID05","iata":"","local":"ID05","name":"Hackney Airpark","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Athol","elevation_ft":2445,"latitude":47.9567985534668,"longitude":-116.677001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID08","iata":"","local":"","name":"Mc Call Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Mc Call","elevation_ft":5018,"latitude":44.9091,"longitude":-116.110001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID09","iata":"","local":"","name":"Otterson Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Post Falls","elevation_ft":2150,"latitude":47.7402,"longitude":-116.998001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1749,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID10","iata":"","local":"","name":"Anderson-Plummer Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Potlatch","elevation_ft":2580,"latitude":46.924301,"longitude":-116.958,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1685,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID11","iata":"","local":"","name":"Wood Brothers Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Reubens","elevation_ft":3400,"latitude":46.382094,"longitude":-116.513001,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1716,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID14","iata":"","local":"ID14","name":"Benewah Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"St Maries","elevation_ft":2235,"latitude":47.3140983581543,"longitude":-116.56700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID15","iata":"","local":"","name":"Wallace Ranger Station Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Silverton","elevation_ft":2720,"latitude":47.493523,"longitude":-115.959862,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID18","iata":"","local":"ID18","name":"Eirmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Idaho Falls","elevation_ft":4713,"latitude":43.47100067138672,"longitude":-111.99199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":95,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID12","iata":"","local":"ID12","name":"Russell W Anderson Strip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Riverside","elevation_ft":4450,"latitude":43.184399,"longitude":-112.466003,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID13","iata":"","local":"ID13","name":"Sky Island Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"St Maries","elevation_ft":2880,"latitude":47.32210159301758,"longitude":-116.63999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID16","iata":"","local":"ID16","name":"Sluder Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Bellevue","elevation_ft":5017,"latitude":43.40349960327149,"longitude":-114.27300262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID17","iata":"","local":"ID17","name":"Seven Devils Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Council","elevation_ft":4487,"latitude":45.01100158691406,"longitude":-116.68900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID26","iata":"","local":"ID26","name":"P and R Field","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Mayfield","elevation_ft":3125,"latitude":43.233474,"longitude":-115.939673,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID28","iata":"","local":"ID28","name":"Mackay Bar Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Dixie","elevation_ft":2172,"latitude":45.3798,"longitude":-115.505924,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1900,"width_ft":200,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID30","iata":"","local":"ID30","name":"Everett II Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Ketchum","elevation_ft":6165,"latitude":43.774039,"longitude":-114.408612,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID31","iata":"","local":"","name":"Young Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Eagle","elevation_ft":2625,"latitude":43.716599,"longitude":-116.389,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2408,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID32","iata":"","local":"ID32","name":"Tuka STOLport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Clark Fork","elevation_ft":2086,"latitude":48.105499267578125,"longitude":-116.13700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":8000,"width_ft":100,"surface":"W"},{"id":"16/34","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID24","iata":"","local":"ID24","name":"Timber Basin Airpark Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sagle","elevation_ft":2220,"latitude":48.2234992980957,"longitude":-116.43900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID23","iata":"","local":"ID23","name":"Rock Creek Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Worley","elevation_ft":2500,"latitude":47.39239883422852,"longitude":-116.8730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID33","iata":"","local":"ID33","name":"Stocking Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Clarkia","elevation_ft":3850,"latitude":46.93600082397461,"longitude":-115.86499786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID27","iata":"","local":"ID27","name":"Hawk Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur d Alene","elevation_ft":2333,"latitude":47.75550079,"longitude":-116.8590012,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID34","iata":"","local":"","name":"Granite Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Athol","elevation_ft":2260,"latitude":47.9846,"longitude":-116.682999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID37","iata":"","local":"ID37","name":"St Joseph's Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Lewiston","elevation_ft":740,"latitude":46.41320037841797,"longitude":-117.01699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID38","iata":"","local":"ID38","name":"Sutherland Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Hauser Lake","elevation_ft":2100,"latitude":47.77989959716797,"longitude":-117.01000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID39","iata":"","local":"","name":"Owen Ranches Inc Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Bruneau","elevation_ft":2620,"latitude":42.7957,"longitude":-115.734001,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2540,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID42","iata":"","local":"","name":"Shoshone BLM Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Shoshone","elevation_ft":3980,"latitude":42.931901,"longitude":-114.413001,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1350,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID45","iata":"","local":"","name":"Magic Valley Regional Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Twin Falls","elevation_ft":3675,"latitude":42.564602,"longitude":-114.495003,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2046,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID46","iata":"","local":"ID46","name":"Dworshak Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Ahsahka","elevation_ft":1615,"latitude":46.51210021972656,"longitude":-116.29299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID47","iata":"","local":"ID47","name":"Whelan's Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Huston","elevation_ft":2565,"latitude":43.59709930419922,"longitude":-116.78199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID35","iata":"","local":"ID35","name":"High Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cascade","elevation_ft":4883,"latitude":44.239327,"longitude":-116.144629,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID49","iata":"","local":"ID49","name":"St Luke's Boise Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2863,"latitude":43.612701416,"longitude":-116.192001343,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID50","iata":"","local":"","name":"QB One Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Idaho Falls","elevation_ft":4875,"latitude":43.601299,"longitude":-112.242996,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":723,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID51","iata":"","local":"ID51","name":"Welburn Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Hayden Lake","elevation_ft":2250,"latitude":47.783199310303,"longitude":-116.68399810791,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1827,"width_ft":51,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID52","iata":"","local":"","name":"Bowman Field","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Chester","elevation_ft":5100,"latitude":43.993,"longitude":-111.551003,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID53","iata":"","local":"ID53","name":"Minidoka Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Rupert","elevation_ft":4156,"latitude":42.62099838259999,"longitude":-113.685997009,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID54","iata":"","local":"ID54","name":"Bottle Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ID","municipality":"Sandpoint","elevation_ft":2063,"latitude":48.47909927368164,"longitude":-116.44499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":15000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID55","iata":"","local":"ID55","name":"Valley County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Cascade","elevation_ft":4800,"latitude":44.518798828125,"longitude":-116.0479965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID57","iata":"","local":"","name":"University of Idaho Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Moscow","elevation_ft":2604,"latitude":46.7271,"longitude":-117.023792,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1484,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID58","iata":"","local":"ID58","name":"Nampa Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2690,"latitude":43.59099960327149,"longitude":-116.2770004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":95,"width_ft":85,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID59","iata":"","local":"ID59","name":"Flying A Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Lake Fork","elevation_ft":4918,"latitude":44.81760025024414,"longitude":-116.06800079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1900,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID56","iata":"","local":"ID56","name":"Star S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Mackay","elevation_ft":6660,"latitude":43.981899,"longitude":-114.043999,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID63","iata":"","local":"","name":"Richards Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Homedale","elevation_ft":2290,"latitude":43.671193,"longitude":-117.023607,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1345,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID64","iata":"","local":"ID64","name":"Portneuf Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Pocatello","elevation_ft":4550,"latitude":42.87447,"longitude":-112.42228,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID72","iata":"","local":"ID72","name":"Huskey Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Irwin","elevation_ft":5200,"latitude":43.41740036010742,"longitude":-111.28500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID66","iata":"","local":"ID66","name":"Clearwater Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Orofino","elevation_ft":1005,"latitude":46.48659896850586,"longitude":-116.25,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID69","iata":"","local":"ID69","name":"Sun Valley Gun Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Sun Valley","elevation_ft":6000,"latitude":42.70550155639648,"longitude":-114.3489990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID70","iata":"","local":"","name":"Gulch Trust Heliport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Ketchum","elevation_ft":5915,"latitude":43.704601,"longitude":-114.377998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID71","iata":"","local":"ID71","name":"Big Country Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2223,"latitude":47.69309997558594,"longitude":-116.78399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID73","iata":"","local":"ID73","name":"Rockford Bay Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D Alene","elevation_ft":2132,"latitude":47.50680160522461,"longitude":-116.89199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID61","iata":"","local":"ID61","name":"Valenov Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Priest River","elevation_ft":2425,"latitude":48.296228,"longitude":-117.016382,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID62","iata":"","local":"ID62","name":"Simpson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Grace","elevation_ft":5598,"latitude":42.60829925537109,"longitude":-111.72899627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3750,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID80","iata":"","local":"ID80","name":"West Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Caldwell","elevation_ft":2384,"latitude":43.654167,"longitude":-116.986000061,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID83","iata":"","local":"","name":"Saint Alphonsus Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Nampa","elevation_ft":2535,"latitude":43.554029,"longitude":-116.568696,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2535,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID82","iata":"","local":"ID82","name":"Picabo Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Picabo","elevation_ft":4828,"latitude":43.308201,"longitude":-114.063003,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID87","iata":"","local":"ID87","name":"Rainbow Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Idaho Falls","elevation_ft":4750,"latitude":43.40689849853516,"longitude":-111.9739990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID78","iata":"","local":"ID78","name":"CX Ranch Number 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Clark Fork","elevation_ft":2070,"latitude":48.141602,"longitude":-116.181999,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID89","iata":"","local":"ID89","name":"Boise Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2890,"latitude":43.653198242200006,"longitude":-116.206001282,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID90","iata":"","local":"","name":"Spencer Ranch Landing Strip","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Keuterville","elevation_ft":4284,"latitude":45.85276,"longitude":-116.66811,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2392,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID91","iata":"","local":"ID91","name":"St Alphonsus Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2800,"latitude":43.61429977416992,"longitude":-116.26399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID97","iata":"","local":"","name":"Hangman Creek Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Tensed","elevation_ft":2635,"latitude":47.107101,"longitude":-116.810997,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3329,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID98","iata":"","local":"ID98","name":"Scanlon Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2000,"latitude":42.56740188598633,"longitude":-117.49500274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IG00","iata":"","local":"IG00","name":"Cameron Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Angola","elevation_ft":1073,"latitude":41.6338996887207,"longitude":-84.99469757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IG01","iata":"","local":"IG01","name":"Iwc Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":700,"latitude":39.78369903564453,"longitude":-87.18360137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IG06","iata":"","local":"IG06","name":"Wolfelt Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Lafayette","elevation_ft":560,"latitude":40.48809814453125,"longitude":-86.85189819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II13","iata":"","local":"II13","name":"Sugar Creek Air Park","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Markleville","elevation_ft":1000,"latitude":39.920278,"longitude":-85.598611,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1870,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IG07","iata":"","local":"IG07","name":"Josephs Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Moores Hill","elevation_ft":860,"latitude":39.05690002441406,"longitude":-85.03559875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1280,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II03","iata":"","local":"II03","name":"Buell Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Milan","elevation_ft":990,"latitude":39.19860076904297,"longitude":-85.13639831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II06","iata":"","local":"II06","name":"Ferrell Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Cadiz","elevation_ft":1070,"latitude":39.970001220703125,"longitude":-85.4708023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2740,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IG03","iata":"","local":"IG03","name":"Bluebird Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Paragon","elevation_ft":580,"latitude":39.391348,"longitude":-86.597103,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II07","iata":"","local":"II07","name":"Clover Knoll Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Cloverdale","elevation_ft":880,"latitude":39.532418,"longitude":-86.832404,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II08","iata":"","local":"II08","name":"Rheude Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Earl Park","elevation_ft":745,"latitude":40.6609001159668,"longitude":-87.439697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II16","iata":"","local":"II16","name":"Pigeon Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Angola","elevation_ft":1000,"latitude":41.637001037597656,"longitude":-84.94940185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II12","iata":"","local":"II12","name":"Dague Strip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Grass Creek","elevation_ft":790,"latitude":40.964500427246094,"longitude":-86.37190246582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II23","iata":"","local":"II23","name":"HSHS Good Shepherd Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Shelbyville","elevation_ft":628,"latitude":39.406136,"longitude":-88.808855,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II41","iata":"","local":"II41","name":"Clinton Power Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Clinton","elevation_ft":737,"latitude":40.17169952392578,"longitude":-88.8375015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II44","iata":"","local":"II44","name":"Starke Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Knox","elevation_ft":717,"latitude":41.28730010986328,"longitude":-86.62249755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II52","iata":"","local":"II52","name":"Haffner Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lizton","elevation_ft":960,"latitude":39.87749862670898,"longitude":-86.52780151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II28","iata":"","local":"II28","name":"Stettler Strip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Leo","elevation_ft":860,"latitude":41.210683,"longitude":-85.063098,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II54","iata":"","local":"II54","name":"Giltner Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Madison","elevation_ft":850,"latitude":38.81589889526367,"longitude":-85.44640350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II32","iata":"","local":"II32","name":"Raceway Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Chandler","elevation_ft":400,"latitude":38.049198150634766,"longitude":-87.38140106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II30","iata":"","local":"II30","name":"Ridgway Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Carlisle","elevation_ft":510,"latitude":38.912045,"longitude":-87.406697,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II27","iata":"","local":"II27","name":"Ward Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Arcadia","elevation_ft":830,"latitude":40.16669845581055,"longitude":-85.94080352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II21","iata":"","local":"II21","name":"Zollinger Strip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Ligonier","elevation_ft":860,"latitude":41.47529983520508,"longitude":-85.6947021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II56","iata":"","local":"II56","name":"Regional Haelth System Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Kokomo","elevation_ft":830,"latitude":40.4472999573,"longitude":-86.12550354,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II57","iata":"","local":"II57","name":"Nipsco Southlake Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Merrillville","elevation_ft":690,"latitude":41.4634017944336,"longitude":-87.32360076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II59","iata":"","local":"II59","name":"Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Newport","elevation_ft":650,"latitude":39.84000015258789,"longitude":-87.39360046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II64","iata":"","local":"II64","name":"Universal Mine Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Universal","elevation_ft":550,"latitude":39.61389923095703,"longitude":-87.46199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II68","iata":"","local":"II68","name":"Durham Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Russellville","elevation_ft":820,"latitude":39.855,"longitude":-86.959198,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II77","iata":"","local":"II77","name":"Finney's Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Albany","elevation_ft":965,"latitude":40.259498596191406,"longitude":-85.260498046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II82","iata":"","local":"II82","name":"Meadors Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Danville","elevation_ft":1000,"latitude":39.7942008972168,"longitude":-86.57779693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II85","iata":"","local":"II85","name":"Blomenberg Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Decatur","elevation_ft":800,"latitude":40.89619827270508,"longitude":-85.04910278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II84","iata":"","local":"II84","name":"Hilakos Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Mount Vernon","elevation_ft":381,"latitude":37.93199920654297,"longitude":-87.77140045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II88","iata":"","local":"II88","name":"St. Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Kokomo","elevation_ft":800,"latitude":40.484444,"longitude":-86.157778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II91","iata":"","local":"II91","name":"Dunbar Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Pittsboro","elevation_ft":940,"latitude":39.84389877319336,"longitude":-86.50530242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II92","iata":"","local":"II92","name":"Layden Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Rolling Prairie","elevation_ft":740,"latitude":41.74169921875,"longitude":-86.58360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL00","iata":"","local":"IL00","name":"Welch Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Danville","elevation_ft":650,"latitude":40.099700927734375,"longitude":-87.57440185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL03","iata":"","local":"IL03","name":"Columbia Hoffman Estates Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Hoffman Estates","elevation_ft":807,"latitude":42.05279922485352,"longitude":-88.14009857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL04","iata":"","local":"IL04","name":"Methodist Medical Center of Illinois Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Peoria","elevation_ft":631,"latitude":40.70059967041016,"longitude":-89.59480285644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"II93","iata":"","local":"II93","name":"Bronson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bargersville","elevation_ft":780,"latitude":39.4838981628418,"longitude":-86.22689819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3197,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II97","iata":"","local":"II97","name":"Solenberg Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":720,"latitude":39.47779846191406,"longitude":-85.88330078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II87","iata":"","local":"II87","name":"Twelve Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Martinsville","elevation_ft":715,"latitude":39.45140075683594,"longitude":-86.32830047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2140,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II95","iata":"","local":"II95","name":"Rust's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bourbon","elevation_ft":820,"latitude":41.36449813842773,"longitude":-86.06330108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2050,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II89","iata":"","local":"II89","name":"Lockyear Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Evansville","elevation_ft":525,"latitude":38.086608,"longitude":-87.682089,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL06","iata":"","local":"IL06","name":"Hopedale Medical Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Hopedale","elevation_ft":643,"latitude":40.417535,"longitude":-89.41619,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL08","iata":"","local":"IL08","name":"Good Shepherd Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Barrington","elevation_ft":793,"latitude":42.195899963378906,"longitude":-88.17289733886719,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL10","iata":"","local":"IL10","name":"Pinckneyville Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pinckneyville","elevation_ft":420,"latitude":38.084752,"longitude":-89.348263,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL15","iata":"","local":"IL15","name":"Runyan Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bushnell","elevation_ft":660,"latitude":40.56940078735352,"longitude":-90.54869842529295,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2625,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL12","iata":"","local":"IL12","name":"Kinsey Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Arenzville","elevation_ft":455,"latitude":39.880001,"longitude":-90.465103,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL14","iata":"","local":"IL14","name":"Stark Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Bloomington","elevation_ft":750,"latitude":40.47999954223633,"longitude":-89.02169799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL16","iata":"","local":"","name":"Houseman Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Cobden","elevation_ft":800,"latitude":37.537841,"longitude":-89.125214,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL18","iata":"","local":"","name":"Crook Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Columbia","elevation_ft":580,"latitude":38.387001,"longitude":-90.191803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL20","iata":"","local":"IL20","name":"Il Emergency Operations Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Springfield","elevation_ft":590,"latitude":39.61140060424805,"longitude":-89.60440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL21","iata":"","local":"IL21","name":"Ascension Mercy Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Aurora","elevation_ft":700,"latitude":41.785811,"longitude":-88.324533,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL07","iata":"","local":"IL07","name":"Taylor Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Amboy","elevation_ft":760,"latitude":41.72359848022461,"longitude":-89.29180145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL22","iata":"","local":"","name":"Heeg Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Oquawka","elevation_ft":600,"latitude":41.007111,"longitude":-90.882896,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3980,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL24","iata":"","local":"IL24","name":"Richardson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Berlin","elevation_ft":653,"latitude":39.70750045776367,"longitude":-89.88310241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":138,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL25","iata":"","local":"IL25","name":"Bromenn Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Normal","elevation_ft":810,"latitude":40.49639892578125,"longitude":-88.99079895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL26","iata":"","local":"IL26","name":"Fayette County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Vandalia","elevation_ft":521,"latitude":38.969200134277344,"longitude":-89.09609985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL27","iata":"","local":"","name":"Landis Plastics Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Alsip","elevation_ft":610,"latitude":41.678601,"longitude":-87.762497,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL29","iata":"","local":"","name":"Von Alvens Airview Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Beecher","elevation_ft":715,"latitude":41.300475,"longitude":-87.654634,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL32","iata":"","local":"IL32","name":"Adkisson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hammond","elevation_ft":669,"latitude":39.78329849243164,"longitude":-88.62139892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2160,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL33","iata":"","local":"","name":"Sherman Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Elgin","elevation_ft":780,"latitude":42.054684,"longitude":-88.280666,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL35","iata":"","local":"","name":"Redpath Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Baldwin","elevation_ft":470,"latitude":38.181999,"longitude":-89.808403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL36","iata":"","local":"IL36","name":"Bob Walberg Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belvidere","elevation_ft":840,"latitude":42.320899963378906,"longitude":-88.7583999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2254,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL34","iata":"","local":"IL34","name":"Henderson Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belvidere","elevation_ft":815,"latitude":42.2145,"longitude":-88.757004,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL39","iata":"","local":"IL39","name":"Perry RLA Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kansas","elevation_ft":691,"latitude":39.480255,"longitude":-87.8445778,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2380,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL40","iata":"","local":"IL40","name":"St Joseph Medical Center - Bloomington Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Bloomington","elevation_ft":855,"latitude":40.4822998047,"longitude":-88.9564971924,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL41","iata":"","local":"IL41","name":"Rochelle Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rochelle","elevation_ft":817,"latitude":41.92829895019531,"longitude":-89.0635986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL42","iata":"","local":"IL42","name":"Centegra Hospital - Woodstock Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Woodstock","elevation_ft":940,"latitude":42.276198,"longitude":-88.402703,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL43","iata":"","local":"IL43","name":"Rural King Supply Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Mattoon","elevation_ft":715,"latitude":39.492801666259766,"longitude":-88.41220092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL44","iata":"","local":"IL44","name":"Arrow Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Fox Lake","elevation_ft":738,"latitude":42.40340042114258,"longitude":-88.1875991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL45","iata":"","local":"","name":"Busboom Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Gifford","elevation_ft":780,"latitude":40.3111,"longitude":-88.015297,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2784,"width_ft":40,"surface":"A"},{"id":"18/36","length_ft":2188,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL47","iata":"","local":"IL47","name":"Lincoln Land Community College Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Springfield","elevation_ft":580,"latitude":39.72309875488281,"longitude":-89.60430145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2119,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL49","iata":"","local":"","name":"Braidwood National Park Service Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Godley","elevation_ft":602,"latitude":41.241695,"longitude":-88.230301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL50","iata":"","local":"IL50","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Carthage","elevation_ft":653,"latitude":40.4092108,"longitude":-91.1334756,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL51","iata":"","local":"IL51","name":"Aero Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Campus","elevation_ft":645,"latitude":41.03810119628906,"longitude":-88.3375015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":275,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL53","iata":"","local":"","name":"Lung Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Carthage","elevation_ft":617,"latitude":40.461201,"longitude":-91.073799,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL55","iata":"","local":"","name":"Andrew RLA Restricted Landing Area Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Champaign","elevation_ft":810,"latitude":40.160301,"longitude":-88.304497,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2720,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL56","iata":"","local":"IL56","name":"McCulley Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Champaign","elevation_ft":750,"latitude":40.219462,"longitude":-88.254182,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL57","iata":"","local":"IL57","name":"Cottonwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bloomington","elevation_ft":765,"latitude":40.422000885009766,"longitude":-89.02059936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":134,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL58","iata":"","local":"","name":"Aero Four Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Channahon","elevation_ft":600,"latitude":41.4361,"longitude":-88.248702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL60","iata":"","local":"","name":"Chatsworth Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Chatsworth","elevation_ft":742,"latitude":40.743099,"longitude":-88.291198,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2380,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL61","iata":"","local":"IL61","name":"Vienna Correctional Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Grantsburg","elevation_ft":510,"latitude":37.39759826660156,"longitude":-88.77420043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL64","iata":"","local":"IL64","name":"Martin Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lincoln","elevation_ft":558,"latitude":40.18059921264648,"longitude":-89.5000991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL66","iata":"","local":"IL66","name":"St Joseph's Hospital-Highland Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Highland","elevation_ft":548,"latitude":38.753884,"longitude":-89.668297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL67","iata":"","local":"IL67","name":"Big Muddy Correctional Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Ina","elevation_ft":425,"latitude":38.12979888916016,"longitude":-88.90480041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL68","iata":"","local":"","name":"Mill Rose Farm Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Chicago/Barrington","elevation_ft":850,"latitude":42.077202,"longitude":-88.159798,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3690,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL69","iata":"","local":"IL69","name":"First Area Police Hdqtrs Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":600,"latitude":41.79999923706055,"longitude":-87.62779998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL70","iata":"","local":"IL70","name":"Wgn-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":591,"latitude":41.94829940795898,"longitude":-87.69329833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL74","iata":"","local":"","name":"Rose Packing County Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":613,"latitude":41.802799,"longitude":-87.766196,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL75","iata":"","local":"IL75","name":"John H. Stroger Hospital of Cook County Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":593,"latitude":41.87480163574219,"longitude":-87.67340087890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL76","iata":"","local":"","name":"Marcor Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":1047,"latitude":41.896098,"longitude":-87.642303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL77","iata":"","local":"IL77","name":"Advocate Christ Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago (Oak Lawn)","elevation_ft":619,"latitude":41.723174,"longitude":-87.73276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL79","iata":"","local":"IL79","name":"Presence Resurrection Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":663,"latitude":41.986354,"longitude":-87.814996,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL80","iata":"","local":"IL80","name":"Flying Illini Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"De Land","elevation_ft":710,"latitude":40.108167,"longitude":-88.683132,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3430,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL81","iata":"","local":"IL81","name":"Berns Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Clifton","elevation_ft":658,"latitude":40.937026,"longitude":-88.045958,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL82","iata":"","local":"IL82","name":"Martin RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Clinton","elevation_ft":725,"latitude":40.109500885,"longitude":-88.82869720459999,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL83","iata":"","local":"","name":"Mulderink Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"South Chicago Heights","elevation_ft":665,"latitude":41.4786,"longitude":-87.589798,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL85","iata":"","local":"","name":"Midwestern Regional Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Zion","elevation_ft":711,"latitude":42.448634,"longitude":-87.827979,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL84","iata":"","local":"IL84","name":"Douglas Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Colusa","elevation_ft":650,"latitude":40.57640075683594,"longitude":-91.10289764404295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL71","iata":"","local":"IL71","name":"Dury Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"De Soto","elevation_ft":395,"latitude":37.819199,"longitude":-89.152199,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2509,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL89","iata":"","local":"IL89","name":"St Mary Medical Center - Galesburg Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Galesburg","elevation_ft":790,"latitude":40.9866981506,"longitude":-90.3613967896,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL91","iata":"","local":"","name":"Testoni Farms Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Cornell","elevation_ft":688,"latitude":41.020901,"longitude":-88.653397,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2450,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL92","iata":"","local":"IL92","name":"UChicago Medicine Ingalls Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Harvey","elevation_ft":608,"latitude":41.605726,"longitude":-87.659967,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL86","iata":"","local":"IL86","name":"Krohe Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Beardstown","elevation_ft":450,"latitude":39.93619918823242,"longitude":-90.466796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL94","iata":"","local":"IL94","name":"Hoblit Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Atlanta","elevation_ft":623,"latitude":40.2262992859,"longitude":-89.2428970337,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2060,"width_ft":102,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL96","iata":"","local":"IL96","name":"Kaiser Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Monee","elevation_ft":750,"latitude":41.385101318359375,"longitude":-87.72029876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL97","iata":"","local":"IL97","name":"Springfield Southwest Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Berlin","elevation_ft":635,"latitude":39.736999511719,"longitude":-89.809799194336,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2130,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL98","iata":"","local":"IL98","name":"Chicagoland Speedway Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Joliet","elevation_ft":650,"latitude":41.479772,"longitude":-88.058388,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL95","iata":"","local":"IL95","name":"Corn Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Custer Park","elevation_ft":585,"latitude":41.22309875488281,"longitude":-88.14530181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL88","iata":"","local":"IL88","name":"Earl Barnickel Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Compton","elevation_ft":929,"latitude":41.67499923706055,"longitude":-89.1167984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN02","iata":"","local":"01F","name":"Hamilton Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Hamilton","elevation_ft":900,"latitude":41.552222,"longitude":-84.917222,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN04","iata":"","local":"","name":"N'Meier Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Westphalia","elevation_ft":495,"latitude":38.846401,"longitude":-87.240303,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1948,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN06","iata":"","local":"IN06","name":"Methodist Hospital Helistop","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":815,"latitude":39.788700103759766,"longitude":-86.16220092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN07","iata":"","local":"IN07","name":"Hook's Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":850,"latitude":39.805000305176,"longitude":-86.033599853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1662,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN09","iata":"","local":"","name":"Clifton Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Boswell","elevation_ft":760,"latitude":40.5242,"longitude":-87.411903,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN12","iata":"","local":"","name":"Lake Sylvan Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Kendallville","elevation_ft":916,"latitude":41.481944,"longitude":-85.343611,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN00","iata":"","local":"IN00","name":"Sutton Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Montmorenci","elevation_ft":740,"latitude":40.5452995300293,"longitude":-87.05220031738281,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN01","iata":"","local":"IN01","name":"Kephart Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bargersville","elevation_ft":815,"latitude":39.4861111,"longitude":-86.1486111,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN08","iata":"","local":"IN08","name":"Shakamak Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Jasonville","elevation_ft":613,"latitude":39.169232,"longitude":-87.189345,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1750,"width_ft":40,"surface":"T"},{"id":"18/36","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN11","iata":"","local":"IN11","name":"Arrowhead Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bourbon","elevation_ft":825,"latitude":41.29280090332031,"longitude":-86.07109832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN10","iata":"","local":"IN10","name":"Plummer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Kewanna","elevation_ft":760,"latitude":40.97589874267578,"longitude":-86.41999816894531,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN13","iata":"","local":"","name":"Lanesville Skyways Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Lanesville","elevation_ft":885,"latitude":38.223701,"longitude":-85.974998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN16","iata":"","local":"01B","name":"Tippecanoe Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Warsaw","elevation_ft":836,"latitude":41.333056,"longitude":-85.7675,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":250,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN17","iata":"","local":"IN17","name":"Green County General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Linton","elevation_ft":542,"latitude":39.04029846191406,"longitude":-87.12999725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN21","iata":"","local":"","name":"Starkey's Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Mooreland","elevation_ft":1110,"latitude":40.043098,"longitude":-85.260498,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3912,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN22","iata":"","local":"IN22","name":"Berling Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Mooresville","elevation_ft":800,"latitude":39.60369873046875,"longitude":-86.44170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN24","iata":"","local":"IN24","name":"Franciscan Health Michigan City Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Michigan City","elevation_ft":635,"latitude":41.705897,"longitude":-86.9011,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN26","iata":"","local":"","name":"Archangels Landing Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"San Pierre","elevation_ft":669,"latitude":41.261398,"longitude":-86.872498,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1650,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN27","iata":"","local":"","name":"Skyridge Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Arcadia","elevation_ft":895,"latitude":40.179203,"longitude":-86.115799,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1150,"width_ft":68,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN20","iata":"","local":"IN20","name":"Jungclaus Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Martinsville","elevation_ft":765,"latitude":39.45370101928711,"longitude":-86.2802963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN18","iata":"","local":"IN18","name":"Hook Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Harlan","elevation_ft":790,"latitude":41.27450180053711,"longitude":-84.80500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN23","iata":"","local":"IN23","name":"Zeller Elevator Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Mount Vernon","elevation_ft":378,"latitude":37.909229,"longitude":-87.757545,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2440,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN15","iata":"","local":"IN15","name":"T & T Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Vincennes","elevation_ft":550,"latitude":38.604875,"longitude":-87.463315,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1706,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN28","iata":"","local":"IN28","name":"Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Munster","elevation_ft":616,"latitude":41.549607,"longitude":-87.50664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN31","iata":"","local":"IN31","name":"Hanna Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Pendleton","elevation_ft":870,"latitude":40.022301,"longitude":-85.753891,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN32","iata":"","local":"","name":"Stephenson Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Pendleton","elevation_ft":880,"latitude":39.977299,"longitude":-85.7444,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1706,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN39","iata":"","local":"","name":"Klopfenstein Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Reynolds","elevation_ft":685,"latitude":40.7673,"longitude":-86.920799,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2425,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN40","iata":"","local":"","name":"Brauns Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Richland","elevation_ft":400,"latitude":37.91,"longitude":-87.1828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN41","iata":"","local":"","name":"Nuckols Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Redkey","elevation_ft":1025,"latitude":40.354801,"longitude":-85.049103,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2740,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN36","iata":"","local":"IN36","name":"Plugger Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Evansville","elevation_ft":426,"latitude":38.03559875488281,"longitude":-87.7240982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN34","iata":"","local":"IN34","name":"Rush Strip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Peru","elevation_ft":770,"latitude":40.83449935913086,"longitude":-86.05220031738281,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":850,"width_ft":85,"surface":"T"},{"id":"18/36","length_ft":1050,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN35","iata":"","local":"IN35","name":"Shinn Bone Lane Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Peru","elevation_ft":809,"latitude":40.65420150756836,"longitude":-86.02279663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN29","iata":"","local":"IN29","name":"Durflinger Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Otterbein","elevation_ft":747,"latitude":40.57360076904297,"longitude":-87.10359954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3600,"width_ft":132,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN45","iata":"","local":"IN45","name":"4 Winds Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Roachdale","elevation_ft":810,"latitude":39.824985,"longitude":-86.884046,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":97,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN48","iata":"","local":"IN48","name":"St. Vincent Clay Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Brazil","elevation_ft":675,"latitude":39.52780151367188,"longitude":-87.11170196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN50","iata":"","local":"","name":"Siefert Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":750,"latitude":39.4403,"longitude":-85.765295,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1562,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN51","iata":"","local":"IN51","name":"Windy Knoll Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Sheridan","elevation_ft":920,"latitude":40.13999938964844,"longitude":-86.15249633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN52","iata":"","local":"IN52","name":"500 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Speedway","elevation_ft":720,"latitude":39.78279876708984,"longitude":-86.2332992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN55","iata":"","local":"IN55","name":"Songer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Veedersburg","elevation_ft":652,"latitude":40.079200744628906,"longitude":-87.26110076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":30,"surface":"A"},{"id":"H1","length_ft":20,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN56","iata":"","local":"IN56","name":"Carroll's Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Muncie","elevation_ft":940,"latitude":40.12689971923828,"longitude":-85.43190002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN49","iata":"","local":"IN49","name":"Pherigo Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":760,"latitude":39.48551,"longitude":-85.80324,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN46","iata":"","local":"IN46","name":"Butler Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Rockville","elevation_ft":687,"latitude":39.73889923095703,"longitude":-87.21949768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2081,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN53","iata":"","local":"IN53","name":"Miller Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Spencer","elevation_ft":710,"latitude":39.29238,"longitude":-86.824231,"has_tower":false,"has_beacon":false,"runways":[{"id":"WNW/ESE","length_ft":2600,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN58","iata":"","local":"","name":"Sealscott Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Monroeville","elevation_ft":820,"latitude":40.903702,"longitude":-84.847504,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN59","iata":"","local":"IN59","name":"Jerry W. Humphrey Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Newburgh","elevation_ft":342,"latitude":37.94499969482422,"longitude":-87.42449951171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN60","iata":"","local":"IN60","name":"Wilderness Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Westfield","elevation_ft":908,"latitude":40.017799377441406,"longitude":-86.1603012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN63","iata":"","local":"","name":"Horizon Field","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Eaton","elevation_ft":940,"latitude":40.366699,"longitude":-85.3386,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN66","iata":"","local":"IN66","name":"Clear Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Clear Lake","elevation_ft":1050,"latitude":41.73329925537109,"longitude":-84.85890197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN67","iata":"","local":"","name":"Greener Pastures Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"North Vernon","elevation_ft":618,"latitude":38.937302,"longitude":-85.737503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN68","iata":"","local":"","name":"Stewart Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Elizabeth","elevation_ft":700,"latitude":38.138876,"longitude":-86.017628,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN69","iata":"","local":"","name":"Hatfield Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Bristol","elevation_ft":860,"latitude":41.665601,"longitude":-85.832197,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1823,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN62","iata":"","local":"IN62","name":"Tropria Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Churubusco","elevation_ft":905,"latitude":41.244801,"longitude":-85.297501,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN57","iata":"","local":"IN57","name":"Shure Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Farmersburg","elevation_ft":550,"latitude":39.2614,"longitude":-87.421153,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN73","iata":"","local":"","name":"Fleet Field","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Culver","elevation_ft":821,"latitude":41.220945,"longitude":-86.383653,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN74","iata":"","local":"","name":"HJ Umbaugh Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Plymouth","elevation_ft":755,"latitude":41.306999,"longitude":-86.4375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN77","iata":"","local":"","name":"St Joseph Regional Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"South Bend","elevation_ft":704,"latitude":41.680303,"longitude":-86.240799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN78","iata":"","local":"IN78","name":"Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Gary","elevation_ft":591,"latitude":41.59109878540039,"longitude":-87.33619689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":319,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN79","iata":"","local":"IN79","name":"Northwest Family Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Gary","elevation_ft":598,"latitude":41.59980010986328,"longitude":-87.3488998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN84","iata":"","local":"","name":"Shamrock Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Hanna","elevation_ft":680,"latitude":41.408104,"longitude":-86.747202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN80","iata":"","local":"IN80","name":"Roberson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"English","elevation_ft":690,"latitude":38.3213996887207,"longitude":-86.49079895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN88","iata":"","local":"IN88","name":"Sanders Gyroport Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Cloverdale","elevation_ft":760,"latitude":39.514042,"longitude":-86.764047,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN85","iata":"","local":"IN85","name":"Bowlin Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Huntington","elevation_ft":810,"latitude":40.837122,"longitude":-85.48368,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN82","iata":"","local":"IN82","name":"Foos Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Granger","elevation_ft":790,"latitude":41.7495002746582,"longitude":-86.08809661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN89","iata":"","local":"","name":"Ligonier Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Ligonier","elevation_ft":920,"latitude":41.450102,"longitude":-85.605499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN94","iata":"","local":"IN94","name":"Dearborn County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Lawrenceburg","elevation_ft":879,"latitude":39.111698150634766,"longitude":-84.88410186767578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN95","iata":"","local":"","name":"Long Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"North Judson","elevation_ft":700,"latitude":41.227587,"longitude":-86.789374,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN96","iata":"","local":"IN96","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Logansport","elevation_ft":676,"latitude":40.76359939575195,"longitude":-86.36109924316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN97","iata":"","local":"","name":"MGT Station 2113 Heliport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Paxton","elevation_ft":460,"latitude":39.013699,"longitude":-87.407204,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN99","iata":"","local":"IN99","name":"Donica Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Morgantown","elevation_ft":870,"latitude":39.407019,"longitude":-86.305697,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1200,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS00","iata":"","local":"IS00","name":"Jay Schertz Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lowpoint","elevation_ft":780,"latitude":40.84170150756836,"longitude":-89.27449798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS08","iata":"","local":"IS08","name":"Curless Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Astoria","elevation_ft":620,"latitude":40.263939,"longitude":-90.23453,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3400,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS09","iata":"","local":"IS09","name":"Glenoaks Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Glendale Heights","elevation_ft":734,"latitude":41.9144135612,"longitude":-88.05564656850001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IN93","iata":"","local":"IN93","name":"Hustons Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Carlisle","elevation_ft":760,"latitude":41.71200180053711,"longitude":-86.43280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN91","iata":"","local":"IN91","name":"Valhalla Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":810,"latitude":41.00212,"longitude":-84.994268,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS12","iata":"","local":"IS12","name":"Urso Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Bartlett","elevation_ft":785,"latitude":41.999698638916016,"longitude":-88.20539855957031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS17","iata":"","local":"IS17","name":"Harvey Police Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Harvey","elevation_ft":605,"latitude":41.61220169067383,"longitude":-87.66999816894531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS18","iata":"","local":"","name":"Crystal Lake Holiday Inn Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Crystal Lake","elevation_ft":909,"latitude":42.220151,"longitude":-88.283,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS20","iata":"","local":"IS20","name":"Presence St Joseph Hospital - Elgin Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Elgin","elevation_ft":846,"latitude":42.036543,"longitude":-88.326448,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS21","iata":"","local":"IS21","name":"Community Hospital of Staunton Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Staunton","elevation_ft":622,"latitude":39.015253,"longitude":-89.788787,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS22","iata":"","local":"IS22","name":"County Emerg Svcs/Disaster Agcy Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Urbana","elevation_ft":725,"latitude":40.1110992432,"longitude":-88.1845016479,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS23","iata":"","local":"IS23","name":"Turner Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IL","municipality":"South Elgin","elevation_ft":700,"latitude":42.0099983215332,"longitude":-88.29109954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":3000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS24","iata":"","local":"IS24","name":"Harris Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Ramsey","elevation_ft":551,"latitude":39.077778,"longitude":-89.081667,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS26","iata":"","local":"IS26","name":"Niklaus RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Farmer City","elevation_ft":725,"latitude":40.1833992004,"longitude":-88.61530303960001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2620,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS27","iata":"","local":"IS27","name":"Nokomis Community Memorial Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Nokomis","elevation_ft":665,"latitude":38.30139923095703,"longitude":-89.2936019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS29","iata":"","local":"IS29","name":"OSF Center For Health - Streator Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Streator","elevation_ft":639,"latitude":41.113372,"longitude":-88.835163,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS15","iata":"","local":"IS15","name":"Vodden Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Esmond","elevation_ft":850,"latitude":42.032501220703125,"longitude":-88.90260314941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS30","iata":"","local":"IS30","name":"Franciscan Health - Olympia Fields Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Olympia Fields","elevation_ft":718,"latitude":41.523636,"longitude":-87.709705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS33","iata":"","local":"IS33","name":"Willhoit Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Staunton","elevation_ft":614,"latitude":39.04560089111328,"longitude":-89.8406982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS38","iata":"","local":"IS38","name":"St Joseph Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Murphysboro","elevation_ft":405,"latitude":37.765899658203125,"longitude":-89.32510375976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS39","iata":"","local":"IS39","name":"Central Dupage Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Winfield","elevation_ft":734,"latitude":41.8745002746582,"longitude":-88.15650177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS44","iata":"","local":"IS44","name":"Illini Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pittsfield","elevation_ft":740,"latitude":39.6072998046875,"longitude":-90.81400299072266,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS46","iata":"","local":"IS46","name":"Cgh Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Sterling","elevation_ft":707,"latitude":41.80479813,"longitude":-89.69730377,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS48","iata":"","local":"IS48","name":"Il State Police District 22 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Ullin","elevation_ft":335,"latitude":37.2714004517,"longitude":-89.1647033691,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS49","iata":"","local":"IS49","name":"Illinois Valley Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Peru","elevation_ft":600,"latitude":41.329200744628906,"longitude":-89.12370300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS54","iata":"","local":"IS54","name":"Mc Christy Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Stonington","elevation_ft":630,"latitude":39.6431007385,"longitude":-89.14450073239999,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":104,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS51","iata":"","local":"IS51","name":"Schilson Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Carthage","elevation_ft":705,"latitude":40.45140075683594,"longitude":-91.20379638671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS34","iata":"","local":"IS34","name":"Piper's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lawrenceville","elevation_ft":425,"latitude":38.70669937133789,"longitude":-87.6333999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS55","iata":"","local":"IS55","name":"Morton Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"La Harpe","elevation_ft":705,"latitude":40.59090042114258,"longitude":-90.94239807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2525,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS58","iata":"","local":"IS58","name":"Pecatonica Fire Protection District Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pecatonica","elevation_ft":774,"latitude":42.30720138549805,"longitude":-89.36250305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS67","iata":"","local":"IS67","name":"Perry Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Princeton","elevation_ft":735,"latitude":41.367801666259766,"longitude":-89.45680236816406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS74","iata":"","local":"IS74","name":"Caterpillar Aurora Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Montgomery","elevation_ft":660,"latitude":41.71699905395508,"longitude":-88.35919952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":10,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS66","iata":"","local":"IS66","name":"Rhea Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pontoosuc","elevation_ft":684,"latitude":40.59230041503906,"longitude":-91.20149993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS79","iata":"","local":"IS79","name":"Jackson Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IL","municipality":"Crystal Lake","elevation_ft":890,"latitude":42.236698150634766,"longitude":-88.35230255126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":7250,"width_ft":2500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS56","iata":"","local":"IS56","name":"Herren Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Timewell","elevation_ft":654,"latitude":40.08810043334961,"longitude":-90.8853988647461,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS81","iata":"","local":"IS81","name":"Alsip Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Alsip","elevation_ft":623,"latitude":41.67499923706055,"longitude":-87.74949645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS83","iata":"","local":"IS83","name":"Untied Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belvidere","elevation_ft":800,"latitude":42.227500915527344,"longitude":-88.76719665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS59","iata":"","local":"IS59","name":"Rotstein Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kirkland","elevation_ft":760,"latitude":42.1338996887207,"longitude":-88.92420196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS57","iata":"","local":"IS57","name":"Wind Rose Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marengo","elevation_ft":815,"latitude":42.1796989440918,"longitude":-88.63279724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS86","iata":"","local":"IS86","name":"Hendrix Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Buckingham","elevation_ft":656,"latitude":41.04169845581055,"longitude":-88.19170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS88","iata":"","local":"IS88","name":"Melody Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Danville","elevation_ft":660,"latitude":40.14860153198242,"longitude":-87.69450378417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS89","iata":"","local":"IS89","name":"Iroquois Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Watseka","elevation_ft":677,"latitude":40.7661018372,"longitude":-87.73139953610001,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS96","iata":"","local":"IS96","name":"Carle Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Urbana","elevation_ft":879,"latitude":40.11700058,"longitude":-88.21499634,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":44,"surface":"A"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS97","iata":"","local":"IS97","name":"Trinity Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Moline","elevation_ft":570,"latitude":41.46810150146485,"longitude":-90.53079986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IS99","iata":"","local":"IS99","name":"Ware-Wolf Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Wolf Lake","elevation_ft":350,"latitude":37.50749969482422,"longitude":-89.43890380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY00","iata":"","local":"JY00","name":"Pio Costa Enterprises Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Fairfield","elevation_ft":170,"latitude":40.86289978027344,"longitude":-74.31739807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY01","iata":"","local":"JY01","name":"Hunterdon Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Flemington","elevation_ft":215,"latitude":40.53070068359375,"longitude":-74.86070251464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY02","iata":"","local":"JY02","name":"Trade Zone Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Mount Olive","elevation_ft":830,"latitude":40.89680099487305,"longitude":-74.71910095214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY06","iata":"","local":"JY06","name":"The Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bedminster","elevation_ft":240,"latitude":40.673044,"longitude":-74.693467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JB01","iata":"","local":"JB01","name":"Clearwater Aero Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oxford","elevation_ft":944,"latitude":43.757198,"longitude":-89.652603,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2675,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS93","iata":"","local":"IS93","name":"Sue Rock International Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rock City","elevation_ft":950,"latitude":42.443144,"longitude":-89.504288,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1420,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"JY11","iata":"","local":"","name":"Newark Academy Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Livingston","elevation_ft":200,"latitude":40.777301,"longitude":-74.358498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY12","iata":"","local":"JY12","name":"International Crossroads Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Mahwah","elevation_ft":278,"latitude":41.10430145263672,"longitude":-74.16400146484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY13","iata":"","local":"JY13","name":"Colgate-Palmolive/Mennen Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Morris Township","elevation_ft":385,"latitude":40.81399917602539,"longitude":-74.47319793701172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY14","iata":"","local":"JY14","name":"Halka Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold","elevation_ft":150,"latitude":40.22079849243164,"longitude":-74.3917007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY15","iata":"","local":"JY15","name":"My Girls Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Medford","elevation_ft":50,"latitude":39.891499,"longitude":-74.811302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":88,"width_ft":88,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY16","iata":"","local":"JY16","name":"Merrill Creek Reservoir Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Phillipsburg","elevation_ft":938,"latitude":40.7400016784668,"longitude":-75.0905990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":184,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY18","iata":"","local":"JY18","name":"Warren Hopely Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Vincentown","elevation_ft":22,"latitude":39.92829895019531,"longitude":-74.76219940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY20","iata":"","local":"JY20","name":"Bower, Schman & Welch Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Washington","elevation_ft":560,"latitude":40.77080154418945,"longitude":-74.9811019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY21","iata":"","local":"JY21","name":"New Jersey Turnpike Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Jamesburg","elevation_ft":124,"latitude":40.31650161743164,"longitude":-74.49009704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY25","iata":"","local":"JY25","name":"Liberty Cross Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Gladstone","elevation_ft":380,"latitude":40.72320175170898,"longitude":-74.68789672851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY26","iata":"","local":"JY26","name":"Bridgeton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgeton","elevation_ft":80,"latitude":39.41400146484375,"longitude":-75.81629943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY24","iata":"","local":"JY24","name":"Weiss Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Allamuchy","elevation_ft":532,"latitude":40.92369842529297,"longitude":-74.87039947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"JY27","iata":"","local":"JY27","name":"White Willow Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Great Meadows","elevation_ft":552,"latitude":40.928199768066406,"longitude":-74.84400177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY28","iata":"","local":"JY28","name":"AtlantiCare Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Pomona","elevation_ft":63,"latitude":39.479614,"longitude":-74.53925,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY30","iata":"","local":"JY30","name":"Breezy Acres Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Waterford","elevation_ft":142,"latitude":39.72859954833984,"longitude":-74.83660125732422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY32","iata":"","local":"JY32","name":"Bayside State Prison Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Leesburg","elevation_ft":17,"latitude":39.2412693832,"longitude":-74.9513375759,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY34","iata":"","local":"JY34","name":"Verizon - Basking Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bernards Township","elevation_ft":175,"latitude":40.672529,"longitude":-74.635887,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY35","iata":"","local":"JY35","name":"Allen's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NJ","municipality":"Brick","elevation_ft":0,"latitude":40.03350067138672,"longitude":-74.05789947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":3500,"width_ft":140,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY36","iata":"","local":"JY36","name":"Mianecki Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newton","elevation_ft":626,"latitude":41.03670120239258,"longitude":-74.84719848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY79","iata":"","local":"JY79","name":"Oceans Casino Resort Helipad","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":133,"latitude":39.362297,"longitude":-74.416139,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAAA","iata":"","local":"AAA","name":"Logan County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lincoln","elevation_ft":597,"latitude":40.158699,"longitude":-89.334999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":3021,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"JY43","iata":"","local":"JY43","name":"Hill Top Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"West Milford","elevation_ft":921,"latitude":41.083221,"longitude":-74.338554,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2150,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAAF","iata":"AAF","local":"AAF","name":"Apalachicola Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Apalachicola","elevation_ft":20,"latitude":29.72750092,"longitude":-85.02749634,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5271,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":5425,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":5251,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAHH","iata":"AHH","local":"AHH","name":"Amery Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Amery","elevation_ft":1088,"latitude":45.2811012268,"longitude":-92.3753967285,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KACK","iata":"ACK","local":"ACK","name":"Nantucket Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MA","municipality":"Nantucket","elevation_ft":47,"latitude":41.25310135,"longitude":-70.06020355,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6303,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":4500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":127.5}],"has_metar":true,"public":true},{"icao":"KACY","iata":"ACY","local":"ACY","name":"Atlantic City International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":75,"latitude":39.45759963989258,"longitude":-74.57720184326172,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6144,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":102,"width_ft":102,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3},{"id":"ATIS","frequency_mhz":125.725}],"has_metar":true,"public":true},{"icao":"KACZ","iata":"","local":"ACZ","name":"Henderson Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Wallace","elevation_ft":39,"latitude":34.717899322509766,"longitude":-78.00360107421875,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4153,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADT","iata":"","local":"ADT","name":"Atwood-Rawlins City-County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Atwood","elevation_ft":2991,"latitude":39.840099,"longitude":-101.042,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2400,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADU","iata":"","local":"ADU","name":"Audubon County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Audubon","elevation_ft":1287,"latitude":41.70140075683594,"longitude":-94.92050170898438,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3641,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KADW","iata":"ADW","local":"ADW","name":"Joint Base Andrews","category":"large_airport","iso_country":"US","iso_region":"US-MD","municipality":"Camp Springs","elevation_ft":280,"latitude":38.810799,"longitude":-76.866997,"has_tower":true,"has_beacon":true,"runways":[{"id":"01L/19R","length_ft":9318,"width_ft":200,"surface":"C"},{"id":"01R/19L","length_ft":9756,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"D-ATIS","frequency_mhz":133.675}],"has_metar":true,"public":true},{"icao":"KAFP","iata":"","local":"AFP","name":"Anson County Airport - Jeff Cloud Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Wadesboro","elevation_ft":300,"latitude":35.020599,"longitude":-80.077103,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAGC","iata":"AGC","local":"AGC","name":"Allegheny County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1252,"latitude":40.354401,"longitude":-79.930199,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6501,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":3825,"width_ft":100,"surface":"C"},{"id":"H1","length_ft":47,"width_ft":45,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.55},{"id":"LCL/P","frequency_mhz":121.1}],"has_metar":true,"public":true},{"icao":"KAGO","iata":"AGO","local":"AGO","name":"Magnolia Municipal Airport / Ralph C Weiser Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Magnolia","elevation_ft":319,"latitude":33.228001,"longitude":-93.217002,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5007,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAGR","iata":"","local":"AGR","name":"MacDill Air Force Base Auxiliary Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Avon Park","elevation_ft":68,"latitude":27.65060043334961,"longitude":-81.34940338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAGS","iata":"AGS","local":"AGS","name":"Augusta Regional At Bush Field","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Augusta","elevation_ft":144,"latitude":33.3699,"longitude":-81.9645,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6002,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":8001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":132.75}],"has_metar":true,"public":true},{"icao":"KAGZ","iata":"","local":"AGZ","name":"Wagner Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Wagner","elevation_ft":1475,"latitude":43.06330108642578,"longitude":-98.29620361328124,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3500,"width_ft":60,"surface":"A"},{"id":"14/32","length_ft":2252,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAHC","iata":"AHC","local":"AHC","name":"Amedee Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Herlong","elevation_ft":4012,"latitude":40.26620102,"longitude":-120.1529999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAIK","iata":"AIK","local":"AIK","name":"Aiken Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Aiken","elevation_ft":528,"latitude":33.649399,"longitude":-81.684998,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3800,"width_ft":75,"surface":"A"},{"id":"07/25","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIO","iata":"AIO","local":"AIO","name":"Atlantic Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Atlantic","elevation_ft":1165,"latitude":41.40729904,"longitude":-95.04689789,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"12/30","length_ft":3132,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAIV","iata":"AIV","local":"AIV","name":"George Downer Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Aliceville","elevation_ft":150,"latitude":33.106499,"longitude":-88.1978,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5001,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAKH","iata":"","local":"AKH","name":"Gastonia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Gastonia","elevation_ft":798,"latitude":35.202598,"longitude":-81.149902,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3769,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAKQ","iata":"","local":"AKQ","name":"Wakefield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Wakefield","elevation_ft":113,"latitude":36.98720169067383,"longitude":-77.0010986328125,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4337,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAMG","iata":"","local":"AMG","name":"Bacon County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Alma","elevation_ft":200,"latitude":31.53610038757324,"longitude":-82.50659942626953,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAMW","iata":"AMW","local":"AMW","name":"Ames Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Ames","elevation_ft":956,"latitude":41.992001,"longitude":-93.621803,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5701,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3491,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAMT","iata":"","local":"AMT","name":"Alexander Salamon Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"West Union","elevation_ft":896,"latitude":38.851501,"longitude":-83.566299,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3558,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KANJ","iata":"","local":"ANJ","name":"Sault Ste Marie Municipal Sanderson Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Sault Ste Marie","elevation_ft":716,"latitude":46.47919846,"longitude":-84.36840057,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5234,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KANY","iata":"ANY","local":"ANY","name":"Anthony Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Anthony","elevation_ft":1340,"latitude":37.158501,"longitude":-98.079597,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":2212,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":5002,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAOO","iata":"AOO","local":"AOO","name":"Altoona Blair County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Altoona","elevation_ft":1503,"latitude":40.296398,"longitude":-78.32,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5465,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":3668,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAOV","iata":"","local":"AOV","name":"Ava Bill Martin Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ava","elevation_ft":1311,"latitude":36.971900939941406,"longitude":-92.68190002441406,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3634,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAOC","iata":"","local":"AOC","name":"Arco Butte County Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Arco","elevation_ft":5332,"latitude":43.6035,"longitude":-113.334,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6610,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAPG","iata":"APG","local":"APG","name":"Phillips Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-MD","municipality":"Aberdeen","elevation_ft":57,"latitude":39.466202,"longitude":-76.1688,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7998,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.425},{"id":"LCL/P","frequency_mhz":126.15}],"has_metar":true,"public":true},{"icao":"KAPT","iata":"APT","local":"APT","name":"Marion County Airport - Brown Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Jasper","elevation_ft":641,"latitude":35.060699,"longitude":-85.585297,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3498,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAQR","iata":"","local":"AQR","name":"Atoka Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Atoka","elevation_ft":590,"latitude":34.398300170898,"longitude":-96.148101806641,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3015,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KASJ","iata":"","local":"ASJ","name":"Tri County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Ahoskie","elevation_ft":68,"latitude":36.29750061035156,"longitude":-77.1708984375,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KATA","iata":"","local":"ATA","name":"Hall Miller Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Atlanta","elevation_ft":280,"latitude":33.10179901123047,"longitude":-94.19529724121094,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3800,"width_ft":60,"surface":"A"},{"id":"15/33","length_ft":2264,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI39","iata":"","local":"","name":"Laszlo Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Milan","elevation_ft":675,"latitude":42.075003,"longitude":-83.608299,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KASY","iata":"ASY","local":"ASY","name":"Ashley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Ashley","elevation_ft":2032,"latitude":46.0238990784,"longitude":-99.3526000977,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4364,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAUO","iata":"AUO","local":"AUO","name":"Auburn University Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Auburn","elevation_ft":777,"latitude":32.615101,"longitude":-85.433998,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5264,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAVC","iata":"","local":"AVC","name":"Mecklenburg Brunswick Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Brodnax","elevation_ft":441,"latitude":36.688301,"longitude":-78.054497,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAVL","iata":"AVL","local":"AVL","name":"Asheville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Asheville","elevation_ft":2165,"latitude":35.436199,"longitude":-82.541801,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.2},{"id":"LCL/P","frequency_mhz":121.1}],"has_metar":true,"public":true},{"icao":"KAVO","iata":"AVO","local":"AVO","name":"Avon Park Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Avon Park","elevation_ft":160,"latitude":27.59119987,"longitude":-81.52780151,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5374,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":3844,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAWM","iata":"AWM","local":"AWM","name":"West Memphis Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"West Memphis","elevation_ft":212,"latitude":35.1351013184,"longitude":-90.2343978882,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6003,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAXQ","iata":"","local":"AXQ","name":"Clarion County Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Clarion","elevation_ft":1458,"latitude":41.22579956054688,"longitude":-79.44100189208984,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAYS","iata":"AYS","local":"AYS","name":"Waycross Ware County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Waycross","elevation_ft":142,"latitude":31.2490997314,"longitude":-82.39550018310001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5992,"width_ft":100,"surface":"A"},{"id":"05/23","length_ft":5044,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3554,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KAZC","iata":"","local":"AZC","name":"Colorado City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Colorado City","elevation_ft":4874,"latitude":36.95919,"longitude":-113.013166,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5099,"width_ft":60,"surface":"A"},{"id":"11/29","length_ft":6300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAYX","iata":"TUH","local":"AYX","name":"Arnold Air Force Base","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Tullahoma","elevation_ft":1067,"latitude":35.39260101,"longitude":-86.08580017,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBBP","iata":"BTN","local":"BBP","name":"Marlboro County Jetport - H E Avent Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Bennettsville","elevation_ft":147,"latitude":34.6217,"longitude":-79.734398,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5003,"width_ft":74,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBCB","iata":"BCB","local":"BCB","name":"Virginia Tech Montgomery Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Blacksburg","elevation_ft":2132,"latitude":37.2075996399,"longitude":-80.4077987671,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBDG","iata":"BDG","local":"BDG","name":"Blanding Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Blanding","elevation_ft":5868,"latitude":37.58330154,"longitude":-109.4830017,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5781,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBDQ","iata":"","local":"BDQ","name":"Morrilton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Morrilton","elevation_ft":321,"latitude":35.1362,"longitude":-92.713501,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3998,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBFE","iata":"","local":"BFE","name":"Terry County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownfield","elevation_ft":3264,"latitude":33.173099517822266,"longitude":-102.19300079345705,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5218,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":2765,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBGE","iata":"BGE","local":"BGE","name":"Decatur County Industrial Air Park","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Bainbridge","elevation_ft":141,"latitude":30.9715004,"longitude":-84.63739777,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5502,"width_ft":149,"surface":"A"},{"id":"14/32","length_ft":5003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBFK","iata":"","local":"BFK","name":"Buffalo Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Buffalo","elevation_ft":1822,"latitude":36.863300323486,"longitude":-99.618698120117,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBID","iata":"BID","local":"BID","name":"Block Island State Airport","category":"small_airport","iso_country":"US","iso_region":"US-RI","municipality":"Block Island","elevation_ft":108,"latitude":41.1680984497,"longitude":-71.577796936,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":2502,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIE","iata":"BIE","local":"BIE","name":"Beatrice Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Beatrice","elevation_ft":1324,"latitude":40.3013000488,"longitude":-96.75409698490002,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4401,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":5602,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBIJ","iata":"","local":"BIJ","name":"Early County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Blakely","elevation_ft":214,"latitude":31.397499084472656,"longitude":-84.8947982788086,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5494,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBKT","iata":"BKT","local":"BKT","name":"Allen C Perkinson Blackstone Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Blackstone","elevation_ft":439,"latitude":37.0741996765,"longitude":-77.9574966431,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5333,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":134.7}],"has_metar":true,"public":true},{"icao":"KBKV","iata":"","local":"BKV","name":"Hernando County Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Brooksville","elevation_ft":76,"latitude":28.47360039,"longitude":-82.45539856,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5014,"width_ft":150,"surface":"C"},{"id":"09/27","length_ft":7001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.55}],"has_metar":true,"public":true},{"icao":"KBKW","iata":"BKW","local":"BKW","name":"Raleigh County Memorial Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Beckley","elevation_ft":2504,"latitude":37.7873001099,"longitude":-81.1241989136,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6750,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBLF","iata":"BLF","local":"BLF","name":"Mercer County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Bluefield","elevation_ft":2857,"latitude":37.295799,"longitude":-81.207703,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4743,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNW","iata":"BNW","local":"BNW","name":"Boone Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Boone","elevation_ft":1160,"latitude":42.0495986938,"longitude":-93.8476028442,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3248,"width_ft":146,"surface":"T"},{"id":"15/33","length_ft":4808,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBNG","iata":"BNG","local":"BNG","name":"Banning Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Banning","elevation_ft":2219,"latitude":33.922548,"longitude":-116.850672,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4955,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBOW","iata":"BOW","local":"BOW","name":"Bartow Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bartow","elevation_ft":125,"latitude":27.943399,"longitude":-81.783401,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"09L/27R","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"09R/27L","length_ft":4400,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.2}],"has_metar":true,"public":true},{"icao":"KBQP","iata":"","local":"BQP","name":"Morehouse Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bastrop","elevation_ft":168,"latitude":32.75510025,"longitude":-91.88189697,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBQR","iata":"","local":"BQR","name":"Buffalo Lancaster Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Lancaster","elevation_ft":750,"latitude":42.92229843,"longitude":-78.61229706,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3199,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBST","iata":"","local":"BST","name":"Belfast Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Belfast","elevation_ft":198,"latitude":44.409400939941406,"longitude":-69.01190185546875,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBTF","iata":"BTF","local":"BTF","name":"Skypark Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Bountiful","elevation_ft":4234,"latitude":40.8694000244,"longitude":-111.927001953,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4634,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBUY","iata":"","local":"BUY","name":"Burlington Alamance Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Burlington","elevation_ft":617,"latitude":36.04850006103516,"longitude":-79.47489929199219,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6406,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBTY","iata":"BTY","local":"BTY","name":"Beatty Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Beatty","elevation_ft":3170,"latitude":36.8610992432,"longitude":-116.787002563,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5615,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBUM","iata":"BUM","local":"BUM","name":"Butler Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Butler","elevation_ft":892,"latitude":38.2897987366,"longitude":-94.3401031494,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBUB","iata":"BUB","local":"BUB","name":"Cram Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Burwell","elevation_ft":2182,"latitude":41.7766990662,"longitude":-99.14969635010002,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3900,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBVX","iata":"BVX","local":"BVX","name":"Batesville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Batesville","elevation_ft":465,"latitude":35.7262001,"longitude":-91.64730072,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6002,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":2804,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBWI","iata":"BWI","local":"BWI","name":"Baltimore/Washington International Thurgood Marshall Airport","category":"large_airport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":146,"latitude":39.1754,"longitude":-76.668297,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":10503,"width_ft":150,"surface":"A"},{"id":"15L/33R","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"15R/33L","length_ft":9501,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":115.1},{"id":"LCL/P","frequency_mhz":119.4},{"id":"D-ATIS","frequency_mhz":127.8}],"has_metar":true,"public":true},{"icao":"KBXG","iata":"","local":"BXG","name":"Burke County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Waynesboro","elevation_ft":302,"latitude":33.04130172729492,"longitude":-82.00270080566406,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBXK","iata":"BXK","local":"BXK","name":"Buckeye Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Buckeye","elevation_ft":1033,"latitude":33.422397,"longitude":-112.686317,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KBWC","iata":"BWC","local":"BWC","name":"Brawley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Brawley","elevation_ft":-128,"latitude":32.99290085,"longitude":-115.5169983,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4166,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBWW","iata":"BWM","local":"BWW","name":"Bowman Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bowman","elevation_ft":2965,"latitude":46.1655193,"longitude":-103.30075,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5701,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCAE","iata":"CAE","local":"CAE","name":"Columbia Metropolitan Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Columbia","elevation_ft":236,"latitude":33.938801,"longitude":-81.119499,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8001,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":8601,"width_ft":150,"surface":"C"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.5},{"id":"ATIS","frequency_mhz":120.15}],"has_metar":true,"public":true},{"icao":"KBYH","iata":"BYH","local":"BYH","name":"Arkansas International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AR","municipality":"Blytheville","elevation_ft":254,"latitude":35.9642982483,"longitude":-89.94400024410001,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":11602,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCBE","iata":"CBE","local":"CBE","name":"Greater Cumberland Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Wiley Ford","elevation_ft":775,"latitude":39.615398,"longitude":-78.760902,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5047,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":3000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCBF","iata":"CBF","local":"CBF","name":"Council Bluffs Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Council Bluffs","elevation_ft":1253,"latitude":41.2592010498,"longitude":-95.760597229,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3650,"width_ft":60,"surface":"C"},{"id":"18/36","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCBK","iata":"CBK","local":"CBK","name":"Shalz Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Colby","elevation_ft":3187,"latitude":39.42750168,"longitude":-101.0469971,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2600,"width_ft":80,"surface":"T"},{"id":"12/30","length_ft":2660,"width_ft":90,"surface":"T"},{"id":"17/35","length_ft":5110,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCDN","iata":"CDN","local":"CDN","name":"Woodward Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Camden","elevation_ft":302,"latitude":34.2835998535,"longitude":-80.56490325930001,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":2998,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEA","iata":"CEA","local":"CEA","name":"Cessna Aircraft Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1378,"latitude":37.648601532,"longitude":-97.2506027222,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3873,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCEK","iata":"","local":"CEK","name":"Crete Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Crete","elevation_ft":1500,"latitude":40.61790085,"longitude":-96.92489624,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3370,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":4201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCEV","iata":"CEV","local":"CEV","name":"Mettel Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Connersville","elevation_ft":867,"latitude":39.6985015869,"longitude":-85.129699707,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2601,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":6503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFD","iata":"CFD","local":"CFD","name":"Coulter Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bryan","elevation_ft":367,"latitude":30.7157001495,"longitude":-96.3313980103,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFJ","iata":"","local":"CFJ","name":"Crawfordsville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Crawfordsville","elevation_ft":799,"latitude":39.975602,"longitude":-86.919899,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5506,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCFT","iata":"CFT","local":"CFT","name":"Greenlee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Clifton","elevation_ft":3798,"latitude":32.957039,"longitude":-109.211397,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4978,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCGC","iata":"","local":"CGC","name":"Crystal River Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crystal River","elevation_ft":9,"latitude":28.867246,"longitude":-82.571009,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4557,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2666,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCGE","iata":"CGE","local":"CGE","name":"Cambridge Dorchester Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Cambridge","elevation_ft":20,"latitude":38.53929901,"longitude":-76.03040314,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4477,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCGS","iata":"CGS","local":"CGS","name":"College Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"College Park","elevation_ft":48,"latitude":38.9805984497,"longitude":-76.9223022461,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":2607,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHD","iata":"","local":"CHD","name":"Chandler Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Chandler","elevation_ft":1243,"latitude":33.2691,"longitude":-111.810997,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":4401,"width_ft":75,"surface":"A"},{"id":"04R/22L","length_ft":4870,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.1},{"id":"LCL/P","frequency_mhz":126.1},{"id":"ATIS","frequency_mhz":128.325},{"id":"LCL/P","frequency_mhz":133.1},{"id":"LCL/P","frequency_mhz":133.1}],"has_metar":true,"public":true},{"icao":"KCHN","iata":"","local":"CHN","name":"Wauchula Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Wauchula","elevation_ft":106,"latitude":27.51490020752,"longitude":-81.880500793457,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHO","iata":"CHO","local":"CHO","name":"Charlottesville Albemarle Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Charlottesville","elevation_ft":639,"latitude":38.13859939575195,"longitude":-78.4529037475586,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6801,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.425},{"id":"LCL/P","frequency_mhz":124.5}],"has_metar":true,"public":true},{"icao":"KCHS","iata":"CHS","local":"CHS","name":"Charleston International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Charleston","elevation_ft":46,"latitude":32.898602,"longitude":-80.040497,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7000,"width_ft":150,"surface":"C"},{"id":"15/33","length_ft":9001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":124.75},{"id":"LCL/P","frequency_mhz":126}],"has_metar":true,"public":true},{"icao":"KCHT","iata":"","local":"CHT","name":"Chillicothe Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Chillicothe","elevation_ft":783,"latitude":39.78219985961914,"longitude":-93.49569702148438,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3503,"width_ft":110,"surface":"T"},{"id":"14/32","length_ft":3899,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCHU","iata":"","local":"CHU","name":"Houston County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Caledonia","elevation_ft":1179,"latitude":43.59640121459961,"longitude":-91.50389862060548,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3499,"width_ft":77,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCHQ","iata":"","local":"CHQ","name":"Mississippi County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Charleston","elevation_ft":313,"latitude":36.842098236083984,"longitude":-89.35970306396484,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3196,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCJR","iata":"","local":"CJR","name":"Culpeper Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Culpeper","elevation_ft":316,"latitude":38.52669906616211,"longitude":-77.85890197753906,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKB","iata":"CKB","local":"CKB","name":"North Central West Virginia Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Bridgeport","elevation_ft":1217,"latitude":39.2966,"longitude":-80.228104,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7800,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.7},{"id":"ATIS","frequency_mhz":127.825}],"has_metar":true,"public":true},{"icao":"KCKI","iata":"","local":"CKI","name":"Williamsburg Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Kingstree","elevation_ft":67,"latitude":33.71720123291016,"longitude":-79.85700225830078,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKM","iata":"CKM","local":"CKM","name":"Fletcher Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Clarksdale","elevation_ft":173,"latitude":34.2997016907,"longitude":-90.512298584,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5404,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCKA","iata":"CKA","local":"CKA","name":"Kegelman AF Aux Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Cherokee","elevation_ft":1202,"latitude":36.734348,"longitude":-98.123531,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":7800,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCLT","iata":"CLT","local":"CLT","name":"Charlotte Douglas International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":748,"latitude":35.2140007019043,"longitude":-80.94309997558594,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7502,"width_ft":150,"surface":"A"},{"id":"18C/36C","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"18L/36R","length_ft":8677,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":9000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"D-ATIS","frequency_mhz":121.15},{"id":"LCL/P","frequency_mhz":126.4},{"id":"D-ATIS","frequency_mhz":132.1},{"id":"LCL/P","frequency_mhz":133.35}],"has_metar":true,"public":true},{"icao":"KCLW","iata":"CLW","local":"CLW","name":"Clearwater Air Park","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clearwater","elevation_ft":71,"latitude":27.9766998291,"longitude":-82.7586975098,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4108,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCLR","iata":"CLR","local":"CLR","name":"Cliff Hatfield Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Calipatria","elevation_ft":-182,"latitude":33.1315002441,"longitude":-115.521003723,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3423,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCMD","iata":"","local":"CMD","name":"Cullman Regional Airport-Folsom Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Cullman","elevation_ft":969,"latitude":34.2687,"longitude":-86.858002,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNK","iata":"CNK","local":"CNK","name":"Blosser Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Concordia","elevation_ft":1486,"latitude":39.5493011475,"longitude":-97.6522979736,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":2040,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCOI","iata":"COI","local":"COI","name":"Merritt Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Merritt Island","elevation_ft":6,"latitude":28.3416004181,"longitude":-80.6855010986,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3601,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCNP","iata":"","local":"CNP","name":"Billy G Ray Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Chappell","elevation_ft":3682,"latitude":41.07749938964844,"longitude":-102.46399688720705,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4000,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCPC","iata":"","local":"CPC","name":"Columbus County Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Whiteville","elevation_ft":99,"latitude":34.27289963,"longitude":-78.71499634,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCPF","iata":"","local":"CPF","name":"Wendell H Ford Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Hazard","elevation_ft":1256,"latitude":37.386666,"longitude":-83.261666,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3246,"width_ft":60,"surface":"A"},{"id":"14/32","length_ft":5499,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCPK","iata":"","local":"CPK","name":"Chesapeake Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Chesapeake","elevation_ft":19,"latitude":36.6656,"longitude":-76.320702,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO41","iata":"","local":"MO41","name":"Air Evac 23 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Troy","elevation_ft":520,"latitude":38.982108,"longitude":-90.963165,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCPM","iata":"CPM","local":"CPM","name":"Compton Woodley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Compton","elevation_ft":97,"latitude":33.8899993896,"longitude":-118.244003296,"has_tower":false,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":3323,"width_ft":60,"surface":"A"},{"id":"07R/25L","length_ft":3322,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCQJ","iata":"","local":"CQJ","name":"Cheyenne Mountain Space Force Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6609,"latitude":38.738586,"longitude":-104.835148,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCQW","iata":"HCW","local":"CQW","name":"Cheraw Municipal Airport/Lynch Bellinger Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Cheraw","elevation_ft":239,"latitude":34.712898,"longitude":-79.957001,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRE","iata":"CRE","local":"CRE","name":"Grand Strand Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"North Myrtle Beach","elevation_ft":32,"latitude":33.8116989136,"longitude":-78.72389984130001,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5997,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.625},{"id":"LCL/P","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KCQA","iata":"","local":"CQA","name":"Lakefield Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Celina","elevation_ft":894,"latitude":40.48410034179688,"longitude":-84.56009674072266,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCRT","iata":"CRT","local":"CRT","name":"Z M Jack Stell Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Crossett","elevation_ft":184,"latitude":33.1782989502,"longitude":-91.8802032471,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5010,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRW","iata":"CRW","local":"CRW","name":"Yeager Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Charleston","elevation_ft":981,"latitude":38.3731,"longitude":-81.593201,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6715,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.7},{"id":"ATIS","frequency_mhz":127.6}],"has_metar":true,"public":true},{"icao":"KCRX","iata":"CRX","local":"CRX","name":"Roscoe Turner Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Corinth","elevation_ft":425,"latitude":34.9150009155,"longitude":-88.6035003662,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCRZ","iata":"","local":"CRZ","name":"Corning Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Corning","elevation_ft":1274,"latitude":40.99409866333008,"longitude":-94.75499725341795,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":2684,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCSB","iata":"","local":"CSB","name":"Cambridge Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Cambridge","elevation_ft":2414,"latitude":40.30659866333008,"longitude":-100.16200256347656,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4098,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCSQ","iata":"CSQ","local":"CSQ","name":"Creston Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Creston","elevation_ft":1300,"latitude":41.0214004517,"longitude":-94.3632965088,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":1692,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":4901,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCTY","iata":"CTY","local":"CTY","name":"Cross City Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cross City","elevation_ft":42,"latitude":29.6354999542,"longitude":-83.10479736330001,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5005,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCTZ","iata":"CTZ","local":"CTZ","name":"Sampson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Clinton","elevation_ft":148,"latitude":34.9756011963,"longitude":-78.3646011353,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5008,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCUB","iata":"CUB","local":"CUB","name":"Jim Hamilton L.B. Owens Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Columbia","elevation_ft":193,"latitude":33.970500946,"longitude":-80.9952011108,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5011,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCTK","iata":"","local":"CTK","name":"Ingersoll Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Canton","elevation_ft":684,"latitude":40.5690994263,"longitude":-90.074798584,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3294,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":3899,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCVG","iata":"CVG","local":"CVG","name":"Cincinnati Northern Kentucky International Airport","category":"large_airport","iso_country":"US","iso_region":"US-KY","municipality":"Cincinnati / Covington","elevation_ft":896,"latitude":39.048801,"longitude":-84.667801,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":12001,"width_ft":150,"surface":"A"},{"id":"18C/36C","length_ft":11000,"width_ft":150,"surface":"A"},{"id":"18L/36R","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"18R/36L","length_ft":8000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"LCL/P","frequency_mhz":118.975},{"id":"LCL/P","frequency_mhz":133.325},{"id":"D-ATIS","frequency_mhz":134.375},{"id":"D-ATIS","frequency_mhz":135.3}],"has_metar":true,"public":true},{"icao":"KCVK","iata":"CKK","local":"CVK","name":"Sharp County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Ash Flat","elevation_ft":716,"latitude":36.26490021,"longitude":-91.56259918,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5158,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCXE","iata":"","local":"CXE","name":"Chase City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Chase City","elevation_ft":503,"latitude":36.78829956054688,"longitude":-78.50160217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCXL","iata":"CXL","local":"CXL","name":"Calexico International Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Calexico","elevation_ft":4,"latitude":32.6694984436,"longitude":-115.513000488,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4683,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCXU","iata":"","local":"CXU","name":"Camilla Mitchell County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Camilla","elevation_ft":175,"latitude":31.21315,"longitude":-84.235396,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCXW","iata":"","local":"CXW","name":"Conway Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Conway","elevation_ft":276,"latitude":35.019889,"longitude":-92.555111,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCZD","iata":"","local":"CZD","name":"Cozad Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Cozad","elevation_ft":2503,"latitude":40.86909866,"longitude":-100.0039978,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":3000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCYW","iata":"","local":"CYW","name":"Clay Center Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Clay Center","elevation_ft":1208,"latitude":39.3871,"longitude":-97.157204,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4197,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KCZG","iata":"","local":"CZG","name":"Tri Cities Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Endicott","elevation_ft":833,"latitude":42.078499,"longitude":-76.096296,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3900,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCZL","iata":"","local":"CZL","name":"Tom B. David Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Calhoun","elevation_ft":647,"latitude":34.45539856,"longitude":-84.93920135,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6034,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KDAA","iata":"DAA","local":"DAA","name":"Davison Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fort Belvoir","elevation_ft":73,"latitude":38.715000152600005,"longitude":-77.1809997559,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5421,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.275},{"id":"ATIS","frequency_mhz":128.175}],"has_metar":true,"public":true},{"icao":"KDAN","iata":"DAN","local":"DAN","name":"Danville Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Danville","elevation_ft":571,"latitude":36.572899,"longitude":-79.336098,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5900,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3910,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDAY","iata":"DAY","local":"DAY","name":"James M Cox Dayton International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":1009,"latitude":39.902401,"longitude":-84.219398,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":10901,"width_ft":150,"surface":"A"},{"id":"06R/24L","length_ft":7285,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":8502,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":125.8}],"has_metar":true,"public":true},{"icao":"KDAF","iata":"","local":"DAF","name":"Necedah Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Necedah","elevation_ft":919,"latitude":44.03340148925781,"longitude":-90.08509826660156,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":2721,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KDCA","iata":"DCA","local":"DCA","name":"Ronald Reagan Washington National Airport","category":"large_airport","iso_country":"US","iso_region":"US-DC","municipality":"Washington","elevation_ft":15,"latitude":38.8521,"longitude":-77.037697,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7169,"width_ft":150,"surface":"A"},{"id":"04/22","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5204,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"D-ATIS","frequency_mhz":132.65},{"id":"LCL/P","frequency_mhz":134.35}],"has_metar":true,"public":true},{"icao":"KDCM","iata":"","local":"DCM","name":"Chester Catawba Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Chester","elevation_ft":656,"latitude":34.78929901123047,"longitude":-81.19580078125,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4998,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDED","iata":"","local":"DED","name":"Deland Municipal Sidney H Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Deland","elevation_ft":79,"latitude":29.06699944,"longitude":-81.28379822,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4301,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDGL","iata":"DGL","local":"DGL","name":"Douglas Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Douglas","elevation_ft":4173,"latitude":31.3425998688,"longitude":-109.505996704,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5760,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":4095,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KDLC","iata":"DLL","local":"DLC","name":"Dillon County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Dillon","elevation_ft":133,"latitude":34.4491004944,"longitude":-79.368598938,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDMO","iata":"DMO","local":"DMO","name":"Sedalia Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sedalia","elevation_ft":909,"latitude":38.70740127559999,"longitude":-93.1759033203,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3519,"width_ft":50,"surface":"A"},{"id":"18/36","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDMW","iata":"","local":"DMW","name":"Carroll County Regional Jack B Poage Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Westminster","elevation_ft":789,"latitude":39.60829926,"longitude":-77.00769806,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDNL","iata":"DNL","local":"DNL","name":"Daniel Field","category":"medium_airport","iso_country":"US","iso_region":"US-GA","municipality":"Augusta","elevation_ft":423,"latitude":33.4664993286,"longitude":-82.0393981934,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4002,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":3733,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDNV","iata":"DNV","local":"DNV","name":"Vermilion Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Danville","elevation_ft":697,"latitude":40.199124,"longitude":-87.59663,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6006,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":2500,"width_ft":150,"surface":"T"},{"id":"16/34","length_ft":3999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDOV","iata":"DOV","local":"DOV","name":"Dover Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-DE","municipality":"Dover","elevation_ft":24,"latitude":39.129501,"longitude":-75.466003,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":9602,"width_ft":150,"surface":"C"},{"id":"14/32","length_ft":12903,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.35},{"id":"D-ATIS","frequency_mhz":127.825}],"has_metar":true,"public":true},{"icao":"KDPL","iata":"","local":"DPL","name":"Duplin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kenansville","elevation_ft":136,"latitude":35.00009918,"longitude":-77.98169708,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDQH","iata":"","local":"DQH","name":"Douglas Municipal Gene Chambers Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Douglas","elevation_ft":257,"latitude":31.4767,"longitude":-82.860497,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDRP","iata":"","local":"DRP","name":"Delta Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Colt","elevation_ft":239,"latitude":35.1200556,"longitude":-90.8265,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDPG","iata":"DPG","local":"DPG","name":"Michael AAF (Dugway Proving Ground) Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Dugway Proving Ground","elevation_ft":4349,"latitude":40.197396,"longitude":-112.935094,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":10999,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KDVT","iata":"DVT","local":"DVT","name":"Phoenix Deer Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1478,"latitude":33.6883010864,"longitude":-112.083000183,"has_tower":true,"has_beacon":true,"runways":[{"id":"07L/25R","length_ft":4500,"width_ft":75,"surface":"A"},{"id":"07R/25L","length_ft":8196,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.4},{"id":"LCL/P","frequency_mhz":120.2},{"id":"ATIS","frequency_mhz":126.5}],"has_metar":true,"public":true},{"icao":"KDWU","iata":"","local":"DWU","name":"Ashland Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Ashland","elevation_ft":546,"latitude":38.554500579833984,"longitude":-82.73799896240234,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5402,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDYR","iata":"","local":"DYR","name":"Dyersburg Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Dyersburg","elevation_ft":338,"latitude":35.999158,"longitude":-89.404898,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5698,"width_ft":98,"surface":"A"},{"id":"16/34","length_ft":4001,"width_ft":74,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KDXE","iata":"","local":"DXE","name":"Dexter Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Dexter","elevation_ft":304,"latitude":36.77750015,"longitude":-89.94120026,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEBY","iata":"","local":"EBY","name":"US Coast Guard Station Neah Bay Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Neah Bay","elevation_ft":10,"latitude":48.3704528,"longitude":-124.5981194,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KECG","iata":"ECG","local":"ECG","name":"Elizabeth City Regional Airport & Coast Guard Air Station","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabeth City","elevation_ft":11,"latitude":36.260601,"longitude":-76.174599,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4518,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":7219,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.5}],"has_metar":true,"public":true},{"icao":"KEBD","iata":"","local":"EBD","name":"Southern West Virginia Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Varney","elevation_ft":1883,"latitude":37.6818,"longitude":-82.1221,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEDE","iata":"EDE","local":"EDE","name":"Northeastern Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Edenton","elevation_ft":20,"latitude":36.027698516799994,"longitude":-76.56710052490001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEFW","iata":"EFW","local":"EFW","name":"Jefferson Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Jefferson","elevation_ft":1044,"latitude":42.0102005,"longitude":-94.34259796,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4100,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":1696,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEGQ","iata":"","local":"EGQ","name":"Emmetsburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Emmetsburg","elevation_ft":1205,"latitude":43.10200119018555,"longitude":-94.70469665527344,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2537,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":3401,"width_ft":60,"surface":"C"},{"id":"17/35","length_ft":2157,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEFC","iata":"","local":"EFC","name":"Belle Fourche Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Belle Fourche","elevation_ft":3191,"latitude":44.73419952,"longitude":-103.8619995,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4501,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":3639,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEHO","iata":"","local":"EHO","name":"Shelby-Cleveland County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Shelby","elevation_ft":847,"latitude":35.25559998,"longitude":-81.60099792,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKN","iata":"EKN","local":"EKN","name":"Elkins-Randolph County Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Elkins","elevation_ft":1987,"latitude":38.889759,"longitude":-79.857651,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4501,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":4544,"width_ft":140,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEKA","iata":"EKA","local":"EKA","name":"Murray Field","category":"medium_airport","iso_country":"US","iso_region":"US-CA","municipality":"Eureka","elevation_ft":7,"latitude":40.8033981323,"longitude":-124.112998962,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3011,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEIW","iata":"","local":"EIW","name":"County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"New Madrid","elevation_ft":296,"latitude":36.53530121,"longitude":-89.59970093,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEMM","iata":"EMM","local":"EMM","name":"Kemmerer Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Kemmerer","elevation_ft":7285,"latitude":41.82410049439999,"longitude":-110.556999207,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2671,"width_ft":60,"surface":"C"},{"id":"10/28","length_ft":3271,"width_ft":60,"surface":"T"},{"id":"16/34","length_ft":8203,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEMV","iata":"","local":"EMV","name":"Emporia Greensville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Emporia","elevation_ft":127,"latitude":36.6869010925293,"longitude":-77.48280334472656,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5010,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEOE","iata":"","local":"EOE","name":"Newberry County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Newberry","elevation_ft":570,"latitude":34.30929947,"longitude":-81.63970184,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEOP","iata":"","local":"EOP","name":"Pike County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Waverly","elevation_ft":660,"latitude":39.166900634765625,"longitude":-82.9281997680664,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4899,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEOS","iata":"","local":"EOS","name":"Neosho Hugh Robinson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Neosho","elevation_ft":1255,"latitude":36.81079864501953,"longitude":-94.3917007446289,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEQY","iata":"","local":"EQY","name":"Charlotte-Monroe Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Monroe","elevation_ft":679,"latitude":35.01879883,"longitude":-80.62020111,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KERY","iata":"","local":"ERY","name":"Luce County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Newberry","elevation_ft":869,"latitude":46.311199,"longitude":-85.457298,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2856,"width_ft":150,"surface":"T"},{"id":"11/29","length_ft":4304,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KERR","iata":"ERR","local":"ERR","name":"Errol Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Errol","elevation_ft":1245,"latitude":44.7924995422,"longitude":-71.1641998291,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3600,"width_ft":60,"surface":"G"},{"id":"H1","length_ft":61,"width_ft":61,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KETC","iata":"","local":"ETC","name":"Tarboro Edgecombe Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Tarboro","elevation_ft":53,"latitude":35.93709945678711,"longitude":-77.54660034179688,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3999,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEVB","iata":"","local":"EVB","name":"New Smyrna Beach Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"New Smyrna Beach","elevation_ft":10,"latitude":29.0557,"longitude":-80.948898,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4000,"width_ft":100,"surface":"A"},{"id":"07/25","length_ft":5000,"width_ft":75,"surface":"A"},{"id":"11/29","length_ft":4319,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.675},{"id":"ATIS","frequency_mhz":124.625}],"has_metar":true,"public":true},{"icao":"KESW","iata":"ESW","local":"ESW","name":"Easton State Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Easton","elevation_ft":2226,"latitude":47.2541999817,"longitude":-121.185997009,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEWN","iata":"EWN","local":"EWN","name":"Coastal Carolina Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"New Bern","elevation_ft":18,"latitude":35.0730018616,"longitude":-77.04290008539999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6452,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.25}],"has_metar":true,"public":true},{"icao":"KEYE","iata":"","local":"EYE","name":"Eagle Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":823,"latitude":39.830699920654,"longitude":-86.294403076172,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEYF","iata":"","local":"EYF","name":"Curtis L Brown Jr Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabethtown","elevation_ft":131,"latitude":34.60179901,"longitude":-78.57929993,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5006,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KEZF","iata":"","local":"EZF","name":"Shannon Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fredericksburg","elevation_ft":85,"latitude":38.26679992675781,"longitude":-77.44920349121094,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2999,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":1300,"width_ft":100,"surface":"T"},{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFAF","iata":"FAF","local":"FAF","name":"Felker Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Newport News (Fort Eustis)","elevation_ft":12,"latitude":37.1325,"longitude":-76.608803,"has_tower":true,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3025,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KEZI","iata":"","local":"EZI","name":"Kewanee Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kewanee","elevation_ft":858,"latitude":41.2052,"longitude":-89.963898,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3200,"width_ft":60,"surface":"A"},{"id":"09/27","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFAY","iata":"FAY","local":"FAY","name":"Fayetteville Regional Airport - Grannis Field","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":189,"latitude":34.991199,"longitude":-78.880302,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7709,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":4801,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":121.25}],"has_metar":true,"public":true},{"icao":"KFBG","iata":"FBG","local":"FBG","name":"Simmons Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fort Bragg","elevation_ft":244,"latitude":35.13180161,"longitude":-78.93669891,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5011,"width_ft":110,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.9},{"id":"ATIS","frequency_mhz":139.25}],"has_metar":true,"public":true},{"icao":"KFBY","iata":"FBY","local":"FBY","name":"Fairbury Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Fairbury","elevation_ft":1479,"latitude":40.1829986572,"longitude":-97.1692962646,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":2487,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":3700,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFCI","iata":"","local":"FCI","name":"Richmond Executive-Chesterfield County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"North Chesterfield","elevation_ft":236,"latitude":37.406502,"longitude":-77.525002,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFCT","iata":"","local":"FCT","name":"Vagabond Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1378,"latitude":46.669421,"longitude":-120.455984,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":1602,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFCY","iata":"FCY","local":"FCY","name":"Forrest City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Forrest City","elevation_ft":249,"latitude":34.942001342800005,"longitude":-90.7750015259,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3014,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFDK","iata":"FDK","local":"FDK","name":"Frederick Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Frederick","elevation_ft":303,"latitude":39.4175987244,"longitude":-77.3742980957,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5819,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":3599,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.875},{"id":"LCL/P","frequency_mhz":132.4}],"has_metar":true,"public":true},{"icao":"KFDW","iata":"","local":"FDW","name":"Fairfield County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Winnsboro","elevation_ft":577,"latitude":34.31549835205078,"longitude":-81.10880279541016,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5243,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFA","iata":"FFA","local":"FFA","name":"First Flight Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kill Devil Hills","elevation_ft":13,"latitude":36.0181999207,"longitude":-75.67130279540001,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFM","iata":"FFM","local":"FFM","name":"Fergus Falls Municipal Airport - Einar Mickelson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Fergus Falls","elevation_ft":1183,"latitude":46.28440094,"longitude":-96.15670013,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5639,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3301,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFFO","iata":"FFO","local":"FFO","name":"Wright-Patterson Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":823,"latitude":39.826099,"longitude":-84.048302,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":12600,"width_ft":300,"surface":"A"},{"id":"05R/23L","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.475},{"id":"LCL/P","frequency_mhz":126.9}],"has_metar":true,"public":true},{"icao":"KFFZ","iata":"MSC","local":"FFZ","name":"Falcon Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1394,"latitude":33.4608001709,"longitude":-111.727996826,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":3799,"width_ft":75,"surface":"A"},{"id":"04R/22L","length_ft":5100,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.25},{"id":"LCL/P","frequency_mhz":124.6}],"has_metar":true,"public":true},{"icao":"KFGX","iata":"","local":"FGX","name":"Fleming Mason Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Flemingsburg","elevation_ft":913,"latitude":38.5418014526,"longitude":-83.74340057370001,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKN","iata":"FKN","local":"FKN","name":"Franklin Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Franklin","elevation_ft":41,"latitude":36.698101,"longitude":-76.903801,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4977,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFKR","iata":"","local":"FKR","name":"Frankfort Clinton County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Frankfort","elevation_ft":861,"latitude":40.273399,"longitude":-86.562202,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2527,"width_ft":70,"surface":"A"},{"id":"09/27","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFGU","iata":"","local":"FGU","name":"Collegedale Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Apison","elevation_ft":860,"latitude":35.044315,"longitude":-85.020146,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4986,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFLO","iata":"FLO","local":"FLO","name":"Florence Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Florence","elevation_ft":146,"latitude":34.18539810180664,"longitude":-79.7238998413086,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6000,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":6502,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.625},{"id":"LCL/P","frequency_mhz":125.1}],"has_metar":true,"public":true},{"icao":"KFME","iata":"FME","local":"FME","name":"Tipton Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MD","municipality":"Fort Meade(Odenton)","elevation_ft":150,"latitude":39.08539962769999,"longitude":-76.7593994141,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFLV","iata":"FLV","local":"FLV","name":"Sherman Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Fort Leavenworth","elevation_ft":772,"latitude":39.3683013916,"longitude":-94.9147033691,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5318,"width_ft":102,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFLX","iata":"FLX","local":"FLX","name":"Fallon Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Fallon","elevation_ft":3963,"latitude":39.4990997314,"longitude":-118.749000549,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5705,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":3581,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFMZ","iata":"","local":"FMZ","name":"Fairmont State Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Fairmont","elevation_ft":1636,"latitude":40.586102,"longitude":-97.573097,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3021,"width_ft":60,"surface":"C"},{"id":"17/35","length_ft":4317,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFQD","iata":"","local":"FQD","name":"Rutherford County Marchman Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Rutherfordton","elevation_ft":1077,"latitude":35.4282,"longitude":-81.935097,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFRR","iata":"FRR","local":"FRR","name":"Front Royal Warren County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Front Royal","elevation_ft":709,"latitude":38.9175,"longitude":-78.253502,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3008,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFST","iata":"FST","local":"FST","name":"Fort Stockton Pecos County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Stockton","elevation_ft":3011,"latitude":30.9157009125,"longitude":-102.916000366,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4400,"width_ft":60,"surface":"A"},{"id":"07/25","length_ft":4961,"width_ft":150,"surface":"T"},{"id":"11/29","length_ft":3348,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":7508,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":3981,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFSE","iata":"","local":"FSE","name":"Fosston Municipal Airport-Anderson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Fosston","elevation_ft":1277,"latitude":47.5928,"longitude":-95.773499,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3502,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFSU","iata":"FSU","local":"FSU","name":"Fort Sumner Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Fort Sumner","elevation_ft":4165,"latitude":34.4833984375,"longitude":-104.217002869,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5800,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":5250,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFTT","iata":"","local":"FTT","name":"Elton Hensley Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fulton","elevation_ft":886,"latitude":38.83810043334961,"longitude":-92.00260162353516,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3203,"width_ft":60,"surface":"C"},{"id":"12/30","length_ft":2488,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFVX","iata":"","local":"FVX","name":"Farmville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Farmville","elevation_ft":416,"latitude":37.35749817,"longitude":-78.43779755,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO42","iata":"","local":"","name":"Wileys Air Strip","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Gorin","elevation_ft":662,"latitude":40.376403,"longitude":-92.072403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":31,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFYE","iata":"","local":"FYE","name":"Fayette County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Somerville","elevation_ft":436,"latitude":35.207698822021484,"longitude":-89.39450073242188,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFYJ","iata":"","local":"FYJ","name":"Middle Peninsula Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Shacklefords","elevation_ft":20,"latitude":37.521299,"longitude":-76.762762,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFZG","iata":"","local":"FZG","name":"Fitzgerald Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fitzgerald","elevation_ft":365,"latitude":31.68370056152344,"longitude":-83.27050018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5000,"width_ft":101,"surface":"A"},{"id":"15/33","length_ft":2984,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KFZI","iata":"","local":"FZI","name":"Fostoria Metropolitan Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Fostoria","elevation_ft":752,"latitude":41.19079971,"longitude":-83.39450073,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGAI","iata":"GAI","local":"GAI","name":"Montgomery County Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Gaithersburg","elevation_ft":539,"latitude":39.168301,"longitude":-77.166,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4202,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGBD","iata":"GBD","local":"GBD","name":"Great Bend Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Great Bend","elevation_ft":1887,"latitude":38.3442993164,"longitude":-98.8591995239,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4706,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":7852,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGBR","iata":"GBR","local":"GBR","name":"Walter J. Koladza Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Great Barrington","elevation_ft":739,"latitude":42.18420029,"longitude":-73.40319824,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":2579,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGAX","iata":"","local":"GAX","name":"Williams Auxiliary Air Field 6","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Gila Bend","elevation_ft":0,"latitude":32.884669,"longitude":-112.816544,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":60,"surface":"D"},{"id":"13/31","length_ft":3000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGCT","iata":"","local":"GCT","name":"Guthrie County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Guthrie Center","elevation_ft":1230,"latitude":41.687801361083984,"longitude":-94.4352035522461,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3400,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGED","iata":"GED","local":"GED","name":"Delaware Coastal Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Georgetown","elevation_ft":53,"latitude":38.689201,"longitude":-75.358902,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5500,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":3109,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGEU","iata":"","local":"GEU","name":"Glendale Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Glendale","elevation_ft":1071,"latitude":33.52690124511719,"longitude":-112.29499816894533,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7150,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.425},{"id":"LCL/P","frequency_mhz":121}],"has_metar":true,"public":true},{"icao":"KGFA","iata":"GFA","local":"GFA","name":"Malmstrom Air Force Base","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Great Falls","elevation_ft":3472,"latitude":47.504699707,"longitude":-111.18699646,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGFZ","iata":"","local":"GFZ","name":"Greenfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Greenfield","elevation_ft":1364,"latitude":41.32699966,"longitude":-94.4457016,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3400,"width_ft":60,"surface":"C"},{"id":"14/32","length_ft":2500,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGGE","iata":"GGE","local":"GGE","name":"Georgetown County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Georgetown","elevation_ft":39,"latitude":33.3116989136,"longitude":-79.3196029663,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6005,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4539,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGHM","iata":"GHM","local":"GHM","name":"Centerville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Centerville","elevation_ft":768,"latitude":35.8373985291,"longitude":-87.44539642330001,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGIF","iata":"GIF","local":"GIF","name":"Winter Haven Regional Airport - Gilbert Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Winter Haven","elevation_ft":145,"latitude":28.062901,"longitude":-81.753304,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5005,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":4001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGMU","iata":"GMU","local":"GMU","name":"Greenville Downtown Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":1048,"latitude":34.847903,"longitude":-82.350217,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5393,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":4000,"width_ft":80,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":127.075}],"has_metar":true,"public":true},{"icao":"KGNF","iata":"","local":"GNF","name":"Grenada Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Grenada","elevation_ft":208,"latitude":33.83250045776367,"longitude":-89.79820251464844,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4998,"width_ft":99,"surface":"A"},{"id":"13/31","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGRE","iata":"GRE","local":"GRE","name":"Greenville Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Greenville","elevation_ft":541,"latitude":38.836844,"longitude":-89.376525,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2822,"width_ft":250,"surface":"T"},{"id":"18/36","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGSB","iata":"GSB","local":"GSB","name":"Seymour Johnson Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Goldsboro","elevation_ft":109,"latitude":35.339401,"longitude":-77.960602,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":11760,"width_ft":300,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.25}],"has_metar":true,"public":true},{"icao":"KGSO","iata":"GSO","local":"GSO","name":"Piedmont Triad International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Greensboro","elevation_ft":925,"latitude":36.097801,"longitude":-79.937302,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":9000,"width_ft":150,"surface":"A"},{"id":"05R/23L","length_ft":10001,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":6380,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"D-ATIS","frequency_mhz":128.55}],"has_metar":true,"public":true},{"icao":"KGSP","iata":"GSP","local":"GSP","name":"Greenville Spartanburg International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greer","elevation_ft":964,"latitude":34.895699,"longitude":-82.218903,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":11001,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"ATIS","frequency_mhz":134.25}],"has_metar":true,"public":true},{"icao":"KGTE","iata":"","local":"GTE","name":"Gothenburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Gothenburg","elevation_ft":2559,"latitude":40.9263,"longitude":-100.148003,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2599,"width_ft":50,"surface":"C"},{"id":"14/32","length_ft":3300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGTG","iata":"GTG","local":"GTG","name":"Grantsburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Grantsburg","elevation_ft":927,"latitude":45.7980995178,"longitude":-92.6643981934,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3280,"width_ft":120,"surface":"T"},{"id":"12/30","length_ft":2999,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGWW","iata":"","local":"GWW","name":"Goldsboro-Wayne Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Goldsboro","elevation_ft":134,"latitude":35.4606018066,"longitude":-77.96489715579999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGYB","iata":"","local":"GYB","name":"Giddings-Lee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Giddings","elevation_ft":485,"latitude":30.1693,"longitude":-96.980003,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KGYR","iata":"GYR","local":"GYR","name":"Phoenix Goodyear Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Goodyear","elevation_ft":968,"latitude":33.4225006104,"longitude":-112.375999451,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8500,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.35},{"id":"LCL/P","frequency_mhz":120.1}],"has_metar":true,"public":true},{"icao":"KGWS","iata":"GWS","local":"GWS","name":"Glenwood Springs Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Glenwood Springs","elevation_ft":5916,"latitude":39.5083007812,"longitude":-107.310997009,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3305,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHAB","iata":"HAB","local":"HAB","name":"Marion County Rankin Fite Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Hamilton","elevation_ft":436,"latitude":34.11759949,"longitude":-87.99819946,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5495,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHAE","iata":"","local":"HAE","name":"Hannibal Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hannibal","elevation_ft":769,"latitude":39.72449875,"longitude":-91.4437027,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4400,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBI","iata":"","local":"HBI","name":"Asheboro Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Asheboro","elevation_ft":671,"latitude":35.65449905,"longitude":-79.8946991,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBC","iata":"","local":"HBC","name":"Mohall Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mohall","elevation_ft":1649,"latitude":48.76839828491211,"longitude":-101.53700256347656,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3599,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHDE","iata":"HDE","local":"HDE","name":"Brewster Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Holdrege","elevation_ft":2313,"latitude":40.452099,"longitude":-99.336502,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":2350,"width_ft":300,"surface":"T"},{"id":"18/36","length_ft":4701,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHEE","iata":"HEE","local":"HEE","name":"Thompson-Robbins Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"West Helena","elevation_ft":242,"latitude":34.576571,"longitude":-90.67616,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3011,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHEF","iata":"MNZ","local":"HEF","name":"Manassas Regional Airport/Harry P. Davis Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Manassas","elevation_ft":192.2,"latitude":38.72140121,"longitude":-77.51540375,"has_tower":true,"has_beacon":true,"runways":[{"id":"16L/34R","length_ft":6200,"width_ft":100,"surface":"A"},{"id":"16R/34L","length_ft":3715,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.175},{"id":"LCL/P","frequency_mhz":133.1}],"has_metar":true,"public":true},{"icao":"KHEG","iata":"","local":"HEG","name":"Herlong Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":87,"latitude":30.2778,"longitude":-81.805901,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4001,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":3500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHBZ","iata":"","local":"HBZ","name":"Heber Springs Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Heber Springs","elevation_ft":632,"latitude":35.5117,"longitude":-92.013,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHEQ","iata":"","local":"HEQ","name":"Holyoke Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Holyoke","elevation_ft":3730,"latitude":40.56940078735352,"longitude":-102.27300262451172,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHEZ","iata":"HEZ","local":"HEZ","name":"Natchez–Adams County Airport / Hardy-Anders Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Natchez","elevation_ft":272,"latitude":31.614817,"longitude":-91.297331,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":6500,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHFF","iata":"HFF","local":"HFF","name":"Mackall Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hoffman","elevation_ft":376,"latitude":35.036087,"longitude":-79.498615,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4996,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":4794,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":5529,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121},{"id":"D-ATIS","frequency_mhz":141.4}],"has_metar":true,"public":true},{"icao":"KHFY","iata":"","local":"HFY","name":"Indy South Greenwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":822,"latitude":39.628399,"longitude":-86.087898,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5102,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHGR","iata":"HGR","local":"HGR","name":"Hagerstown Regional Richard A Henson Field","category":"medium_airport","iso_country":"US","iso_region":"US-MD","municipality":"Hagerstown","elevation_ft":703,"latitude":39.707901,"longitude":-77.72949982,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3165,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3}],"has_metar":true,"public":true},{"icao":"KHJH","iata":"","local":"HJH","name":"Hebron Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hebron","elevation_ft":1466,"latitude":40.15219879150391,"longitude":-97.58699798583984,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2513,"width_ft":150,"surface":"T"},{"id":"12/30","length_ft":3600,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHKA","iata":"HKA","local":"HKA","name":"Blytheville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Blytheville","elevation_ft":255,"latitude":35.940399169900004,"longitude":-89.83080291750001,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHKS","iata":"HKS","local":"HKS","name":"Hawkins Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":341,"latitude":32.33449936,"longitude":-90.22219849,"has_tower":true,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3431,"width_ft":150,"surface":"C"},{"id":"16/34","length_ft":5387,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.65}],"has_metar":true,"public":true},{"icao":"KHKY","iata":"HKY","local":"HKY","name":"Hickory Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hickory","elevation_ft":1190,"latitude":35.74110031,"longitude":-81.38950348,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4400,"width_ft":150,"surface":"A"},{"id":"06/24","length_ft":6401,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":128.15}],"has_metar":true,"public":true},{"icao":"KHIG","iata":"","local":"HIG","name":"Higginsville Industrial Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Higginsville","elevation_ft":840,"latitude":39.07289886,"longitude":-93.67749786,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHLC","iata":"HLC","local":"HLC","name":"Hill City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hill City","elevation_ft":2238,"latitude":39.37879944,"longitude":-99.83149719,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHLG","iata":"HLG","local":"HLG","name":"Wheeling Ohio County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Wheeling","elevation_ft":1195,"latitude":40.1749992371,"longitude":-80.6463012695,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5002,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":4499,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"KHLR","iata":"HLR","local":"HLR","name":"Hood Army Air Field","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Cavazos (Killeen)","elevation_ft":924,"latitude":31.1387,"longitude":-97.7145,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3701,"width_ft":144,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.65},{"id":"ATIS","frequency_mhz":138.6}],"has_metar":true,"public":true},{"icao":"KHLX","iata":"","local":"HLX","name":"Twin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hillsville","elevation_ft":2693,"latitude":36.766102,"longitude":-80.823601,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4204,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHMY","iata":"","local":"HMY","name":"Muldrow Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Lexington","elevation_ft":1087,"latitude":35.02640151977539,"longitude":-97.23159790039062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2005,"width_ft":75,"surface":"C"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"},{"id":"H2","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHNZ","iata":"","local":"HNZ","name":"Henderson Oxford Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Oxford","elevation_ft":526,"latitude":36.36159897,"longitude":-78.52919769,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHOE","iata":"","local":"HOE","name":"Homerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Homerville","elevation_ft":186,"latitude":31.05590057373047,"longitude":-82.77410125732422,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHRU","iata":"","local":"HRU","name":"Herington Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Herington","elevation_ft":1480,"latitude":38.69469833374024,"longitude":-96.80799865722656,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4184,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHOC","iata":"","local":"HOC","name":"Highland County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hillsboro","elevation_ft":977,"latitude":39.18880081176758,"longitude":-83.53880310058594,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3520,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHQU","iata":"","local":"HQU","name":"Thomson-McDuffie County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Thomson","elevation_ft":501,"latitude":33.52970123,"longitude":-82.51650238,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5514,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHRJ","iata":"","local":"HRJ","name":"Harnett Regional Jetport Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Erwin","elevation_ft":202,"latitude":35.379398,"longitude":-78.733002,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHPY","iata":"HPY","local":"HPY","name":"Baytown Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":34,"latitude":29.7861003876,"longitude":-94.9526977539,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4334,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHSE","iata":"HNC","local":"HSE","name":"Billy Mitchell Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hatteras","elevation_ft":17,"latitude":35.232799530029,"longitude":-75.617797851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHSI","iata":"HSI","local":"HSI","name":"Hastings Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hastings","elevation_ft":1961,"latitude":40.6053009033,"longitude":-98.4279022217,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4501,"width_ft":75,"surface":"C"},{"id":"14/32","length_ft":6451,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHSP","iata":"HSP","local":"HSP","name":"Ingalls Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hot Springs","elevation_ft":3793,"latitude":37.95140076,"longitude":-79.83390045,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHSD","iata":"","local":"HSD","name":"Sundance Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1193,"latitude":35.60179901123047,"longitude":-97.7061996459961,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5001,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO89","iata":"","local":"","name":"Bar-Vik Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Laurie","elevation_ft":930,"latitude":38.174198,"longitude":-92.858498,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1158,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHSR","iata":"","local":"HSR","name":"Hot Springs Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hot Springs","elevation_ft":3150,"latitude":43.366615,"longitude":-103.390545,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4506,"width_ft":100,"surface":"A"},{"id":"06/24","length_ft":3926,"width_ft":235,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHTS","iata":"HTS","local":"HTS","name":"Tri-State Airport / Milton J. Ferguson Field","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Huntington","elevation_ft":828,"latitude":38.366699,"longitude":-82.557999,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":7017,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"ATIS","frequency_mhz":125.2}],"has_metar":true,"public":true},{"icao":"KHUA","iata":"HUA","local":"HUA","name":"Redstone Army Air Field","category":"medium_airport","iso_country":"US","iso_region":"US-AL","municipality":"Redstone Arsnl Huntsville","elevation_ft":684,"latitude":34.67869949,"longitude":-86.68479919,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":7300,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.65},{"id":"LCL/P","frequency_mhz":126.95}],"has_metar":true,"public":true},{"icao":"KHTW","iata":"HTW","local":"HTW","name":"Lawrence County Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"South Point","elevation_ft":568,"latitude":38.419082,"longitude":-82.494922,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2998,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHVS","iata":"HVS","local":"HVS","name":"Hartsville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Hartsville","elevation_ft":364,"latitude":34.4030990601,"longitude":-80.11920166019999,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHWQ","iata":"","local":"HWQ","name":"Wheatland County At Harlowton Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Harlowton","elevation_ft":4311,"latitude":46.448601,"longitude":-109.852997,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHWY","iata":"","local":"HWY","name":"Warrenton Fauquier Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Midland","elevation_ft":336,"latitude":38.5863,"longitude":-77.710602,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHXF","iata":"","local":"HXF","name":"Hartford Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hartford","elevation_ft":1069,"latitude":43.34930038,"longitude":-88.39109802,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3401,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2231,"width_ft":196,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KHYW","iata":"","local":"HYW","name":"Conway Horry County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Conway","elevation_ft":35,"latitude":33.82849884,"longitude":-79.12220001,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4401,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KHZD","iata":"","local":"HZD","name":"Carroll County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Huntingdon","elevation_ft":497,"latitude":36.08929825,"longitude":-88.46330261,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5507,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIAD","iata":"IAD","local":"IAD","name":"Washington Dulles International Airport","category":"large_airport","iso_country":"US","iso_region":"US-VA","municipality":"Dulles","elevation_ft":312,"latitude":38.9445,"longitude":-77.455803,"has_tower":true,"has_beacon":true,"runways":[{"id":"01C/19C","length_ft":11500,"width_ft":150,"surface":"C"},{"id":"01L/19R","length_ft":9400,"width_ft":150,"surface":"C"},{"id":"01R/19L","length_ft":11500,"width_ft":150,"surface":"C"},{"id":"12/30","length_ft":10501,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.1},{"id":"LCL/P","frequency_mhz":120.25},{"id":"LCL/P","frequency_mhz":134.425},{"id":"D-ATIS","frequency_mhz":134.85}],"has_metar":true,"public":true},{"icao":"KIDL","iata":"","local":"IDL","name":"Indianola Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Indianola","elevation_ft":126,"latitude":33.485699,"longitude":-90.678902,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":7004,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIIY","iata":"","local":"IIY","name":"Washington Wilkes County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Washington","elevation_ft":646,"latitude":33.77939987,"longitude":-82.81580353,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5020,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIDG","iata":"","local":"IDG","name":"Ida Grove Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Ida Grove","elevation_ft":1245,"latitude":42.33259963989258,"longitude":-95.44490051269533,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3172,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KIJX","iata":"","local":"IJX","name":"Jacksonville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Jacksonville","elevation_ft":624,"latitude":39.774601,"longitude":-90.238297,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4001,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIKV","iata":"","local":"IKV","name":"Ankeny Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Ankeny","elevation_ft":910,"latitude":41.69139862060547,"longitude":-93.56639862060548,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4200,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KILG","iata":"ILG","local":"ILG","name":"New Castle Airport","category":"medium_airport","iso_country":"US","iso_region":"US-DE","municipality":"Wilmington","elevation_ft":80,"latitude":39.67869949,"longitude":-75.60649872,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7012,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":7275,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4602,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.95},{"id":"LCL/P","frequency_mhz":126}],"has_metar":true,"public":true},{"icao":"KILM","iata":"ILM","local":"ILM","name":"Wilmington International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Wilmington","elevation_ft":32,"latitude":34.270599365234375,"longitude":-77.90260314941406,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":8016,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":7754,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":124.975}],"has_metar":true,"public":true},{"icao":"KILN","iata":"ILN","local":"ILN","name":"Wilmington Airpark","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wilmington","elevation_ft":1077,"latitude":39.427898407,"longitude":-83.792098999,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":10701,"width_ft":150,"surface":"C"},{"id":"04R/22L","length_ft":9000,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.475},{"id":"D-ATIS","frequency_mhz":124.925}],"has_metar":true,"public":true},{"icao":"KIML","iata":"IML","local":"IML","name":"Imperial Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Imperial","elevation_ft":3275,"latitude":40.50930023,"longitude":-101.6210022,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2756,"width_ft":280,"surface":"T"},{"id":"13/31","length_ft":5022,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINF","iata":"","local":"INF","name":"Inverness Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Inverness","elevation_ft":50,"latitude":28.803588,"longitude":-82.318311,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KINT","iata":"INT","local":"INT","name":"Smith Reynolds Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Winston Salem","elevation_ft":969,"latitude":36.13370132446289,"longitude":-80.22200012207031,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3938,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":6655,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.3},{"id":"LCL/P","frequency_mhz":123.75}],"has_metar":true,"public":true},{"icao":"KIOW","iata":"IOW","local":"IOW","name":"Iowa City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Iowa City","elevation_ft":668,"latitude":41.6391983032,"longitude":-91.5465011597,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5002,"width_ft":100,"surface":"C"},{"id":"12/30","length_ft":3900,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KISO","iata":"ISO","local":"ISO","name":"Kinston Regional Jetport At Stallings Field","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kinston","elevation_ft":93,"latitude":35.331401825,"longitude":-77.60880279540001,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":11498,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.6}],"has_metar":true,"public":true},{"icao":"KISB","iata":"","local":"ISB","name":"Sibley Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Sibley","elevation_ft":1538,"latitude":43.36949921,"longitude":-95.75980377,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KIXA","iata":"","local":"IXA","name":"Halifax-Northampton Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Halifax","elevation_ft":145,"latitude":36.3298,"longitude":-77.635231,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KIWH","iata":"","local":"IWH","name":"Wabash Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Wabash","elevation_ft":796,"latitude":40.762991,"longitude":-85.799747,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4401,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":1940,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KIWS","iata":"IWS","local":"IWS","name":"West Houston Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":111,"latitude":29.818199,"longitude":-95.6726,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3953,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KIYK","iata":"IYK","local":"IYK","name":"Inyokern Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Inyokern","elevation_ft":2457,"latitude":35.65879822,"longitude":-117.8300018,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6275,"width_ft":75,"surface":"A"},{"id":"10/28","length_ft":4150,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":7100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJDD","iata":"","local":"JDD","name":"Wood County Airport - Collins Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineola","elevation_ft":434,"latitude":32.742199,"longitude":-95.496498,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4002,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJES","iata":"","local":"JES","name":"Jesup Wayne County Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Jesup","elevation_ft":107,"latitude":31.55400085,"longitude":-81.88249969,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJFX","iata":"","local":"JFX","name":"Walker County Airport Bevill Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Jasper","elevation_ft":482,"latitude":33.902,"longitude":-87.314201,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJFZ","iata":"","local":"JFZ","name":"Tazewell County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cedar Bluff","elevation_ft":2653,"latitude":37.063702,"longitude":-81.798302,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4299,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJKL","iata":"","local":"JKL","name":"Julian Carroll Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Jackson","elevation_ft":1381,"latitude":37.59389877319336,"longitude":-83.31729888916016,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJGG","iata":"","local":"JGG","name":"Williamsburg Jamestown Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Williamsburg","elevation_ft":49,"latitude":37.239201,"longitude":-76.716103,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3204,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KJNX","iata":"","local":"JNX","name":"Johnston County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Smithfield","elevation_ft":164,"latitude":35.54090118,"longitude":-78.39029694,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KJQF","iata":"USA","local":"JQF","name":"Concord-Padgett Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":705,"latitude":35.387798,"longitude":-80.709099,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7402,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":133.675},{"id":"LCL/P","frequency_mhz":134.65}],"has_metar":true,"public":true},{"icao":"KJSD","iata":"","local":"JSD","name":"Sikorsky Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Stratford","elevation_ft":20,"latitude":41.249298095703125,"longitude":-73.0968017578125,"has_tower":true,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"},{"id":"H2","length_ft":600,"width_ft":600,"surface":"A"},{"id":"H3","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.6}],"has_metar":true,"public":true},{"icao":"KJST","iata":"JST","local":"JST","name":"John Murtha Johnstown Cambria County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Johnstown","elevation_ft":2284,"latitude":40.31610107421875,"longitude":-78.83390045166016,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4387,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":7004,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.325},{"id":"LCL/P","frequency_mhz":125.75}],"has_metar":true,"public":true},{"icao":"KJYO","iata":"","local":"JYO","name":"Leesburg Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Leesburg","elevation_ft":389,"latitude":39.077999,"longitude":-77.557503,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.5}],"has_metar":true,"public":true},{"icao":"KJYL","iata":"","local":"JYL","name":"Plantation Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sylvania","elevation_ft":188,"latitude":32.645302,"longitude":-81.597099,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5501,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":3787,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLBE","iata":"LBE","local":"LBE","name":"Arnold Palmer Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Latrobe","elevation_ft":1199,"latitude":40.275902,"longitude":-79.4048,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":8222,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.375},{"id":"LCL/P","frequency_mhz":125}],"has_metar":true,"public":true},{"icao":"KLBT","iata":"LBT","local":"LBT","name":"Lumberton Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lumberton","elevation_ft":126,"latitude":34.610773,"longitude":-79.05943,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5502,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5003,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLBR","iata":"","local":"LBR","name":"Clarksville Red River City-J D Trissell Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Clarksville","elevation_ft":440,"latitude":33.59320068,"longitude":-95.06359863,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLCK","iata":"LCK","local":"LCK","name":"Rickenbacker International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":744,"latitude":39.813801,"longitude":-82.927803,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":11902,"width_ft":150,"surface":"A"},{"id":"05R/23L","length_ft":12103,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.05},{"id":"ATIS","frequency_mhz":132.75}],"has_metar":true,"public":true},{"icao":"KLCQ","iata":"LCQ","local":"LCQ","name":"Lake City Gateway Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":201,"latitude":30.181999,"longitude":-82.576897,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"10/28","length_ft":8003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.2}],"has_metar":true,"public":true},{"icao":"KLDR","iata":"","local":"LDR","name":"USCG San Diego Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":9,"latitude":32.726538,"longitude":-117.181206,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":68,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT07","iata":"","local":"","name":"Langhus Airstrip","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Melville","elevation_ft":5785,"latitude":46.041598,"longitude":-110.158997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLEX","iata":"LEX","local":"LEX","name":"Blue Grass Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":979,"latitude":38.036499,"longitude":-84.605904,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7004,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.1},{"id":"ATIS","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"KLFI","iata":"LFI","local":"LFI","name":"Langley Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hampton","elevation_ft":11,"latitude":37.082901,"longitude":-76.360497,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":10002,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125}],"has_metar":true,"public":true},{"icao":"KLEM","iata":"LEM","local":"LEM","name":"Lemmon Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Lemmon","elevation_ft":2571,"latitude":45.9187011719,"longitude":-102.106002808,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3277,"width_ft":120,"surface":"T"},{"id":"12/30","length_ft":4499,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLHB","iata":"","local":"LHB","name":"Hearne Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hearne","elevation_ft":285,"latitude":30.87179946899414,"longitude":-96.62220001220705,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLHZ","iata":"LFN","local":"LHZ","name":"Triangle North Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Louisburg","elevation_ft":369,"latitude":36.0233,"longitude":-78.330299,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT68","iata":"","local":"","name":"Wood Strip","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":3850,"latitude":46.6208,"longitude":-111.938003,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1007,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLKR","iata":"","local":"LKR","name":"Lancaster County-Mc Whirter Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Lancaster","elevation_ft":486,"latitude":34.72290039,"longitude":-80.854599,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6004,"width_ft":101,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLKU","iata":"LOW","local":"LKU","name":"Louisa County Airport / Freeman Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Louisa","elevation_ft":493,"latitude":38.0098,"longitude":-77.9701,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLLR","iata":"","local":"LLR","name":"Little River Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Little River","elevation_ft":572,"latitude":39.262001037597656,"longitude":-123.75399780273438,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":5249,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLLU","iata":"","local":"LLU","name":"Lamar Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lamar","elevation_ft":1009,"latitude":37.487246,"longitude":-94.313298,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2900,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLIU","iata":"","local":"LIU","name":"Littlefield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Littlefield","elevation_ft":3616,"latitude":33.923901,"longitude":-102.387001,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4021,"width_ft":60,"surface":"A"},{"id":"13/31","length_ft":2513,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLMS","iata":"LMS","local":"LMS","name":"Louisville Winston County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Louisville","elevation_ft":575,"latitude":33.1461982727,"longitude":-89.0625,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4669,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLNP","iata":"LNP","local":"LNP","name":"Lonesome Pine Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Wise","elevation_ft":2684,"latitude":36.9874992371,"longitude":-82.5299987793,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5280,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLNS","iata":"LNS","local":"LNS","name":"Lancaster Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":403,"latitude":40.121700286865234,"longitude":-76.29609680175781,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":6933,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4102,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.9},{"id":"ATIS","frequency_mhz":125.675}],"has_metar":true,"public":true},{"icao":"KLOZ","iata":"LOZ","local":"LOZ","name":"London-Corbin Airport/Magee Field","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"London","elevation_ft":1212,"latitude":37.0821990967,"longitude":-84.08489990230001,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5751,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLQR","iata":"","local":"LQR","name":"Larned Pawnee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Larned","elevation_ft":2012,"latitude":38.20859909,"longitude":-99.08599854,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2860,"width_ft":170,"surface":"T"},{"id":"12/30","length_ft":2830,"width_ft":180,"surface":"T"},{"id":"17/35","length_ft":4201,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLSB","iata":"LSB","local":"LSB","name":"Lordsburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Lordsburg","elevation_ft":4289,"latitude":32.3334999084,"longitude":-108.692001343,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3213,"width_ft":60,"surface":"D"},{"id":"12/30","length_ft":5011,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLSK","iata":"LSK","local":"LSK","name":"Lusk Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Lusk","elevation_ft":4964,"latitude":42.7537994385,"longitude":-104.404998779,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5058,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLUK","iata":"LUK","local":"LUK","name":"Cincinnati Municipal Airport Lunken Field","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":483,"latitude":39.10329819,"longitude":-84.41860199,"has_tower":true,"has_beacon":true,"runways":[{"id":"03L/21R","length_ft":3801,"width_ft":100,"surface":"A"},{"id":"03R/21L","length_ft":6101,"width_ft":150,"surface":"A"},{"id":"07/25","length_ft":5127,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":123.6}],"has_metar":true,"public":true},{"icao":"KLUX","iata":"","local":"LUX","name":"Laurens County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Laurens","elevation_ft":697,"latitude":34.50709915161133,"longitude":-81.94719696044922,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4051,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLTY","iata":"","local":"LTY","name":"Liberty County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Chester","elevation_ft":3160,"latitude":48.510702,"longitude":-110.990997,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4607,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":1710,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLVL","iata":"LVL","local":"LVL","name":"Brunswick Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lawrenceville","elevation_ft":329,"latitude":36.774229,"longitude":-77.793846,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3020,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLWB","iata":"LWB","local":"LWB","name":"Greenbrier Valley Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Lewisburg","elevation_ft":2302,"latitude":37.8582992554,"longitude":-80.3994979858,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":121.4}],"has_metar":true,"public":true},{"icao":"KLWL","iata":"LWL","local":"LWL","name":"Wells Municipal Airport/Harriet Field","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Wells","elevation_ft":5772,"latitude":41.117099762,"longitude":-114.92199707,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2681,"width_ft":140,"surface":"D"},{"id":"09/27","length_ft":5508,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLXY","iata":"","local":"LXY","name":"Mexia Limestone County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mexia","elevation_ft":544,"latitude":31.639799118041992,"longitude":-96.51470184326172,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KLYH","iata":"LYH","local":"LYH","name":"Lynchburg Regional Airport - Preston Glenn Field","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lynchburg","elevation_ft":938,"latitude":37.326698,"longitude":-79.200401,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7100,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":3386,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.8},{"id":"LCL/P","frequency_mhz":127.65}],"has_metar":true,"public":true},{"icao":"KLYO","iata":"LYO","local":"LYO","name":"Lyons-Rice County Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Lyons","elevation_ft":1691,"latitude":38.34280014,"longitude":-98.22689819,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4400,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMAI","iata":"","local":"MAI","name":"Marianna Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Marianna","elevation_ft":110,"latitude":30.837799072265625,"longitude":-85.18190002441406,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4763,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":6001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMAO","iata":"","local":"MAO","name":"Marion County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Mullins","elevation_ft":92,"latitude":34.181198,"longitude":-79.334702,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4504,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMBG","iata":"MBG","local":"MBG","name":"Mobridge Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SD","municipality":"Mobridge","elevation_ft":1716,"latitude":45.54650116,"longitude":-100.4079971,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4410,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":2399,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMAL","iata":"","local":"MAL","name":"Malone Dufort Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Malone","elevation_ft":790,"latitude":44.85369873046875,"longitude":-74.32890319824219,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3994,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3250,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMAC","iata":"MAC","local":"MAC","name":"Macon Downtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Macon","elevation_ft":437,"latitude":32.82210159,"longitude":-83.56199646,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4694,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMBO","iata":"DXE","local":"MBO","name":"Bruce Campbell Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Madison","elevation_ft":326,"latitude":32.438702,"longitude":-90.103104,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4444,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMBY","iata":"MBY","local":"MBY","name":"Omar N Bradley Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Moberly","elevation_ft":867,"latitude":39.464393,"longitude":-92.428365,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3350,"width_ft":60,"surface":"C"},{"id":"13/31","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCB","iata":"MCB","local":"MCB","name":"McComb-Pike County Airport / John E Lewis Field","category":"medium_airport","iso_country":"US","iso_region":"US-MS","municipality":"McComb","elevation_ft":413,"latitude":31.178499,"longitude":-90.471901,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMCZ","iata":"","local":"MCZ","name":"Martin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Williamston","elevation_ft":76,"latitude":35.86220169067383,"longitude":-77.1781997680664,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMDA","iata":"MDA","local":"MDA","name":"Martindale Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":674,"latitude":29.4312992096,"longitude":-98.3777999878,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMDF","iata":"","local":"MDF","name":"Mooreland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mooreland","elevation_ft":1970,"latitude":36.48479843139648,"longitude":-99.19419860839844,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMDS","iata":"XMD","local":"MDS","name":"Madison Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Madison","elevation_ft":1718,"latitude":44.01599884,"longitude":-97.08589935,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2380,"width_ft":200,"surface":"T"},{"id":"15/33","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMDT","iata":"MDT","local":"MDT","name":"Harrisburg International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":310,"latitude":40.193501,"longitude":-76.763397,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":10001,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.8},{"id":"LCL/P","frequency_mhz":124.8}],"has_metar":true,"public":true},{"icao":"KMEY","iata":"","local":"MEY","name":"James G. Whiting Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Mapleton","elevation_ft":1116,"latitude":42.17829895019531,"longitude":-95.7936019897461,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":2801,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMEB","iata":"MXE","local":"MEB","name":"Laurinburg Maxton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Maxton","elevation_ft":216,"latitude":34.791901,"longitude":-79.365799,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6503,"width_ft":100,"surface":"A"},{"id":"13/31","length_ft":3536,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMEJ","iata":"","local":"MEJ","name":"Meade Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Meade","elevation_ft":2529,"latitude":37.27690124511719,"longitude":-100.3560028076172,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2085,"width_ft":85,"surface":"T"},{"id":"17/35","length_ft":4800,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMFV","iata":"MFV","local":"MFV","name":"Accomack County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Melfa","elevation_ft":47,"latitude":37.646900177,"longitude":-75.761100769,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGR","iata":"MGR","local":"MGR","name":"Moultrie Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Moultrie","elevation_ft":294,"latitude":31.0848999023,"longitude":-83.8032989502,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":3878,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMGW","iata":"MGW","local":"MGW","name":"Morgantown Municipal Airport Walter L. (Bill) Hart Field","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Morgantown","elevation_ft":1248,"latitude":39.643305,"longitude":-79.917598,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5199,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.1}],"has_metar":true,"public":true},{"icao":"KMHL","iata":"MHL","local":"MHL","name":"Marshall Memorial Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Marshall","elevation_ft":779,"latitude":39.0957984924,"longitude":-93.2029037476,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3303,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":5005,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMIV","iata":"MIV","local":"MIV","name":"Millville Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Millville","elevation_ft":85,"latitude":39.367802,"longitude":-75.072197,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":6003,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":5058,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMIW","iata":"","local":"MIW","name":"Marshalltown Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Marshalltown","elevation_ft":974,"latitude":42.112701,"longitude":-92.917801,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5007,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":2759,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMIO","iata":"","local":"MIO","name":"Miami Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Miami","elevation_ft":808,"latitude":36.909199,"longitude":-94.887497,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5020,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMKJ","iata":"","local":"MKJ","name":"Mountain Empire Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rural Retreat","elevation_ft":2558,"latitude":36.894901,"longitude":-81.349899,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5252,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMKA","iata":"","local":"MKA","name":"Miller Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Miller","elevation_ft":1569,"latitude":44.52519989013672,"longitude":-98.95809936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3601,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMKN","iata":"","local":"MKN","name":"Comanche County City Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Comanche","elevation_ft":1385,"latitude":31.91679955,"longitude":-98.60030365,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4497,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMLE","iata":"MIQ","local":"MLE","name":"Millard Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1051,"latitude":41.195877,"longitude":-96.112107,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3801,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLJ","iata":"","local":"MLJ","name":"Baldwin County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Milledgeville","elevation_ft":385,"latitude":33.154202,"longitude":-83.240701,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5509,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMLD","iata":"","local":"MLD","name":"Malad City Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Malad City","elevation_ft":4503,"latitude":42.16659927368164,"longitude":-112.2969970703125,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3918,"width_ft":75,"surface":"T"},{"id":"16/34","length_ft":4946,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMKV","iata":"","local":"MKV","name":"Marksville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Marksville","elevation_ft":79,"latitude":31.09469985961914,"longitude":-92.06909942626952,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3799,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMMS","iata":"MMS","local":"MMS","name":"Selfs Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Marks","elevation_ft":162,"latitude":34.231499,"longitude":-90.289597,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3346,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMMT","iata":"MMT","local":"MMT","name":"Mc Entire Joint National Guard Base","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Eastover","elevation_ft":254,"latitude":33.92079926,"longitude":-80.80130005,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2030,"width_ft":90,"surface":"A"},{"id":"14/32","length_ft":9010,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4500,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":132.4}],"has_metar":true,"public":true},{"icao":"KMNF","iata":"","local":"MNF","name":"Mountain View Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mountain View","elevation_ft":1181,"latitude":36.992801666259766,"longitude":-91.7145004272461,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMNI","iata":"","local":"MNI","name":"Santee Cooper Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Manning","elevation_ft":103,"latitude":33.587101,"longitude":-80.208702,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3602,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMPE","iata":"","local":"MPE","name":"Philadelphia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Philadelphia","elevation_ft":458,"latitude":32.7994,"longitude":-89.125999,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMPR","iata":"","local":"MPR","name":"Mc Pherson Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Mc Pherson","elevation_ft":1498,"latitude":38.35240173,"longitude":-97.69129944,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2502,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":5503,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMQI","iata":"MEO","local":"MQI","name":"Dare County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Manteo","elevation_ft":13,"latitude":35.91899872,"longitude":-75.69550323,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4306,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3303,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMQJ","iata":"","local":"MQJ","name":"Indianapolis Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":862,"latitude":39.843498,"longitude":-85.8971,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6005,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":3902,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMPG","iata":"","local":"MPG","name":"Marshall County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Moundsville","elevation_ft":1214,"latitude":39.88079833984375,"longitude":-80.73580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3301,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMPJ","iata":"MPJ","local":"MPJ","name":"Petit Jean Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Morrilton","elevation_ft":923,"latitude":35.138901,"longitude":-92.909202,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5852,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMRB","iata":"MRB","local":"MRB","name":"Eastern WV Regional Airport/Shepherd Field","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Martinsburg","elevation_ft":565,"latitude":39.40190125,"longitude":-77.98459625,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":8815,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.3}],"has_metar":true,"public":true},{"icao":"KMRC","iata":"MRC","local":"MRC","name":"Maury County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Columbia/Mount Pleasant","elevation_ft":681,"latitude":35.5541000366,"longitude":-87.17890167239999,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6000,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":1941,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMRH","iata":"","local":"MRH","name":"Michael J. Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Beaufort","elevation_ft":11,"latitude":34.73360062,"longitude":-76.66059875,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4192,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":5004,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMTN","iata":"MTN","local":"MTN","name":"Martin State Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":21,"latitude":39.325699,"longitude":-76.413803,"has_tower":true,"has_beacon":true,"runways":[{"id":"15/33","length_ft":6997,"width_ft":180,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.3},{"id":"ATIS","frequency_mhz":124.925}],"has_metar":true,"public":true},{"icao":"KMTO","iata":"MTO","local":"MTO","name":"Coles County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mattoon","elevation_ft":722,"latitude":39.477901,"longitude":-88.279198,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5799,"width_ft":100,"surface":"A"},{"id":"11/29","length_ft":6501,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":1098,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMTP","iata":"MTP","local":"MTP","name":"Montauk Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Montauk","elevation_ft":6,"latitude":41.0765,"longitude":-71.920797,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3246,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMTV","iata":"","local":"MTV","name":"Blue Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Martinsville","elevation_ft":941,"latitude":36.630699,"longitude":-80.018303,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMUI","iata":"MUI","local":"MUI","name":"Muir Army Air Field (Fort Indiantown Gap) Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Fort Indiantown Gap(Annville)","elevation_ft":488,"latitude":40.435214,"longitude":-76.568661,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3981,"width_ft":98,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H3","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KMUL","iata":"","local":"MUL","name":"Spence Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Moultrie","elevation_ft":292,"latitude":31.141569,"longitude":-83.703718,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMVI","iata":"","local":"MVI","name":"Monte Vista Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Monte Vista","elevation_ft":7611,"latitude":37.52730178833008,"longitude":-106.0479965209961,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5902,"width_ft":60,"surface":"A"},{"id":"10/28","length_ft":2100,"width_ft":50,"surface":"D"},{"id":"16/34","length_ft":2300,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMVC","iata":"MVC","local":"MVC","name":"Monroe County Aeroplex Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Monroeville","elevation_ft":419,"latitude":31.458,"longitude":-87.350996,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6028,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMVM","iata":"","local":"MVM","name":"Machias Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Machias","elevation_ft":96,"latitude":44.70309829711914,"longitude":-67.47859954833984,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":2880,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMXA","iata":"MXA","local":"MXA","name":"Manila Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Manila","elevation_ft":242,"latitude":35.894402,"longitude":-90.154602,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMYF","iata":"MYF","local":"MYF","name":"Montgomery-Gibbs Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":427,"latitude":32.8157,"longitude":-117.139999,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3400,"width_ft":75,"surface":"A"},{"id":"10L/28R","length_ft":4598,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":3401,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":48,"width_ft":48,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.2},{"id":"LCL/P","frequency_mhz":125.7},{"id":"ATIS","frequency_mhz":126.9}],"has_metar":true,"public":true},{"icao":"KMYJ","iata":"","local":"MYJ","name":"Mexico Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mexico","elevation_ft":823,"latitude":39.157501220703125,"longitude":-91.81829833984376,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5501,"width_ft":100,"surface":"C"},{"id":"18/36","length_ft":3200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMYR","iata":"MYR","local":"MYR","name":"Myrtle Beach International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Myrtle Beach","elevation_ft":25,"latitude":33.6796989441,"longitude":-78.9282989502,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":9503,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":123.925},{"id":"LCL/P","frequency_mhz":128.45}],"has_metar":true,"public":true},{"icao":"KMYZ","iata":"","local":"MYZ","name":"Marysville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Marysville","elevation_ft":1283,"latitude":39.85530090332031,"longitude":-96.63059997558594,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4200,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KMXO","iata":"","local":"MXO","name":"Monticello Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Monticello","elevation_ft":832,"latitude":42.22040176,"longitude":-91.16329956,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2300,"width_ft":90,"surface":"T"},{"id":"15/33","length_ft":4400,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNCA","iata":"","local":"NCA","name":"MCAS New River / McCutcheon Field","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Jacksonville","elevation_ft":26,"latitude":34.708401,"longitude":-77.439697,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4789,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":5126,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":134.95}],"has_metar":true,"public":true},{"icao":"KNDY","iata":"DGN","local":"","name":"Dahlgren Naval Surface Warfare Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Dahlgren","elevation_ft":18,"latitude":38.3325,"longitude":-77.037201,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4191,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNBJ","iata":"NHX","local":"NBJ","name":"Naval Outlying Field Barin","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Foley","elevation_ft":54,"latitude":30.389099121100003,"longitude":-87.63529968259999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMZZ","iata":"MZZ","local":"MZZ","name":"Marion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Marion","elevation_ft":859,"latitude":40.4898986816,"longitude":-85.6797027588,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6011,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":3456,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNEN","iata":"NEN","local":"NEN","name":"Whitehouse Naval Outlying Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":99,"latitude":30.353900909424,"longitude":-81.87190246582,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":8001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNFE","iata":"","local":"NFE","name":"Fentress Naval Auxiliary Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fentress","elevation_ft":16,"latitude":36.691641,"longitude":-76.134996,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8004,"width_ft":175,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNGS","iata":"","local":"NGS","name":"Santa Rosa Naval Outlying Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Milton","elevation_ft":150,"latitude":30.6108,"longitude":-86.940002,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4500,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":4500,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4500,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNFD","iata":"","local":"NFD","name":"Summerdale Naval Outlying Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Summerdale","elevation_ft":149,"latitude":30.5077,"longitude":-87.6455,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3998,"width_ft":150,"surface":"A"},{"id":"11/29","length_ft":4000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNFJ","iata":"","local":"NFJ","name":"Choctaw Nolf Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Milton","elevation_ft":102,"latitude":30.50690078735352,"longitude":-86.95970153808594,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":8000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.4}],"has_metar":false,"public":true},{"icao":"KNGU","iata":"NGU","local":"NGU","name":"Norfolk Naval Station (Chambers Field)","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Norfolk","elevation_ft":17,"latitude":36.937599,"longitude":-76.289299,"has_tower":true,"has_beacon":true,"runways":[{"id":"10/28","length_ft":8370,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.425},{"id":"LCL/P","frequency_mhz":124.3},{"id":"LCL/P","frequency_mhz":126.375}],"has_metar":true,"public":true},{"icao":"KNHK","iata":"NHK","local":"NHK","name":"Patuxent River Naval Air Station (Trapnell Field)","category":"medium_airport","iso_country":"US","iso_region":"US-MD","municipality":"Patuxent River","elevation_ft":39,"latitude":38.285999,"longitude":-76.411797,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5021,"width_ft":75,"surface":"A"},{"id":"06/24","length_ft":11799,"width_ft":200,"surface":"A"},{"id":"14/32","length_ft":9732,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":123.7}],"has_metar":true,"public":true},{"icao":"KNHU","iata":"","local":"NHU","name":"Norfolk Naval Station Airport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Norfolk","elevation_ft":9,"latitude":36.955636,"longitude":-76.30353,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1705,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":75,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":120,"width_ft":120,"surface":"C"},{"id":"H4","length_ft":120,"width_ft":120,"surface":"C"},{"id":"H5","length_ft":120,"width_ft":120,"surface":"C"},{"id":"H6","length_ft":120,"width_ft":120,"surface":"C"},{"id":"H7","length_ft":120,"width_ft":120,"surface":"C"},{"id":"H8","length_ft":120,"width_ft":120,"surface":"C"},{"id":"H9","length_ft":120,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNJM","iata":"","local":"NJM","name":"Bogue Field Mcalf Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Swansboro","elevation_ft":21,"latitude":34.69039917,"longitude":-77.02970123,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3848,"width_ft":96,"surface":"-"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.45}],"has_metar":true,"public":true},{"icao":"KNJW","iata":"","local":"NJW","name":"Joe Williams Naval Outlying Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Preston","elevation_ft":539,"latitude":32.798529,"longitude":-88.834333,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.475}],"has_metar":true,"public":true},{"icao":"KNGW","iata":"","local":"NGW","name":"Cabaniss Field Naval Outlying Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":30,"latitude":27.704426,"longitude":-97.440578,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4994,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4496,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.65}],"has_metar":false,"public":true},{"icao":"KNKT","iata":"","local":"NKT","name":"Cherry Point MCAS /Cunningham Field/","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cherry Point","elevation_ft":29,"latitude":34.90090179,"longitude":-76.88069916,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":8491,"width_ft":196,"surface":"A"},{"id":"05R/23L","length_ft":8188,"width_ft":200,"surface":"A"},{"id":"14L/32R","length_ft":8979,"width_ft":200,"surface":"A"},{"id":"14R/32L","length_ft":8398,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.3},{"id":"ATIS","frequency_mhz":127.475}],"has_metar":true,"public":true},{"icao":"KNPA","iata":"NPA","local":"NPA","name":"Naval Air Station Pensacola Forrest Sherman Field","category":"medium_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pensacola","elevation_ft":28,"latitude":30.352699,"longitude":-87.318604,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7136,"width_ft":200,"surface":"A"},{"id":"07L/25R","length_ft":8001,"width_ft":200,"surface":"A"},{"id":"07R/25L","length_ft":8000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":124.35}],"has_metar":true,"public":true},{"icao":"KNRN","iata":"","local":"NRN","name":"Norton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Norton","elevation_ft":2383,"latitude":39.850399017333984,"longitude":-99.89469909667967,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2117,"width_ft":125,"surface":"T"},{"id":"16/34","length_ft":4701,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNRS","iata":"NRS","local":"NRS","name":"Naval Outlying Field Imperial Beach (Ream Field)","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Imperial Beach","elevation_ft":24,"latitude":32.5667,"longitude":-117.116997,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2241,"width_ft":151,"surface":"C"},{"id":"09/27","length_ft":4998,"width_ft":336,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.65}],"has_metar":true,"public":true},{"icao":"KNSX","iata":"","local":"NSX","name":"Navy Outlying Field Site X Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":210,"latitude":30.815084,"longitude":-87.167991,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H10","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H11","length_ft":40,"width_ft":40,"surface":"G"},{"id":"H12","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H13","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H14","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H15","length_ft":1800,"width_ft":75,"surface":"A"},{"id":"H16","length_ft":50,"width_ft":50,"surface":"T"},{"id":"H17","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H18","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H19","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H20","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H21","length_ft":1800,"width_ft":75,"surface":"A"},{"id":"H22","length_ft":1800,"width_ft":75,"surface":"A"},{"id":"H23","length_ft":1800,"width_ft":75,"surface":"A"},{"id":"H24","length_ft":1800,"width_ft":75,"surface":"A"},{"id":"H25","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H26","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H27","length_ft":1800,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H4","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H5","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H6","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H7","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H8","length_ft":50,"width_ft":50,"surface":"G"},{"id":"H9","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNRA","iata":"","local":"NRA","name":"Coupeville Nolf Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Coupeville","elevation_ft":199,"latitude":48.18830108642578,"longitude":-122.63200378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5400,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNTU","iata":"NTU","local":"NTU","name":"Oceana Naval Air Station","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":23,"latitude":36.820702,"longitude":-76.033501,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":8000,"width_ft":150,"surface":"A"},{"id":"05R/23L","length_ft":12001,"width_ft":200,"surface":"A"},{"id":"14L/32R","length_ft":8001,"width_ft":150,"surface":"A"},{"id":"14R/32L","length_ft":8000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.075}],"has_metar":true,"public":true},{"icao":"KNUC","iata":"","local":"NUC","name":"San Clemente Island Naval Auxiliary Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Clemente Island","elevation_ft":184,"latitude":33.02270126,"longitude":-118.5879974,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":9301,"width_ft":200,"surface":"C"},{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.75}],"has_metar":true,"public":true},{"icao":"KNUI","iata":"","local":"NUI","name":"Naval Outlying Landing Field Webster","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"St Inigoes","elevation_ft":22,"latitude":38.144222,"longitude":-76.426892,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127}],"has_metar":true,"public":true},{"icao":"KNVI","iata":"","local":"NVI","name":"Pace Nolf Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Wallace","elevation_ft":180,"latitude":30.6996994019,"longitude":-87.195602417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":3000,"width_ft":3000,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KNYG","iata":"","local":"NYG","name":"Quantico Marine Corps Airfield / Turner Field","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Quantico","elevation_ft":10,"latitude":38.501701,"longitude":-77.305298,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4250,"width_ft":184,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.6}],"has_metar":true,"public":true},{"icao":"KNWL","iata":"","local":"NWL","name":"Waldron Field Naval Outlying Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":25,"latitude":27.635,"longitude":-97.312202,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":133.85}],"has_metar":false,"public":true},{"icao":"KNVD","iata":"","local":"NVD","name":"Nevada Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Nevada","elevation_ft":892,"latitude":37.85210037231445,"longitude":-94.30490112304688,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":2581,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNZX","iata":"","local":"NZX","name":"Harold Nolf Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Harold","elevation_ft":150,"latitude":30.6807003021,"longitude":-86.8871994019,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4599,"width_ft":1300,"surface":"T"},{"id":"18/36","length_ft":4626,"width_ft":1372,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOAJ","iata":"OAJ","local":"OAJ","name":"Albert J Ellis Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Richlands","elevation_ft":94,"latitude":34.829201,"longitude":-77.612099,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7100,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.475},{"id":"LCL/P","frequency_mhz":132.65}],"has_metar":true,"public":true},{"icao":"KOBE","iata":"OBE","local":"OBE","name":"Okeechobee County Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":34,"latitude":27.2628002167,"longitude":-80.8498001099,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOCF","iata":"OCF","local":"OCF","name":"Ocala International Airport - Jim Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":90,"latitude":29.17259979,"longitude":-82.22419739,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3009,"width_ft":50,"surface":"A"},{"id":"18/36","length_ft":7467,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.25},{"id":"ATIS","frequency_mhz":128.125}],"has_metar":true,"public":true},{"icao":"KOFF","iata":"","local":"","name":"Offutt Air Force Base","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1052,"latitude":41.118301,"longitude":-95.912498,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":11703,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":123.7},{"id":"ATIS","frequency_mhz":126.025}],"has_metar":true,"public":true},{"icao":"KOFP","iata":"","local":"OFP","name":"Hanover County Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hanover","elevation_ft":207,"latitude":37.709,"longitude":-77.436699,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5402,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOGB","iata":"OGB","local":"OGB","name":"Orangeburg Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Orangeburg","elevation_ft":195,"latitude":33.456798553467,"longitude":-80.859497070312,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4508,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":5399,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOIN","iata":"","local":"OIN","name":"Oberlin Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Oberlin","elevation_ft":2703,"latitude":39.83390045166016,"longitude":-100.53900146484376,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":2832,"width_ft":130,"surface":"T"},{"id":"17/35","length_ft":4301,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOKH","iata":"ODW","local":"OKH","name":"AJ Eisenberg Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Oak Harbor","elevation_ft":193,"latitude":48.251499176,"longitude":-122.674003601,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3265,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOKV","iata":"WGO","local":"OKV","name":"Winchester Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Winchester","elevation_ft":726,"latitude":39.14350128,"longitude":-78.14440155,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOKZ","iata":"","local":"OKZ","name":"Kaolin Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sandersville","elevation_ft":438,"latitude":32.96670150756836,"longitude":-82.83820343017578,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5501,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU22","iata":"","local":"","name":"Ky-3 Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1285,"latitude":37.183101,"longitude":-93.303201,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2126,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOLV","iata":"OLV","local":"OLV","name":"Olive Branch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Olive Branch","elevation_ft":402,"latitude":34.9786987305,"longitude":-89.78690338130001,"has_tower":true,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.925},{"id":"LCL/P","frequency_mhz":125.275}],"has_metar":true,"public":true},{"icao":"KOMH","iata":"","local":"OMH","name":"Orange County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Orange","elevation_ft":465,"latitude":38.24720001220703,"longitude":-78.04560089111328,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOMN","iata":"","local":"OMN","name":"Ormond Beach Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ormond Beach","elevation_ft":29,"latitude":29.300600051879883,"longitude":-81.11360168457031,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4005,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":3704,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":86,"width_ft":86,"surface":"C"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.475},{"id":"LCL/P","frequency_mhz":119.075}],"has_metar":true,"public":true},{"icao":"KONX","iata":"","local":"ONX","name":"Currituck County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Currituck","elevation_ft":18,"latitude":36.398899,"longitude":-76.016296,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5502,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOOA","iata":"","local":"OOA","name":"Oskaloosa Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar","elevation_ft":841,"latitude":41.2262,"longitude":-92.493896,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":1926,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":4012,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KONY","iata":"","local":"ONY","name":"Olney Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Olney","elevation_ft":1275,"latitude":33.35089874267578,"longitude":-98.81919860839844,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5100,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":5099,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5101,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOQU","iata":"NCO","local":"OQU","name":"Quonset State Airport","category":"medium_airport","iso_country":"US","iso_region":"US-RI","municipality":"North Kingstown","elevation_ft":18,"latitude":41.597099304199,"longitude":-71.412101745605,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4000,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":7504,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.6},{"id":"LCL/P","frequency_mhz":126.35}],"has_metar":true,"public":true},{"icao":"KORF","iata":"ORF","local":"ORF","name":"Norfolk International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Norfolk","elevation_ft":26,"latitude":36.8946,"longitude":-76.201202,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":9001,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":4876,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.8},{"id":"ATIS","frequency_mhz":127.15}],"has_metar":true,"public":true},{"icao":"KORK","iata":"","local":"ORK","name":"North Little Rock Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"North Little Rock","elevation_ft":545,"latitude":34.83309937,"longitude":-92.25409698,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5002,"width_ft":75,"surface":"C"},{"id":"17/35","length_ft":3019,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOQW","iata":"","local":"OQW","name":"Maquoketa Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Maquoketa","elevation_ft":769,"latitude":42.050703,"longitude":-90.739217,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3304,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KORL","iata":"ORL","local":"ORL","name":"Orlando Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":113,"latitude":28.5455,"longitude":-81.332901,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":6004,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":4625,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":127.25}],"has_metar":true,"public":true},{"icao":"KOSA","iata":"","local":"OSA","name":"Mount Pleasant Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mount Pleasant","elevation_ft":364,"latitude":33.09550095,"longitude":-94.96150208,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":6004,"width_ft":100,"surface":"A"},{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOSX","iata":"","local":"OSX","name":"Kosciusko Attala County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Kosciusko","elevation_ft":480,"latitude":33.090301513671875,"longitude":-89.54199981689453,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5009,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOVO","iata":"","local":"OVO","name":"North Vernon Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"North Vernon","elevation_ft":757,"latitude":39.04560089,"longitude":-85.6053009,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5002,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":2730,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOXB","iata":"OCE","local":"OXB","name":"Ocean City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Ocean City","elevation_ft":11,"latitude":38.310398101807,"longitude":-75.124000549316,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3204,"width_ft":75,"surface":"A"},{"id":"14/32","length_ft":4074,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KOXV","iata":"","local":"OXV","name":"Knoxville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Knoxville","elevation_ft":928,"latitude":41.29890060424805,"longitude":-93.11380004882812,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPBX","iata":"PVL","local":"PBX","name":"Pike County-Hatcher Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Pikeville","elevation_ft":1473,"latitude":37.5617981,"longitude":-82.56639862,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3455,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":5356,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHK","iata":"PHK","local":"PHK","name":"Palm Beach County Glades Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pahokee","elevation_ft":16,"latitude":26.78499985,"longitude":-80.69339752,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4116,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPCA","iata":"","local":"PCA","name":"Picacho Stagefield Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Picacho","elevation_ft":1675,"latitude":32.6627893853,"longitude":-111.487970352,"has_tower":true,"has_beacon":false,"runways":[{"id":"H1","length_ft":1501,"width_ft":75,"surface":"C"},{"id":"H2","length_ft":1501,"width_ft":75,"surface":"C"},{"id":"H3","length_ft":1501,"width_ft":75,"surface":"C"},{"id":"H4","length_ft":1501,"width_ft":75,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KPCM","iata":"","local":"PCM","name":"Plant City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Plant City","elevation_ft":153,"latitude":28.00020027,"longitude":-82.16419983,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3950,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPEA","iata":"","local":"PEA","name":"Pella Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Pella","elevation_ft":885,"latitude":41.40010070800781,"longitude":-92.9458999633789,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5403,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPGR","iata":"PGR","local":"PGR","name":"Kirk Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Paragould","elevation_ft":290,"latitude":36.06290054,"longitude":-90.50779724,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4500,"width_ft":75,"surface":"A"},{"id":"08/26","length_ft":2792,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPGV","iata":"PGV","local":"PGV","name":"Pitt Greenville Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Greenville","elevation_ft":26,"latitude":35.6352005,"longitude":-77.38529968,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":7175,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":4997,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHF","iata":"PHF","local":"PHF","name":"Newport News Williamsburg International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Newport News","elevation_ft":42,"latitude":37.131901,"longitude":-76.492996,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6526,"width_ft":150,"surface":"C"},{"id":"07/25","length_ft":8003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":128.65}],"has_metar":true,"public":true},{"icao":"KPHG","iata":"","local":"PHG","name":"Phillipsburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Phillipsburg","elevation_ft":1907,"latitude":39.735801696777344,"longitude":-99.31710052490234,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2745,"width_ft":140,"surface":"T"},{"id":"13/31","length_ft":4504,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHH","iata":"ADR","local":"PHH","name":"Robert F Swinnie Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Andrews","elevation_ft":26,"latitude":33.4516983032,"longitude":-79.5261993408,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3001,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPHL","iata":"PHL","local":"PHL","name":"Philadelphia International Airport","category":"large_airport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":36,"latitude":39.87189865112305,"longitude":-75.24109649658203,"has_tower":true,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5001,"width_ft":150,"surface":"A"},{"id":"09L/27R","length_ft":9500,"width_ft":150,"surface":"A"},{"id":"09R/27L","length_ft":12000,"width_ft":200,"surface":"A"},{"id":"17/35","length_ft":6500,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5},{"id":"D-ATIS","frequency_mhz":133.4},{"id":"LCL/P","frequency_mhz":135.1},{"id":"D-ATIS","frequency_mhz":135.925}],"has_metar":true,"public":true},{"icao":"KPLK","iata":"PLK","local":"PLK","name":"M. Graham Clark Downtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Branson / Hollister","elevation_ft":940,"latitude":36.62590027,"longitude":-93.22889709,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3738,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPHT","iata":"PHT","local":"PHT","name":"Henry County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Paris","elevation_ft":580,"latitude":36.3381996155,"longitude":-88.38289642330001,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPIT","iata":"PIT","local":"PIT","name":"Pittsburgh International Airport","category":"large_airport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1203,"latitude":40.49150085,"longitude":-80.23290253,"has_tower":true,"has_beacon":true,"runways":[{"id":"10C/28C","length_ft":10775,"width_ft":150,"surface":"A"},{"id":"10L/28R","length_ft":10502,"width_ft":150,"surface":"A"},{"id":"10R/28L","length_ft":11500,"width_ft":200,"surface":"C"},{"id":"14/32","length_ft":8101,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":127.25},{"id":"LCL/P","frequency_mhz":128.3},{"id":"D-ATIS","frequency_mhz":135.9}],"has_metar":true,"public":true},{"icao":"KPKB","iata":"PKB","local":"PKB","name":"Mid Ohio Valley Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-WV","municipality":"Parkersburg (Williamstown)","elevation_ft":858,"latitude":39.3451,"longitude":-81.439201,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7240,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":4002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":123.7},{"id":"ATIS","frequency_mhz":124.35}],"has_metar":true,"public":true},{"icao":"KPKF","iata":"PKF","local":"PKF","name":"Park Falls Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Park Falls","elevation_ft":1500,"latitude":45.955001831055,"longitude":-90.42440032959,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPJY","iata":"","local":"PJY","name":"Pinckneyville Du Quoin Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pinckneyville","elevation_ft":400,"latitude":37.97790145874024,"longitude":-89.3604965209961,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3999,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPMU","iata":"","local":"PMU","name":"Panola County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Batesville","elevation_ft":221,"latitude":34.36349869,"longitude":-89.89260101,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPMV","iata":"","local":"PMV","name":"Plattsmouth Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Plattsmouth","elevation_ft":1204,"latitude":40.95019913,"longitude":-95.91790009,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC35","iata":"","local":"","name":"Spencer Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":755,"latitude":35.402901,"longitude":-80.622002,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1511,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPMB","iata":"PMB","local":"PMB","name":"Pembina Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Pembina","elevation_ft":795,"latitude":48.9425010681,"longitude":-97.2407989502,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3798,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPNE","iata":"PNE","local":"PNE","name":"Northeast Philadelphia Airport","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":120,"latitude":40.081902,"longitude":-75.010597,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":7000,"width_ft":100,"surface":"A"},{"id":"15/33","length_ft":4999,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":121.15},{"id":"LCL/P","frequency_mhz":126.9}],"has_metar":true,"public":true},{"icao":"KPNT","iata":"","local":"PNT","name":"Pontiac Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pontiac","elevation_ft":666,"latitude":40.924255,"longitude":-88.62447,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPOB","iata":"POB","local":"POB","name":"Pope Field","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fort Bragg","elevation_ft":217,"latitude":35.170898,"longitude":-79.014503,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":7501,"width_ft":150,"surface":"C"},{"id":"051/231","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":132.3},{"id":"LCL/P","frequency_mhz":135.025}],"has_metar":true,"public":true},{"icao":"KPOH","iata":"","local":"POH","name":"Pocahontas Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Pocahontas","elevation_ft":1226,"latitude":42.74280167,"longitude":-94.64730072,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4100,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":1999,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPPQ","iata":"","local":"PPQ","name":"Pittsfield Penstone Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pittsfield","elevation_ft":710,"latitude":39.63890075683594,"longitude":-90.77839660644533,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPQN","iata":"","local":"PQN","name":"Pipestone Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Pipestone","elevation_ft":1736,"latitude":43.98329925537109,"longitude":-96.30030059814452,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2539,"width_ft":196,"surface":"T"},{"id":"18/36","length_ft":4306,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPRG","iata":"","local":"PRG","name":"Edgar County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Paris","elevation_ft":654,"latitude":39.70019912719727,"longitude":-87.66960144042969,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4501,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":3200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPSK","iata":"PSK","local":"PSK","name":"New River Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Dublin","elevation_ft":2105,"latitude":37.137298583984,"longitude":-80.678497314453,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6201,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPRZ","iata":"","local":"PRZ","name":"Portales Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Portales","elevation_ft":4078,"latitude":34.14550018310547,"longitude":-103.41000366210938,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5700,"width_ft":60,"surface":"A"},{"id":"08/26","length_ft":4560,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPSN","iata":"PSN","local":"PSN","name":"Palestine Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Palestine","elevation_ft":423,"latitude":31.779699325562,"longitude":-95.706298828125,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4002,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":5005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPTB","iata":"PTB","local":"PTB","name":"Dinwiddie County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Petersburg","elevation_ft":193,"latitude":37.183799743652,"longitude":-77.507400512695,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVE","iata":"","local":"PVE","name":"Beech River Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lexington-Parsons","elevation_ft":488,"latitude":35.65639877319336,"longitude":-88.19539642333984,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPVG","iata":"","local":"PVG","name":"Hampton Roads Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Chesapeake","elevation_ft":28,"latitude":36.780391,"longitude":-76.44881,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3525,"width_ft":70,"surface":"A"},{"id":"10/28","length_ft":5350,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPYG","iata":"","local":"PYG","name":"Pageland Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Pageland","elevation_ft":575,"latitude":34.74209976196289,"longitude":-80.34519958496094,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3396,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KPYN","iata":"","local":"PYN","name":"Piedmont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Piedmont","elevation_ft":467,"latitude":37.12670135498047,"longitude":-90.71289825439452,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3296,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPYP","iata":"","local":"PYP","name":"Centre-Piedmont-Cherokee County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Centre","elevation_ft":596,"latitude":34.089977,"longitude":-85.610069,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRBM","iata":"","local":"RBM","name":"Robinson Army Air Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"North Little Rock","elevation_ft":587,"latitude":34.847656,"longitude":-92.29949,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5702,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRCK","iata":"RCK","local":"RCK","name":"H H Coffield Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rockdale","elevation_ft":474,"latitude":30.6315994263,"longitude":-96.9897003174,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":2962,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRCP","iata":"","local":"RCP","name":"Rooks County Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Stockton","elevation_ft":1998,"latitude":39.346592,"longitude":-99.304649,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRBE","iata":"","local":"RBE","name":"Rock County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Bassett","elevation_ft":2349,"latitude":42.56969833374024,"longitude":-99.56839752197266,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":2202,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":4698,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRCR","iata":"RCR","local":"RCR","name":"Fulton County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Rochester","elevation_ft":790,"latitude":41.0656013489,"longitude":-86.18170166019999,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRCZ","iata":"","local":"RCZ","name":"Richmond County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Rockingham","elevation_ft":358,"latitude":34.8913,"longitude":-79.759598,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3009,"width_ft":490,"surface":"T"},{"id":"14/32","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRDG","iata":"RDG","local":"RDG","name":"Reading Regional Airport (Carl A Spaatz Field)","category":"medium_airport","iso_country":"US","iso_region":"US-PA","municipality":"Reading","elevation_ft":344,"latitude":40.378502,"longitude":-75.965202,"has_tower":true,"has_beacon":true,"runways":[{"id":"13/31","length_ft":6350,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":5151,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.9},{"id":"ATIS","frequency_mhz":127.1}],"has_metar":true,"public":true},{"icao":"KRDK","iata":"","local":"RDK","name":"Red Oak Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Red Oak","elevation_ft":1045,"latitude":41.01050186,"longitude":-95.25990295,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5100,"width_ft":75,"surface":"C"},{"id":"13/31","length_ft":2050,"width_ft":210,"surface":"T"},{"id":"17/35","length_ft":2901,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRDU","iata":"RDU","local":"RDU","name":"Raleigh Durham International Airport","category":"large_airport","iso_country":"US","iso_region":"US-NC","municipality":"Raleigh/Durham","elevation_ft":435,"latitude":35.877602,"longitude":-78.787498,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"05R/23L","length_ft":7500,"width_ft":150,"surface":"A"},{"id":"14/32","length_ft":3570,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.3},{"id":"D-ATIS","frequency_mhz":123.8},{"id":"LCL/P","frequency_mhz":127.45}],"has_metar":true,"public":true},{"icao":"KRED","iata":"","local":"RED","name":"Red Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Red Lodge","elevation_ft":5763,"latitude":45.184579,"longitude":-109.257746,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRIC","iata":"RIC","local":"RIC","name":"Richmond International Airport","category":"large_airport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":167,"latitude":37.50519943237305,"longitude":-77.3197021484375,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6607,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":9003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.15},{"id":"LCL/P","frequency_mhz":121.1}],"has_metar":true,"public":true},{"icao":"KREI","iata":"","local":"REI","name":"Redlands Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Redlands","elevation_ft":1571,"latitude":34.08530044555664,"longitude":-117.14600372314452,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4504,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRFG","iata":"RFG","local":"RFG","name":"Rooke Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Refugio","elevation_ft":56,"latitude":28.2936,"longitude":-97.322998,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4361,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRIF","iata":"","local":"RIF","name":"Richfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Richfield","elevation_ft":5301,"latitude":38.734068,"longitude":-112.101603,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":7100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRIU","iata":"","local":"RIU","name":"Rancho Murieta Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Rancho Murieta","elevation_ft":141,"latitude":38.48680114746094,"longitude":-121.10299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3798,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRIR","iata":"","local":"RIR","name":"Flabob Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Riverside","elevation_ft":764,"latitude":33.9897,"longitude":-117.411003,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3190,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRMN","iata":"","local":"RMN","name":"Stafford Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fredericksburg","elevation_ft":211,"latitude":38.398102,"longitude":-77.455498,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRNV","iata":"","local":"RNV","name":"Cleveland Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Cleveland","elevation_ft":139,"latitude":33.76110077,"longitude":-90.75789642,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KROA","iata":"ROA","local":"ROA","name":"Roanoke–Blacksburg Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Roanoke","elevation_ft":1175,"latitude":37.3255,"longitude":-79.975403,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6800,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":5810,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.3},{"id":"ATIS","frequency_mhz":132.375}],"has_metar":true,"public":true},{"icao":"KRPB","iata":"","local":"RPB","name":"Belleville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Belleville","elevation_ft":1537,"latitude":39.817901611328125,"longitude":-97.65959930419922,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":1415,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":3500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRSN","iata":"RSN","local":"RSN","name":"Ruston Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Ruston","elevation_ft":311,"latitude":32.514187,"longitude":-92.588517,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":6002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRRQ","iata":"","local":"RRQ","name":"Rock Rapids Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Rock Rapids","elevation_ft":1363,"latitude":43.45220184326172,"longitude":-96.17980194091795,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3097,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRSV","iata":"","local":"RSV","name":"Robinson Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Robinson","elevation_ft":462,"latitude":39.01599884033203,"longitude":-87.6498031616211,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5108,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3398,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KUBX","iata":"","local":"UBX","name":"Cuba Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Cuba","elevation_ft":1023,"latitude":38.06880187988281,"longitude":-91.42890167236328,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3420,"width_ft":61,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRVN","iata":"","local":"RVN","name":"Hawkins County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Surgoinsville","elevation_ft":1255,"latitude":36.4576,"longitude":-82.885002,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3504,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRWI","iata":"RWI","local":"RWI","name":"Rocky Mount Wilson Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NC","municipality":"Rocky Mount","elevation_ft":159,"latitude":35.856300354003906,"longitude":-77.89189910888672,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7099,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRWN","iata":"","local":"RWN","name":"Arens Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Winamac","elevation_ft":711,"latitude":41.092209,"longitude":-86.613357,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4201,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRWV","iata":"","local":"RWV","name":"Caldwell Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Caldwell","elevation_ft":391,"latitude":30.515499,"longitude":-96.704102,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":3252,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRYN","iata":"","local":"RYN","name":"Ryan Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2417,"latitude":32.1422004699707,"longitude":-111.1750030517578,"has_tower":true,"has_beacon":true,"runways":[{"id":"06L/24R","length_ft":4900,"width_ft":75,"surface":"A"},{"id":"06R/24L","length_ft":5500,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":4010,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.8},{"id":"ATIS","frequency_mhz":133.35}],"has_metar":false,"public":true},{"icao":"KRZL","iata":"RNZ","local":"RZL","name":"Jasper County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Rensselaer","elevation_ft":698,"latitude":40.9478988647,"longitude":-87.1826019287,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":1450,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":4000,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KRZT","iata":"","local":"RZT","name":"Ross County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Chillicothe","elevation_ft":725,"latitude":39.44039916992188,"longitude":-83.02310180664062,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5405,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSBY","iata":"SBY","local":"SBY","name":"Salisbury Ocean City Wicomico Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MD","municipality":"Salisbury","elevation_ft":52,"latitude":38.34049987792969,"longitude":-75.51029968261719,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":6400,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.425}],"has_metar":true,"public":true},{"icao":"KSCH","iata":"SCH","local":"SCH","name":"Schenectady County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NY","municipality":"Schenectady","elevation_ft":378,"latitude":42.852500915527,"longitude":-73.928901672363,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7001,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":4850,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.3}],"has_metar":true,"public":true},{"icao":"KSCB","iata":"SCB","local":"SCB","name":"Scribner State Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Scribner","elevation_ft":1325,"latitude":41.610298156738,"longitude":-96.629898071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3199,"width_ft":60,"surface":"C"},{"id":"17/35","length_ft":4200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSBU","iata":"","local":"SBU","name":"Blue Earth Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Blue Earth","elevation_ft":1107,"latitude":43.59529876708984,"longitude":-94.0927963256836,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":2245,"width_ft":200,"surface":"T"},{"id":"16/34","length_ft":3400,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSDL","iata":"SCF","local":"SDL","name":"Scottsdale Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1510,"latitude":33.622898101807,"longitude":-111.91100311279,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":8249,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.6},{"id":"LCL/P","frequency_mhz":119.9}],"has_metar":true,"public":true},{"icao":"KSEE","iata":"SEE","local":"SEE","name":"Gillespie Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego/El Cajon","elevation_ft":388,"latitude":32.826198577881,"longitude":-116.97200012207,"has_tower":true,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":5342,"width_ft":100,"surface":"A"},{"id":"09R/27L","length_ft":2738,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":4145,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":125.45}],"has_metar":true,"public":true},{"icao":"KSEF","iata":"SEF","local":"SEF","name":"Sebring Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Sebring","elevation_ft":62,"latitude":27.45639992,"longitude":-81.3423996,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5234,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":4990,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSFY","iata":"","local":"SFY","name":"Tri Township Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Savanna","elevation_ft":616,"latitude":42.04579925537109,"longitude":-90.10790252685548,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSFQ","iata":"","local":"SFQ","name":"Suffolk Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Suffolk","elevation_ft":72,"latitude":36.68239974975586,"longitude":-76.60189819335938,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5007,"width_ft":100,"surface":"A"},{"id":"07/25","length_ft":3750,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSER","iata":"SER","local":"SER","name":"Freeman Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Seymour","elevation_ft":583,"latitude":38.923599243164,"longitude":-85.907402038574,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6001,"width_ft":100,"surface":"A"},{"id":"09U/27U","length_ft":1104,"width_ft":100,"surface":"T"},{"id":"14/32","length_ft":5502,"width_ft":100,"surface":"A"},{"id":"18U/36U","length_ft":1215,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSGH","iata":"SGH","local":"SGH","name":"Springfield-Beckley Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Springfield","elevation_ft":1051,"latitude":39.840301513672,"longitude":-83.840202331543,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":9010,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":5498,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSGT","iata":"SGT","local":"SGT","name":"Stuttgart Municipal Airport / Carl Humphrey Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Stuttgart","elevation_ft":224,"latitude":34.599499,"longitude":-91.574997,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5002,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":6015,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSHD","iata":"SHD","local":"SHD","name":"Shenandoah Valley Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-VA","municipality":"Weyers Cave","elevation_ft":1201,"latitude":38.263802,"longitude":-78.8964,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6002,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSIF","iata":"","local":"SIF","name":"Rockingham County NC Shiloh Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Stoneville","elevation_ft":694,"latitude":36.437199,"longitude":-79.850998,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSJN","iata":"SJN","local":"SJN","name":"St Johns Industrial Air Park","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"St Johns","elevation_ft":5737,"latitude":34.51860046,"longitude":-109.3789978,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3400,"width_ft":60,"surface":"A"},{"id":"14/32","length_ft":5322,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSIV","iata":"SIV","local":"SIV","name":"Sullivan County Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Sullivan","elevation_ft":540,"latitude":39.1147,"longitude":-87.448303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4359,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSKI","iata":"","local":"SKI","name":"Sac City Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Sac City","elevation_ft":1250,"latitude":42.37910079956055,"longitude":-94.97969818115234,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":2350,"width_ft":60,"surface":"C"},{"id":"18/36","length_ft":4100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSLJ","iata":"","local":"SLJ","name":"Hagler Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Hattiesburg","elevation_ft":280,"latitude":31.1738,"longitude":-89.1912,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5000,"width_ft":60,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.2}],"has_metar":true,"public":true},{"icao":"KSLR","iata":"SLR","local":"SLR","name":"Sulphur Springs Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sulphur Springs","elevation_ft":489,"latitude":33.159801483154,"longitude":-95.621101379395,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSME","iata":"SME","local":"SME","name":"Lake Cumberland Regional Airport","category":"medium_airport","iso_country":"US","iso_region":"US-KY","municipality":"Somerset","elevation_ft":927,"latitude":37.0533981323,"longitude":-84.6158981323,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5801,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSMS","iata":"SUM","local":"SMS","name":"Sumter Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Sumter","elevation_ft":182,"latitude":33.994998931885,"longitude":-80.361297607422,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5501,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3081,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSNH","iata":"","local":"SNH","name":"Savannah Hardin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Savannah","elevation_ft":473,"latitude":35.1703987121582,"longitude":-88.21589660644531,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSOP","iata":"SOP","local":"SOP","name":"Moore County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Carthage","elevation_ft":455,"latitude":35.237184,"longitude":-79.389381,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":6503,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSOA","iata":"","local":"SOA","name":"Sonora Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sonora","elevation_ft":2140,"latitude":30.585699081421,"longitude":-100.6490020752,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4037,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSPA","iata":"SPA","local":"SPA","name":"Spartanburg Downtown Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Spartanburg","elevation_ft":801,"latitude":34.915699005127,"longitude":-81.956497192383,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5852,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSPG","iata":"SPG","local":"SPG","name":"Albert Whitted Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"St Petersburg","elevation_ft":7,"latitude":27.7651,"longitude":-82.626999,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3676,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2864,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.4}],"has_metar":true,"public":true},{"icao":"KSPH","iata":"","local":"SPH","name":"Springhill Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Springhill","elevation_ft":218,"latitude":32.9833984375,"longitude":-93.4092025756836,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4202,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSPI","iata":"SPI","local":"SPI","name":"Abraham Lincoln Capital Airport","category":"medium_airport","iso_country":"US","iso_region":"US-IL","municipality":"Springfield","elevation_ft":598,"latitude":39.844101,"longitude":-89.677902,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":8001,"width_ft":150,"surface":"C"},{"id":"13/31","length_ft":7400,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.3},{"id":"ATIS","frequency_mhz":127.65}],"has_metar":true,"public":true},{"icao":"KSPZ","iata":"","local":"SPZ","name":"Silver Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Silver Springs","elevation_ft":4269,"latitude":39.40299987792969,"longitude":-119.2509994506836,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSRC","iata":"","local":"SRC","name":"Searcy Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Searcy","elevation_ft":265,"latitude":35.21060181,"longitude":-91.73750305,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6008,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSSC","iata":"SSC","local":"SSC","name":"Shaw Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-SC","municipality":"Sumter","elevation_ft":241,"latitude":33.972698,"longitude":-80.470596,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":10014,"width_ft":150,"surface":"C"},{"id":"04R/22L","length_ft":8014,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.65},{"id":"ATIS","frequency_mhz":132.125}],"has_metar":true,"public":true},{"icao":"KSTF","iata":"","local":"STF","name":"George M Bryan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Starkville","elevation_ft":333,"latitude":33.43310165,"longitude":-88.84860229,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5550,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSUA","iata":"SUA","local":"SUA","name":"Witham Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Stuart","elevation_ft":16,"latitude":27.18169975,"longitude":-80.22109985,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4653,"width_ft":100,"surface":"A"},{"id":"12/30","length_ft":5828,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.6},{"id":"ATIS","frequency_mhz":134.475}],"has_metar":true,"public":true},{"icao":"KSUD","iata":"SUD","local":"SUD","name":"Stroud Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Stroud","elevation_ft":900,"latitude":35.789600372314,"longitude":-96.655700683594,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSUO","iata":"","local":"SUO","name":"Rosebud Sioux Tribal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Rosebud","elevation_ft":2724,"latitude":43.2585,"longitude":-100.85952,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4801,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSUT","iata":"","local":"SUT","name":"Cape Fear Regional Jetport / Howie Franklin Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Southport","elevation_ft":24,"latitude":33.929298,"longitude":-78.074997,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5505,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND36","iata":"","local":"","name":"Don's Airport","category":"closed","iso_country":"US","iso_region":"US-ND","municipality":"St Thomas","elevation_ft":840,"latitude":48.638,"longitude":-97.484802,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1822,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSXL","iata":"","local":"SXL","name":"Summersville Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Summersville","elevation_ft":1820,"latitude":38.231601715088,"longitude":-80.870796203613,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3015,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSYF","iata":"","local":"SYF","name":"Cheyenne County Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"St Francis","elevation_ft":3413,"latitude":39.76110077,"longitude":-101.7959976,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5200,"width_ft":75,"surface":"C"},{"id":"18/36","length_ft":2313,"width_ft":280,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSWI","iata":"","local":"SWI","name":"Sherman Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman","elevation_ft":745,"latitude":33.62419891357422,"longitude":-96.58609771728516,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSWT","iata":"","local":"SWT","name":"Seward Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Seward","elevation_ft":1506,"latitude":40.86470032,"longitude":-97.10919952,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3400,"width_ft":150,"surface":"T"},{"id":"16/34","length_ft":4200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSWW","iata":"SWW","local":"SWW","name":"Avenger Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sweetwater","elevation_ft":2380,"latitude":32.467399597168,"longitude":-100.46700286865,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5658,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":5840,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSYV","iata":"SYV","local":"SYV","name":"Sylvester Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sylvester","elevation_ft":403,"latitude":31.558500289917,"longitude":-83.895698547363,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4525,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KSZY","iata":"","local":"SZY","name":"Robert Sibley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Selmer","elevation_ft":610,"latitude":35.20289993286133,"longitude":-88.49839782714844,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTAZ","iata":"","local":"TAZ","name":"Taylorville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Taylorville","elevation_ft":622,"latitude":39.53419876098633,"longitude":-89.32779693603516,"has_tower":false,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":1933,"width_ft":165,"surface":"T"},{"id":"09R/27L","length_ft":3501,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTDF","iata":"","local":"TDF","name":"Raleigh Regional Airport at Person County","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Timberlake","elevation_ft":609,"latitude":36.284901,"longitude":-78.9842,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6005,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTDO","iata":"TDO","local":"TDO","name":"Ed Carlson Memorial Field South Lewis County Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Toledo","elevation_ft":374,"latitude":46.4771995544,"longitude":-122.805999756,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4479,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTEL","iata":"","local":"TEL","name":"Perry County Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Tell City","elevation_ft":660,"latitude":38.0177002,"longitude":-86.69090271,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTDW","iata":"TDW","local":"TDW","name":"Tradewind Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Amarillo","elevation_ft":3649,"latitude":35.1698989868,"longitude":-101.825996399,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3000,"width_ft":60,"surface":"A"},{"id":"17/35","length_ft":5098,"width_ft":60,"surface":"A"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTGC","iata":"","local":"TGC","name":"Gibson County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Milan","elevation_ft":359,"latitude":35.932499,"longitude":-88.8489,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4802,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTGI","iata":"","local":"TGI","name":"Tangier Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Tangier","elevation_ft":5,"latitude":37.82509994506836,"longitude":-75.997802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2426,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTIP","iata":"","local":"TIP","name":"Rantoul National Aviation Center - Frank Elliot field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rantoul","elevation_ft":737,"latitude":40.293598,"longitude":-88.142403,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5001,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":4894,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTFP","iata":"","local":"TFP","name":"McCampbell-Porter Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ingleside","elevation_ft":18,"latitude":27.9130001068,"longitude":-97.2115020752,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":4999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTHA","iata":"THA","local":"THA","name":"Tullahoma Regional Arpt/Wm Northern Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Tullahoma","elevation_ft":1083,"latitude":35.38010025,"longitude":-86.24639893,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5501,"width_ft":100,"surface":"A"},{"id":"09/27","length_ft":3130,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":4205,"width_ft":100,"surface":"A"},{"id":"N/S","length_ft":2083,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTKO","iata":"","local":"TKO","name":"Mankato Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Mankato","elevation_ft":1859,"latitude":39.80279922485352,"longitude":-98.22119903564452,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2505,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":3540,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTMA","iata":"TMA","local":"TMA","name":"Henry Tift Myers Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Tifton","elevation_ft":355,"latitude":31.4290008545,"longitude":-83.4885025024,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3807,"width_ft":75,"surface":"A"},{"id":"16/34","length_ft":6506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTLR","iata":"TLR","local":"TLR","name":"Mefford Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Tulare","elevation_ft":265,"latitude":36.15629959,"longitude":-119.3259964,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3901,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTNU","iata":"TNU","local":"TNU","name":"Newton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Newton","elevation_ft":953,"latitude":41.6744,"longitude":-93.021698,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTNX","iata":"XSD","local":"TNX","name":"Tonopah Test Range Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Tonopah","elevation_ft":5549,"latitude":37.7988014221,"longitude":-116.78099823,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":12001,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":124.75}],"has_metar":false,"public":true},{"icao":"KTNT","iata":"TNT","local":"TNT","name":"Dade Collier Training and Transition Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":13,"latitude":25.861799240112,"longitude":-80.897003173828,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":10499,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTNP","iata":"TNP","local":"TNP","name":"Twentynine Palms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Twentynine Palms","elevation_ft":1888,"latitude":34.133901,"longitude":-115.947347,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":5531,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":3797,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTPF","iata":"TPF","local":"TPF","name":"Peter O Knight Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":8,"latitude":27.915599822998,"longitude":-82.44930267334,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3583,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":2687,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTRI","iata":"TRI","local":"TRI","name":"Tri-Cities Regional TN/VA Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Blountville","elevation_ft":1519,"latitude":36.475201,"longitude":-82.407401,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":8000,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":4442,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":118.25},{"id":"LCL/P","frequency_mhz":119.5}],"has_metar":true,"public":true},{"icao":"KTTA","iata":"","local":"TTA","name":"Raleigh Executive Jetport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Sanford","elevation_ft":246,"latitude":35.583698,"longitude":-79.1008,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6501,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTTN","iata":"TTN","local":"TTN","name":"Trenton Mercer Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Trenton","elevation_ft":213,"latitude":40.27669906616211,"longitude":-74.8134994506836,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6006,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":4800,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":64,"width_ft":64,"surface":"A"},{"id":"H2","length_ft":64,"width_ft":64,"surface":"A"},{"id":"H3","length_ft":64,"width_ft":64,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7},{"id":"ATIS","frequency_mhz":126.775}],"has_metar":true,"public":true},{"icao":"KTRX","iata":"","local":"TRX","name":"Trenton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Trenton","elevation_ft":758,"latitude":40.08349991,"longitude":-93.59059906,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4307,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTVI","iata":"TVI","local":"TVI","name":"Thomasville Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Thomasville","elevation_ft":264,"latitude":30.901599884033,"longitude":-83.881301879883,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":6004,"width_ft":101,"surface":"A"},{"id":"14/32","length_ft":4999,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTVR","iata":"","local":"TVR","name":"Vicksburg Tallulah Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Tallulah","elevation_ft":86,"latitude":32.351601,"longitude":-91.027702,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTVB","iata":"","local":"TVB","name":"Cabool Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Cabool","elevation_ft":1220,"latitude":37.13240051269531,"longitude":-92.08399963378906,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3002,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTYQ","iata":"","local":"TYQ","name":"Indianapolis Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":922,"latitude":40.030701,"longitude":-86.251404,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTYS","iata":"TYS","local":"TYS","name":"McGhee Tyson Airport","category":"medium_airport","iso_country":"US","iso_region":"US-TN","municipality":"Alcoa","elevation_ft":981,"latitude":35.811001,"longitude":-83.994003,"has_tower":true,"has_beacon":true,"runways":[{"id":"05L/23R","length_ft":10000,"width_ft":150,"surface":"C"},{"id":"05R/23L","length_ft":9000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":121.2},{"id":"ATIS","frequency_mhz":128.35}],"has_metar":true,"public":true},{"icao":"KTZT","iata":"","local":"TZT","name":"Belle Plaine Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Belle Plaine","elevation_ft":771,"latitude":41.87879943847656,"longitude":-92.28459930419922,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4001,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUBS","iata":"UBS","local":"UBS","name":"Columbus Lowndes County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Columbus","elevation_ft":188,"latitude":33.4654006958,"longitude":-88.3803024292,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4503,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KTZV","iata":"","local":"TZV","name":"Tompkinsville Monroe County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Tompkinsville","elevation_ft":1036,"latitude":36.729000091552734,"longitude":-85.65239715576172,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KUDG","iata":"","local":"UDG","name":"Darlington County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Darlington","elevation_ft":192,"latitude":34.449401,"longitude":-79.890098,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUIL","iata":"UIL","local":"UIL","name":"Quillayute Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Quillayute","elevation_ft":194,"latitude":47.936599731445,"longitude":-124.56300354004,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4211,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KUDD","iata":"UDD","local":"UDD","name":"Bermuda Dunes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Bermuda Dunes","elevation_ft":73,"latitude":33.748492,"longitude":-116.275027,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":5002,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KUMP","iata":"","local":"UMP","name":"Indianapolis Metropolitan Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":811,"latitude":39.93519974,"longitude":-86.04499817,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4004,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUNI","iata":"ATO","local":"UNI","name":"Ohio University Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Albany","elevation_ft":766,"latitude":39.211839,"longitude":-82.22949,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":5600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUTA","iata":"UTM","local":"UTA","name":"Tunica Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Tunica","elevation_ft":194,"latitude":34.680999755859,"longitude":-90.346702575684,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":8500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KUOS","iata":"UOS","local":"UOS","name":"Franklin County Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sewanee","elevation_ft":1953,"latitude":35.205101013184,"longitude":-85.898101806641,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3700,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KUZA","iata":"RKH","local":"UZA","name":"Rock Hill - York County Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Rock Hill","elevation_ft":666,"latitude":34.9878006,"longitude":-81.05719757,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVDF","iata":"","local":"VDF","name":"Tampa Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":22,"latitude":28.013999939,"longitude":-82.3452987671,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":3219,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVER","iata":"","local":"VER","name":"Jesse Viertel Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Boonville","elevation_ft":715,"latitude":38.94670104980469,"longitude":-92.68270111083984,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVJI","iata":"VJI","local":"VJI","name":"Virginia Highlands Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Abingdon","elevation_ft":2087,"latitude":36.687099,"longitude":-82.033302,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4471,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVKS","iata":"VKS","local":"VKS","name":"Vicksburg Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Vicksburg","elevation_ft":106,"latitude":32.23929977417,"longitude":-90.928398132324,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVLA","iata":"VLA","local":"VLA","name":"Vandalia Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Vandalia","elevation_ft":537,"latitude":38.991501,"longitude":-89.166199,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3001,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":3751,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVMR","iata":"","local":"VMR","name":"Harold Davidson Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Vermillion","elevation_ft":1146,"latitude":42.76530075,"longitude":-96.93430328,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4105,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KVNC","iata":"VNC","local":"VNC","name":"Venice Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Venice","elevation_ft":18,"latitude":27.071599960327,"longitude":-82.440299987793,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"A"},{"id":"13/31","length_ft":5640,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA60","iata":"","local":"LA60","name":"Live Oak Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Abbeville","elevation_ft":6,"latitude":29.824421,"longitude":-92.115511,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KVTI","iata":"","local":"VTI","name":"Vinton Veterans Memorial Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Vinton","elevation_ft":842,"latitude":42.218221,"longitude":-92.025905,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4000,"width_ft":60,"surface":"C"},{"id":"16/34","length_ft":2500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KVUJ","iata":"","local":"VUJ","name":"Stanly County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Albemarle","elevation_ft":609,"latitude":35.416698455811,"longitude":-80.150802612305,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":3501,"width_ft":75,"surface":"A"},{"id":"04R/22L","length_ft":5499,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.275}],"has_metar":true,"public":true},{"icao":"KWAL","iata":"WAL","local":"WAL","name":"Wallops Flight Facility Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Wallops Island","elevation_ft":40,"latitude":37.940813,"longitude":-75.462255,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8748,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":8005,"width_ft":200,"surface":"A"},{"id":"17/35","length_ft":4808,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.5}],"has_metar":true,"public":true},{"icao":"KWAY","iata":"WAY","local":"WAY","name":"Greene County Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Waynesburg","elevation_ft":1069,"latitude":39.90112,"longitude":-80.130733,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KWBW","iata":"WBW","local":"WBW","name":"Wilkes Barre Wyoming Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Wilkes-Barre","elevation_ft":545,"latitude":41.2971992493,"longitude":-75.8511962891,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3375,"width_ft":75,"surface":"A"},{"id":"09/27","length_ft":2193,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KWRI","iata":"WRI","local":"WRI","name":"Mc Guire Air Force Base","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Wrightstown","elevation_ft":131,"latitude":40.0155983,"longitude":-74.59169769,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":10014,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":7126,"width_ft":150,"surface":"C"}],"frequencies":[{"id":"D-ATIS","frequency_mhz":110.6},{"id":"LCL/P","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"KWLW","iata":"WLW","local":"WLW","name":"Willows Glenn County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Willows","elevation_ft":141,"latitude":39.51639938,"longitude":-122.2180023,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3788,"width_ft":60,"surface":"A"},{"id":"16/34","length_ft":4125,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA61","iata":"","local":"LA61","name":"Kenan Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Kaplan","elevation_ft":20,"latitude":30.008627,"longitude":-92.238841,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1957,"width_ft":97,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KWWD","iata":"WWD","local":"WWD","name":"Cape May County Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Wildwood","elevation_ft":23,"latitude":39.0084991455,"longitude":-74.9083023071,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":5252,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KXNO","iata":"","local":"XNO","name":"North Air Force Auxillary Airfield","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"North","elevation_ft":321,"latitude":33.609355,"longitude":-81.08328,"has_tower":false,"has_beacon":false,"runways":[{"id":"051/231","length_ft":3500,"width_ft":90,"surface":"C"},{"id":"06/24","length_ft":10003,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KXSA","iata":"","local":"XSA","name":"Tappahannock-Essex County Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Tappahannock","elevation_ft":135,"latitude":37.8596,"longitude":-76.894096,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KXNI","iata":"","local":"XNI","name":"Andrew Othole Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Zuni","elevation_ft":6370,"latitude":35.060675,"longitude":-108.9376,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KWYS","iata":"WYS","local":"WYS","name":"Yellowstone Airport","category":"medium_airport","iso_country":"US","iso_region":"US-MT","municipality":"West Yellowstone","elevation_ft":6649,"latitude":44.68840027,"longitude":-111.1179962,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":8400,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KZPH","iata":"ZPH","local":"ZPH","name":"Zephyrhills Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Zephyrhills","elevation_ft":90,"latitude":28.228201,"longitude":-82.155899,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":6201,"width_ft":100,"surface":"A"},{"id":"05/23","length_ft":5001,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"KZZV","iata":"ZZV","local":"ZZV","name":"Zanesville Municipal Airport","category":"medium_airport","iso_country":"US","iso_region":"US-OH","municipality":"Zanesville","elevation_ft":900,"latitude":39.9444007874,"longitude":-81.89209747310001,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4999,"width_ft":150,"surface":"A"},{"id":"16/34","length_ft":4998,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA00","iata":"","local":"LA00","name":"Baton Rouge General Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":36,"latitude":30.395334,"longitude":-91.094924,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA01","iata":"","local":"LA01","name":"Millers Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Basile","elevation_ft":44,"latitude":30.48349952697754,"longitude":-92.54679870605467,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KZEF","iata":"","local":"ZEF","name":"Elkin Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elkin","elevation_ft":1068,"latitude":36.27999877929688,"longitude":-80.78610229492188,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4001,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA02","iata":"","local":"LA02","name":"Hammond Developmental Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Hammond","elevation_ft":42,"latitude":30.518400192260746,"longitude":-90.56649780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA03","iata":"","local":"","name":"LSU University Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":142,"latitude":29.956444,"longitude":-90.084969,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA04","iata":"","local":"","name":"Cane-Air Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Belle Rose","elevation_ft":17,"latitude":30.042411,"longitude":-91.063448,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2730,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA05","iata":"","local":"LA05","name":"Baton Rouge Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":22,"latitude":30.365631,"longitude":-91.050058,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA06","iata":"","local":"LA06","name":"St Luke General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Arnaudville","elevation_ft":25,"latitude":30.401899337768555,"longitude":-91.93509674072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA09","iata":"","local":"LA09","name":"Air Logistics (Intracoastal City) Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Intracoastal City","elevation_ft":5,"latitude":29.783667,"longitude":-92.163133,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA10","iata":"","local":"","name":"Metro Ambulance Service Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Monroe","elevation_ft":80,"latitude":32.507401,"longitude":-92.111198,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2826,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA11","iata":"","local":"LA11","name":"Nl Baroid Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Fourchon","elevation_ft":9,"latitude":29.098800659179688,"longitude":-90.2104034423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA12","iata":"","local":"LA12","name":"Louisiana State Police Troop B Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Kenner","elevation_ft":0,"latitude":30.010814,"longitude":-90.239242,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA14","iata":"","local":"LA14","name":"Coffman Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"West Monroe","elevation_ft":80,"latitude":32.5105552673,"longitude":-92.1508331299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LA15","iata":"","local":"","name":"Wilbert Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Plaquemine","elevation_ft":12,"latitude":30.259899,"longitude":-91.286201,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1300,"width_ft":90,"surface":"T"},{"id":"18/36","length_ft":1573,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WI5","iata":"","local":"4WI5","name":"Carlson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Eau Claire","elevation_ft":900,"latitude":44.72359848022461,"longitude":-91.45989990234376,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WI0","iata":"","local":"4WI0","name":"Wissota Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chippewa Falls","elevation_ft":936,"latitude":44.93330001831055,"longitude":-91.27239990234376,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WN5","iata":"","local":"4WN5","name":"David Randall Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Balsam Lake","elevation_ft":1155,"latitude":45.457,"longitude":-92.378306,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2552,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WI4","iata":"","local":"4WI4","name":"Turner Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Tomahawk","elevation_ft":1500,"latitude":45.574100494384766,"longitude":-89.74800109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WI1","iata":"","local":"4WI1","name":"Bancroft East Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Rio","elevation_ft":840,"latitude":43.48329925537109,"longitude":-89.18340301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WA8","iata":"","local":"4WA8","name":"Riverside Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Everson","elevation_ft":175,"latitude":48.835924,"longitude":-122.265294,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WA9","iata":"","local":"4WA9","name":"Port Orchard Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Orchard","elevation_ft":370,"latitude":47.43230056762695,"longitude":-122.66799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2460,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WN6","iata":"","local":"4WN6","name":"Bay Area Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Marinette","elevation_ft":608,"latitude":45.07279968261719,"longitude":-87.61820220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WN7","iata":"","local":"4WN7","name":"Aegis Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":640,"latitude":44.471432,"longitude":-87.994818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":107,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WN8","iata":"","local":"4WN8","name":"Lynn Louise Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Dousman","elevation_ft":616,"latitude":43.005208,"longitude":-88.470747,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":59,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4XA6","iata":"","local":"4XA6","name":"Medical Center Of Southeast Texas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Arthur","elevation_ft":7,"latitude":29.936561,"longitude":-93.988878,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":72,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4XA7","iata":"","local":"4XA7","name":"Baylor Health Center At Irving Coppell Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Irving","elevation_ft":527,"latitude":32.912967,"longitude":-96.952469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4XA8","iata":"","local":"4XA8","name":"Winkler County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kermit","elevation_ft":2858,"latitude":31.849921,"longitude":-103.090929,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WN9","iata":"","local":"4WN9","name":"Digger Dougs Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Salem","elevation_ft":800,"latitude":42.5975,"longitude":-88.146389,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XA5","iata":"","local":"4XA5","name":"Dave Eby Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Burkburnett","elevation_ft":1004,"latitude":34.03775,"longitude":-98.496,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1849,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XA2","iata":"","local":"4XA2","name":"Card Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kenedy","elevation_ft":320,"latitude":28.789167,"longitude":-97.763389,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XA4","iata":"","local":"4XA4","name":"Apache Pass Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rockdale","elevation_ft":410,"latitude":30.68154,"longitude":-97.14393,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XS3","iata":"","local":"4XS3","name":"Columbia Lakes Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"West Columbia","elevation_ft":30,"latitude":29.167999267578125,"longitude":-95.62129974365234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4XS4","iata":"","local":"4XS4","name":"Carrollton Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Carrollton","elevation_ft":572,"latitude":33.02866,"longitude":-96.887026,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4XS8","iata":"","local":"","name":"Winn Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Wimberley","elevation_ft":960,"latitude":29.971403,"longitude":-98.111901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"},{"id":"H2","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50AR","iata":"","local":"50AR","name":"Yell County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Danville","elevation_ft":340,"latitude":35.054500579833984,"longitude":-93.38770294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50CA","iata":"","local":"50CA","name":"St Mary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Long Beach","elevation_ft":174,"latitude":33.780949,"longitude":-118.186094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50CL","iata":"","local":"50CL","name":"L A Co Sheriff Lakewood Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lakewood","elevation_ft":58,"latitude":33.8507995605,"longitude":-118.133003235,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4XS2","iata":"","local":"4XS2","name":"Teate Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paradise","elevation_ft":795,"latitude":33.1696,"longitude":-97.731664,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1182,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XS1","iata":"","local":"4XS1","name":"Coyote Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corsicana","elevation_ft":430,"latitude":32.1338996887207,"longitude":-96.52059936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XS5","iata":"","local":"4XS5","name":"Scrappin Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wiergate","elevation_ft":350,"latitude":31.12190055847168,"longitude":-93.8030014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XS6","iata":"","local":"4XS6","name":"H Young Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Willow City","elevation_ft":1670,"latitude":30.397118,"longitude":-98.658489,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2085,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XS9","iata":"","local":"4XS9","name":"Cajun Hills Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wimberley","elevation_ft":1300,"latitude":30.085899,"longitude":-98.169642,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2350,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50CN","iata":"","local":"50CN","name":"Palmdale Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Palmdale","elevation_ft":2743,"latitude":34.582261,"longitude":-118.145106,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50CO","iata":"","local":"","name":"William T Browder Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":5200,"latitude":40.658298,"longitude":-104.950996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50FA","iata":"","local":"50FA","name":"Lehigh Acres Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lehigh Acres","elevation_ft":23,"latitude":26.616596,"longitude":-81.659135,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50IN","iata":"","local":"","name":"Austin Air Ads Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Farmersburg","elevation_ft":575,"latitude":39.2181,"longitude":-87.368102,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2660,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50IS","iata":"","local":"50IS","name":"Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Freeport","elevation_ft":870,"latitude":42.29449844360352,"longitude":-89.63790130615234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50KS","iata":"","local":"","name":"Grandpa's Farm Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Pratt","elevation_ft":1820,"latitude":37.6656,"longitude":-98.619796,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1050,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50KT","iata":"","local":"50KT","name":"Highlands Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Prestonsburg","elevation_ft":650,"latitude":37.728061,"longitude":-82.770116,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50FD","iata":"","local":"50FD","name":"Cattle Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Altha","elevation_ft":120,"latitude":30.518199920654297,"longitude":-85.19879913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50GA","iata":"","local":"50GA","name":"Mallory Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Valdosta","elevation_ft":202,"latitude":30.9507999420166,"longitude":-83.23419952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50FL","iata":"","local":"50FL","name":"Odom's Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":245,"latitude":30.85330009460449,"longitude":-87.2394027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50II","iata":"","local":"50II","name":"Way West Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bainbridge","elevation_ft":890,"latitude":39.773432,"longitude":-86.754855,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50KY","iata":"","local":"50KY","name":"Zanzibar Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paris","elevation_ft":915,"latitude":38.129799,"longitude":-84.3302,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50LA","iata":"","local":"50LA","name":"Louisiana State Police Troop C Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Gray","elevation_ft":10,"latitude":29.679007,"longitude":-90.781547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50LS","iata":"","local":"50LS","name":"Livingston Parish Air Support Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Livingston","elevation_ft":32,"latitude":30.481734,"longitude":-90.794052,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50MD","iata":"","local":"50MD","name":"Queen Anne ER Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Grasonville","elevation_ft":26,"latitude":38.967522,"longitude":-76.18278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50MI","iata":"","local":"50MI","name":"Burgess Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MI","municipality":"Greenville","elevation_ft":799,"latitude":43.15729904174805,"longitude":-85.29419708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50MN","iata":"","local":"","name":"Zimmerman Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Herman","elevation_ft":1045,"latitude":45.793598,"longitude":-96.300102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50MO","iata":"","local":"50MO","name":"Ozarks Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"West Plains","elevation_ft":1006,"latitude":36.738399505615234,"longitude":-91.8738021850586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50MS","iata":"","local":"50MS","name":"Merit Health Wesley Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Hattiesburg","elevation_ft":222,"latitude":31.32741,"longitude":-89.365555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50NH","iata":"","local":"50NH","name":"Smith Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Alton","elevation_ft":499,"latitude":43.555146,"longitude":-71.309627,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50NJ","iata":"","local":"50NJ","name":"Express Marine Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Camden","elevation_ft":15,"latitude":39.95230102539063,"longitude":-75.08409881591797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50NM","iata":"","local":"","name":"Ghost Ranch Strip","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Abiquiu","elevation_ft":6440,"latitude":36.302799,"longitude":-106.487999,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50OG","iata":"","local":"50OG","name":"Teufel'S Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Forest Grove","elevation_ft":185,"latitude":45.531417,"longitude":-123.084528,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50NC","iata":"","local":"50NC","name":"Ervin Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kannapolis","elevation_ft":905,"latitude":35.54499816894531,"longitude":-80.6686019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2450,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50OK","iata":"","local":"50OK","name":"Southwest Medical Center of Oklahoma Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1260,"latitude":35.42279815673828,"longitude":-97.52110290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50PN","iata":"","local":"50PN","name":"Delmont Personal Use Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Delmont","elevation_ft":1210,"latitude":40.39120101928711,"longitude":-79.57119750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50SC","iata":"","local":"50SC","name":"Oconee Nuclear Station Helipad","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Seneca","elevation_ft":796,"latitude":34.8001917,"longitude":-82.897211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50TE","iata":"","local":"","name":"Keller Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Johnson City","elevation_ft":1550,"latitude":30.230499,"longitude":-98.475304,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50TS","iata":"","local":"50TS","name":"TJ-CJ Private Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":630,"latitude":29.459849,"longitude":-98.331971,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":900,"width_ft":250,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50VA","iata":"","local":"50VA","name":"L G Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Lynchburg","elevation_ft":700,"latitude":37.41740036010742,"longitude":-79.17250061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50WI","iata":"","local":"","name":"Earl's Air Park","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Neenah","elevation_ft":775,"latitude":44.113899,"longitude":-88.527101,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50XA","iata":"","local":"50XA","name":"Las Palmas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3897,"latitude":31.770648,"longitude":-106.498381,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"50OR","iata":"","local":"50OR","name":"Goering Ranches / Chocheta Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3450,"latitude":44.095813,"longitude":-120.946823,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5500,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50TN","iata":"","local":"50TN","name":"Paris Landing Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Paris","elevation_ft":400,"latitude":36.352339,"longitude":-88.350492,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50TA","iata":"","local":"50TA","name":"Moltz Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Geronimo","elevation_ft":600,"latitude":29.687700271606445,"longitude":-97.99610137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51AZ","iata":"","local":"51AZ","name":"Yavapai Regional Medical Center East Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Prescott Valley","elevation_ft":5100,"latitude":34.59183,"longitude":-112.330763,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51KY","iata":"","local":"51KY","name":"Appalachian Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Whitesburg","elevation_ft":1220,"latitude":37.11320114135742,"longitude":-82.8124008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51LA","iata":"","local":"","name":"R T Leblanc Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"White Castle","elevation_ft":15,"latitude":30.143499,"longitude":-91.153198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51MA","iata":"","local":"51MA","name":"BSAS #2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Rockport","elevation_ft":40,"latitude":42.672583,"longitude":-70.622083,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51GA","iata":"","local":"51GA","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Tyrone","elevation_ft":920,"latitude":33.50809860229492,"longitude":-84.60050201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51FD","iata":"","local":"51FD","name":"Tex Merritt Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Leesburg","elevation_ft":95,"latitude":28.667800903320312,"longitude":-81.91809844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1920,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51FL","iata":"","local":"51FL","name":"Chiefland Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chiefland","elevation_ft":35,"latitude":29.39489937,"longitude":-82.86979675,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3180,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51CL","iata":"","local":"51CL","name":"Vetters Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Galt","elevation_ft":80,"latitude":38.230499267578125,"longitude":-121.22200012207033,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"A"},{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51CO","iata":"","local":"51CO","name":"Flying W No.2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":7105,"latitude":38.885601043701,"longitude":-107.80400085449,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51KS","iata":"","local":"51KS","name":"Barnard Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Elmo","elevation_ft":1420,"latitude":38.637001037597656,"longitude":-97.2136001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51LS","iata":"","local":"51LS","name":"Red Oak Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Sunset","elevation_ft":55,"latitude":30.438053,"longitude":-92.116653,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51MI","iata":"","local":"51MI","name":"Cass Lake-Cove Island Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MI","municipality":"Pontiac","elevation_ft":990,"latitude":42.6161003112793,"longitude":-83.35600280761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":2000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51MO","iata":"","local":"","name":"Georger Farms Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Advance","elevation_ft":335,"latitude":37.121700286865234,"longitude":-89.84760284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51NJ","iata":"","local":"51NJ","name":"Germania Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Cologne","elevation_ft":65,"latitude":39.5010439498,"longitude":-74.60845470430002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51NK","iata":"","local":"51NK","name":"The Moriches Bay Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"East Moriches","elevation_ft":5,"latitude":40.7992302243,"longitude":-72.7628991008,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51OR","iata":"","local":"51OR","name":"Pge Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":182,"latitude":44.99959945678711,"longitude":-122.97699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51PN","iata":"","local":"51PN","name":"Helistop Ridc Industrial Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Blawnox","elevation_ft":986,"latitude":40.49919891357422,"longitude":-79.86530303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51TA","iata":"","local":"51TA","name":"Harris Methodist Southwest Helistop","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":744,"latitude":32.65686,"longitude":-97.421715,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51OH","iata":"","local":"51OH","name":"Agner Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ottawa","elevation_ft":740,"latitude":41.0703010559082,"longitude":-84.0863037109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51NC","iata":"","local":"51NC","name":"Phillip R Bunn Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Zebulon","elevation_ft":355,"latitude":35.8619001,"longitude":-78.348602,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51OK","iata":"","local":"51OK","name":"Eagle Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Beggs","elevation_ft":740,"latitude":35.793611,"longitude":-96.029722,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1300,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51TE","iata":"","local":"51TE","name":"Barstool Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waxahachie","elevation_ft":555,"latitude":32.472423,"longitude":-96.789894,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2080,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51TN","iata":"","local":"51TN","name":"Glendale Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Columbia","elevation_ft":750,"latitude":35.53310012817383,"longitude":-86.97689819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51TS","iata":"","local":"51TS","name":"Wilson N Jones Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman","elevation_ft":770,"latitude":33.637178,"longitude":-96.624248,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52AK","iata":"","local":"","name":"Basquo Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":63,"latitude":60.505512,"longitude":-151.248608,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"51WT","iata":"","local":"51WT","name":"Whiterik Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Fruitland","elevation_ft":1895,"latitude":48.008665,"longitude":-118.36245,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51WI","iata":"","local":"51WI","name":"Gallinger Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oshkosh","elevation_ft":800,"latitude":44.064258,"longitude":-88.557707,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52FA","iata":"","local":"52FA","name":"Bent Willies Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Wales","elevation_ft":73,"latitude":27.939611,"longitude":-81.432028,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51WA","iata":"","local":"51WA","name":"Evergreen Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Black Diamond","elevation_ft":580,"latitude":47.2681999206543,"longitude":-122.06800079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52AZ","iata":"","local":"52AZ","name":"X Bar 1 Ranch Upper Headquarters Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Seligman","elevation_ft":5585,"latitude":35.380774,"longitude":-113.301042,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":4800,"width_ft":45,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52CO","iata":"","local":"52CO","name":"Mountain View Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Monument","elevation_ft":7500,"latitude":39.10969924926758,"longitude":-104.65399932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52AR","iata":"","local":"52AR","name":"Ira's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Greenbrier","elevation_ft":590,"latitude":35.279235,"longitude":-92.240943,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51TX","iata":"","local":"51TX","name":"N D Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Van","elevation_ft":540,"latitude":32.53960037231445,"longitude":-95.66829681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51TT","iata":"","local":"51TT","name":"Hoes Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":572,"latitude":30.149441,"longitude":-97.734553,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1530,"width_ft":36,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52FD","iata":"","local":"52FD","name":"Pullum Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Navarre","elevation_ft":20,"latitude":30.40239906311035,"longitude":-86.8666000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52GA","iata":"","local":"52GA","name":"Rabbit Hole Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":900,"latitude":33.53810119628906,"longitude":-84.47440338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52IS","iata":"","local":"52IS","name":"Dresden Power Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Minooka","elevation_ft":509,"latitude":41.38690185546875,"longitude":-88.26580047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52LA","iata":"","local":"","name":"One Shell Square Emergency Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":700,"latitude":29.950199,"longitude":-90.0709,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2620,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52MI","iata":"","local":"52MI","name":"Six C's Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Oakland Township","elevation_ft":1013,"latitude":42.721656,"longitude":-83.181586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52MY","iata":"","local":"52MY","name":"M Health Fairview Lakes Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Wyoming","elevation_ft":915,"latitude":45.320787,"longitude":-93.00092,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52FL","iata":"","local":"52FL","name":"Lake Clinch Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Frostproof","elevation_ft":140,"latitude":27.75029945373535,"longitude":-81.55950164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52ND","iata":"","local":"52ND","name":"Richtsmeier Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hunter","elevation_ft":1047,"latitude":47.18939971923828,"longitude":-97.28949737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3340,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52MN","iata":"","local":"52MN","name":"Anderson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Kennedy","elevation_ft":800,"latitude":48.64300155639648,"longitude":-96.80729675292967,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52KS","iata":"","local":"52KS","name":"Bland Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Eudora","elevation_ft":935,"latitude":38.90280151367188,"longitude":-95.1322021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52IN","iata":"","local":"52IN","name":"Higginbotham Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Prairieton","elevation_ft":452,"latitude":39.341400146484375,"longitude":-87.53140258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1705,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52NH","iata":"","local":"52NH","name":"Baboosic Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Amherst","elevation_ft":227,"latitude":42.879714,"longitude":-71.576417,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":5575,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52NJ","iata":"","local":"52NJ","name":"Exxon Research & Engineering Co. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Annandale","elevation_ft":381,"latitude":40.636833,"longitude":-74.869111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52OH","iata":"","local":"52OH","name":"Coshocton Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Coshocton","elevation_ft":800,"latitude":40.271131,"longitude":-81.84852,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52OI","iata":"","local":"52OI","name":"Timken Mercy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Canton","elevation_ft":1110,"latitude":40.812801361083984,"longitude":-81.39620208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52OK","iata":"","local":"52OK","name":"Tulsa Security Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":720,"latitude":36.14229965209961,"longitude":-95.95860290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52PN","iata":"","local":"52PN","name":"Greencastle Usar Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Greencastle","elevation_ft":720,"latitude":39.750099182128906,"longitude":-77.69969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52TX","iata":"","local":"52TX","name":"Hercules Marine Services Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Freeport","elevation_ft":4,"latitude":28.96640014648437,"longitude":-95.29060363769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":32,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52VA","iata":"","local":"52VA","name":"Ibm Building 250 Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Manassas","elevation_ft":230,"latitude":38.75979995727539,"longitude":-77.50640106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H2","length_ft":190,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52WI","iata":"","local":"52WI","name":"John's Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Athens","elevation_ft":1450,"latitude":45.159644,"longitude":-90.057389,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52WA","iata":"","local":"52WA","name":"Honn Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Benge","elevation_ft":1620,"latitude":46.93209838867188,"longitude":-117.97599792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52TS","iata":"","local":"52TS","name":"Fall Creek Air Ranch STOLport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Spicewood","elevation_ft":915,"latitude":30.418500900268555,"longitude":-98.16280364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52XS","iata":"","local":"52XS","name":"Clear Lake Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Webster","elevation_ft":51,"latitude":29.541409,"longitude":-95.128648,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53AR","iata":"","local":"53AR","name":"Mercy Hospital Northwest Arkansas Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Rogers","elevation_ft":1276,"latitude":36.308447,"longitude":-94.184225,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53CA","iata":"","local":"53CA","name":"Hummingbird Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Simi Valley","elevation_ft":1411,"latitude":34.28189849853516,"longitude":-118.65499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53FA","iata":"","local":"53FA","name":"Pasco Sheriff's Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Land o ' Lakes","elevation_ft":79,"latitude":28.308027,"longitude":-82.48688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"52XA","iata":"","local":"52XA","name":"Klinkerman Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wichita Falls","elevation_ft":1040,"latitude":34.048544,"longitude":-98.426994,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3106,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53FL","iata":"","local":"53FL","name":"University of Florida Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":125,"latitude":29.644100189208984,"longitude":-82.35320281982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53CO","iata":"","local":"53CO","name":"Rons Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Two Buttes","elevation_ft":4096,"latitude":37.5531005859375,"longitude":-102.39199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52WT","iata":"","local":"52WT","name":"Galt's Gulch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Touchet","elevation_ft":580,"latitude":46.022811,"longitude":-118.543843,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53CL","iata":"","local":"53CL","name":"Lofty Redwoods Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Anchor Bay","elevation_ft":1317,"latitude":38.85960006713867,"longitude":-123.59100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3200,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53GA","iata":"","local":"53GA","name":"Dawson Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Rome","elevation_ft":675,"latitude":34.167801,"longitude":-85.258598,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53AK","iata":"","local":"53AK","name":"Lakewood Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":110,"latitude":60.533749,"longitude":-150.856597,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53IL","iata":"","local":"","name":"Clapper Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Mansfield","elevation_ft":710,"latitude":40.152802,"longitude":-88.516701,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53IS","iata":"","local":"53IS","name":"Franklin Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Benton","elevation_ft":445,"latitude":38.0093994140625,"longitude":-88.9186019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53KY","iata":"","local":"","name":"Short Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Eubank","elevation_ft":1130,"latitude":37.272301,"longitude":-84.557198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":49,"width_ft":49,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53MI","iata":"","local":"53MI","name":"Huron Valley Sinai Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Commerce","elevation_ft":980,"latitude":42.59389877319336,"longitude":-83.49919891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53MO","iata":"","local":"53MO","name":"Help Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Zalma","elevation_ft":475,"latitude":37.152000427246094,"longitude":-90.0708999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":18,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53NH","iata":"","local":"53NH","name":"Meredith Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Meredith","elevation_ft":503,"latitude":43.651658,"longitude":-71.482614,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":3000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53NV","iata":"","local":"53NV","name":"Battle Mountain EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Battle Mountain","elevation_ft":4515,"latitude":40.641031,"longitude":-116.940891,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53NC","iata":"","local":"53NC","name":"Mynatt Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Orrum","elevation_ft":95,"latitude":34.378721,"longitude":-79.079343,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53NE","iata":"","local":"53NE","name":"Starns Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ashland","elevation_ft":1090,"latitude":41.08140182495117,"longitude":-96.40339660644533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53KS","iata":"","local":"53KS","name":"Weaver Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hesston","elevation_ft":1460,"latitude":38.10829925537109,"longitude":-97.43280029296876,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1370,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53IN","iata":"","local":"53IN","name":"Hartman Farms Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Kokomo","elevation_ft":818,"latitude":40.52140045166016,"longitude":-86.21499633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53OI","iata":"","local":"53OI","name":"Metro Health Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":690,"latitude":41.460899353027344,"longitude":-81.69760131835938,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"A"},{"id":"H2","length_ft":53,"width_ft":53,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53OR","iata":"","local":"53OR","name":"Providence Saint Vincent Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Beaverton","elevation_ft":478,"latitude":45.510905,"longitude":-122.774102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53TE","iata":"","local":"53TE","name":"Christus Santa Rosa Westover Hills Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":906,"latitude":29.467591,"longitude":-98.69533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53TX","iata":"","local":"","name":"Cannon Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Somerset","elevation_ft":610,"latitude":29.216101,"longitude":-98.5495,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53WT","iata":"","local":"53WT","name":"Forks Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Forks","elevation_ft":290,"latitude":47.946442,"longitude":-124.393664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54AK","iata":"","local":"54AK","name":"Kalmbach Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":400,"latitude":61.60710144042969,"longitude":-149.57400512695312,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":4500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"53WI","iata":"","local":"79WS","name":"Moose Creek Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Argyle","elevation_ft":1025,"latitude":42.698101,"longitude":-89.786796,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54AL","iata":"","local":"54AL","name":"Belforest Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Daphne","elevation_ft":150,"latitude":30.597517,"longitude":-87.821419,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53OK","iata":"","local":"53OK","name":"Thompson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Tuttle","elevation_ft":1280,"latitude":35.24284,"longitude":-97.76384,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53XS","iata":"","local":"53XS","name":"Kornegay Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Benito","elevation_ft":30,"latitude":26.148399353027344,"longitude":-97.5916976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53OH","iata":"","local":"53OH","name":"Charloe Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Paulding","elevation_ft":721,"latitude":41.134498596191406,"longitude":-84.45079803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54CA","iata":"","local":"","name":"Paradise Valley Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"National City","elevation_ft":116,"latitude":32.683899,"longitude":-117.082001,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54CO","iata":"","local":"54CO","name":"The Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Craig","elevation_ft":6316,"latitude":40.519239,"longitude":-107.579708,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54FA","iata":"","local":"54FA","name":"Cleveland Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Weston","elevation_ft":10,"latitude":26.084148,"longitude":-80.367399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54FD","iata":"","local":"","name":"Bayflite One Satellite Base Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Odessa","elevation_ft":41,"latitude":28.188601,"longitude":-82.626701,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3079,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54FL","iata":"","local":"54FL","name":"Teco Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":150,"latitude":27.94969940185547,"longitude":-82.46009826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54IN","iata":"","local":"54IN","name":"Methodist Hospital Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":815,"latitude":39.788700103759766,"longitude":-86.16190338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54CN","iata":"","local":"54CN","name":"Akin Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Placerville","elevation_ft":1595,"latitude":38.754101,"longitude":-120.899002,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54CL","iata":"","local":"54CL","name":"Lake Riverside Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Anza","elevation_ft":3410,"latitude":33.52090072631836,"longitude":-116.7969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3500,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54AZ","iata":"","local":"54AZ","name":"Somerton Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Somerton","elevation_ft":177,"latitude":32.60247,"longitude":-114.667482,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1050,"width_ft":80,"surface":"D"},{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54AR","iata":"","local":"54AR","name":"Winfield Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Altus","elevation_ft":390,"latitude":35.392856,"longitude":-93.758706,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54II","iata":"","local":"54II","name":"Caldwell Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bunker Hill","elevation_ft":800,"latitude":40.6245002746582,"longitude":-86.1552963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54LL","iata":"","local":"54LL","name":"Memorial Medical Center - Springfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Springfield","elevation_ft":688,"latitude":39.8097991943,"longitude":-89.65509796139999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54MN","iata":"","local":"","name":"Sell's Flying Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Mayer","elevation_ft":980,"latitude":44.879101,"longitude":-93.885498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54MO","iata":"","local":"","name":"Ozark's Flying Patch Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Sparta","elevation_ft":1530,"latitude":37.001401,"longitude":-92.940497,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54MS","iata":"","local":"54MS","name":"Tufton Spring Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Michigan City","elevation_ft":315,"latitude":34.959842,"longitude":-89.245629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54NH","iata":"","local":"54NH","name":"Flying Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Center Harbor","elevation_ft":785,"latitude":43.691881,"longitude":-71.490959,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1900,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54NY","iata":"","local":"","name":"Erb Acres Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Angelica","elevation_ft":1940,"latitude":42.354091,"longitude":-78.03554,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54MU","iata":"","local":"54MU","name":"Brown Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Skidmore","elevation_ft":1004,"latitude":40.300433,"longitude":-95.112169,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54MI","iata":"","local":"54MI","name":"Pingston Aeroworks Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bryon","elevation_ft":880,"latitude":42.81029891967773,"longitude":-84.08309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54NC","iata":"","local":"54NC","name":"Dillard Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Winfall","elevation_ft":15,"latitude":36.23939895629883,"longitude":-76.41719818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2700,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54OH","iata":"","local":"54OH","name":"Buehler Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Paulding","elevation_ft":728,"latitude":41.1234016418457,"longitude":-84.6176986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1475,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54KY","iata":"","local":"54KY","name":"Rudenberg Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Murray","elevation_ft":350,"latitude":36.731098,"longitude":-88.2472,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2750,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54OI","iata":"","local":"54OI","name":"Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Coldwater","elevation_ft":9,"latitude":40.48030090332031,"longitude":-83.63849639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54OR","iata":"","local":"54OR","name":"St Charles Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3590,"latitude":44.06710052490234,"longitude":-121.2689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54PA","iata":"","local":"54PA","name":"Pine Bottom Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Martinsburg","elevation_ft":1504,"latitude":40.23619842529297,"longitude":-78.3052978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54PN","iata":"","local":"54PN","name":"Forbes Regional Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Monroeville","elevation_ft":1199,"latitude":40.42729949951172,"longitude":-79.74749755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54UT","iata":"","local":"54UT","name":"Ogden Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Washington Terrace","elevation_ft":4722,"latitude":41.164368,"longitude":-111.972178,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54VA","iata":"","local":"54VA","name":"Riverside Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Newport News","elevation_ft":35,"latitude":37.06539916992188,"longitude":-76.48380279541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"54WA","iata":"","local":"54WA","name":"Tukwila Operations Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Tukwila","elevation_ft":21,"latitude":47.439300537109375,"longitude":-122.2480010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55AL","iata":"","local":"55AL","name":"Coosa Valley Landing Zone Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Sylacauga","elevation_ft":562,"latitude":33.166547,"longitude":-86.255355,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55AK","iata":"","local":"55AK","name":"Lawrence Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":200,"latitude":61.49580001831055,"longitude":-149.69900512695312,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1700,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54XA","iata":"","local":"54XA","name":"Flaherty Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Valley View","elevation_ft":802,"latitude":33.48931,"longitude":-97.20168,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2325,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54TA","iata":"","local":"54TA","name":"George P Shanks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waxahachie","elevation_ft":610,"latitude":32.29970169067383,"longitude":-96.87329864501952,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54XS","iata":"","local":"54XS","name":"Bar C Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1856,"latitude":29.944988,"longitude":-100.686307,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55CA","iata":"","local":"","name":"Naval Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Oakland","elevation_ft":374,"latitude":37.766899,"longitude":-122.151001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55CL","iata":"","local":"","name":"Costerisan Farms Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":346,"latitude":35.263302,"longitude":-119.045998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55CN","iata":"","local":"55CN","name":"Sunset-Glendale Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":556,"latitude":34.07780075073242,"longitude":-118.26000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55CO","iata":"","local":"55CO","name":"Elizabeth Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6512,"latitude":39.36249923706055,"longitude":-104.5999984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55FL","iata":"","local":"55FL","name":"The Murphy Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":15,"latitude":26.687299728393555,"longitude":-80.05729675292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55GA","iata":"","local":"55GA","name":"Northside Hospital Gwinnett Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Lawrenceville","elevation_ft":1044,"latitude":33.963522,"longitude":-84.018293,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55II","iata":"","local":"55II","name":"Johnson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Franklin","elevation_ft":742,"latitude":39.47999954223633,"longitude":-86.07779693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55KY","iata":"","local":"","name":"Hutson Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Murray","elevation_ft":548,"latitude":36.588902,"longitude":-88.334503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55ID","iata":"","local":"55ID","name":"Spear Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sandpoint","elevation_ft":2220,"latitude":48.37956,"longitude":-116.484781,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2465,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55AZ","iata":"","local":"55AZ","name":"Potters Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Stanfield","elevation_ft":1309,"latitude":32.874019,"longitude":-111.959395,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55KS","iata":"","local":"55KS","name":"Ringneck Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Tipton","elevation_ft":1586,"latitude":39.300435,"longitude":-98.45835,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55LA","iata":"","local":"55LA","name":"L&L Sandblasting Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Eunice","elevation_ft":53,"latitude":30.491600036621,"longitude":-92.44539642334,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4200,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55MI","iata":"","local":"","name":"Hinkels Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Comins","elevation_ft":1000,"latitude":44.8008,"longitude":-83.985802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55NC","iata":"","local":"55NC","name":"Lenoir Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Kinston","elevation_ft":80,"latitude":35.28969955444336,"longitude":-77.58419799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55NE","iata":"","local":"55NE","name":"Bergan Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1140,"latitude":41.2406005859375,"longitude":-96.02950286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55NH","iata":"","local":"55NH","name":"Oxbow Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Piermont","elevation_ft":475,"latitude":44.008028,"longitude":-72.089611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55NK","iata":"","local":"55NK","name":"Unity Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Rochester","elevation_ft":456,"latitude":43.192913,"longitude":-77.703152,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55NV","iata":"","local":"55NV","name":"Pruitt Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Elko","elevation_ft":5800,"latitude":40.742084,"longitude":-115.494396,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55MN","iata":"","local":"55MN","name":"Conley Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Mora","elevation_ft":1004,"latitude":45.83520126342773,"longitude":-93.33550262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2157,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55LL","iata":"","local":"55LL","name":"Sky Soaring Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Union","elevation_ft":884,"latitude":42.15420150756836,"longitude":-88.5114974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55ND","iata":"","local":"55ND","name":"Pete's Port Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Killdeer","elevation_ft":2260,"latitude":47.35559844970703,"longitude":-102.71099853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55NM","iata":"","local":"55NM","name":"Burris Ranch #1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Belen","elevation_ft":5218,"latitude":34.48735,"longitude":-106.619225,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5000,"width_ft":50,"surface":"D"},{"id":"08/26","length_ft":5000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55MO","iata":"","local":"55MO","name":"Tightsqueeze Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jonesburg","elevation_ft":820,"latitude":38.87229919433594,"longitude":-91.26020050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55OH","iata":"","local":"55OH","name":"Donn Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Westlake","elevation_ft":650,"latitude":41.47589874267578,"longitude":-81.95069885253906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55TA","iata":"","local":"55TA","name":"Conroe Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":162,"latitude":30.285218,"longitude":-95.46762,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55TE","iata":"","local":"","name":"Valhalla Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Elmendorf","elevation_ft":445,"latitude":29.227604,"longitude":-98.349097,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55TN","iata":"","local":"55TN","name":"Ft Loudon Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Lenoir City","elevation_ft":900,"latitude":35.82609939575195,"longitude":-84.27079772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55VA","iata":"","local":"55VA","name":"Giles Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Pearisburg","elevation_ft":1840,"latitude":37.322186,"longitude":-80.723133,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"55NY","iata":"","local":"55NY","name":"Ridgeview Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Jamestown","elevation_ft":1645,"latitude":42.08200073242188,"longitude":-79.31230163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55WA","iata":"","local":"55WA","name":"Wilkinson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1670,"latitude":46.53015,"longitude":-120.74685,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2050,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55OR","iata":"","local":"55OR","name":"Muddy Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":253,"latitude":44.43600082397461,"longitude":-123.30799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55TX","iata":"","local":"55TX","name":"Stonecipher Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont","elevation_ft":39,"latitude":30.111462,"longitude":-94.258103,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55OK","iata":"","local":"55OK","name":"Gilstrap Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Inola","elevation_ft":575,"latitude":36.2239990234,"longitude":-95.5783004761,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55OL","iata":"","local":"55OL","name":"Higley Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guthrie","elevation_ft":1080,"latitude":35.780431,"longitude":-97.568392,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55XA","iata":"","local":"55XA","name":"1101 East Blvd Deer Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Deer Park","elevation_ft":28,"latitude":29.702772,"longitude":-95.101638,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56AR","iata":"","local":"56AR","name":"Little Rock Police DepartmentHeliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":283,"latitude":34.640861,"longitude":-92.304221,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56CO","iata":"","local":"56CO","name":"Animas Air Park","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Durango","elevation_ft":6660,"latitude":37.20309829711914,"longitude":-107.86799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56GA","iata":"","local":"56GA","name":"Kennestone Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Marietta","elevation_ft":1215,"latitude":33.96760177612305,"longitude":-84.5510025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56II","iata":"","local":"56II","name":"Adams County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Decatur","elevation_ft":799,"latitude":40.815551,"longitude":-84.913743,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56AK","iata":"","local":"56AK","name":"Bechtol Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":300,"latitude":61.57500076293945,"longitude":-149.6060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1400,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56IL","iata":"","local":"56IL","name":"Lee Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Caledonia","elevation_ft":965,"latitude":42.462161,"longitude":-88.875082,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56FL","iata":"","local":"56FL","name":"Buchanan Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":246,"latitude":30.875999450683597,"longitude":-87.2074966430664,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":2900,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56FD","iata":"","local":"56FD","name":"North American Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Malone","elevation_ft":130,"latitude":30.964599609375,"longitude":-85.06939697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4400,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55XS","iata":"","local":"55XS","name":"Frontier Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1001,"latitude":29.1663,"longitude":-100.417999,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4316,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56KY","iata":"","local":"56KY","name":"Twin Lakes Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Leitchfield","elevation_ft":657,"latitude":37.471900939941406,"longitude":-86.28780364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56ME","iata":"","local":"56ME","name":"Russell Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Easton","elevation_ft":748,"latitude":46.626398,"longitude":-67.843934,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56MI","iata":"","local":"56MI","name":"Beaumont Dearborn Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Dearborn","elevation_ft":597,"latitude":42.28992,"longitude":-83.215767,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56MU","iata":"","local":"56MU","name":"Lester E Cox Medical Center South Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1270,"latitude":37.144563,"longitude":-93.280381,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H4","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56NJ","iata":"","local":"56NJ","name":"Blue Jay Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Mount Holly","elevation_ft":28,"latitude":40.00680160522461,"longitude":-74.8635025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56MN","iata":"","local":"56MN","name":"Lothert's Farm Strip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Morton","elevation_ft":1015,"latitude":44.64550018310547,"longitude":-94.9614028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56LL","iata":"","local":"56LL","name":"Wade Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Waterman","elevation_ft":810,"latitude":41.755001068115234,"longitude":-88.77120208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56NC","iata":"","local":"56NC","name":"Wheat Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Tryon","elevation_ft":960,"latitude":35.20669937133789,"longitude":-82.03189849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56IS","iata":"","local":"56IS","name":"Liannimal's Landing","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Thomasboro","elevation_ft":690,"latitude":40.243215,"longitude":-88.083991,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2190,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56IN","iata":"","local":"56IN","name":"Casad Industrial Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Haven","elevation_ft":766,"latitude":41.077799,"longitude":-84.940453,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56LA","iata":"","local":"56LA","name":"Old Hickory Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Keithville","elevation_ft":180,"latitude":32.345298767089844,"longitude":-93.81829833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56NK","iata":"","local":"56NK","name":"Buffalo General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Buffalo","elevation_ft":1026,"latitude":42.901116,"longitude":-78.866489,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56NY","iata":"","local":"56NY","name":"Maynard's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Kendall","elevation_ft":342,"latitude":43.324857,"longitude":-78.051548,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3003,"width_ft":36,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56OR","iata":"","local":"56OR","name":"Mount Hood Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Gresham","elevation_ft":338,"latitude":45.515936687,"longitude":-122.406449318,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56PN","iata":"","local":"56PN","name":"Atlantic Refining & Marketing Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":30,"latitude":39.9197998046875,"longitude":-75.19660186767578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56TA","iata":"","local":"56TA","name":"Dallas/Fort Worth Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":578,"latitude":32.73210144042969,"longitude":-97.04889678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56TE","iata":"","local":"56TE","name":"Air Evac Lifeteam Base 57 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Pass","elevation_ft":871,"latitude":28.71335,"longitude":-100.453981,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56VA","iata":"","local":"56VA","name":"Virginia Beach Municipal Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":12,"latitude":36.7509994506836,"longitude":-76.05829620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56TX","iata":"","local":"56TX","name":"Anchorage Farm Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Warrenton","elevation_ft":440,"latitude":30.0093994140625,"longitude":-96.7593994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56OG","iata":"","local":"56OG","name":"Horn Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Stayton","elevation_ft":950,"latitude":44.771858,"longitude":-122.727628,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56OK","iata":"","local":"56OK","name":"L D Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mc Loud","elevation_ft":1080,"latitude":35.45840072631836,"longitude":-97.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56TS","iata":"","local":"56TS","name":"Elgin Intracontinental Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Elgin","elevation_ft":558,"latitude":30.333807,"longitude":-97.350454,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":650,"width_ft":25,"surface":"T"},{"id":"11/29","length_ft":1050,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":850,"width_ft":40,"surface":"T"},{"id":"H1","length_ft":75,"width_ft":50,"surface":"T"},{"id":"H2","length_ft":75,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56XA","iata":"","local":"56XA","name":"Texas Health Huguley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":685,"latitude":32.587619,"longitude":-97.318477,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"56XS","iata":"","local":"56XS","name":"G H Hart Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Stafford","elevation_ft":80,"latitude":29.64189910888672,"longitude":-95.55359649658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57AK","iata":"","local":"","name":"Lost Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":120,"latitude":61.334999,"longitude":-149.996994,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1104,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57CA","iata":"","local":"","name":"Merle Norman Cosmetics Bldg 3 Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":126,"latitude":33.9533,"longitude":-118.380997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57CO","iata":"","local":"","name":"The Children's Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5436,"latitude":39.733299,"longitude":-104.967003,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57FD","iata":"","local":"","name":"Sunset Strip Airpark","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Brooksville","elevation_ft":70,"latitude":28.5397,"longitude":-82.228895,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57AL","iata":"","local":"57AL","name":"Baswell Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Loxley","elevation_ft":190,"latitude":30.6532,"longitude":-87.723701,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57FA","iata":"","local":"57FA","name":"Lake X Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":72,"latitude":28.20859909057617,"longitude":-81.11920166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5280,"width_ft":5280,"surface":"W"},{"id":"17/35","length_ft":5100,"width_ft":60,"surface":"A"},{"id":"18W/36W","length_ft":13300,"width_ft":5280,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57CN","iata":"","local":"57CN","name":"Van Vleck Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Rancho Murieta","elevation_ft":175,"latitude":38.46910095214844,"longitude":-121.0749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57CL","iata":"","local":"57CL","name":"Boron Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Boron","elevation_ft":2499,"latitude":35.00360107421875,"longitude":-117.60700225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2290,"width_ft":50,"surface":"D"},{"id":"14/32","length_ft":1900,"width_ft":45,"surface":"D"},{"id":"17/35","length_ft":2400,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57AZ","iata":"","local":"57AZ","name":"La Cholla Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Oro Valley","elevation_ft":2940,"latitude":32.446633,"longitude":-111.002898,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4670,"width_ft":44,"surface":"A"},{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57FL","iata":"","local":"","name":"Alachua General Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":153,"latitude":29.649099,"longitude":-82.334503,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":2500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57IL","iata":"","local":"","name":"Motorola CSG-Harvard Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Harvard","elevation_ft":1065,"latitude":42.438013,"longitude":-88.603545,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57IN","iata":"","local":"57IN","name":"IU Health Bedford Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Bedford","elevation_ft":660,"latitude":38.858149,"longitude":-86.512656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57LA","iata":"","local":"57LA","name":"Acadia Saint Landry Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Church Point","elevation_ft":41,"latitude":30.395147,"longitude":-92.210568,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57MA","iata":"","local":"57MA","name":"Nantucket Cottage Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Nantucket","elevation_ft":38,"latitude":41.275778,"longitude":-70.101833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57TN","iata":"","local":"57TN","name":"Cumberland County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Crossville","elevation_ft":1869,"latitude":35.941947,"longitude":-85.019536,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57KS","iata":"","local":"57KS","name":"Get Away Runway","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Emmett","elevation_ft":1135,"latitude":39.315047,"longitude":-95.993467,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2583,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57II","iata":"","local":"57II","name":"Reimer Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Jamestown","elevation_ft":930,"latitude":39.96419906616211,"longitude":-86.56749725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57IS","iata":"","local":"57IS","name":"Dozier Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Fairfield","elevation_ft":420,"latitude":38.31669998168945,"longitude":-88.27230072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57LS","iata":"","local":"57LS","name":"Prairie Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Leesville","elevation_ft":245,"latitude":31.205025,"longitude":-93.277166,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57GA","iata":"","local":"57GA","name":"Blue Ridge Skyport Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Blue Ridge","elevation_ft":1946,"latitude":34.86309814453125,"longitude":-84.393798828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57MN","iata":"","local":"57MN","name":"Namakan Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Ray","elevation_ft":1119,"latitude":48.40679931640625,"longitude":-92.66680145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":14000,"width_ft":100,"surface":"W"},{"id":"NE/SW","length_ft":5200,"width_ft":100,"surface":"W"},{"id":"NW/SE","length_ft":14000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57NH","iata":"","local":"57NH","name":"Berry Pond Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Moultonborough","elevation_ft":575,"latitude":43.763025,"longitude":-71.389231,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57NY","iata":"","local":"57NY","name":"Athens Emergency Med-Evac Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Athens","elevation_ft":135,"latitude":42.287326,"longitude":-73.844937,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57NE","iata":"","local":"57NE","name":"Cole Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Merriman","elevation_ft":3259,"latitude":42.924198150634766,"longitude":-101.69400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57OK","iata":"","local":"57OK","name":"Atoka Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Atoka","elevation_ft":600,"latitude":34.371787,"longitude":-96.140778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57OR","iata":"","local":"","name":"Umpqua River Farm Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Sutherlin","elevation_ft":380,"latitude":43.34,"longitude":-123.450996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57TA","iata":"","local":"","name":"Trinity Meadows Race Track Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Willow Park","elevation_ft":837,"latitude":32.746399,"longitude":-97.654999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57NM","iata":"","local":"57NM","name":"Monte Prieto Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Claunch","elevation_ft":6164,"latitude":34.08869934082031,"longitude":-106.11900329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57NC","iata":"","local":"57NC","name":"Sossamon Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Bryson City","elevation_ft":1940,"latitude":35.426498,"longitude":-83.458199,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2265,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57ND","iata":"","local":"57ND","name":"Odegaard Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Kindred","elevation_ft":1020,"latitude":46.60829925537109,"longitude":-97.05950164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57TE","iata":"","local":"57TE","name":"Prade Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Leakey","elevation_ft":2296,"latitude":29.938955,"longitude":-99.783153,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3600,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57TS","iata":"","local":"57TS","name":"Coker Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kennedale","elevation_ft":660,"latitude":32.64459991455078,"longitude":-97.19139862060548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3990,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57TX","iata":"","local":"","name":"Brown Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Beeville","elevation_ft":325,"latitude":28.4419,"longitude":-97.804398,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2925,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57VA","iata":"","local":"","name":"Toga Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Dillwyn","elevation_ft":725,"latitude":37.450954,"longitude":-78.678857,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57VT","iata":"","local":"57VT","name":"Porter Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Middlebury","elevation_ft":388,"latitude":44.001713,"longitude":-73.167958,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57WA","iata":"","local":"","name":"Kent Farms Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Othello","elevation_ft":1155,"latitude":46.873501,"longitude":-119.129997,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2480,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57WI","iata":"","local":"57WI","name":"Aurora Valley View Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Plymouth","elevation_ft":878,"latitude":43.74440002441406,"longitude":-87.9677963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"57XS","iata":"","local":"","name":"Hoopes Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Weir","elevation_ft":800,"latitude":30.696899,"longitude":-97.560097,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1850,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58CA","iata":"","local":"58CA","name":"Jay Stephen Hooper Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":353,"latitude":34.054500579833984,"longitude":-118.22899627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":600,"width_ft":210,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58AZ","iata":"","local":"58AZ","name":"Chapman Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Young","elevation_ft":5115,"latitude":34.093611,"longitude":-110.932778,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3068,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58AR","iata":"","local":"58AR","name":"Sugar Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Bentonville","elevation_ft":1067,"latitude":36.405833,"longitude":-94.175277,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58AK","iata":"","local":"58AK","name":"Fairview East Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":100,"latitude":61.5526008605957,"longitude":-149.33999633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3578,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57XA","iata":"","local":"57XA","name":"Ausmus Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":957,"latitude":29.858333,"longitude":-98.114722,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1092,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58CN","iata":"","local":"58CN","name":"Jackson Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Jackson Lake","elevation_ft":6650,"latitude":39.462398529052734,"longitude":-120.56600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58CO","iata":"","local":"58CO","name":"Purgatory Nr One Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Durango","elevation_ft":8700,"latitude":37.627201080322266,"longitude":-107.8040008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58FA","iata":"","local":"58FA","name":"Saint Joseph's Hospital South Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Riverview","elevation_ft":53,"latitude":27.786979,"longitude":-82.345764,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58FL","iata":"","local":"58FL","name":"AIM Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Boca Raton","elevation_ft":20,"latitude":26.415227,"longitude":-80.183416,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58GA","iata":"","local":"58GA","name":"Washington County Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Sandersville","elevation_ft":458,"latitude":32.997898101800004,"longitude":-82.8046035767,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58IS","iata":"","local":"58IS","name":"Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Marion","elevation_ft":464,"latitude":37.72370147705078,"longitude":-88.95700073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58FD","iata":"","local":"58FD","name":"Southerly Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Dundee","elevation_ft":78,"latitude":28.01420021057129,"longitude":-81.54060363769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58KS","iata":"","local":"58KS","name":"Burger's Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Salina","elevation_ft":1325,"latitude":38.92219924926758,"longitude":-97.70860290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58II","iata":"","local":"58II","name":"Eagles Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Boggstown","elevation_ft":770,"latitude":39.520901,"longitude":-85.899544,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2350,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58IN","iata":"","local":"58IN","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Spencerville","elevation_ft":820,"latitude":41.258399963378906,"longitude":-84.86389923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58LA","iata":"","local":"58LA","name":"Sydal Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Jackson","elevation_ft":200,"latitude":30.921885,"longitude":-91.169186,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58MA","iata":"","local":"58MA","name":"Boston Scientific Marlboro Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Marlboro","elevation_ft":390,"latitude":42.361698150634766,"longitude":-71.50890350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58MI","iata":"","local":"58MI","name":"ProMedica Monroe Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Monroe","elevation_ft":603,"latitude":41.923879,"longitude":-83.388818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58MO","iata":"","local":"58MO","name":"Mercy Hospital Jefferson Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Festus","elevation_ft":435,"latitude":38.196278,"longitude":-90.392397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58NE","iata":"","local":"58NE","name":"Nebraska Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1110,"latitude":41.25920104980469,"longitude":-96.04080200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58NJ","iata":"","local":"58NJ","name":"Harrah's Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":17,"latitude":39.38619995117188,"longitude":-74.4260025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58NY","iata":"","local":"58NY","name":"Freeport Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Freeport","elevation_ft":28,"latitude":40.65060043334961,"longitude":-73.56790161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58MT","iata":"","local":"58MT","name":"Galt Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"White Sulphur Springs","elevation_ft":5156,"latitude":46.544277,"longitude":-111.069988,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2687,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58OI","iata":"","local":"58OI","name":"Harrington Square Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Middlefield","elevation_ft":1150,"latitude":41.461700439453125,"longitude":-81.08540344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58NC","iata":"","local":"58NC","name":"Fox Haven Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Rutherfordton","elevation_ft":800,"latitude":35.348434,"longitude":-82.052915,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58MU","iata":"","local":"58MU","name":"ArkMo Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jane","elevation_ft":987,"latitude":36.500596,"longitude":-94.290808,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1950,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58MN","iata":"","local":"","name":"Northwest Angle Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Warroad","elevation_ft":1071,"latitude":49.349954,"longitude":-95.077057,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":3500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58OK","iata":"","local":"58OK","name":"Jane Phillips Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Bartlesville","elevation_ft":715,"latitude":36.7333984375,"longitude":-95.91690063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58PA","iata":"","local":"","name":"Tallman East Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Tower City","elevation_ft":842,"latitude":40.591801,"longitude":-76.514395,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2966,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58TA","iata":"","local":"","name":"Barton Creek Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":0,"latitude":30.292905,"longitude":-97.859076,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58TE","iata":"","local":"","name":"Mc Nabb Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Ropesville","elevation_ft":3315,"latitude":33.406502,"longitude":-102.077003,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1224,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58TS","iata":"","local":"58TS","name":"Bald Eagle Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Laguna Park","elevation_ft":665,"latitude":31.79789924621582,"longitude":-97.37969970703124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58TT","iata":"","local":"58TT","name":"Bradley Oaks Ranch/Bradley K Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":410,"latitude":32.007204,"longitude":-95.793191,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58WI","iata":"","local":"","name":"Geo Jensen Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Frederic","elevation_ft":1350,"latitude":45.6451,"longitude":-92.366402,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58WT","iata":"","local":"58WT","name":"Goshen Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bellingham","elevation_ft":150,"latitude":48.852178,"longitude":-122.330275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58XS","iata":"","local":"58XS","name":"Mc Entire's Lazy V Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sterling City","elevation_ft":2360,"latitude":31.8306999207,"longitude":-101.055999756,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3410,"width_ft":50,"surface":"D"},{"id":"18/36","length_ft":2870,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"58WA","iata":"","local":"58WA","name":"Dye Seed Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Pomeroy","elevation_ft":2500,"latitude":46.505548,"longitude":-117.453338,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58OR","iata":"","local":"58OR","name":"Umpqua Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Roseburg","elevation_ft":700,"latitude":43.30970001220703,"longitude":-123.1269989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58TX","iata":"","local":"58TX","name":"Tailspin Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":830,"latitude":32.65119934082031,"longitude":-97.93360137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59AR","iata":"","local":"59AR","name":"Hodges Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":271,"latitude":35.882086,"longitude":-90.612505,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59FL","iata":"","local":"59FL","name":"Florida Power & Light-Juno Beach Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Juno Beach","elevation_ft":61,"latitude":26.85953,"longitude":-80.058042,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":71,"width_ft":71,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59GA","iata":"","local":"59GA","name":"Northeast Georgia Medical Center Barrow Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Winder","elevation_ft":948,"latitude":34.008202,"longitude":-83.708434,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59IS","iata":"","local":"59IS","name":"HSHS Holy Family Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Greenville","elevation_ft":585,"latitude":38.903334,"longitude":-89.406725,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59KS","iata":"","local":"","name":"Dunn Field","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Beagle","elevation_ft":1060,"latitude":38.408401,"longitude":-95.019095,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59FD","iata":"","local":"59FD","name":"Big Cypress Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Immokalee","elevation_ft":20,"latitude":26.32615,"longitude":-80.987919,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5596,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59AS","iata":"","local":"59AS","name":"Becker Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Battle Ground","elevation_ft":1720,"latitude":45.850669,"longitude":-122.544514,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59CN","iata":"","local":"59CN","name":"James Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pleasant Grove","elevation_ft":25,"latitude":38.83489990234375,"longitude":-121.52999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59AZ","iata":"","local":"59AZ","name":"Robin STOLport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Chino Valley","elevation_ft":4772,"latitude":34.74449920654297,"longitude":-112.44499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59AK","iata":"","local":"59AK","name":"Penderosa Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":520,"latitude":61.63180161,"longitude":-149.3410034,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59IA","iata":"","local":"59IA","name":"Bellevue Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Williamsburg","elevation_ft":880,"latitude":41.622344,"longitude":-92.062401,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59KY","iata":"","local":"59KY","name":"Samuels Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Deatsville","elevation_ft":690,"latitude":37.89780044555664,"longitude":-85.5551986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2750,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59LA","iata":"","local":"59LA","name":"Transco Delcambre Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Delcambre","elevation_ft":8,"latitude":29.950199127197266,"longitude":-91.98259735107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59MI","iata":"","local":"59MI","name":"Janski Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Marine City","elevation_ft":850,"latitude":42.690411,"longitude":-82.561502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59MO","iata":"","local":"59MO","name":"Hermann Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Hermann","elevation_ft":610,"latitude":38.69279861450195,"longitude":-91.45130157470705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59NJ","iata":"","local":"59NJ","name":"Due Process Stables Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Colts Neck","elevation_ft":75,"latitude":40.30459976196289,"longitude":-74.10790252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59OI","iata":"","local":"59OI","name":"Airwolf Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Middlefield","elevation_ft":1155,"latitude":41.45019912719727,"longitude":-81.05079650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59OK","iata":"","local":"59OK","name":"Camp Gruber Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Braggs","elevation_ft":586,"latitude":35.67495,"longitude":-95.201342,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59OR","iata":"","local":"59OR","name":"Mc Nary Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Umatilla","elevation_ft":366,"latitude":45.9319000244,"longitude":-119.29699707,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59TA","iata":"","local":"59TA","name":"Kaneb Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sugar Land","elevation_ft":120,"latitude":29.61520004272461,"longitude":-95.60440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59NY","iata":"","local":"59NY","name":"Bent-Wing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Lockport","elevation_ft":370,"latitude":43.23059844970703,"longitude":-78.69000244140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59NC","iata":"","local":"59NC","name":"Mclean Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Gibsonville","elevation_ft":696,"latitude":36.0974006652832,"longitude":-79.5552978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":170,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59MN","iata":"","local":"59MN","name":"Cox-Coyour Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Roosevelt","elevation_ft":1304,"latitude":48.5994,"longitude":-95.186897,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59OH","iata":"","local":"59OH","name":"Kelch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bethel","elevation_ft":905,"latitude":38.97529983520508,"longitude":-84.0342025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59TE","iata":"","local":"","name":"Hoffpauir Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Katy","elevation_ft":133,"latitude":29.80579948,"longitude":-95.752998352051,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59XA","iata":"","local":"59XA","name":"Texas Farms and Ranches Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Longview","elevation_ft":400,"latitude":32.568362,"longitude":-94.732881,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59XS","iata":"","local":"59XS","name":"Baylor Scott & White Medical Center Temple Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Temple","elevation_ft":734,"latitude":31.076709,"longitude":-97.364813,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H4","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AK1","iata":"","local":"5AK1","name":"Beluga Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Tyonek","elevation_ft":75,"latitude":61.18080139160156,"longitude":-151.04100036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AK4","iata":"","local":"","name":"Eagles Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":280,"latitude":61.606098,"longitude":-149.039006,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":100,"surface":"G"},{"id":"18W/36W","length_ft":5000,"width_ft":1500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"59WA","iata":"","local":"59WA","name":"Sorrell Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tenino","elevation_ft":250,"latitude":46.85011,"longitude":-122.936261,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1400,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AK5","iata":"","local":"5AK5","name":"Todds Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":400,"latitude":61.65710067749024,"longitude":-149.46200561523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AK2","iata":"","local":"5AK2","name":"Howards Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"North Pole","elevation_ft":490,"latitude":64.73069763183594,"longitude":-147.34800720214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59TX","iata":"","local":"59TX","name":"Benjamin Franklin Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Godley","elevation_ft":990,"latitude":32.487442,"longitude":-97.490208,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AL0","iata":"","local":"5AL0","name":"Marshall Medical Center North Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Guntersville","elevation_ft":1024,"latitude":34.365172,"longitude":-86.422975,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AL2","iata":"","local":"5AL2","name":"Midstream Fuel Service Seaplane Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Theodore","elevation_ft":0,"latitude":30.526599884,"longitude":-88.09889984130001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AL4","iata":"","local":"","name":"Blueberry Hill Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Dothan","elevation_ft":220,"latitude":31.121599,"longitude":-85.365403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AL5","iata":"","local":"5AL5","name":"Big River Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Muscle Shoals","elevation_ft":505,"latitude":34.69110107421875,"longitude":-87.65280151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AL6","iata":"","local":"5AL6","name":"Lake Martin Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Dadeville","elevation_ft":589,"latitude":32.818486,"longitude":-85.74151,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AL9","iata":"","local":"5AL9","name":"Athens-Limestone Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Athens","elevation_ft":693,"latitude":34.802816,"longitude":-86.980605,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AR1","iata":"","local":"5AR1","name":"Tillar Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Tillar","elevation_ft":150,"latitude":33.711943,"longitude":-91.46182,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3200,"width_ft":85,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AR2","iata":"","local":"5AR2","name":"Turrell Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Turrell","elevation_ft":226,"latitude":35.374658,"longitude":-90.198185,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AR5","iata":"","local":"5AR5","name":"Baptist Health Extended Care Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":540,"latitude":34.744495,"longitude":-92.38053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AL7","iata":"","local":"5AL7","name":"John H Hataway Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Kinston","elevation_ft":300,"latitude":31.25,"longitude":-86.166702,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AK8","iata":"","local":"5AK8","name":"Memory Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":420,"latitude":61.63140106201172,"longitude":-149.4320068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1000,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AR6","iata":"","local":"5AR6","name":"Southwest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":344,"latitude":34.65679931640625,"longitude":-92.40460205078124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AR7","iata":"","local":"5AR7","name":"Keller Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Weiner","elevation_ft":249,"latitude":35.68669891357422,"longitude":-90.7936019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AR8","iata":"","local":"","name":"Pine Prairie Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Ashdown","elevation_ft":321,"latitude":33.614549,"longitude":-94.132404,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2460,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AR9","iata":"","local":"5AR9","name":"Baxter County Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Mountain Home","elevation_ft":865,"latitude":36.34173,"longitude":-92.39892,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AZ0","iata":"","local":"5AZ0","name":"Lyon Aviation Rooftop Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1508,"latitude":33.625332,"longitude":-111.921611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AZ2","iata":"","local":"5AZ2","name":"Southern Command Police Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1085,"latitude":33.40689849853516,"longitude":-112.0719985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AZ4","iata":"","local":"5AZ4","name":"University Medical Center Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2468,"latitude":32.24193,"longitude":-110.946271,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AZ5","iata":"","local":"5AZ5","name":"Saguaro Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":3102,"latitude":32.174019,"longitude":-110.73575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AZ8","iata":"","local":"5AZ8","name":"Sedona Medical Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Sedona","elevation_ft":4456,"latitude":34.85559844970703,"longitude":-111.822998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5AZ9","iata":"","local":"5AZ9","name":"Regeneration Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Fort Thomas","elevation_ft":2750,"latitude":33.032898,"longitude":-109.986505,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AZ3","iata":"","local":"5AZ3","name":"Pegasus Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Queen Creek","elevation_ft":1450,"latitude":33.208666,"longitude":-111.617221,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5124,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CA0","iata":"","local":"5CA0","name":"Dreamworks Helistop Glendale Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":513,"latitude":34.15829849243164,"longitude":-118.28600311279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CA1","iata":"","local":"5CA1","name":"Chevron - San Ardo Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Ardo","elevation_ft":449,"latitude":35.956367,"longitude":-120.869629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CA2","iata":"","local":"5CA2","name":"Ord Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Barstow","elevation_ft":6120,"latitude":34.6753762358,"longitude":-116.815349758,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CA3","iata":"","local":"5CA3","name":"San Rafel Private Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Rafel","elevation_ft":5,"latitude":37.94660186767578,"longitude":-122.48699951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":72,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CA6","iata":"","local":"5CA6","name":"San Joaquin Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Delano","elevation_ft":335,"latitude":35.791099548339844,"longitude":-119.2300033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":215,"width_ft":146,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CL2","iata":"","local":"5CL2","name":"St Louise Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Gilroy","elevation_ft":214,"latitude":37.0358009338,"longitude":-121.571998596,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CL4","iata":"","local":"5CL4","name":"Natividad Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Salinas","elevation_ft":70,"latitude":36.697493,"longitude":-121.634556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":74,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CL5","iata":"","local":"5CL5","name":"Kcin Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Irvine","elevation_ft":165,"latitude":33.685001373291016,"longitude":-117.8550033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CL1","iata":"","local":"5CL1","name":"Hart Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Margarita","elevation_ft":1380,"latitude":35.40470123,"longitude":-120.5250015,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":24,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CA4","iata":"","local":"5CA4","name":"Ludlow Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Barstow","elevation_ft":1700,"latitude":34.728705,"longitude":-116.158705,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2604,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CL6","iata":"","local":"5CL6","name":"Edward Roybal Federal Bldg Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":646,"latitude":34.052882,"longitude":-118.23923,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CN5","iata":"","local":"5CN5","name":"Palmaz Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Taylorsville","elevation_ft":3760,"latitude":40.036588,"longitude":-120.763475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CO2","iata":"","local":"5CO2","name":"McKee Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Loveland","elevation_ft":4872,"latitude":40.41227,"longitude":-105.05118,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CO3","iata":"","local":"5CO3","name":"Jim's Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":5093,"latitude":38.703611,"longitude":-108.063164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CO5","iata":"","local":"5CO5","name":"Black Hollow Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Carr","elevation_ft":5294,"latitude":40.673099517822266,"longitude":-104.91999816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CO6","iata":"","local":"","name":"Meyer Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Conifer","elevation_ft":8000,"latitude":39.550805,"longitude":-105.281392,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3430,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CL7","iata":"","local":"5CL7","name":"Gene Wash Reservoir Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Parker Dam","elevation_ft":860,"latitude":34.308101654052734,"longitude":-114.18699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CL9","iata":"","local":"5CL9","name":"Table Mountain Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Auberry","elevation_ft":1280,"latitude":37.1413,"longitude":-119.508003,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CN4","iata":"","local":"5CN4","name":"Vosburgh Airfield","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"New Cuyama","elevation_ft":2349,"latitude":34.9225,"longitude":-119.57118,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CO1","iata":"","local":"5CO1","name":"Shipman Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6200,"latitude":38.835136,"longitude":-107.858394,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CO4","iata":"","local":"5CO4","name":"Spickard Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Byers","elevation_ft":5320,"latitude":39.699158,"longitude":-104.256443,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":45,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CO0","iata":"","local":"5CO0","name":"Windy Plains Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cheyenne Wells","elevation_ft":4184,"latitude":38.829496,"longitude":-102.30064,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2880,"width_ft":40,"surface":"A"},{"id":"10/28","length_ft":2485,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CO9","iata":"","local":"5CO9","name":"Wray Community District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Wray","elevation_ft":3640,"latitude":40.076401,"longitude":-102.235504,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CT1","iata":"","local":"5CT1","name":"Rondo Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Nangatuck","elevation_ft":530,"latitude":41.508399963378906,"longitude":-73.03730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CT3","iata":"","local":"5CT3","name":"South Glastonbury Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"South Glastonbury","elevation_ft":550,"latitude":41.64450073242188,"longitude":-72.57230377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CT4","iata":"","local":"5CT4","name":"Norwalk Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Norwalk","elevation_ft":156,"latitude":41.112105,"longitude":-73.422541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5CT8","iata":"","local":"","name":"Canal Street Heliport","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"Stamford","elevation_ft":50,"latitude":41.042684,"longitude":-73.530836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FA2","iata":"","local":"5FA2","name":"Orlando Health Reunion Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Davenport","elevation_ft":124,"latitude":28.262575,"longitude":-81.609728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FA6","iata":"","local":"5FA6","name":"FPL PGA Office Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palm Beach Gardens","elevation_ft":30,"latitude":26.843715,"longitude":-80.100122,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FD1","iata":"","local":"5FD1","name":"Ron Wood Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clarksville","elevation_ft":140,"latitude":30.431309,"longitude":-85.290026,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FA1","iata":"","local":"5FA1","name":"Flying Palomino Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fruitland Park","elevation_ft":85,"latitude":28.87800025939941,"longitude":-81.94090270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FD0","iata":"","local":"5FD0","name":"Manatee Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Old Town","elevation_ft":17,"latitude":29.492700576782227,"longitude":-82.99120330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CO8","iata":"","local":"5CO8","name":"Pleasant Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Oak Creek","elevation_ft":7120,"latitude":40.341400146484375,"longitude":-106.8489990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FD2","iata":"","local":"5FD2","name":"Rybovich Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":10,"latitude":26.74920082092285,"longitude":-80.04920196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FD4","iata":"","local":"5FD4","name":"Flagler County Emergency Opns Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bunnell","elevation_ft":31,"latitude":29.471139,"longitude":-81.244306,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FD5","iata":"","local":"","name":"Able Airpark","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Blountstown","elevation_ft":100,"latitude":30.595501,"longitude":-84.9813,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FD6","iata":"","local":"5FD6","name":"Boca Grande Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Boca Grande","elevation_ft":10,"latitude":26.742300033569336,"longitude":-82.25869750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FD8","iata":"","local":"5FD8","name":"Bokeelia Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Cape Coral","elevation_ft":10,"latitude":26.670576,"longitude":-82.134583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":118,"width_ft":118,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FD9","iata":"","local":"5FD9","name":"St James Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Cape Coral","elevation_ft":6,"latitude":26.511499404907227,"longitude":-82.0884017944336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FL2","iata":"","local":"5FL2","name":"HCA Florida Blake Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bradenton","elevation_ft":17,"latitude":27.482162,"longitude":-82.622466,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FL3","iata":"","local":"5FL3","name":"HCA Florida Brandon Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Brandon","elevation_ft":64,"latitude":27.932905,"longitude":-82.288778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FL5","iata":"","local":"5FL5","name":"Palm Beach County Judicial Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":297,"latitude":26.715467,"longitude":-80.054281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FL0","iata":"","local":"5FL0","name":"Dusty Airpatch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Dade City","elevation_ft":120,"latitude":28.41309928894043,"longitude":-82.22339630126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1534,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FD7","iata":"","local":"5FD7","name":"Chinsegut Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Brooksville","elevation_ft":80,"latitude":28.6117000579834,"longitude":-82.3678970336914,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":15,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FL6","iata":"","local":"","name":"Flat Creek Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Chattahoochee","elevation_ft":295,"latitude":30.604401,"longitude":-84.790703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1875,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5FL9","iata":"","local":"","name":"Cedar Lane Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Defuniak Springs","elevation_ft":270,"latitude":30.7363,"longitude":-86.212997,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":3012,"width_ft":60,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5GA1","iata":"","local":"","name":"County Police Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Lawrenceville","elevation_ft":1070,"latitude":33.987301,"longitude":-83.973801,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5GA9","iata":"","local":"5GA9","name":"Skypad Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":982,"latitude":33.799301147461,"longitude":-84.387397766113,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1450,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5GA2","iata":"","local":"5GA2","name":"Lyons Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Whitesburg","elevation_ft":1080,"latitude":33.572922,"longitude":-84.910713,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FL8","iata":"","local":"5FL8","name":"Chipola Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Greenwood","elevation_ft":125,"latitude":30.88820075988769,"longitude":-85.1677017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2850,"width_ft":350,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5GA6","iata":"","local":"5GA6","name":"Roney Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lilly","elevation_ft":352,"latitude":32.149898529052734,"longitude":-83.86129760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5GA5","iata":"","local":"5GA5","name":"Pinebrook Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Griffin","elevation_ft":820,"latitude":33.25979995727539,"longitude":-84.34940338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5GA4","iata":"","local":"5GA4","name":"Air Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Woodstock","elevation_ft":918,"latitude":34.105899810791016,"longitude":-84.44850158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5GA0","iata":"","local":"5GA0","name":"Gable Branch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Senoia","elevation_ft":840,"latitude":33.2276,"longitude":-84.544403,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5GA3","iata":"","local":"5GA3","name":"Eagles Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Williamson","elevation_ft":980,"latitude":33.160099029541016,"longitude":-84.36519622802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IA0","iata":"","local":"5IA0","name":"Skiff Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Newton","elevation_ft":947,"latitude":41.704200744628906,"longitude":-93.05159759521484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IA2","iata":"","local":"5IA2","name":"Mercy One Medical Center Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Sioux City","elevation_ft":1170,"latitude":42.497226,"longitude":-96.401478,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IA8","iata":"","local":"5IA8","name":"Sanford Merrill Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Rock Rapids","elevation_ft":1360,"latitude":43.4239006042,"longitude":-96.1719970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5II4","iata":"","local":"5II4","name":"Hopkins Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Mooresville","elevation_ft":825,"latitude":39.589500427246094,"longitude":-86.3905029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5II5","iata":"","local":"","name":"Mumford Farms Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"New Ross","elevation_ft":870,"latitude":39.9478,"longitude":-86.732803,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5II7","iata":"","local":"5II7","name":"Fort Wayne-District Operations Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":785,"latitude":41.06439971923828,"longitude":-85.16000366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL0","iata":"","local":"5IL0","name":"Herrin Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Herrin","elevation_ft":444,"latitude":37.80189895629883,"longitude":-89.0261001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL1","iata":"","local":"5IL1","name":"Olson Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pecatonica","elevation_ft":750,"latitude":42.346099853515625,"longitude":-89.2864990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL3","iata":"","local":"5IL3","name":"Galesburg Cottage Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Galesburg","elevation_ft":850,"latitude":40.95560073852539,"longitude":-90.38249969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5II9","iata":"","local":"5II9","name":"Aero Plaines Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Youngstown","elevation_ft":570,"latitude":39.35279846191406,"longitude":-87.37339782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2450,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IL2","iata":"","local":"5IL2","name":"Panther Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pinckneyville","elevation_ft":432,"latitude":38.063286,"longitude":-89.387441,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IL4","iata":"","local":"","name":"Sears Merchandise Group Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Hoffman Estates","elevation_ft":843,"latitude":42.076502,"longitude":-88.217082,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL6","iata":"","local":"5IL6","name":"Heartland Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Marion","elevation_ft":451,"latitude":37.742645,"longitude":-88.992469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL7","iata":"","local":"5IL7","name":"Howard Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Seneca","elevation_ft":570,"latitude":41.291900634765625,"longitude":-88.58920288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL8","iata":"","local":"","name":"Tollway Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Downers Grove","elevation_ft":736,"latitude":41.8051,"longitude":-88.052478,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1935,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IL9","iata":"","local":"5IL9","name":"Salem Township Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Salem","elevation_ft":570,"latitude":38.642323,"longitude":-88.94889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IN1","iata":"","local":"5IN1","name":"Clarian West Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Avon","elevation_ft":832,"latitude":39.76219940185547,"longitude":-86.39559936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IN2","iata":"","local":"","name":"AEC Heliport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":850,"latitude":39.862202,"longitude":-85.984703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IN7","iata":"","local":"57P","name":"Clear Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Clear Lake","elevation_ft":1037,"latitude":41.735599517822,"longitude":-84.837196350098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IN8","iata":"","local":"I58","name":"Crooked Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Angola","elevation_ft":989,"latitude":41.672401,"longitude":-85.041395,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IN0","iata":"","local":"5IN0","name":"Yoder Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"LaGrange","elevation_ft":870,"latitude":41.685605,"longitude":-85.373783,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IN9","iata":"","local":"5IN9","name":"Stangland Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Wolflake","elevation_ft":924,"latitude":41.315804,"longitude":-85.464878,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IS1","iata":"","local":"5IS1","name":"Memorial Hosp Of Carbondale Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Carbondale","elevation_ft":500,"latitude":37.7270011902,"longitude":-89.2211990356,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IS2","iata":"","local":"5IS2","name":"Boyd Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Carrollton","elevation_ft":600,"latitude":39.295958,"longitude":-90.414137,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IS6","iata":"","local":"5IS6","name":"Webster Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Toulon","elevation_ft":750,"latitude":41.10559844970703,"longitude":-89.83899688720703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IS8","iata":"","local":"5IS8","name":"Northwestern Medicine McHenry Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"McHenry","elevation_ft":815,"latitude":42.317015,"longitude":-88.280017,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"},{"id":"H2","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H3","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5JY9","iata":"","local":"5JY9","name":"Air Evac 116 Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Inez","elevation_ft":640,"latitude":37.852777,"longitude":-82.546111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5KS2","iata":"","local":"","name":"Fortmeyer Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Goodland","elevation_ft":3650,"latitude":39.339609,"longitude":-101.660614,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5KS4","iata":"","local":"","name":"Hall Farms Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Kanorado","elevation_ft":3908,"latitude":39.230001,"longitude":-101.983002,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5KS6","iata":"","local":"","name":"Mollenkamp Field","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Leoti","elevation_ft":3295,"latitude":38.766701,"longitude":-101.257004,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1305,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5KS7","iata":"","local":"5KS7","name":"Anthony Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Anthony","elevation_ft":1340,"latitude":37.15560150146485,"longitude":-98.01730346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5IS9","iata":"","local":"5IS9","name":"Mc Pherson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Carthage","elevation_ft":640,"latitude":40.3306007385,"longitude":-91.0501022339,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IS4","iata":"","local":"5IS4","name":"Corman Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lake City","elevation_ft":710,"latitude":39.7661018371582,"longitude":-88.77950286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1990,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5KY1","iata":"","local":"5KY1","name":"Flaget Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Bardstown","elevation_ft":722,"latitude":37.861082,"longitude":-85.523157,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5KY3","iata":"","local":"","name":"West Kentucky Airpark","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Paducah","elevation_ft":338,"latitude":36.967499,"longitude":-88.5653,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5KY9","iata":"","local":"","name":"Nolin Aero Salvage Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Bee Spring","elevation_ft":700,"latitude":37.3325,"longitude":-86.254204,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LA3","iata":"","local":"5LA3","name":"Kerr McGee Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Morgan City","elevation_ft":6,"latitude":29.687757,"longitude":-91.193933,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H3","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H4","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LA5","iata":"","local":"5LA5","name":"RTI/Data-Com Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Morgan City","elevation_ft":50,"latitude":29.7005,"longitude":-91.194298,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LA7","iata":"","local":"5LA7","name":"Air Logistics Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":26,"latitude":30.054285,"longitude":-91.883738,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":20,"surface":"C"},{"id":"H3","length_ft":35,"width_ft":20,"surface":"C"},{"id":"H4","length_ft":35,"width_ft":20,"surface":"C"},{"id":"H5","length_ft":35,"width_ft":20,"surface":"C"},{"id":"H6","length_ft":35,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LA8","iata":"","local":"5LA8","name":"Louisiana State Police Troop D Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":15,"latitude":30.227132,"longitude":-93.162577,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LA9","iata":"","local":"","name":"P.H.I. Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":10,"latitude":29.943001,"longitude":-90.185097,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LA1","iata":"","local":"5LA1","name":"Kent's Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Moreauville","elevation_ft":55,"latitude":31.028004,"longitude":-91.980589,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5KY4","iata":"","local":"5KY4","name":"Standard Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Elkton","elevation_ft":665,"latitude":36.801828,"longitude":-87.176428,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2930,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL9","iata":"","local":"5LL9","name":"Morrison Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Morrison","elevation_ft":634,"latitude":41.80937,"longitude":-89.957368,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LS0","iata":"","local":"5LS0","name":"Shell Chemical West Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Gonzales","elevation_ft":20,"latitude":30.182222,"longitude":-90.996111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LS6","iata":"","local":"5LS6","name":"Arkla Flyers Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Mer Rouge","elevation_ft":90,"latitude":32.765174,"longitude":-91.796136,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MA0","iata":"","local":"5MA0","name":"Federal Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Waltham","elevation_ft":220,"latitude":42.39649963378906,"longitude":-71.21620178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MA2","iata":"","local":"5MA2","name":"Fuller House Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"East Falmouth","elevation_ft":30,"latitude":41.553199768066406,"longitude":-70.5509033203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5LL5","iata":"","local":"5LL5","name":"Gordon Brown Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Trivoli","elevation_ft":745,"latitude":40.70140075683594,"longitude":-89.88400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL0","iata":"","local":"5LL0","name":"Beckerman Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Carmel","elevation_ft":424,"latitude":38.40840148925781,"longitude":-87.8375015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1940,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL3","iata":"","local":"5LL3","name":"Mayhall Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Murdock","elevation_ft":643,"latitude":39.76950073242188,"longitude":-88.09529876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2350,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL1","iata":"","local":"5LL1","name":"Hilvety Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Moweaqua","elevation_ft":674,"latitude":39.650001525878906,"longitude":-88.97509765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1780,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":2102,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LS9","iata":"","local":"5LS9","name":"Ammons Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Zwolle","elevation_ft":210,"latitude":31.53160095214844,"longitude":-93.70770263671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3093,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MA4","iata":"","local":"5MA4","name":"Double A Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Carver","elevation_ft":90,"latitude":41.92449951171875,"longitude":-70.76969909667969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MA5","iata":"","local":"5MA5","name":"Southend Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Millis","elevation_ft":190,"latitude":42.19010162353516,"longitude":-71.356201171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MA6","iata":"","local":"5MA6","name":"St. Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"New Bedford","elevation_ft":123,"latitude":41.626568,"longitude":-70.93863,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MA7","iata":"","local":"5MA7","name":"Cochituate Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Natick","elevation_ft":210,"latitude":42.30839920043945,"longitude":-71.38169860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MA8","iata":"","local":"5MA8","name":"South Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Southwick","elevation_ft":225,"latitude":42.00870132446289,"longitude":-72.76260375976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":4000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MD3","iata":"","local":"","name":"Sinai Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":410,"latitude":39.3521,"longitude":-76.661598,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MD4","iata":"","local":"","name":"AAI Heliport","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Cockeysville","elevation_ft":350,"latitude":39.469601,"longitude":-76.640503,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MD9","iata":"","local":"5MD9","name":"Suburban Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Bethesda","elevation_ft":382,"latitude":38.997485,"longitude":-77.109918,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5ME2","iata":"","local":"5ME2","name":"Frogg Island Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Gray","elevation_ft":290,"latitude":43.870833,"longitude":-70.424722,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":4003,"width_ft":100,"surface":"W"},{"id":"14W/32W","length_ft":4000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5ME9","iata":"","local":"5ME9","name":"Maine General Medical Center-Augusta Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Augusta","elevation_ft":268,"latitude":44.361814,"longitude":-69.779844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI0","iata":"","local":"5MI0","name":"Detroit Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":630,"latitude":42.35699844360352,"longitude":-83.05770111083984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI3","iata":"","local":"","name":"Cridler Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Lowell","elevation_ft":866,"latitude":43.051102,"longitude":-85.419998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI4","iata":"","local":"","name":"Anderson Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Howard City","elevation_ft":902,"latitude":43.428398,"longitude":-85.455694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI5","iata":"","local":"5MI5","name":"Borgess Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":849,"latitude":42.30730056762695,"longitude":-85.55809783935547,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":95,"width_ft":95,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI6","iata":"","local":"5MI6","name":"Tv2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Southfield","elevation_ft":650,"latitude":42.46060180664063,"longitude":-83.21720123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI8","iata":"","local":"","name":"Lakeside Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Holt","elevation_ft":900,"latitude":42.6717,"longitude":-84.488297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MI9","iata":"","local":"5MI9","name":"Mc Phail Corporation Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Rochester","elevation_ft":770,"latitude":42.6603012085,"longitude":-83.1555023193,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MN1","iata":"","local":"","name":"Budde Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Mankato","elevation_ft":975,"latitude":44.2005,"longitude":-94.113297,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3850,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MN3","iata":"","local":"5MN3","name":"Mesabi Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Hibbing","elevation_ft":1359,"latitude":47.4099006652832,"longitude":-92.92880249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MN6","iata":"","local":"5MN6","name":"Northbound Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Grand Papids","elevation_ft":1273,"latitude":47.15639877319336,"longitude":-93.5239028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MN2","iata":"","local":"5MN2","name":"Hoiland Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bagley","elevation_ft":1535,"latitude":47.39580154418945,"longitude":-95.36750030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MI7","iata":"","local":"5MI7","name":"Williams Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Jackson","elevation_ft":960,"latitude":42.36109924316406,"longitude":-84.42479705810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MI1","iata":"","local":"5MI1","name":"Wilds Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Cedar Springs","elevation_ft":885,"latitude":43.25139999389648,"longitude":-85.54280090332031,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MN8","iata":"","local":"","name":"Rick Mathias Private Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Dumont","elevation_ft":1050,"latitude":45.719398,"longitude":-96.310302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MO0","iata":"","local":"5MO0","name":"Cox Medical Center Branson Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Branson","elevation_ft":783,"latitude":36.6504,"longitude":-93.2226,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MO5","iata":"","local":"5MO5","name":"St Lukes Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":980,"latitude":39.05080032348633,"longitude":-94.5894012451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":52,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MO7","iata":"","local":"","name":"St. John's Regional Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Joplin","elevation_ft":1020,"latitude":37.061501,"longitude":-94.531303,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2315,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MS1","iata":"","local":"5MS1","name":"Rollang Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Rolling Fork","elevation_ft":106,"latitude":32.953543,"longitude":-90.845144,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3670,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MS6","iata":"","local":"5MS6","name":"Dee's Strip","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Brandon","elevation_ft":329,"latitude":32.42300033569336,"longitude":-90.00769805908203,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MS7","iata":"","local":"5MS7","name":"Baptist Memorial Hospital Union County Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"New Albany","elevation_ft":415,"latitude":34.4975,"longitude":-89.026389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MS8","iata":"","local":"5MS8","name":"Ball Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Okolona","elevation_ft":298,"latitude":33.875,"longitude":-88.723333,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5MT5","iata":"","local":"5MT5","name":"Unrau Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Wolf Point","elevation_ft":2900,"latitude":48.448504,"longitude":-105.830899,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2245,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MO6","iata":"","local":"5MO6","name":"Vansickle-Davis Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hurdland","elevation_ft":882,"latitude":40.12795,"longitude":-92.291125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MS3","iata":"","local":"5MS3","name":"Porter Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Columbia","elevation_ft":158,"latitude":31.174999237060547,"longitude":-89.8031005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NC0","iata":"","local":"5NC0","name":"Carolina Kidney Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Goldsboro","elevation_ft":140,"latitude":35.40169906616211,"longitude":-77.9480972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC2","iata":"","local":"","name":"Lathan Strip","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Monroe","elevation_ft":575,"latitude":34.876301,"longitude":-80.619202,"has_tower":false,"has_beacon":false,"runways":[{"id":"02L/20R","length_ft":2424,"width_ft":36,"surface":"A"},{"id":"02R/20L","length_ft":1000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC4","iata":"","local":"5NC4","name":"Murphy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Murphy","elevation_ft":1620,"latitude":35.07310104370117,"longitude":-83.96690368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC6","iata":"","local":"5NC6","name":"Tarboro-Edgecombe County Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Tarboro","elevation_ft":49,"latitude":35.936500549316406,"longitude":-77.55000305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC7","iata":"","local":"5NC7","name":"Nc Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Winston-Salem","elevation_ft":870,"latitude":36.08990097045898,"longitude":-80.26699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC8","iata":"","local":"5NC8","name":"Unifi Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Yadkinville","elevation_ft":990,"latitude":36.13650131225586,"longitude":-80.64649963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC9","iata":"","local":"5NC9","name":"Sprint/Carolina Telephone Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":143,"latitude":35.05270004272461,"longitude":-78.89089965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NC5","iata":"","local":"5NC5","name":"The Duchy Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Haw River","elevation_ft":650,"latitude":35.982329,"longitude":-79.274125,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3500,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NA0","iata":"","local":"5NA0","name":"Semchenko Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Max","elevation_ft":2065,"latitude":47.77360153198242,"longitude":-101.27899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5ND0","iata":"","local":"5ND0","name":"Stiehl Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Buford","elevation_ft":2277,"latitude":48.07640075683594,"longitude":-104.03199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1400,"width_ft":50,"surface":"T"},{"id":"N/S","length_ft":1600,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MU5","iata":"","local":"5MU5","name":"Gjerde International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Drexel","elevation_ft":905,"latitude":38.508979,"longitude":-94.484349,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NE8","iata":"","local":"5NE8","name":"Saint Mary's Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Nebraska City","elevation_ft":1081,"latitude":40.656272,"longitude":-95.863608,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NJ0","iata":"","local":"5NJ0","name":"Fiddlers Elbow Country Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bedminster","elevation_ft":100,"latitude":40.6401,"longitude":-74.72196,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NJ3","iata":"","local":"5NJ3","name":"Great Gorge Country Club Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Vernon","elevation_ft":520,"latitude":41.1912,"longitude":-74.532402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NJ4","iata":"","local":"5NJ4","name":"Trenton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Trenton","elevation_ft":10,"latitude":40.215238,"longitude":-74.766153,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":138,"width_ft":138,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NJ5","iata":"","local":"5NJ5","name":"Atsion Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Trenton","elevation_ft":60,"latitude":39.74319839477539,"longitude":-74.72540283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NJ7","iata":"","local":"5NJ7","name":"Warren Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Phillipsburg","elevation_ft":380,"latitude":40.702598571777344,"longitude":-75.1780014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NJ9","iata":"","local":"5NJ9","name":"West Jersey Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Glendale/Voorhees","elevation_ft":124,"latitude":39.86289978027344,"longitude":-74.96019744873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":88,"width_ft":88,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5ND9","iata":"","local":"5ND9","name":"Deck Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hillsboro","elevation_ft":916,"latitude":47.48469924926758,"longitude":-97.07479858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5ND3","iata":"","local":"5ND3","name":"Craig Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bathgate","elevation_ft":800,"latitude":48.855499267578125,"longitude":-97.3219985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":40,"surface":"D"},{"id":"18/36","length_ft":1600,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NE4","iata":"","local":"5NE4","name":"Snyder Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Sutherland","elevation_ft":3330,"latitude":41.57220077514648,"longitude":-101.1719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NE2","iata":"","local":"5NE2","name":"Eickhoff Strip","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Shubert","elevation_ft":1000,"latitude":40.19580078125,"longitude":-95.62940216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NE3","iata":"","local":"5NE3","name":"Diamond Bar Jones Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Stapleton","elevation_ft":2900,"latitude":41.488296,"longitude":-100.487523,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NK2","iata":"","local":"5NK2","name":"Alexander's East Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Westhampton Beach","elevation_ft":5,"latitude":40.80139923095703,"longitude":-72.6624984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":83,"width_ft":73,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NK3","iata":"","local":"5NK3","name":"Westhampton Beach Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Westhampton Beach","elevation_ft":5,"latitude":40.80229949951172,"longitude":-72.66290283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":84,"width_ft":78,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NK4","iata":"","local":"5NK4","name":"Olean General Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Olean","elevation_ft":1426,"latitude":42.09170150756836,"longitude":-78.42780303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NK5","iata":"","local":"","name":"Kingdom Field","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Oswego","elevation_ft":380,"latitude":43.408699,"longitude":-76.441299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NK7","iata":"","local":"5NK7","name":"Hammersley Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Pawling","elevation_ft":940,"latitude":41.59450149536133,"longitude":-73.55599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NK8","iata":"","local":"5NK8","name":"South Quaker Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Pawling","elevation_ft":700,"latitude":41.52690124511719,"longitude":-73.58059692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NY3","iata":"","local":"","name":"Keech Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Etna","elevation_ft":1070,"latitude":42.492902,"longitude":-76.386901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH0","iata":"","local":"","name":"Alge Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Arlington","elevation_ft":857,"latitude":40.9048,"longitude":-83.644697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5NY1","iata":"","local":"5NY1","name":"Tomahawk Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Meridale","elevation_ft":2380,"latitude":42.39979934692383,"longitude":-74.90630340576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NY4","iata":"","local":"5NY4","name":"Stanwix Heights Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Rome","elevation_ft":610,"latitude":43.15760040283203,"longitude":-75.43070220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NK1","iata":"","local":"5NK1","name":"Toggenburg Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Newark","elevation_ft":435,"latitude":43.111752,"longitude":-77.052231,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NK9","iata":"","local":"5NK9","name":"Treichler Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Wales","elevation_ft":1140,"latitude":42.76169967651367,"longitude":-78.49610137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OH1","iata":"","local":"5OH1","name":"Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Ashland","elevation_ft":1120,"latitude":40.85639953613281,"longitude":-82.31069946289062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH2","iata":"","local":"5OH2","name":"Odot District 03 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Ashland","elevation_ft":1012,"latitude":40.87670135498047,"longitude":-82.29540252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH3","iata":"","local":"5OH3","name":"Mary Rutan Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Bellefontaine","elevation_ft":1345,"latitude":40.37730026245117,"longitude":-83.75409698486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH5","iata":"","local":"5OH5","name":"Meigs Mine 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Albany","elevation_ft":620,"latitude":39.05559921264648,"longitude":-82.24150085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH6","iata":"","local":"","name":"Johnsons Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Avon","elevation_ft":700,"latitude":41.431998,"longitude":-81.974899,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH7","iata":"","local":"","name":"Keller Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Avon","elevation_ft":692,"latitude":41.446702,"longitude":-82.007103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OH8","iata":"","local":"5OH8","name":"Joseph Skilken & Co Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":830,"latitude":39.9552993774,"longitude":-82.99710083010001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OK1","iata":"","local":"5OK1","name":"Claremore Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Claremore","elevation_ft":620,"latitude":36.323322,"longitude":-95.605125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OI8","iata":"","local":"5OI8","name":"McKnight Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Johnstown","elevation_ft":1172,"latitude":40.19368,"longitude":-82.65667,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OK0","iata":"","local":"5OK0","name":"Kits Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hydro","elevation_ft":1492,"latitude":35.54135,"longitude":-98.59455,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1050,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OI5","iata":"","local":"5OI5","name":"Hamrick Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Willshire","elevation_ft":810,"latitude":40.69340133666992,"longitude":-84.78050231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OK2","iata":"","local":"5OK2","name":"Christopher M. Rippee Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Non","elevation_ft":820,"latitude":34.776667,"longitude":-96.245278,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OK5","iata":"","local":"5OK5","name":"Integris Clinton Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Clinton","elevation_ft":1615,"latitude":35.5250015259,"longitude":-98.9919967651,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OK7","iata":"","local":"5OK7","name":"Jernigan Drilling Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1323,"latitude":35.46670150756836,"longitude":-97.71700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OK8","iata":"","local":"","name":"Alford A. Bratcher Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Marlow","elevation_ft":1100,"latitude":34.675098,"longitude":-97.855904,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1950,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OK9","iata":"","local":"","name":"Night Hawk Airpatch Ultralightport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Inola","elevation_ft":670,"latitude":36.189201,"longitude":-95.540298,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OR1","iata":"","local":"5OR1","name":"Helitradewinds Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Molalla","elevation_ft":360,"latitude":45.14120101928711,"longitude":-122.62100219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OR6","iata":"","local":"5OR6","name":"Holy Rosary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Ontario","elevation_ft":2155,"latitude":44.0256114696,"longitude":-116.975815594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5OR4","iata":"","local":"5OR4","name":"Flying T Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sprague River","elevation_ft":4340,"latitude":42.434693,"longitude":-121.350861,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OR3","iata":"","local":"5OR3","name":"Siletz Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Siletz","elevation_ft":100,"latitude":44.73040008544922,"longitude":-123.91500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OR0","iata":"","local":"5OR0","name":"Backachers Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Selma","elevation_ft":1460,"latitude":42.285099029541016,"longitude":-123.53299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OL5","iata":"","local":"5OL5","name":"Morning Yodle Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lexington","elevation_ft":1128,"latitude":35.001975,"longitude":-97.189844,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1022,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OK4","iata":"","local":"5OK4","name":"Pacer Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Washington","elevation_ft":1140,"latitude":35.113112,"longitude":-97.450647,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2645,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OK3","iata":"","local":"5OK3","name":"Stearmans Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Vinita","elevation_ft":702,"latitude":36.488399505615234,"longitude":-95.1438980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OR7","iata":"","local":"5OR7","name":"Santiam Memorial Hospital Helistop","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Stayton","elevation_ft":515,"latitude":44.8047981262207,"longitude":-122.78500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PA4","iata":"","local":"","name":"Black Swan Farm Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"West Chester","elevation_ft":273,"latitude":39.966801,"longitude":-75.649695,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1378,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PA5","iata":"","local":"5PA5","name":"Monongahela Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Monongahela","elevation_ft":1114,"latitude":40.18230056762695,"longitude":-79.91000366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PA7","iata":"","local":"5PA7","name":"Indian Sleep Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Unionville","elevation_ft":270,"latitude":39.924800872802734,"longitude":-75.69609832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PN0","iata":"","local":"5PN0","name":"Lamtec Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mount Bethel","elevation_ft":385,"latitude":40.915045,"longitude":-75.088806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PN2","iata":"","local":"5PN2","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Towanda","elevation_ft":800,"latitude":41.785301208496094,"longitude":-76.44860076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PA1","iata":"","local":"5PA1","name":"Broadt Personal Use Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bloomsburg","elevation_ft":920,"latitude":40.997877,"longitude":-76.384184,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PA8","iata":"","local":"45PN","name":"Chambers Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tunkhannock","elevation_ft":1021,"latitude":41.554,"longitude":-76.054583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PA6","iata":"","local":"5PA6","name":"Shield Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Warren","elevation_ft":1240,"latitude":41.931528,"longitude":-79.130144,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OR8","iata":"","local":"5OR8","name":"Hatch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Stayton","elevation_ft":380,"latitude":44.77320098876953,"longitude":-122.8499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OR9","iata":"","local":"5OR9","name":"Lone Oaks Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Stayton","elevation_ft":630,"latitude":44.776798248291016,"longitude":-122.76000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PN3","iata":"","local":"5PN3","name":"Tyrone Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Tyrone","elevation_ft":1050,"latitude":40.66809844970703,"longitude":-78.25060272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PN4","iata":"","local":"5PN4","name":"Mahon Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hatboro","elevation_ft":235,"latitude":40.15439987182617,"longitude":-75.07530212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PN6","iata":"","local":"5PN6","name":"Lewistown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lewistown","elevation_ft":599,"latitude":40.617801666259766,"longitude":-77.56749725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PN9","iata":"","local":"5PN9","name":"UPMC Pinnacle Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":589,"latitude":40.257701,"longitude":-76.881015,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PS1","iata":"","local":"5PS1","name":"Lancaster General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":406,"latitude":40.047778,"longitude":-76.30352,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":47,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PS2","iata":"","local":"5PS2","name":"Paoli Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Paoli","elevation_ft":474,"latitude":40.04399871826172,"longitude":-75.4999008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PS3","iata":"","local":"5PS3","name":"St Francis Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":947,"latitude":40.46649932861328,"longitude":-79.95279693603516,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PS6","iata":"","local":"5PS6","name":"Ranch Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Slatington","elevation_ft":600,"latitude":40.72579956054688,"longitude":-75.57610321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5PS7","iata":"","local":"5PS7","name":"Evangelical Community Hospital East Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lewisburg","elevation_ft":495,"latitude":40.97930145263672,"longitude":-76.88580322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5SC5","iata":"","local":"5SC5","name":"Loris Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Loris","elevation_ft":91,"latitude":34.05889892578125,"longitude":-78.89830017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TA7","iata":"","local":"","name":"Kami-Kazi Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Santa Fe","elevation_ft":25,"latitude":29.420799,"longitude":-95.159103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TA0","iata":"","local":"5TA0","name":"Hamilton Aircraft, Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seminole","elevation_ft":3520,"latitude":32.73199844360352,"longitude":-102.94400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TE4","iata":"","local":"5TE4","name":"Perkins Prothro Cimarron Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrick","elevation_ft":3995,"latitude":36.508399963378906,"longitude":-102.39199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4300,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TE1","iata":"","local":"5TE1","name":"Rawls Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marfa","elevation_ft":4520,"latitude":29.65019989013672,"longitude":-103.9499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":75,"surface":"D"},{"id":"08/26","length_ft":3722,"width_ft":75,"surface":"D"},{"id":"12/30","length_ft":2400,"width_ft":75,"surface":"D"},{"id":"17/35","length_ft":1600,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TE0","iata":"","local":"5TE0","name":"Comanche Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Pass","elevation_ft":730,"latitude":28.627301,"longitude":-100.161403,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5500,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TA1","iata":"","local":"5TA1","name":"Charping Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Temple","elevation_ft":683,"latitude":31.193500518798828,"longitude":-97.4072036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TA3","iata":"","local":"5TA3","name":"Pearson Ranch Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Yoakum","elevation_ft":350,"latitude":29.359567,"longitude":-97.144353,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TE2","iata":"","local":"5TE2","name":"Bleakley Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dripping Springs","elevation_ft":1384,"latitude":30.22520065307617,"longitude":-98.14199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2800,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TA5","iata":"","local":"5TA5","name":"Creasy Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Santa Fe","elevation_ft":23,"latitude":29.33609962463379,"longitude":-95.11519622802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TE5","iata":"","local":"5TE5","name":"Iron Mountain Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":4313,"latitude":30.266235,"longitude":-103.23349,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN0","iata":"","local":"","name":"TGP Station 79 Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Lobelville","elevation_ft":500,"latitude":35.778099,"longitude":-87.785302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN1","iata":"","local":"5TN1","name":"Baptist Memorial Hospital - Carrol County Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Mc Kenzie","elevation_ft":100,"latitude":36.137186,"longitude":-88.488534,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN2","iata":"","local":"5TN2","name":"Tgp Station 71 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Middleton","elevation_ft":440,"latitude":35.03340148925781,"longitude":-88.89309692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN3","iata":"","local":"5TN3","name":"Boondocks Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Pigeon Forge","elevation_ft":1500,"latitude":35.738399505615234,"longitude":-83.60659790039062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TE8","iata":"","local":"5TE8","name":"Willis N Clark Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Miami","elevation_ft":3086,"latitude":35.761199951171875,"longitude":-100.7519989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2100,"width_ft":150,"surface":"T"},{"id":"N/S","length_ft":4500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TN5","iata":"","local":"5TN5","name":"Tennessee Gas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Portland","elevation_ft":770,"latitude":36.61809921264648,"longitude":-86.55919647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1050,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN6","iata":"","local":"5TN6","name":"Hardin Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Savannah","elevation_ft":433,"latitude":35.22922,"longitude":-88.23069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN7","iata":"","local":"5TN7","name":"Tgp Station 856 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Savannah","elevation_ft":484,"latitude":35.15919876098633,"longitude":-88.22239685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TN8","iata":"","local":"5TN8","name":"Perry Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Linden","elevation_ft":740,"latitude":35.59510040283203,"longitude":-87.8561019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TE6","iata":"","local":"5TE6","name":"Keystone Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Angelo","elevation_ft":2023,"latitude":31.269167,"longitude":-100.460833,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TS7","iata":"","local":"","name":"R D Williams Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Garrison","elevation_ft":360,"latitude":31.7766,"longitude":-94.485497,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TX1","iata":"","local":"","name":"Harley White Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lamkin","elevation_ft":1120,"latitude":31.8613,"longitude":-98.259499,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TX3","iata":"","local":"5TX3","name":"Centerpoint Energy South Houston Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"South Houston","elevation_ft":40,"latitude":29.642247,"longitude":-95.211649,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":57,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TX5","iata":"","local":"","name":"PSF Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Terrell","elevation_ft":515,"latitude":32.868999,"longitude":-96.271599,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TX7","iata":"","local":"5TX7","name":"UT Health East Texas Tyler Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tyler","elevation_ft":550,"latitude":32.337792,"longitude":-95.290453,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TX9","iata":"","local":"","name":"Utopia on the River Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Utopia","elevation_ft":1320,"latitude":29.583599,"longitude":-99.526199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5TS3","iata":"","local":"5TS3","name":"Knapp Pecan Orchard Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dawson","elevation_ft":450,"latitude":31.974199295043945,"longitude":-96.67829895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TS2","iata":"","local":"5TS2","name":"Chan-C Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Coupland","elevation_ft":536,"latitude":30.478729,"longitude":-97.318847,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1500,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TS8","iata":"","local":"5TS8","name":"Bear Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":1360,"latitude":29.8085994720459,"longitude":-98.27249908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TS0","iata":"","local":"5TS0","name":"Diehl Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Arcadia","elevation_ft":26,"latitude":29.412500381469727,"longitude":-95.12239837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TN9","iata":"","local":"5TN9","name":"One Grand Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Cookeville","elevation_ft":1000,"latitude":36.11389923095703,"longitude":-85.59500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5VA0","iata":"","local":"5VA0","name":"South Boston Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"South Boston","elevation_ft":460,"latitude":36.71849822998047,"longitude":-78.90859985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA1","iata":"","local":"5VA1","name":"Alleghany Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Low Moor","elevation_ft":1136,"latitude":37.79180145263672,"longitude":-79.88259887695312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA2","iata":"","local":"5VA2","name":"Sullins Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Bristol","elevation_ft":1730,"latitude":36.61199951171875,"longitude":-82.1886978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA3","iata":"","local":"5VA3","name":"Stevens Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Lovingston","elevation_ft":750,"latitude":37.75680160522461,"longitude":-78.8958969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA4","iata":"","local":"","name":"Reston Hospital Center Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Herndon","elevation_ft":385,"latitude":38.962601,"longitude":-77.362503,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3966,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA7","iata":"","local":"5VA7","name":"Coeburn Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Coeburn","elevation_ft":2010,"latitude":36.95980072021485,"longitude":-82.47019958496094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA8","iata":"","local":"5VA8","name":"Dda Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Duffield","elevation_ft":1340,"latitude":36.71120071411133,"longitude":-82.80069732666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5VA9","iata":"","local":"","name":"Kilmarnock/Tolbert Field","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Kilmarnock","elevation_ft":7,"latitude":37.692896,"longitude":-76.317939,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5WA2","iata":"","local":"","name":"B & M Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Monroe","elevation_ft":370,"latitude":47.866501,"longitude":-121.901001,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1205,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5WA0","iata":"","local":"5WA0","name":"Sourdough Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tonasket","elevation_ft":2640,"latitude":48.596393,"longitude":-119.100423,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WA1","iata":"","local":"5WA1","name":"Dorman Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Mesa","elevation_ft":700,"latitude":46.521422,"longitude":-119.177189,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WA3","iata":"","local":"5WA3","name":"St Mary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Walla Walla","elevation_ft":939,"latitude":46.062198638916016,"longitude":-118.34300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":115,"width_ft":64,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5WA6","iata":"","local":"5WA6","name":"Foster Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Napavine","elevation_ft":550,"latitude":46.549800872802734,"longitude":-122.85099792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5WI7","iata":"","local":"5WI7","name":"Thedacare Medical Center Waupaca Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Waupaca","elevation_ft":804,"latitude":44.345463,"longitude":-89.076157,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5WI5","iata":"","local":"5WI5","name":"Haymeadow Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrill","elevation_ft":1500,"latitude":45.275001525878906,"longitude":-89.4917984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI2","iata":"","local":"5WI2","name":"Plainfield International Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Plainfield","elevation_ft":1110,"latitude":44.22249984741211,"longitude":-89.49539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1070,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI6","iata":"","local":"5WI6","name":"Independence Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Independence","elevation_ft":804,"latitude":44.367003,"longitude":-91.396101,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI1","iata":"","local":"5WI1","name":"Springbrook Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Springbrook","elevation_ft":1110,"latitude":45.902228,"longitude":-91.677159,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI3","iata":"","local":"5WI3","name":"Der Schwarzwald Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Waterloo","elevation_ft":925,"latitude":43.207801818847656,"longitude":-89.01709747314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WA5","iata":"","local":"32WA","name":"Ross Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Orondo","elevation_ft":920,"latitude":47.763199,"longitude":-120.152,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WA8","iata":"","local":"5WA8","name":"Hogan's Corner Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Hoquiam","elevation_ft":50,"latitude":47.04166,"longitude":-124.145744,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3700,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WA9","iata":"","local":"5WA9","name":"Brush Prairie Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Brush Prairie","elevation_ft":290,"latitude":45.723899841308594,"longitude":-122.54399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI9","iata":"","local":"","name":"Patz Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Pound","elevation_ft":860,"latitude":45.1297,"longitude":-88.164802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5WV5","iata":"","local":"5WV5","name":"St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Parkersburg","elevation_ft":600,"latitude":39.280119,"longitude":-81.552082,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5XA2","iata":"","local":"5XA2","name":"Flap-Air Helicopter Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Canadian","elevation_ft":2330,"latitude":35.929149,"longitude":-100.313705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5XS1","iata":"","local":"5XS1","name":"Christus Southeast Texas Saint Mary Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Arthur","elevation_ft":16,"latitude":29.90896,"longitude":-93.923545,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5XS2","iata":"","local":"5XS2","name":"Kimball Farm Service Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hereford","elevation_ft":3700,"latitude":35.03340148925781,"longitude":-102.1999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WN8","iata":"","local":"5WN8","name":"Knight Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wausau","elevation_ft":1475,"latitude":45.0323982239,"longitude":-89.401802063,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WN9","iata":"","local":"5WN9","name":"Ottman Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Maiden Rock","elevation_ft":1150,"latitude":44.59439849853516,"longitude":-92.2584991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WN2","iata":"","local":"5WN2","name":"Eberle Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Dane","elevation_ft":1050,"latitude":43.2682991027832,"longitude":-89.4843978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5XA9","iata":"","local":"5XA9","name":"Venable Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Aubrey","elevation_ft":638,"latitude":33.338784,"longitude":-96.997046,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3040,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5XA1","iata":"","local":"5XA1","name":"LZ Juliet Bravo Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Valley Mills","elevation_ft":1078,"latitude":31.630786,"longitude":-97.707572,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5XS3","iata":"","local":"5XS3","name":"Wilber Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Winnie","elevation_ft":11,"latitude":29.769699096679688,"longitude":-94.26129913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5XA0","iata":"","local":"5XA0","name":"Hunter's Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kinckerboker","elevation_ft":2050,"latitude":31.255762,"longitude":-100.647603,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60AK","iata":"","local":"60AK","name":"Carol's Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":328,"latitude":61.607662,"longitude":-149.279062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60CA","iata":"","local":"60CA","name":"Q Area Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Concord","elevation_ft":49,"latitude":38.044898986816406,"longitude":-122.00700378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60CN","iata":"","local":"60CN","name":"San Gorgonio Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Banning","elevation_ft":2596,"latitude":33.930759,"longitude":-116.942874,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60CO","iata":"","local":"","name":"Stevens Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Brighton","elevation_ft":5180,"latitude":39.9676,"longitude":-104.651873,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60FD","iata":"","local":"60FD","name":"Winter Haven Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Winter Haven","elevation_ft":175,"latitude":28.028803,"longitude":-81.725026,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60FL","iata":"","local":"60FL","name":"Jupiter Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jupiter","elevation_ft":15,"latitude":26.922671,"longitude":-80.097511,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60GA","iata":"","local":"60GA","name":"Egleston Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1024,"latitude":33.79439926147461,"longitude":-84.32029724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"5XS6","iata":"","local":"5XS6","name":"Old Reb Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mercedes","elevation_ft":60,"latitude":26.1754,"longitude":-97.875298,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60AR","iata":"","local":"60AR","name":"Southern View Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Viola","elevation_ft":927,"latitude":36.403505,"longitude":-92.039284,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5XS5","iata":"","local":"5XS5","name":"Wits End Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Saline","elevation_ft":545,"latitude":32.542581,"longitude":-95.70861,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5XS8","iata":"","local":"5XS8","name":"L Davis Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1390,"latitude":29.50394,"longitude":-100.295906,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3150,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60II","iata":"","local":"60II","name":"Union Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Terre Haute","elevation_ft":480,"latitude":39.48609924316406,"longitude":-87.4103012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60KY","iata":"","local":"60KY","name":"Rmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Madisonville","elevation_ft":460,"latitude":37.34280014038086,"longitude":-87.48750305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60LA","iata":"","local":"","name":"Union Oil Co of California Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Intracoastal City","elevation_ft":5,"latitude":29.7917,"longitude":-92.149498,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60LL","iata":"","local":"60LL","name":"Memorial Hospital Belleville Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Belleville","elevation_ft":584,"latitude":38.550679,"longitude":-90.021887,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60MA","iata":"","local":"60MA","name":"Grandview Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Rowley","elevation_ft":11,"latitude":42.73429870605469,"longitude":-70.86740112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60ME","iata":"","local":"60ME","name":"Southern Maine Health LZ Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Biddeford","elevation_ft":110,"latitude":43.478032,"longitude":-70.491168,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60MO","iata":"","local":"60MO","name":"Parkland Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Farmington","elevation_ft":950,"latitude":37.78118,"longitude":-90.437166,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60KS","iata":"","local":"60KS","name":"Alley Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Douglass","elevation_ft":1260,"latitude":37.51390075683594,"longitude":-97.00029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60MN","iata":"","local":"60MN","name":"Fuhr Flying Svc Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Seaforth","elevation_ft":1070,"latitude":44.46799850463867,"longitude":-95.28359985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60IL","iata":"","local":"60IL","name":"Beulah Land Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Biggsville","elevation_ft":723,"latitude":40.840373,"longitude":-90.805306,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60IN","iata":"","local":"60IN","name":"Fisher Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Roanoke","elevation_ft":750,"latitude":40.945899963378906,"longitude":-85.37000274658203,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60IS","iata":"","local":"60IS","name":"Nelson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Browns","elevation_ft":420,"latitude":38.40060043334961,"longitude":-87.98860168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60NE","iata":"","local":"60NE","name":"Chadron Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Chadron","elevation_ft":3500,"latitude":42.82339859008789,"longitude":-103.00499725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60NH","iata":"","local":"60NH","name":"Sherwood Forest Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Freedom","elevation_ft":433,"latitude":43.809013,"longitude":-71.091413,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60NY","iata":"","local":"60NY","name":"Samaritan Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Watertown","elevation_ft":490,"latitude":43.972198486328125,"longitude":-75.9083023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60OK","iata":"","local":"","name":"Carlin Lawrence Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Carnegie","elevation_ft":1340,"latitude":35.121278,"longitude":-98.529897,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60PA","iata":"","local":"60PA","name":"Pottstown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pottstown","elevation_ft":168,"latitude":40.243514,"longitude":-75.611233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60PN","iata":"","local":"60PN","name":"Jefferson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Large","elevation_ft":1156,"latitude":40.3181870077,"longitude":-79.934034586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60TA","iata":"","local":"","name":"Air Ranch Estates Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waxahachie","elevation_ft":670,"latitude":32.3251,"longitude":-96.947502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60OA","iata":"","local":"60OA","name":"Flemming Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Kinsman","elevation_ft":962,"latitude":41.400831,"longitude":-80.578585,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60OI","iata":"","local":"60OI","name":"Zorn Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Milan","elevation_ft":640,"latitude":41.3567008972168,"longitude":-82.6249008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60NC","iata":"","local":"60NC","name":"Star Hill Golf Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cape Carteret","elevation_ft":40,"latitude":34.7052001953125,"longitude":-77.05110168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60OR","iata":"","local":"60OR","name":"Whitaker Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oakland","elevation_ft":625,"latitude":43.42649841308594,"longitude":-123.27999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60MU","iata":"","local":"60MU","name":"Lucky Weasel Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Alba","elevation_ft":904,"latitude":37.259167,"longitude":-94.414265,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60TN","iata":"","local":"60TN","name":"Whitehurst Field","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Bolivar","elevation_ft":427,"latitude":35.268104,"longitude":-88.999144,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60TS","iata":"","local":"60TS","name":"Hunt Regional Community Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Commerce","elevation_ft":517,"latitude":33.229938,"longitude":-95.895913,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60TX","iata":"","local":"60TX","name":"P-K Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bellville","elevation_ft":350,"latitude":30.033599853515625,"longitude":-96.26360321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3600,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60VA","iata":"","local":"60VA","name":"H D H Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":260,"latitude":37.60490036010742,"longitude":-77.54139709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60WA","iata":"","local":"60WA","name":"J. J. H. Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Auburn","elevation_ft":525,"latitude":47.31399917602539,"longitude":-122.25800323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60WI","iata":"","local":"60WI","name":"Howard Young Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Woodruff","elevation_ft":1598,"latitude":45.8932991027832,"longitude":-89.70179748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60XS","iata":"","local":"","name":"Young Brothers Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":412,"latitude":31.552401,"longitude":-97.0914,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3854,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61AK","iata":"","local":"61AK","name":"Era Chulitna River Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Trapper Creek/Talkeetna","elevation_ft":960,"latitude":62.56760025024414,"longitude":-150.23599243164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61CN","iata":"","local":"61CN","name":"California Highway Patrol Headquarters Helipad","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":198,"latitude":38.598106,"longitude":-121.488231,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":58,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61CO","iata":"","local":"61CO","name":"Monument Helibase Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Monument","elevation_ft":7120,"latitude":39.08580017089844,"longitude":-104.90299987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"60XA","iata":"","local":"60XA","name":"Skyline Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":954,"latitude":30.660138,"longitude":-97.763791,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1125,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60TE","iata":"","local":"60TE","name":"Tierra Linda Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrville","elevation_ft":1990,"latitude":30.141323,"longitude":-99.15042,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61FD","iata":"","local":"61FD","name":"AdventHealth Palm Coast Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palm Coast","elevation_ft":25,"latitude":29.479293,"longitude":-81.190502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61FL","iata":"","local":"61FL","name":"Tampa General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":7,"latitude":27.938100814819336,"longitude":-82.45929718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61IL","iata":"","local":"61IL","name":"Memorial Hospital East Shiloh Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Shiloh","elevation_ft":610,"latitude":38.574236,"longitude":-89.906827,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61LA","iata":"","local":"61LA","name":"Sandefer's Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Denham Springs","elevation_ft":60,"latitude":30.565422,"longitude":-90.940761,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61MI","iata":"","local":"61MI","name":"Bayview Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"New Baltimore","elevation_ft":908,"latitude":42.679643,"longitude":-82.750381,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61MO","iata":"","local":"61MO","name":"Carl Ensor Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Grainville","elevation_ft":740,"latitude":39.54859924316406,"longitude":-92.09880065917967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61ID","iata":"","local":"61ID","name":"Flying W Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Priest River","elevation_ft":2356,"latitude":48.189255,"longitude":-116.98899,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61KS","iata":"","local":"61KS","name":"Masters Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Troy","elevation_ft":1120,"latitude":39.7588996887207,"longitude":-95.0958023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61IS","iata":"","local":"61IS","name":"Jim & Peg Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Dwight","elevation_ft":630,"latitude":41.054798,"longitude":-88.387299,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61IN","iata":"","local":"61IN","name":"Wilkerson's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Scottsburg","elevation_ft":730,"latitude":38.713698,"longitude":-85.6036,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61KY","iata":"","local":"61KY","name":"Schroder Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Owenton","elevation_ft":910,"latitude":38.55009841918945,"longitude":-84.76329803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61NE","iata":"","local":"61NE","name":"Univ. of Ne Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1160,"latitude":41.255001068115234,"longitude":-95.97859954833984,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61NH","iata":"","local":"61NH","name":"Hooksett Safety Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hooksett","elevation_ft":300,"latitude":43.055999755859375,"longitude":-71.44670104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61OI","iata":"","local":"61OI","name":"Mc Cullough Hyde Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Oxford","elevation_ft":970,"latitude":39.512298584,"longitude":-84.7413024902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61OK","iata":"","local":"","name":"The Highlands Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Cashion","elevation_ft":1160,"latitude":35.799999,"longitude":-97.608704,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1320,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61TN","iata":"","local":"61TN","name":"Parthenon Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":600,"latitude":36.1529444,"longitude":-86.8268611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":29,"width_ft":29,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61PN","iata":"","local":"61PN","name":"A G A Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Perkasie","elevation_ft":450,"latitude":40.42570114135742,"longitude":-75.2323989868164,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2800,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61OH","iata":"","local":"61OH","name":"Jetway Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ravenna","elevation_ft":1130,"latitude":41.19810104370117,"longitude":-81.20950317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2250,"width_ft":80,"surface":"T"},{"id":"09/27","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61NC","iata":"","local":"61NC","name":"Southern Comforts Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Parkton","elevation_ft":175,"latitude":34.8713,"longitude":-78.965599,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61ND","iata":"","local":"61ND","name":"Bakke Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Larimore","elevation_ft":1125,"latitude":47.9474983215332,"longitude":-97.66200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61OR","iata":"","local":"61OR","name":"The Citadel Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sisters","elevation_ft":3077,"latitude":44.33497,"longitude":-121.37197,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1500,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61TE","iata":"","local":"61TE","name":"Kezer Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Springtown","elevation_ft":830,"latitude":32.98680114746094,"longitude":-97.61969757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61TS","iata":"","local":"61TS","name":"La Porte Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Deer Park","elevation_ft":31,"latitude":29.72894,"longitude":-95.08945,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62AK","iata":"","local":"62AK","name":"Wallis Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":320,"latitude":61.572898864746094,"longitude":-149.5749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":2000,"width_ft":800,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62AZ","iata":"","local":"","name":"Mesa Lutheran Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1248,"latitude":33.4342,"longitude":-111.842002,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1250,"width_ft":50,"surface":"D"},{"id":"17/35","length_ft":1950,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62CA","iata":"","local":"62CA","name":"Bank of America Data Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":440,"latitude":34.053668,"longitude":-118.253183,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62FA","iata":"","local":"62FA","name":"Adventhealth Clermont Emergency Room Helipad","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Clermont","elevation_ft":273,"latitude":28.545164,"longitude":-81.721053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62FD","iata":"","local":"62FD","name":"Doctors Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Orange Park","elevation_ft":0,"latitude":30.12529945373535,"longitude":-81.74420166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":2500,"width_ft":110,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"61WI","iata":"","local":"61WI","name":"Dinnerbell Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Eden","elevation_ft":1120,"latitude":43.70830154418945,"longitude":-88.28569793701172,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62FL","iata":"","local":"62FL","name":"David Wine's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Wales","elevation_ft":100,"latitude":27.8444004059,"longitude":-81.4396972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3200,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62CL","iata":"","local":"62CL","name":"Flying Pear Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Caliente","elevation_ft":3485,"latitude":35.407172,"longitude":-118.501072,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3750,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62AR","iata":"","local":"62AR","name":"Banks Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Busch","elevation_ft":1061,"latitude":36.457222,"longitude":-93.859866,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":1100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62AL","iata":"","local":"62AL","name":"Skywest Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":150,"latitude":30.6835,"longitude":-88.372002,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2467,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62II","iata":"","local":"62II","name":"Wabash County Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Wabash","elevation_ft":779,"latitude":40.80619812011719,"longitude":-85.81580352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":67,"width_ft":67,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62KY","iata":"","local":"62KY","name":"Pikeville Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Pikeville","elevation_ft":819,"latitude":37.470988,"longitude":-82.522003,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62LL","iata":"","local":"62LL","name":"Rush Copley Emergency Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Yorkville","elevation_ft":637,"latitude":41.65944,"longitude":-88.46956,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62LS","iata":"","local":"62LS","name":"Casey County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Liberty","elevation_ft":825,"latitude":37.318028,"longitude":-84.932111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62MI","iata":"","local":"","name":"Combs Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Samaria","elevation_ft":640,"latitude":41.830601,"longitude":-83.5653,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62KS","iata":"","local":"62KS","name":"Dexter Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Cottonwood Falls","elevation_ft":1173,"latitude":38.358632,"longitude":-96.490988,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62IL","iata":"","local":"62IL","name":"Ferris Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marengo","elevation_ft":841,"latitude":42.186005,"longitude":-88.604037,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1925,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62MO","iata":"","local":"62MO","name":"Washburn Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Grain Valley","elevation_ft":855,"latitude":39.06060028076172,"longitude":-94.20330047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62NC","iata":"","local":"62NC","name":"Hickory Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Havelock","elevation_ft":30,"latitude":34.936798095703125,"longitude":-76.9447021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62IS","iata":"","local":"62IS","name":"Wilson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Fithian","elevation_ft":670,"latitude":40.087501525878906,"longitude":-87.90750122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62IN","iata":"","local":"62IN","name":"Fowler Field Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greentown","elevation_ft":854,"latitude":40.431563,"longitude":-85.978382,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62NH","iata":"","local":"62NH","name":"Carleton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hales Location","elevation_ft":920,"latitude":44.063611,"longitude":-71.152778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62OI","iata":"","local":"62OI","name":"Parma Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Parma","elevation_ft":931,"latitude":41.38119888305664,"longitude":-81.73179626464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62OR","iata":"","local":"62OR","name":"Cinder Butte Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Redmond","elevation_ft":2950,"latitude":44.32170104980469,"longitude":-121.19300079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62TE","iata":"","local":"62TE","name":"Otto Kaiser Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kenedy","elevation_ft":395,"latitude":28.849017,"longitude":-97.877665,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62TS","iata":"","local":"","name":"Gateway Helistop","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":100,"latitude":29.933599,"longitude":-95.333504,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2111,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62TX","iata":"","local":"","name":"Barge Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Belton","elevation_ft":590,"latitude":31.091801,"longitude":-97.460297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62WA","iata":"","local":"62WA","name":"Lakewood Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Arlington","elevation_ft":210,"latitude":48.153326,"longitude":-122.234003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62WI","iata":"","local":"62WI","name":"Lakeview Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Rice Lake","elevation_ft":1145,"latitude":45.514592,"longitude":-91.735386,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"62VA","iata":"","local":"62VA","name":"Grasso Salvage Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Holland","elevation_ft":70,"latitude":36.669898986816406,"longitude":-76.72859954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62ND","iata":"","local":"62ND","name":"Morten Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Larimore","elevation_ft":1340,"latitude":47.77920150756836,"longitude":-97.7594985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1700,"width_ft":80,"surface":"T"},{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62TA","iata":"","local":"62TA","name":"Hawken Air One Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Elgin","elevation_ft":520,"latitude":30.32317,"longitude":-97.3121,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1550,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63AR","iata":"","local":"63AR","name":"Stokes Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Earle","elevation_ft":212,"latitude":35.246592,"longitude":-90.461518,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":21,"surface":"A"},{"id":"17/35","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63FL","iata":"","local":"63FL","name":"Shands Cair Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":94,"latitude":29.635499954223636,"longitude":-82.35040283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63IA","iata":"","local":"63IA","name":"Davis County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Bloomfield","elevation_ft":890,"latitude":40.7593002319336,"longitude":-92.41549682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63FA","iata":"","local":"63FA","name":"Sullivan Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Alachua","elevation_ft":88,"latitude":29.734167,"longitude":-82.565278,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63CA","iata":"","local":"63CA","name":"Desert Air Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"North Shore","elevation_ft":0,"latitude":33.48109817504883,"longitude":-115.8740005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63CN","iata":"","local":"63CN","name":"Meadowlark Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Livermore","elevation_ft":730,"latitude":37.66130065917969,"longitude":-121.69400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1860,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63CO","iata":"","local":"63CO","name":"Hendricks Field At West Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Gateway","elevation_ft":4820,"latitude":38.70550155639648,"longitude":-108.93699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2673,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63AK","iata":"","local":"63AK","name":"Kucera Residence Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":189,"latitude":61.58430099487305,"longitude":-149.93800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1200,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62XS","iata":"","local":"62XS","name":"J F Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Clairette","elevation_ft":1220,"latitude":32.0224,"longitude":-98.133698,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62XA","iata":"","local":"62XA","name":"Flying H Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Nacogdoches","elevation_ft":254,"latitude":31.498348,"longitude":-94.583918,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63GE","iata":"","local":"63GE","name":"Westbrook Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lumpkin","elevation_ft":550,"latitude":32.047358,"longitude":-84.740064,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63IN","iata":"","local":"","name":"Ropkey Field","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":880,"latitude":39.899502,"longitude":-86.271698,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2510,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63KS","iata":"","local":"","name":"5-D Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Clay Center","elevation_ft":1190,"latitude":39.3283,"longitude":-97.060898,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63KY","iata":"","local":"63KY","name":"Harrison Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Cynthiana","elevation_ft":870,"latitude":38.3825,"longitude":-84.278056,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63MI","iata":"","local":"63MI","name":"Providence Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Novi","elevation_ft":970,"latitude":42.489167,"longitude":-83.521944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63ID","iata":"","local":"63ID","name":"Hoskins Field","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Caldwell","elevation_ft":2525,"latitude":43.636751,"longitude":-116.765758,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1400,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63MO","iata":"","local":"63MO","name":"Heartland Hospital West Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Joseph","elevation_ft":966,"latitude":39.76940155029297,"longitude":-94.8501968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63MS","iata":"","local":"63MS","name":"Inmon Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Ecru","elevation_ft":370,"latitude":34.338933,"longitude":-89.002406,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2228,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63MT","iata":"","local":"63MT","name":"Billings Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3200,"latitude":45.715083,"longitude":-108.575392,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4696,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63IL","iata":"","local":"63IL","name":"Emerick Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marengo","elevation_ft":840,"latitude":42.18339920043945,"longitude":-88.59449768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2525,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63II","iata":"","local":"63II","name":"Woods Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Franklin","elevation_ft":750,"latitude":39.50510025024414,"longitude":-86.0302963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63LA","iata":"","local":"63LA","name":"Leonards Airfield & Indust Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Delcambre","elevation_ft":23,"latitude":29.964099884033203,"longitude":-91.91210174560548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63NC","iata":"","local":"","name":"Wood Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Wilson","elevation_ft":170,"latitude":35.834898,"longitude":-77.996385,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63NH","iata":"","local":"63NH","name":"Jackson Fire Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Jackson","elevation_ft":822,"latitude":44.141722,"longitude":-71.181111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63NJ","iata":"","local":"63NJ","name":"Howell Township Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Farmingdale","elevation_ft":95,"latitude":40.17179870605469,"longitude":-74.17849731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63OK","iata":"","local":"63OK","name":"Chandler Armory Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Chandler","elevation_ft":980,"latitude":35.717143,"longitude":-96.890115,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63PN","iata":"","local":"63PN","name":"Helicopter Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Coopersburg","elevation_ft":620,"latitude":40.508399963378906,"longitude":-75.39409637451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63TA","iata":"","local":"","name":"Barnett Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Chillicothe","elevation_ft":1385,"latitude":34.269501,"longitude":-99.514297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63TS","iata":"","local":"63TS","name":"The America Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":637,"latitude":29.760799407958984,"longitude":-95.39769744873048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63TX","iata":"","local":"","name":"Grosser Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bulverde","elevation_ft":1354,"latitude":29.7752,"longitude":-98.578102,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2458,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63VA","iata":"","local":"63VA","name":"Mannboro Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Mannboro","elevation_ft":320,"latitude":37.2509994506836,"longitude":-77.82140350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63NY","iata":"","local":"63NY","name":"Shear Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Youngstown","elevation_ft":325,"latitude":43.2593,"longitude":-78.9656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3153,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63OH","iata":"","local":"63OH","name":"White's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Darbyville","elevation_ft":815,"latitude":39.70280075073242,"longitude":-83.09390258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63WA","iata":"","local":"63WA","name":"Boyle R & D Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Colbert","elevation_ft":2350,"latitude":47.833209,"longitude":-117.273645,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":200,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64CA","iata":"","local":"64CA","name":"Tahoe Forest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Truckee","elevation_ft":5200,"latitude":39.324124,"longitude":-120.200281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64CL","iata":"","local":"64CL","name":"Goodyear Blimp Base Airport","category":"balloonport","iso_country":"US","iso_region":"US-CA","municipality":"Gardena","elevation_ft":21,"latitude":33.855333,"longitude":-118.276234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1200,"width_ft":900,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64DE","iata":"","local":"64DE","name":"Bayhealth Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Dover","elevation_ft":50,"latitude":39.151375,"longitude":-75.524167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64FD","iata":"","local":"64FD","name":"Palm Beach Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":22,"latitude":26.756429,"longitude":-80.061293,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64FL","iata":"","local":"64FL","name":"District Vi Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":8,"latitude":25.7818835202,"longitude":-80.37752352650001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64IG","iata":"","local":"64IG","name":"Indiana University Health Paoli Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Paoli","elevation_ft":645,"latitude":38.567923,"longitude":-86.475985,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"63WI","iata":"","local":"63WI","name":"Flying H Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Monroe","elevation_ft":1020,"latitude":42.66579818725586,"longitude":-89.73760223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63XA","iata":"","local":"63XA","name":"JCJ Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lott","elevation_ft":520,"latitude":31.215591,"longitude":-97.003661,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2350,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64AK","iata":"","local":"64AK","name":"Carpentiers Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":175,"latitude":61.440132,"longitude":-150.026829,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63XS","iata":"","local":"63XS","name":"Byram Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Henly","elevation_ft":1120,"latitude":30.22410011291504,"longitude":-98.2885971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4016,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64GA","iata":"","local":"64GA","name":"Big T Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Senoia","elevation_ft":900,"latitude":33.283501,"longitude":-84.538803,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2050,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64II","iata":"","local":"64II","name":"The Lutheran Hospital of Indiana Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":811,"latitude":41.040000915527344,"longitude":-85.24800109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64IS","iata":"","local":"64IS","name":"Precision Chrome Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Fox Lake","elevation_ft":745,"latitude":42.38970184326172,"longitude":-88.18150329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64KY","iata":"","local":"","name":"Hemp Ridge Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Shelbyville","elevation_ft":860,"latitude":38.153099,"longitude":-85.118797,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2206,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64MD","iata":"","local":"64MD","name":"Dominion Cove Point Business Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Lusby","elevation_ft":119,"latitude":38.383041,"longitude":-76.434406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64ME","iata":"","local":"64ME","name":"Dave Libby Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Falmouth","elevation_ft":305,"latitude":43.739200592041016,"longitude":-70.31289672851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64MI","iata":"","local":"64MI","name":"Ti Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Utica","elevation_ft":680,"latitude":42.66469955444336,"longitude":-83.01219940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64NE","iata":"","local":"64NE","name":"Seward Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Seward","elevation_ft":1467,"latitude":40.909698486328125,"longitude":-97.0905990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64NJ","iata":"","local":"64NJ","name":"Verizon - CDC II Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold Township","elevation_ft":176,"latitude":40.23816,"longitude":-74.318539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":210,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64NC","iata":"","local":"64NC","name":"Fields Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Pleasant Garden","elevation_ft":820,"latitude":35.90190124511719,"longitude":-79.77249908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64ND","iata":"","local":"64ND","name":"Z. P. Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mandan","elevation_ft":1840,"latitude":46.85079956054688,"longitude":-101.0749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2660,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64KS","iata":"","local":"64KS","name":"Minnow Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Sylvan Grove","elevation_ft":1493,"latitude":38.976543,"longitude":-98.47143,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2950,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64NR","iata":"","local":"64NR","name":"Engelhard Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Engelhard","elevation_ft":9,"latitude":35.508361,"longitude":-76.023358,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64NV","iata":"","local":"64NV","name":"St Rose Dominican San Martin Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2622,"latitude":36.058242,"longitude":-115.273114,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64OH","iata":"","local":"","name":"O K Dies Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Salem","elevation_ft":1280,"latitude":40.898701,"longitude":-80.929298,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64OI","iata":"","local":"64OI","name":"Ponderosa Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Salem","elevation_ft":1105,"latitude":40.9822998046875,"longitude":-80.95790100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64OK","iata":"","local":"64OK","name":"Cordell Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Cordell","elevation_ft":1564,"latitude":35.30226,"longitude":-98.98859,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64PA","iata":"","local":"64PA","name":"Penn Highlands Huntingdon Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Huntingdon","elevation_ft":720,"latitude":40.494264,"longitude":-78.009149,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64PN","iata":"","local":"64PN","name":"Hershey Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hershey","elevation_ft":438,"latitude":40.26470184326172,"longitude":-76.67500305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64TA","iata":"","local":"","name":"Galvestonian Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":14,"latitude":29.31824,"longitude":-94.7521,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64TS","iata":"","local":"64TS","name":"CHI Baylor St Luke's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":165,"latitude":29.707673,"longitude":-95.39943,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64TX","iata":"","local":"64TX","name":"North Central Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":1054,"latitude":29.61967,"longitude":-98.49136,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64OR","iata":"","local":"64OR","name":"Plum Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Amity","elevation_ft":230,"latitude":45.03369903564453,"longitude":-123.1719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64TE","iata":"","local":"64TE","name":"Apache Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Home","elevation_ft":2016,"latitude":30.159034,"longitude":-99.337209,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64WA","iata":"","local":"64WA","name":"Everett I Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bellevue","elevation_ft":150,"latitude":47.5833015442,"longitude":-122.167999268,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64WI","iata":"","local":"","name":"Sky Diving Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Omro","elevation_ft":760,"latitude":44.040782,"longitude":-88.69885,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"64XS","iata":"","local":"64XS","name":"Wadley Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Texarkana","elevation_ft":347,"latitude":32.429298400878906,"longitude":-94.03910064697266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65AL","iata":"","local":"65AL","name":"Sheriff's Training Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fultondale","elevation_ft":440,"latitude":33.601944,"longitude":-86.863611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65AZ","iata":"","local":"65AZ","name":"Carondelet St Mary's Hospital Helistop","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2345,"latitude":32.22829,"longitude":-110.999385,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65CA","iata":"","local":"65CA","name":"SCE San Joaquin Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Tulare","elevation_ft":279,"latitude":36.18299,"longitude":-119.333578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65FA","iata":"","local":"65FA","name":"Physicians Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":5,"latitude":26.2143889,"longitude":-81.7316556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65FD","iata":"","local":"65FD","name":"Yellow Whirley Bird Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City Beach","elevation_ft":10,"latitude":30.198345,"longitude":-85.828555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65CL","iata":"","local":"65CL","name":"Al Divine Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Caruthers","elevation_ft":252,"latitude":36.51440048217773,"longitude":-119.76399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65CO","iata":"","local":"65CO","name":"Wkr Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":4840,"latitude":40.52080154418945,"longitude":-104.96700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65AK","iata":"","local":"65AK","name":"McDonald Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":285,"latitude":61.560379,"longitude":-149.367349,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64XA","iata":"","local":"64XA","name":"Bird Dog Landing","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Forestburg","elevation_ft":960,"latitude":33.581456,"longitude":-97.549265,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65FL","iata":"","local":"65FL","name":"Floridian National Golf Club, LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Stuart","elevation_ft":15,"latitude":27.208599,"longitude":-80.291398,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65IN","iata":"","local":"65IN","name":"Wells County Sheriff's Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Bluffton","elevation_ft":830,"latitude":40.7338981628418,"longitude":-85.19609832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65KY","iata":"","local":"65KY","name":"Middlesboro ARH Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Middlesboro","elevation_ft":1140,"latitude":36.605721,"longitude":-83.739415,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65MI","iata":"","local":"65MI","name":"Jet Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Lansing","elevation_ft":850,"latitude":42.680351,"longitude":-84.527092,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65MO","iata":"","local":"65MO","name":"Deaconess Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":550,"latitude":38.62979888916,"longitude":-90.288200378418,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2860,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65MS","iata":"","local":"65MS","name":"Maverick Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Senatobia","elevation_ft":340,"latitude":34.564694,"longitude":-89.884056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65NC","iata":"","local":"65NC","name":"Scenic Overlook B & B Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Pilot Mountain","elevation_ft":1050,"latitude":36.34830093383789,"longitude":-80.4542007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65NH","iata":"","local":"65NH","name":"Tucker Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Bradford","elevation_ft":1623,"latitude":43.208861,"longitude":-71.916305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65MN","iata":"","local":"65MN","name":"Ricks Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wendell","elevation_ft":1100,"latitude":45.9640998840332,"longitude":-96.1498031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65KS","iata":"","local":"65KS","name":"Griffith Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Downs","elevation_ft":1500,"latitude":39.507833,"longitude":-98.586167,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2205,"width_ft":100,"surface":"T"},{"id":"07/25","length_ft":2235,"width_ft":75,"surface":"T"},{"id":"16/34","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65LA","iata":"BCS","local":"65LA","name":"Southern Seaplane Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Belle Chasse","elevation_ft":0,"latitude":29.866078,"longitude":-90.021608,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3200,"width_ft":40,"surface":"A"},{"id":"02W/20W","length_ft":5000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65NJ","iata":"","local":"","name":"Triangle Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":150,"latitude":40.4682,"longitude":-74.4668,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65OI","iata":"","local":"65OI","name":"Bass Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Chardon","elevation_ft":1180,"latitude":41.54669952392578,"longitude":-81.22589874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65OK","iata":"","local":"65OK","name":"Lakemont Shores Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Disney","elevation_ft":850,"latitude":36.46670150756836,"longitude":-94.90019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65OR","iata":"","local":"65OR","name":"Timberland Shop Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Ashland","elevation_ft":2100,"latitude":42.20539855957031,"longitude":-122.63400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65TA","iata":"","local":"","name":"Flying C Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Independence","elevation_ft":250,"latitude":30.3433,"longitude":-96.307198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65NM","iata":"","local":"65NM","name":"Curtis and Curtis Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Forrest","elevation_ft":4691,"latitude":34.728528,"longitude":-103.604679,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3600,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65TS","iata":"","local":"","name":"Becker Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Alvord","elevation_ft":940,"latitude":33.402301,"longitude":-97.670898,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65TT","iata":"","local":"65TT","name":"Air Evac 65 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Denison","elevation_ft":678,"latitude":33.709334,"longitude":-96.583793,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65TX","iata":"","local":"65TX","name":"Flying Eagle Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Salt Flat","elevation_ft":4300,"latitude":31.775133,"longitude":-105.431317,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65OH","iata":"","local":"65OH","name":"Wiita Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Sharon Center","elevation_ft":1220,"latitude":41.07170104980469,"longitude":-81.7511978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65TE","iata":"","local":"65TE","name":"Windwood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bells","elevation_ft":778,"latitude":33.568167,"longitude":-96.397167,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65VA","iata":"","local":"","name":"National Hospital for Orthopaedics and Rehabilitation Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Arlington","elevation_ft":105,"latitude":38.848148,"longitude":-77.077272,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"65WI","iata":"","local":"","name":"Dulmes Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Oostburg","elevation_ft":720,"latitude":43.619202,"longitude":-87.821999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1047,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66AK","iata":"","local":"66AK","name":"June Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":406,"latitude":61.63,"longitude":-149.569167,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":1700,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66AZ","iata":"","local":"66AZ","name":"Banner Desert Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1199,"latitude":33.3922996521,"longitude":-111.876998901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66CO","iata":"","local":"66CO","name":"Rotor Leasing Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Elbert","elevation_ft":7260,"latitude":39.09080123901367,"longitude":-104.54399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66GA","iata":"","local":"66GA","name":"Sawyer Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Blakely","elevation_ft":350,"latitude":31.474722,"longitude":-85.002778,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66IL","iata":"","local":"66IL","name":"Aerogrange Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marengo","elevation_ft":820,"latitude":42.26919937133789,"longitude":-88.57119750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66FD","iata":"","local":"66FD","name":"JR's STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Dunnellon","elevation_ft":50,"latitude":29.004012,"longitude":-82.554531,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1340,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65WA","iata":"","local":"65WA","name":"Wissler's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tenino","elevation_ft":255,"latitude":46.84040069580078,"longitude":-122.91600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66CA","iata":"","local":"66CA","name":"Rancho San Simeon Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Cambria","elevation_ft":320,"latitude":35.60770034790039,"longitude":-121.11000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66IN","iata":"","local":"66IN","name":"Oakes Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Charlottesville","elevation_ft":935,"latitude":39.78749847412109,"longitude":-85.63690185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1025,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66NJ","iata":"","local":"66NJ","name":"Forked River Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Forked River","elevation_ft":13,"latitude":39.83980178833008,"longitude":-74.17759704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66OH","iata":"","local":"","name":"Medical Center South Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Broadview Heights","elevation_ft":1205,"latitude":41.314499,"longitude":-81.670998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2422,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66PA","iata":"","local":"66PA","name":"Williamsport Hospital & Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Williamsport","elevation_ft":594,"latitude":41.24729919433594,"longitude":-77.01580047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66MN","iata":"","local":"66MN","name":"Howard's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Clara City","elevation_ft":1000,"latitude":44.97719955444336,"longitude":-95.42279815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66NC","iata":"","local":"66NC","name":"Hood Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Dover","elevation_ft":59,"latitude":35.174400329589844,"longitude":-77.48359680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66NE","iata":"","local":"66NE","name":"Cornelius Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Madrid","elevation_ft":3415,"latitude":40.92915,"longitude":-101.603794,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":820,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":1580,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66MO","iata":"","local":"66MO","name":"Ahlers Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Foristell","elevation_ft":660,"latitude":38.83200073242188,"longitude":-90.95120239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66MI","iata":"","local":"66MI","name":"East Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":860,"latitude":42.22840118408203,"longitude":-85.4843978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66KY","iata":"","local":"66KY","name":"Mc Grew Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Clarkson","elevation_ft":720,"latitude":37.507598877,"longitude":-86.2054977417,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66OK","iata":"","local":"66OK","name":"Mc Laughlin Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Durant","elevation_ft":695,"latitude":34.0890007019,"longitude":-96.4216995239,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66LA","iata":"","local":"66LA","name":"Schexnayder Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Erwinville","elevation_ft":15,"latitude":30.510499954223636,"longitude":-91.39230346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66TS","iata":"","local":"66TS","name":"Khou-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":70,"latitude":29.760499954223636,"longitude":-95.38739776611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66VA","iata":"","local":"66VA","name":"Ibm Building 110 Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Manassas","elevation_ft":241,"latitude":38.753700256347656,"longitude":-77.49749755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66VG","iata":"","local":"66VG","name":"Bon Secours Mercy Health Petersburg LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Petersburg","elevation_ft":162,"latitude":37.182166,"longitude":-77.360722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67AZ","iata":"","local":"","name":"Good Samaritan Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1139,"latitude":33.465,"longitude":-112.059998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"66TX","iata":"","local":"66TX","name":"Loma de Cometa Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crystal City","elevation_ft":615,"latitude":28.674972,"longitude":-100.023234,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3366,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66WI","iata":"","local":"66WI","name":"J-3 Cub Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Watertown","elevation_ft":860,"latitude":43.07749938964844,"longitude":-88.66290283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1150,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67AK","iata":"","local":"67AK","name":"South Hollywood Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":375,"latitude":61.53459930419922,"longitude":-149.6699981689453,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2640,"width_ft":240,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67AR","iata":"","local":"67AR","name":"Wedington Woods Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fayetteville","elevation_ft":1090,"latitude":36.0978012085,"longitude":-94.3075027466,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66XS","iata":"","local":"66XS","name":"Baylie Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Westminster","elevation_ft":685,"latitude":33.39649963378906,"longitude":-96.48860168457033,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66XA","iata":"","local":"66XA","name":"Mathews Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Henrietta","elevation_ft":960,"latitude":33.91302,"longitude":-98.251773,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67CN","iata":"","local":"67CN","name":"El Dorado Irrigation District Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Pollock Pines","elevation_ft":3800,"latitude":38.76449,"longitude":-120.54829,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":114,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67FD","iata":"","local":"67FD","name":"Gulf Coast Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":18,"latitude":26.5441666667,"longitude":-81.85,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67IN","iata":"","local":"","name":"Smitty's Soaring Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Knox","elevation_ft":720,"latitude":41.236401,"longitude":-86.5942,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":10000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67IS","iata":"","local":"67IS","name":"Wabash General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Carmel","elevation_ft":469,"latitude":38.4213981628418,"longitude":-87.76950073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67KY","iata":"","local":"","name":"Estes Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Florence","elevation_ft":890,"latitude":38.982849,"longitude":-84.668106,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":775,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":577,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67ME","iata":"","local":"67ME","name":"Station-Kel Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Westbrook","elevation_ft":246,"latitude":43.722825,"longitude":-70.346667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67IL","iata":"","local":"67IL","name":"Mitchell RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marseilles","elevation_ft":705,"latitude":41.3666992188,"longitude":-88.650100708,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67FL","iata":"","local":"67FL","name":"Myakka Head Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Zolfo Springs","elevation_ft":80,"latitude":27.45560073852539,"longitude":-82.1050033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67CL","iata":"","local":"67CL","name":"Davis Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Colusa","elevation_ft":45,"latitude":39.20100021362305,"longitude":-122.04900360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67CA","iata":"","local":"67CA","name":"Chapman Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Chowchilla","elevation_ft":175,"latitude":37.072491,"longitude":-120.376215,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67CO","iata":"","local":"67CO","name":"Highline Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bracewell","elevation_ft":4745,"latitude":40.46998,"longitude":-104.813792,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67GA","iata":"","local":"67GA","name":"Apalachee Bluff Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Monroe","elevation_ft":735,"latitude":33.8592987061,"longitude":-83.58769989010001,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67NC","iata":"","local":"67NC","name":"Carolinas ContinueCARE Hospital at Pineville Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":628,"latitude":35.093333,"longitude":-80.872944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67PA","iata":"","local":"67PA","name":"West Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Williamsport","elevation_ft":595,"latitude":41.16669845581055,"longitude":-76.91639709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67MU","iata":"","local":"67MU","name":"Air Cover Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Frankford","elevation_ft":744,"latitude":39.45416,"longitude":-91.395919,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2710,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67PN","iata":"","local":"67PN","name":"Masser Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Sacramento","elevation_ft":720,"latitude":40.633399963378906,"longitude":-76.5969009399414,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67MN","iata":"","local":"67MN","name":"Pagel's Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Atwater","elevation_ft":1170,"latitude":45.20190048217773,"longitude":-94.80110168457033,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67ND","iata":"","local":"67ND","name":"Waldie Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Marion","elevation_ft":1456,"latitude":46.54330062866211,"longitude":-98.3823013305664,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67OG","iata":"","local":"67OG","name":"George Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sheridan","elevation_ft":440,"latitude":45.031389,"longitude":-123.406111,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67MI","iata":"","local":"67MI","name":"Pinelli Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Marcellus","elevation_ft":921,"latitude":41.997875,"longitude":-85.853483,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67MO","iata":"","local":"67MO","name":"Ski Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pittsburg","elevation_ft":906,"latitude":37.8109016418457,"longitude":-93.36990356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67OK","iata":"","local":"67OK","name":"Flying J Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Peggs","elevation_ft":990,"latitude":36.03310012817383,"longitude":-95.0780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67SC","iata":"","local":"67SC","name":"Lanes Landing","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Ruffin","elevation_ft":80,"latitude":32.948217,"longitude":-80.7663,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2042,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67TA","iata":"","local":"","name":"Tips Jewels Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bulverde","elevation_ft":1120,"latitude":29.656099,"longitude":-98.455299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67TS","iata":"","local":"67TS","name":"Aldine Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":88,"latitude":29.92823,"longitude":-95.35495,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":14,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67VT","iata":"","local":"67VT","name":"Fletcher Allen Health Care Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Burlington","elevation_ft":336,"latitude":44.4733367,"longitude":-73.1888,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67XS","iata":"","local":"67XS","name":"Knapp Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Weslaco","elevation_ft":78,"latitude":26.152597,"longitude":-97.980001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68AK","iata":"","local":"68AK","name":"Cowell's Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":142,"latitude":61.5166015625,"longitude":-149.93099975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"67WA","iata":"","local":"WA10","name":"Page Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Walla Walla","elevation_ft":800,"latitude":46.016842,"longitude":-118.368383,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67TX","iata":"","local":"67T","name":"Old Hoppe Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Agua Dulce","elevation_ft":96,"latitude":27.800300598145,"longitude":-97.851196289062,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68AR","iata":"","local":"68AR","name":"Luginbuel Hee Haw Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Luginbuel Hee Haw Airport","elevation_ft":1425,"latitude":35.933573,"longitude":-94.415925,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67TT","iata":"","local":"67TT","name":"Fleck Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":883,"latitude":33.348893,"longitude":-97.44461,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67XA","iata":"","local":"67XA","name":"J-L Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bowie","elevation_ft":1134,"latitude":33.518175,"longitude":-98.144758,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67TE","iata":"","local":"67TE","name":"Fisher Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":870,"latitude":30.9496,"longitude":-97.7967,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68AL","iata":"","local":"68AL","name":"Heart of Dixie Aero Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Greenville","elevation_ft":382,"latitude":31.80866,"longitude":-86.524716,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68FA","iata":"","local":"68FA","name":"UCF Lake Nona Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":87,"latitude":28.366711,"longitude":-81.286742,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68FL","iata":"","local":"","name":"EMS Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":49,"latitude":28.003098,"longitude":-82.429001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68GA","iata":"","local":"68GA","name":"Calhoun Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Marietta","elevation_ft":1070,"latitude":34.004444,"longitude":-84.447778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68II","iata":"","local":"68II","name":"Clinton County Fairgrounds Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Frankfort","elevation_ft":868,"latitude":40.26860046386719,"longitude":-86.50969696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68IL","iata":"","local":"","name":"Prairie Lake Hunt Club Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Marseilles","elevation_ft":750,"latitude":41.395,"longitude":-88.682898,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68FD","iata":"","local":"68FD","name":"Maran Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fountain","elevation_ft":225,"latitude":30.522199630737305,"longitude":-85.37670135498047,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5280,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68ID","iata":"","local":"68ID","name":"Rapoport Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sagle","elevation_ft":2170,"latitude":48.25,"longitude":-116.466667,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":780,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68CA","iata":"","local":"68CA","name":"Lake California Air Park","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Cottonwood","elevation_ft":615,"latitude":40.36109924316406,"longitude":-122.21600341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68CN","iata":"","local":"68CN","name":"Porter Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Inyokern","elevation_ft":6800,"latitude":36.02321,"longitude":-118.096418,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":150,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68CO","iata":"","local":"68CO","name":"Singleton Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Byers","elevation_ft":4940,"latitude":39.870245,"longitude":-104.141246,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68IN","iata":"","local":"68IN","name":"Alley Oop Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Wheatfield","elevation_ft":715,"latitude":41.12139892578125,"longitude":-86.99749755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68JY","iata":"","local":"68JY","name":"Hancock Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Denmark","elevation_ft":500,"latitude":43.93170166015625,"longitude":-70.75669860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":10000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68KS","iata":"","local":"","name":"Cloud 9 Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Paola","elevation_ft":1050,"latitude":38.5672,"longitude":-94.782501,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68KY","iata":"","local":"68KY","name":"Lee's Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Somerset","elevation_ft":970,"latitude":37.02330017089844,"longitude":-84.72969818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68LS","iata":"","local":"68LS","name":"Myrtle Grove Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Waterproof","elevation_ft":71,"latitude":31.814581,"longitude":-91.370314,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1300,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68ME","iata":"","local":"68ME","name":"Maine Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Portland","elevation_ft":182,"latitude":43.653964,"longitude":-70.27695,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68MN","iata":"","local":"","name":"Mathew Private Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Barnesville","elevation_ft":965,"latitude":46.671299,"longitude":-96.450897,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2441,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68MO","iata":"","local":"68MO","name":"Southeast Health Center of Stoddard County Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Dexter","elevation_ft":420,"latitude":36.80738,"longitude":-89.967405,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68NM","iata":"","local":"68NM","name":"Flying H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Mayhill","elevation_ft":5162,"latitude":33.028964,"longitude":-105.126393,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2700,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68NH","iata":"","local":"68NH","name":"Not Too Dusty Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Milford","elevation_ft":293,"latitude":42.827717,"longitude":-71.678447,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68NJ","iata":"","local":"68NJ","name":"NUI Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgewater Township","elevation_ft":100,"latitude":40.581798,"longitude":-74.602224,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68NE","iata":"","local":"68NE","name":"Hall-Feld Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Davey","elevation_ft":1355,"latitude":40.99140167236328,"longitude":-96.61969757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68OI","iata":"","local":"68OI","name":"Abbey Etna Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Perrysburg","elevation_ft":630,"latitude":41.56480026245117,"longitude":-83.60990142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68OK","iata":"","local":"68OK","name":"Fairfax Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Fairfax","elevation_ft":960,"latitude":36.56669998168945,"longitude":-96.71700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68OR","iata":"","local":"","name":"Lyda Ranch Airstrip","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Dufur","elevation_ft":2450,"latitude":45.3911,"longitude":-121.276001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68PS","iata":"","local":"68PS","name":"Lakehill Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mars","elevation_ft":1070,"latitude":40.705441,"longitude":-80.030841,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68TA","iata":"","local":"68TA","name":"Avsi-Sugar Land Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sugar Land","elevation_ft":85,"latitude":29.64299964904785,"longitude":-95.6072006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68TT","iata":"","local":"68TT","name":"Bradley Oaks Ranch/Aurelia C Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":411,"latitude":31.999771,"longitude":-95.774812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68TX","iata":"","local":"","name":"San Patricio International Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Patricio","elevation_ft":50,"latitude":27.980801,"longitude":-97.786903,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68VA","iata":"","local":"68VA","name":"Carilion New River Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Radford","elevation_ft":3130,"latitude":37.09109878540039,"longitude":-80.51000213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68WI","iata":"","local":"68WI","name":"Mayo Clinic Health System-Franciscan Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"La Crosse","elevation_ft":670,"latitude":43.804088,"longitude":-91.239807,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"68WA","iata":"","local":"68WA","name":"Mc Mahon Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Zillah","elevation_ft":850,"latitude":46.393699646,"longitude":-120.222000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68TS","iata":"","local":"68TS","name":"Bishop Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Royse City","elevation_ft":550,"latitude":32.874485,"longitude":-96.285015,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4600,"width_ft":31,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69AK","iata":"","local":"69AK","name":"Memory Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":463,"latitude":61.62888717651367,"longitude":-149.42361450195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":2000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69AZ","iata":"","local":"69AZ","name":"Maricopa County Sheriff's Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1257,"latitude":33.381085,"longitude":-111.828917,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69CA","iata":"","local":"69CA","name":"Victor Valley Global Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Victorville","elevation_ft":2896,"latitude":34.52776,"longitude":-117.292743,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69CO","iata":"","local":"69CO","name":"Porter Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5349,"latitude":39.67079925537109,"longitude":-104.97599792480467,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":87,"width_ft":71,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69CT","iata":"","local":"69CT","name":"The Shore Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Mystic","elevation_ft":11,"latitude":41.319917,"longitude":-71.993167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":8,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69FA","iata":"","local":"69FA","name":"LZ Shadow Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Brooksville","elevation_ft":90,"latitude":28.555261,"longitude":-82.33465,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69FL","iata":"","local":"","name":"Eagle's Landing Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":10,"latitude":26.677299,"longitude":-82.136497,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":450,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69KY","iata":"","local":"","name":"Lyndon Fire Protection District Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Lyndon","elevation_ft":579,"latitude":38.2612,"longitude":-85.602502,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69FD","iata":"","local":"69FD","name":"Unicorn Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Defuniak Springs","elevation_ft":260,"latitude":30.84469985961914,"longitude":-86.28140258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1965,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69LL","iata":"","local":"69LL","name":"Maas Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Boston","elevation_ft":534,"latitude":41.288707,"longitude":-91.050385,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2275,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69CL","iata":"","local":"69CL","name":"Medlock Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Davis","elevation_ft":48,"latitude":38.615501403808594,"longitude":-121.74700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69MI","iata":"","local":"","name":"Perry Aero Park","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Perry","elevation_ft":855,"latitude":42.821389,"longitude":-84.278888,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69NY","iata":"","local":"69NY","name":"UVMHN-Elizabethtown Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Ticonderoga","elevation_ft":280,"latitude":43.849329,"longitude":-73.436408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69OH","iata":"","local":"","name":"Dwight Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Homer","elevation_ft":1025,"latitude":40.2631,"longitude":-82.514397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69OR","iata":"","local":"69OR","name":"Dick Fisher Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Gaston","elevation_ft":300,"latitude":45.413679,"longitude":-123.136386,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":800,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69MY","iata":"","local":"69MY","name":"Hall Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Farmington","elevation_ft":875,"latitude":44.66109848022461,"longitude":-93.1001968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69NC","iata":"","local":"69NC","name":"Clute's Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Forest City","elevation_ft":1078,"latitude":35.433401,"longitude":-81.846012,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69MN","iata":"","local":"69MN","name":"Yaggie Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Breckenridge","elevation_ft":982,"latitude":46.278068,"longitude":-96.427174,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69MT","iata":"","local":"69MT","name":"Flying H Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lambert","elevation_ft":2465,"latitude":47.780733,"longitude":-104.527115,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2949,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69OK","iata":"","local":"69OK","name":"Green Country Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Fairland","elevation_ft":840,"latitude":36.71578,"longitude":-94.85152,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69MO","iata":"","local":"69MO","name":"Hess-McKeown Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Higbee","elevation_ft":885,"latitude":39.308399,"longitude":-92.454102,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69MU","iata":"","local":"69MU","name":"Blazer Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Easton","elevation_ft":939,"latitude":39.764236,"longitude":-94.627361,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1568,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69WI","iata":"","local":"","name":"Kroy-Osceola Heliport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Osceola","elevation_ft":910,"latitude":45.32,"longitude":-92.687698,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69WT","iata":"","local":"69WT","name":"Quartermaster Harbor Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WA","municipality":"Vashon","elevation_ft":0,"latitude":47.3929,"longitude":-122.46048,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5637,"width_ft":200,"surface":"W"},{"id":"15W/33W","length_ft":4226,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"69TS","iata":"","local":"69TS","name":"White Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":890,"latitude":30.99880027770996,"longitude":-97.75589752197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69TA","iata":"","local":"69TA","name":"Dean Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":45,"latitude":27.655000686645508,"longitude":-97.52529907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69XS","iata":"","local":"69XS","name":"Brushy Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Whitesboro","elevation_ft":715,"latitude":33.75339889526367,"longitude":-96.8302001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AK1","iata":"","local":"6AK1","name":"Platinum Mine Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Platinum","elevation_ft":100,"latitude":58.91170120239258,"longitude":-161.71400451660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AK3","iata":"","local":"6AK3","name":"Butler Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nikiski","elevation_ft":185,"latitude":60.727784,"longitude":-151.27779,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AK8","iata":"","local":"6AK8","name":"Tulakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":350,"latitude":61.61809921264648,"longitude":-149.66900634765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69TX","iata":"","local":"69TX","name":"Green Lake Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bloomington","elevation_ft":50,"latitude":28.58359909057617,"longitude":-96.85440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3898,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AL4","iata":"","local":"6AL4","name":"Air Evac 16 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Tuscumbia","elevation_ft":512,"latitude":34.671713,"longitude":-87.632813,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AL6","iata":"","local":"6AL6","name":"Hawthorn Pines Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Wagarville","elevation_ft":150,"latitude":31.387348,"longitude":-88.094473,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AL8","iata":"","local":"6AL8","name":"Malbis Med Park-Infirmary Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Daphne","elevation_ft":195,"latitude":30.654636,"longitude":-87.854252,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AL9","iata":"","local":"6AL9","name":"Mega Site Helipad","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Bay Minette","elevation_ft":284,"latitude":30.948611,"longitude":-87.745555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AR0","iata":"","local":"6AR0","name":"Cypress Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Vilonia","elevation_ft":270,"latitude":35.060511,"longitude":-92.116113,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AR3","iata":"","local":"6AR3","name":"UAMS Alpha Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":561,"latitude":34.748107,"longitude":-92.320215,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AR4","iata":"","local":"6AR4","name":"Baptist Health Medical Center-Heber Spring Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Heber Springs","elevation_ft":538,"latitude":35.504889,"longitude":-91.997694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AR7","iata":"","local":"6AR7","name":"Arkansas Heart Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":511,"latitude":34.739540100097656,"longitude":-92.39276123046876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AZ0","iata":"","local":"6AZ0","name":"Lyon Aviation South Ramp Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1455,"latitude":33.6245,"longitude":-111.921334,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":68,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AK9","iata":"","local":"6AK9","name":"Cizek North Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":300,"latitude":61.63349914550781,"longitude":-149.6820068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1320,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AR9","iata":"","local":"6AR9","name":"Pine Mountain Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Flippin","elevation_ft":880,"latitude":36.4152984619,"longitude":-92.6943969727,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AR1","iata":"","local":"6AR1","name":"Elder Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Cave Springs","elevation_ft":1300,"latitude":36.277901,"longitude":-94.196602,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AZ6","iata":"","local":"6AZ6","name":"Copper Queen Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Bisbee","elevation_ft":5001,"latitude":31.417691,"longitude":-109.882507,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6AZ7","iata":"","local":"6AZ7","name":"Toon Tail Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tonopah","elevation_ft":1115,"latitude":33.50279998779297,"longitude":-112.78600311279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":175,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CA0","iata":"","local":"6CA0","name":"DoubleTree by Hilton Hotel Los Angeles Downtown Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":490,"latitude":34.050686,"longitude":-118.242663,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CA2","iata":"","local":"6CA2","name":"SCE Rosemead Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Rosemead","elevation_ft":229,"latitude":34.050056,"longitude":-118.081087,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CA3","iata":"SPQ","local":"6CA3","name":"Catalina Air-Sea Terminal Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Pedro","elevation_ft":5,"latitude":33.7491989136,"longitude":-118.275001526,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CA4","iata":"","local":"6CA4","name":"East Valley Sheriff's Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Thousand Oaks","elevation_ft":917,"latitude":34.24694,"longitude":-118.835612,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CA7","iata":"","local":"","name":"J & J Crop Dusters Inc Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Arvin","elevation_ft":388,"latitude":35.180093,"longitude":-118.855967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CA6","iata":"","local":"6CA6","name":"Eagle Ridge Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Railroad Flat","elevation_ft":2870,"latitude":38.32770156860352,"longitude":-120.47699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":33,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AZ5","iata":"","local":"6AZ5","name":"Ash Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Pearce","elevation_ft":4680,"latitude":31.857967,"longitude":-109.535515,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AZ8","iata":"","local":"6AZ8","name":"Flying Diamond Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Sahuarita","elevation_ft":3800,"latitude":31.937751,"longitude":-111.118952,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2650,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CA8","iata":"","local":"6CA8","name":"Depue Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Barstow","elevation_ft":2313,"latitude":34.856232,"longitude":-117.137303,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":90,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CL2","iata":"","local":"6CL2","name":"White Pine Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Eagleville","elevation_ft":4550,"latitude":41.33050155639648,"longitude":-120.09700012207033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CL3","iata":"","local":"6CL3","name":"William Shells County Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fillmore","elevation_ft":720,"latitude":34.38029861450195,"longitude":-118.86900329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CL5","iata":"","local":"6CL5","name":"Majlar Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Ojai","elevation_ft":2420,"latitude":34.156700134277344,"longitude":-119.16799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CL7","iata":"","local":"6CL7","name":"Orange Co Sheriffs Forensics Lab Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ana","elevation_ft":223,"latitude":33.7475013733,"longitude":-117.876998901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CN5","iata":"","local":"6CN5","name":"Los Altos Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"City of Industry","elevation_ft":343,"latitude":34.055566,"longitude":-117.992526,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":37,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CN6","iata":"","local":"6CN6","name":"Kaiser Permanente South Sacramento Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":39,"latitude":38.469856,"longitude":-121.420743,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CO7","iata":"","local":"6CO7","name":"Monument Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4575,"latitude":39.096900939941406,"longitude":-108.5999984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":25,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CO8","iata":"","local":"6CO8","name":"West Area Pwr Admin Ops Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Montrose","elevation_ft":5825,"latitude":38.4660987854,"longitude":-107.873001099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CO9","iata":"","local":"6CO9","name":"Salida Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Salida","elevation_ft":7050,"latitude":38.53279876708984,"longitude":-105.98999786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6CO2","iata":"","local":"6CO2","name":"Mesawood Airpark","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cedaredge","elevation_ft":7200,"latitude":38.960694,"longitude":-107.958418,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CO6","iata":"","local":"6CO6","name":"Skywagon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Berthoud","elevation_ft":5187,"latitude":40.311886,"longitude":-105.145833,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FA3","iata":"","local":"6FA3","name":"Med-Trans Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":25,"latitude":30.300408,"longitude":-85.65907,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FA4","iata":"","local":"6FA4","name":"Mosquito Control Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palm Coast","elevation_ft":33,"latitude":29.457582,"longitude":-81.20833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FA5","iata":"","local":"6FA5","name":"Nemours Childrens Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":89,"latitude":28.376817,"longitude":-81.274871,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FD1","iata":"","local":"6FD1","name":"Crystal River Power Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Crystal River","elevation_ft":15,"latitude":28.959439,"longitude":-82.692903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FD8","iata":"","local":"6FD8","name":"Broward Health Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":27,"latitude":26.103359,"longitude":-80.140462,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FL1","iata":"","local":"6FL1","name":"Mayo Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":15,"latitude":30.264936,"longitude":-81.441263,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FL2","iata":"","local":"","name":"Kilpatrick Farm Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Sneads","elevation_ft":160,"latitude":30.7274,"longitude":-84.917702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FD2","iata":"","local":"6FD2","name":"Big Oaks Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chuluota","elevation_ft":25,"latitude":28.666900634765625,"longitude":-81.08450317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FD6","iata":"","local":"6FD6","name":"Britt Brown & Porter Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Eustis","elevation_ft":167,"latitude":28.905000686645508,"longitude":-81.43309783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FL3","iata":"","local":"6FL3","name":"Payson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Punta Gorda","elevation_ft":62,"latitude":26.937299728393555,"longitude":-81.56700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FD7","iata":"","local":"6FD7","name":"Thomson Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ellenton","elevation_ft":35,"latitude":27.5442008972168,"longitude":-82.53009796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2750,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FL5","iata":"","local":"6FL5","name":"HCA Florida Twin Cities Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Niceville","elevation_ft":84,"latitude":30.534214,"longitude":-86.496778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FL6","iata":"","local":"6FL6","name":"Sarasota Dept Of Fire-Rescue East Side Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":25,"latitude":27.3388996124,"longitude":-82.4964981079,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6FL7","iata":"","local":"6FL7","name":"Timmer Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Wales","elevation_ft":104,"latitude":27.834669,"longitude":-81.437533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":465,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6GA3","iata":"","local":"6GA3","name":"Hca Parkway Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Lithia Springs","elevation_ft":900,"latitude":33.778099060058594,"longitude":-84.61139678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6GA6","iata":"","local":"6GA6","name":"Central State Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Milledgeville","elevation_ft":390,"latitude":33.02320098876953,"longitude":-83.20099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6GA7","iata":"","local":"6GA7","name":"Mac Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1100,"latitude":34.20610046386719,"longitude":-84.29530334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6GA5","iata":"","local":"6GA5","name":"Kolibri Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Whitesburg","elevation_ft":1100,"latitude":33.579378,"longitude":-84.902771,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FL9","iata":"","local":"6FL9","name":"Saw Whet Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bell","elevation_ft":50,"latitude":29.690000534057617,"longitude":-82.87120056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6GA1","iata":"","local":"6GA1","name":"Fagundes Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Haralson","elevation_ft":864,"latitude":33.19998,"longitude":-84.581747,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6GA4","iata":"","local":"6GA4","name":"Spring Valley Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Loganville","elevation_ft":920,"latitude":33.79710006713867,"longitude":-83.85130310058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6GA0","iata":"","local":"6GA0","name":"Stoney Point Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1150,"latitude":34.132598876953125,"longitude":-84.19940185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IA0","iata":"","local":"6IA0","name":"Decatur County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Leon","elevation_ft":1100,"latitude":40.7505989074707,"longitude":-93.73580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA1","iata":"","local":"6IA1","name":"Loring Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Sac City","elevation_ft":1219,"latitude":42.41939926147461,"longitude":-94.9792022705078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA2","iata":"","local":"6IA2","name":"Jennie Edmundson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Council Bluffs","elevation_ft":1000,"latitude":41.26919937133789,"longitude":-95.83529663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA3","iata":"","local":"6IA3","name":"Saint Luke's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Sioux City","elevation_ft":1286,"latitude":42.51969909667969,"longitude":-96.40609741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA4","iata":"","local":"6IA4","name":"Polk County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Des Moines","elevation_ft":877,"latitude":41.61669921875,"longitude":-93.6406021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA6","iata":"","local":"","name":"Leise Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Albion","elevation_ft":1000,"latitude":42.150002,"longitude":-92.975197,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA8","iata":"","local":"6IA8","name":"Mmsc Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Marshalltown","elevation_ft":920,"latitude":42.04859924316406,"longitude":-92.9072036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA9","iata":"","local":"6IA9","name":"Clarke County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Osceola","elevation_ft":1134,"latitude":41.026100158691406,"longitude":-93.76799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IA7","iata":"","local":"6IA7","name":"R S Auto Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Lockridge","elevation_ft":770,"latitude":40.99039840698242,"longitude":-91.74420166015624,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6GE2","iata":"","local":"6GE2","name":"Rainbow Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Woodland","elevation_ft":780,"latitude":32.832801818847656,"longitude":-84.53780364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6GE4","iata":"","local":"6GE4","name":"M K Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hogansville","elevation_ft":866,"latitude":33.168711,"longitude":-84.830021,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1593,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6II5","iata":"","local":"6II5","name":"Southport Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":801,"latitude":39.66809844970703,"longitude":-86.09500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IL1","iata":"","local":"6IL1","name":"The American Coal Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Galatia","elevation_ft":439,"latitude":37.8384017944,"longitude":-88.5828018188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IL3","iata":"","local":"","name":"Rummel Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"German Valley","elevation_ft":850,"latitude":42.166698,"longitude":-89.500099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IL6","iata":"","local":"","name":"Reid Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Gilberts","elevation_ft":920,"latitude":42.118401,"longitude":-88.407898,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2330,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IL7","iata":"","local":"","name":"Ameritech Center Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Hoffman Estates","elevation_ft":842,"latitude":42.077801,"longitude":-88.123595,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IL8","iata":"","local":"6IL8","name":"Centralia Correctional Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Centralia","elevation_ft":465,"latitude":38.55440139770508,"longitude":-89.19640350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IL4","iata":"","local":"6IL4","name":"Foxfield Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lanark","elevation_ft":895,"latitude":42.160301208496094,"longitude":-89.88619995117188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6II7","iata":"","local":"6II7","name":"Bergs Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lizton","elevation_ft":975,"latitude":39.88619995117188,"longitude":-86.5813980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6II2","iata":"","local":"6II2","name":"Willis Site Number 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greenfield","elevation_ft":881,"latitude":39.733398,"longitude":-85.723297,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1400,"width_ft":167,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6II8","iata":"","local":"6II8","name":"Godahavit Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Wheatland","elevation_ft":495,"latitude":38.65449905395508,"longitude":-87.28279876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IL5","iata":"","local":"6IL5","name":"Keil Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Dongola","elevation_ft":525,"latitude":37.38639831542969,"longitude":-89.160400390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IS1","iata":"","local":"6IS1","name":"Cary Fire Dept Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Cary","elevation_ft":830,"latitude":42.2125015259,"longitude":-88.2522964478,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IS2","iata":"","local":"6IS2","name":"Lemont Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Lemont","elevation_ft":590,"latitude":41.672156,"longitude":-88.006368,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IS5","iata":"","local":"6IS5","name":"Presence Holy Family Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Des Plaines","elevation_ft":650,"latitude":42.054945,"longitude":-87.891348,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IS7","iata":"","local":"6IS7","name":"Presence Sts Mary and Elizabeth Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":597,"latitude":41.902802,"longitude":-87.6828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":88,"width_ft":88,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IS9","iata":"","local":"6IS9","name":"St Joseph Medical Center - Joliet Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Joliet","elevation_ft":641,"latitude":41.529122,"longitude":-88.137063,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6IN2","iata":"","local":"6IN2","name":"Whelen Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Waldron","elevation_ft":870,"latitude":39.49359893798828,"longitude":-85.64859771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IN6","iata":"","local":"6IN6","name":"Mershon Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Monrovia","elevation_ft":870,"latitude":39.54890060424805,"longitude":-86.47669982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IS0","iata":"","local":"6IS0","name":"Day Aero-Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Urbana","elevation_ft":690,"latitude":40.095001220703125,"longitude":-88.12870025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IN3","iata":"","local":"6IN3","name":"Wyandotte Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lafayette","elevation_ft":700,"latitude":40.34920120239258,"longitude":-86.76390075683594,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IS8","iata":"","local":"6IS8","name":"Trisler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Homer","elevation_ft":672,"latitude":39.98949813842773,"longitude":-87.9052963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2260,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6JY8","iata":"","local":"6JY8","name":"Cablevision Bethpage Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Bethpage","elevation_ft":142,"latitude":40.7593994140625,"longitude":-73.49690246582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H2","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KS0","iata":"","local":"6KS0","name":"Republic County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Belleville","elevation_ft":1470,"latitude":39.81779861450195,"longitude":-97.63729858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KS1","iata":"","local":"","name":"Quinter Air Strip","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Quinter","elevation_ft":2681,"latitude":39.063851,"longitude":-100.243721,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KS3","iata":"","local":"","name":"Walker Strip","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Sharon Springs","elevation_ft":3670,"latitude":38.844154,"longitude":-101.747646,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KS9","iata":"","local":"6KS9","name":"Providence Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Kansas City","elevation_ft":986,"latitude":39.1268997192,"longitude":-94.7876968384,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KY0","iata":"","local":"6KY0","name":"Harlan ARH Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Harlan","elevation_ft":1407,"latitude":36.809044,"longitude":-83.315034,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KY8","iata":"","local":"6KY8","name":"Gateway Industrial Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Jenkins","elevation_ft":1770,"latitude":37.159756,"longitude":-82.664003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LA0","iata":"","local":"6LA0","name":"Jackson Barracks Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":5,"latitude":29.953501,"longitude":-90.009499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6KY6","iata":"","local":"6KY6","name":"Jeffries Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Crestwood","elevation_ft":803,"latitude":38.3606,"longitude":-85.363098,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6KS4","iata":"","local":"6KS4","name":"Bussen Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Sharon Springs","elevation_ft":3475,"latitude":38.907264,"longitude":-101.785326,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3003,"width_ft":88,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6KY4","iata":"","local":"6KY4","name":"Adair Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Fountain Run","elevation_ft":870,"latitude":36.753333,"longitude":-85.953889,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6LA1","iata":"","local":"6LA1","name":"Cottonwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Providence","elevation_ft":120,"latitude":32.98400115966797,"longitude":-91.20590209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LA2","iata":"","local":"","name":"Division 'B' Office Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Houma","elevation_ft":10,"latitude":29.587146,"longitude":-90.738619,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LA4","iata":"","local":"","name":"Dyer Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Oakdale","elevation_ft":118,"latitude":30.81204,"longitude":-92.581186,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LA6","iata":"","local":"6LA6","name":"Williams Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Mangham","elevation_ft":79,"latitude":32.224604,"longitude":-91.856413,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LA7","iata":"","local":"6LA7","name":"Cagc Freshwater Terminal Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Pecan Island","elevation_ft":4,"latitude":29.53770065307617,"longitude":-92.30290222167967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LL5","iata":"","local":"6LL5","name":"Smith Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Berlin","elevation_ft":632,"latitude":39.78950119018555,"longitude":-89.99120330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LL7","iata":"","local":"6LL7","name":"Jasper County Safety Council Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Newton","elevation_ft":540,"latitude":38.98949813842773,"longitude":-88.17639923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LL9","iata":"","local":"6LL9","name":"Hurst Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Coulterville","elevation_ft":529,"latitude":38.19229888916016,"longitude":-89.59539794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6LL0","iata":"","local":"6LL0","name":"Williamson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Neoga","elevation_ft":664,"latitude":39.31890106201172,"longitude":-88.42500305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2150,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6LL4","iata":"","local":"6LL4","name":"Wildy Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Athens","elevation_ft":450,"latitude":38.26750183105469,"longitude":-89.89179992675781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6LL6","iata":"","local":"6LL6","name":"Fischer's RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Memphis","elevation_ft":440,"latitude":38.4916992188,"longitude":-89.6633987427,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6LA5","iata":"","local":"6LA5","name":"Church Point Flyers Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Church Point","elevation_ft":45,"latitude":30.459717,"longitude":-92.240512,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":115,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MA0","iata":"","local":"6MA0","name":"Lake Gardner Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Amesbury","elevation_ft":87,"latitude":42.86149978637695,"longitude":-70.94339752197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":3000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA1","iata":"","local":"6MA1","name":"Nason Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Sherborn","elevation_ft":182,"latitude":42.205992,"longitude":-71.378855,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA3","iata":"","local":"6MA3","name":"Scibelli Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Southwick","elevation_ft":225,"latitude":42.06290054321289,"longitude":-72.72450256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA4","iata":"","local":"6MA4","name":"Ferncroft Village Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Middleton","elevation_ft":200,"latitude":42.5973014831543,"longitude":-70.97029876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA5","iata":"","local":"6MA5","name":"Baystate Medical Ctr Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Springfield","elevation_ft":100,"latitude":42.1220016479,"longitude":-72.6008987427,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA6","iata":"","local":"6MA6","name":"Cotuit Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Cotuit","elevation_ft":43,"latitude":41.617045,"longitude":-70.44327,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA7","iata":"","local":"6MA7","name":"Quantum (Shrewsbury) Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Shrewsbury","elevation_ft":545,"latitude":42.27289962768555,"longitude":-71.69259643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA8","iata":"","local":"6MA8","name":"Acushnet River Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"New Bedford","elevation_ft":0,"latitude":41.64730072021485,"longitude":-70.9175033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":3500,"width_ft":200,"surface":"W"},{"id":"16W/34W","length_ft":3500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA9","iata":"","local":"6MA9","name":"Cuttyhunk Harbor Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Cuttyhunk","elevation_ft":0,"latitude":41.423199,"longitude":-70.927298,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":2500,"width_ft":100,"surface":"W"},{"id":"09W/27W","length_ft":2500,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MA2","iata":"","local":"6MA2","name":"Meadowbrook Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Amesbury","elevation_ft":117,"latitude":42.86009979248047,"longitude":-70.99659729003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MD6","iata":"","local":"6MD6","name":"UM Charles Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"La Plata","elevation_ft":168,"latitude":38.528516,"longitude":-76.970992,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MD9","iata":"","local":"6MD9","name":"Washington Adventist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Takoma Park","elevation_ft":242,"latitude":38.985733,"longitude":-77.001624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MI2","iata":"","local":"","name":"Deyoung Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Allendale","elevation_ft":656,"latitude":42.9678,"longitude":-85.9617,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MI4","iata":"","local":"6MI4","name":"Guardian Industries Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Novi","elevation_ft":832,"latitude":42.45000076293945,"longitude":-83.46990203857422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MI5","iata":"","local":"6MI5","name":"Survival Flight Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ann Arbor","elevation_ft":892,"latitude":42.2839012146,"longitude":-83.727996826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MI9","iata":"","local":"6MI9","name":"Jr North Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Long Lake","elevation_ft":935,"latitude":44.41529846191406,"longitude":-83.92919921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":650,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6ME6","iata":"","local":"6ME6","name":"Abbots Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"East Sumner","elevation_ft":730,"latitude":44.353332,"longitude":-70.395,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MI1","iata":"","local":"6MI1","name":"Jensen Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Millington","elevation_ft":755,"latitude":43.26309967041016,"longitude":-83.56379699707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1980,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MI6","iata":"","local":"6MI6","name":"Hancock Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Buchanan","elevation_ft":760,"latitude":41.85279846191406,"longitude":-86.43609619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":50,"surface":"T"},{"id":"14/32","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MI3","iata":"","local":"6MI3","name":"Curt's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Zeeland","elevation_ft":630,"latitude":42.76309967041016,"longitude":-85.98280334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MI7","iata":"","local":"6MI7","name":"J P's Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Zeeland","elevation_ft":708,"latitude":42.80609893798828,"longitude":-85.93419647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MN1","iata":"","local":"","name":"Chuck West Memorial Heliport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Evansville","elevation_ft":1400,"latitude":46.010201,"longitude":-95.681198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MN3","iata":"","local":"","name":"Hopkins Police Heliport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Hopkins","elevation_ft":918,"latitude":44.916599,"longitude":-93.416901,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":5500,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MN5","iata":"","local":"6MN5","name":"Gale's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"French Lake","elevation_ft":1011,"latitude":45.20769882202149,"longitude":-94.1624984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":4000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MN6","iata":"","local":"6MN6","name":"Goose Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Waconia","elevation_ft":967,"latitude":44.88750076293945,"longitude":-93.84210205078124,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":5000,"width_ft":200,"surface":"W"},{"id":"12W/30W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MN7","iata":"","local":"","name":"Mankato Farmstrip Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Mankato","elevation_ft":1002,"latitude":44.099998,"longitude":-93.916901,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1562,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MO0","iata":"","local":"6MO0","name":"Blackhawk Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Old Monroe","elevation_ft":584,"latitude":38.95560073852539,"longitude":-90.8147964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MO5","iata":"","local":"6MO5","name":"Perry County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Perryville","elevation_ft":560,"latitude":37.732219,"longitude":-89.866024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MN9","iata":"","local":"6MN9","name":"Benson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"White Bear Township","elevation_ft":942,"latitude":45.11660003662109,"longitude":-92.99600219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MN0","iata":"","local":"6MN0","name":"Sky Blue Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ponsford","elevation_ft":1620,"latitude":47.055599,"longitude":-95.423103,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3700,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MO2","iata":"","local":"6MO2","name":"Sainte Genevieve Flying Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sainte Genevieve","elevation_ft":380,"latitude":37.98577,"longitude":-90.04118,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MO4","iata":"","local":"6MO4","name":"Wixted Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Osceola","elevation_ft":850,"latitude":38.040369,"longitude":-93.765679,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2340,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MO9","iata":"","local":"","name":"West Aero Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Peculiar","elevation_ft":980,"latitude":38.698875,"longitude":-94.473442,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MS1","iata":"","local":"6MS1","name":"Woodbridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Brandon","elevation_ft":325,"latitude":32.4557991027832,"longitude":-89.9697036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":65,"surface":"T"},{"id":"18/36","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MS2","iata":"","local":"6MS2","name":"Wells Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Crystal Springs","elevation_ft":455,"latitude":31.983861,"longitude":-90.335361,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MS4","iata":"","local":"6MS4","name":"South Central Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Laurel","elevation_ft":245,"latitude":31.684899,"longitude":-89.141401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MS6","iata":"","local":"6MS6","name":"Kaehr Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Brandon","elevation_ft":345,"latitude":32.401461,"longitude":-89.896952,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2808,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MT4","iata":"","local":"6MT4","name":"Brown Cabin Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MT","municipality":"Libby","elevation_ft":3340,"latitude":48.038069,"longitude":-115.091325,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":12000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MU6","iata":"","local":"6MU6","name":"St Anthony's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Concord","elevation_ft":635,"latitude":38.507678,"longitude":-90.382008,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MU8","iata":"","local":"6MU8","name":"Mercy St Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Mountain View","elevation_ft":1199,"latitude":37.002861,"longitude":-91.70265,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6MU9","iata":"","local":"6MU9","name":"Craddock Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Licking","elevation_ft":1199,"latitude":37.5348014831543,"longitude":-91.96520233154295,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MU4","iata":"","local":"6MU4","name":"Flying Shamrock Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mexico","elevation_ft":810,"latitude":39.03779983520508,"longitude":-91.72540283203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MO7","iata":"","local":"6MO7","name":"Riverside Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ozark","elevation_ft":1280,"latitude":37.02920150756836,"longitude":-93.16680145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC6","iata":"","local":"6NC6","name":"North Carolina Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Gastonia","elevation_ft":814,"latitude":35.28518,"longitude":-81.24341,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NC3","iata":"","local":"6NC3","name":"Eastover Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":160,"latitude":35.08639907836914,"longitude":-78.77220153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC9","iata":"","local":"6NC9","name":"Moss Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kinston","elevation_ft":30,"latitude":35.207793,"longitude":-77.759771,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":60,"surface":"T"},{"id":"13/31","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC0","iata":"","local":"6NC0","name":"Cox-Grantham Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Grantham","elevation_ft":157,"latitude":35.289100646972656,"longitude":-78.18000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2800,"width_ft":54,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC7","iata":"","local":"6NC7","name":"Circle P Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Newport","elevation_ft":30,"latitude":34.751399993896484,"longitude":-76.90609741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6ND2","iata":"","local":"6ND2","name":"Larson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Fullerton","elevation_ft":1442,"latitude":46.2588996887207,"longitude":-98.38790130615234,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC8","iata":"","local":"6NC8","name":"Marchmont Plantation Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Advance","elevation_ft":730,"latitude":35.938201904296875,"longitude":-80.3844985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC1","iata":"","local":"6NC1","name":"Little Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Denver","elevation_ft":1030,"latitude":35.591767,"longitude":-81.080421,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC2","iata":"","local":"6NC2","name":"Wilhelm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kannapolis","elevation_ft":750,"latitude":35.511199951171875,"longitude":-80.55809783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NA6","iata":"","local":"6NA6","name":"Marsh Brothers Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Newburg","elevation_ft":1481,"latitude":48.61920166015625,"longitude":-100.97799682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1602,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NJ2","iata":"","local":"6NJ2","name":"Tamarack Flyers Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Branchville","elevation_ft":490,"latitude":41.15430068969727,"longitude":-74.71320343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NJ3","iata":"","local":"6NJ3","name":"Wayne Office Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Wayne","elevation_ft":406,"latitude":40.97930145263672,"longitude":-74.2509994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NJ5","iata":"","local":"6NJ5","name":"Lincoln Tunnel Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Weehawken","elevation_ft":66,"latitude":40.764627,"longitude":-74.022613,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NJ6","iata":"","local":"6NJ6","name":"185 Monmouth Parkway Associates Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"West Long Branch","elevation_ft":20,"latitude":40.30009841918945,"longitude":-74.02539825439453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NJ7","iata":"","local":"6NJ7","name":"Greenwood Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NJ","municipality":"West Milford","elevation_ft":635,"latitude":41.18009948730469,"longitude":-74.33429718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NJ9","iata":"","local":"","name":"Bridgeport-Cahill Field","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgeport","elevation_ft":15,"latitude":39.795874,"longitude":-75.342264,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6ND9","iata":"","local":"6ND9","name":"Skinningsrud Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Berthold","elevation_ft":2010,"latitude":48.392799377441406,"longitude":-101.76399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6ND6","iata":"","local":"6ND6","name":"Fugleberg Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Portland","elevation_ft":1090,"latitude":47.516700744628906,"longitude":-97.55039978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NE3","iata":"","local":"6NE3","name":"Beaver Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Tekamah","elevation_ft":1029,"latitude":41.844949,"longitude":-96.12402,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NE0","iata":"","local":"6NE0","name":"Van Boening Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wallace","elevation_ft":3102,"latitude":40.78689956665039,"longitude":-101.16600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3020,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NE8","iata":"","local":"6NE8","name":"Hoppy's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Benkelman","elevation_ft":3227,"latitude":40.08689880371094,"longitude":-101.56900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NK3","iata":"","local":"6NK3","name":"North Shore University Hospital Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Manhasset","elevation_ft":200,"latitude":40.76940155029297,"longitude":-73.7052993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NK5","iata":"","local":"6NK5","name":"Erie County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Buffalo","elevation_ft":728,"latitude":42.926700592041016,"longitude":-78.83280181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NK6","iata":"","local":"6NK6","name":"New York State D.E.C. Indian Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Indian Lake","elevation_ft":1705,"latitude":43.76810073852539,"longitude":-74.26329803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NK9","iata":"","local":"6NK9","name":"Cec Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Marcy","elevation_ft":1072,"latitude":43.17720031738281,"longitude":-75.22779846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NY0","iata":"","local":"6NY0","name":"Orange Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Middletown","elevation_ft":437,"latitude":41.442151,"longitude":-74.366707,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NY5","iata":"","local":"6NY5","name":"Mary Immaculate Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Jamaica Queens","elevation_ft":15,"latitude":40.70539855957031,"longitude":-73.80460357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NY6","iata":"","local":"6NY6","name":"Firemans White Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Kauneonga Lake","elevation_ft":1323,"latitude":41.68429946899414,"longitude":-74.83159637451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":3500,"width_ft":500,"surface":"W"},{"id":"12W/30W","length_ft":2000,"width_ft":500,"surface":"W"},{"id":"16W/34W","length_ft":4500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6NY3","iata":"","local":"6NY3","name":"Airy-Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Interlaken","elevation_ft":805,"latitude":42.64400100708008,"longitude":-76.72969818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NY1","iata":"","local":"6NY1","name":"Old Port Royal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Corning","elevation_ft":1700,"latitude":42.11289978027344,"longitude":-77.08940124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NR6","iata":"","local":"6NR6","name":"Patton Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Nebo","elevation_ft":1270,"latitude":35.662518,"longitude":-81.873239,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NY8","iata":"","local":"6NY8","name":"Tech City Commerce Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Kingston","elevation_ft":170,"latitude":41.97347,"longitude":-73.997017,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OH2","iata":"","local":"6OH2","name":"Craighead Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Novelty","elevation_ft":1125,"latitude":41.44729995727539,"longitude":-81.27570343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OH3","iata":"","local":"","name":"R C Ford Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Berkey","elevation_ft":700,"latitude":41.705101,"longitude":-83.828796,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OH5","iata":"","local":"6OH5","name":"Connor Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Powell","elevation_ft":915,"latitude":40.16249847412109,"longitude":-83.05419921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OH8","iata":"","local":"6OH8","name":"Rmz Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Newberry","elevation_ft":1100,"latitude":41.50170135498047,"longitude":-81.2593002319336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OI4","iata":"","local":"6OI4","name":"Marion General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Marion","elevation_ft":998,"latitude":40.57120132446289,"longitude":-83.12909698486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OI6","iata":"","local":"6OI6","name":"ProMedica Toledo Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Toledo","elevation_ft":648,"latitude":41.673261,"longitude":-83.594624,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OI8","iata":"","local":"6OI8","name":"Cleveland Clinic Foundation Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":743,"latitude":41.5018056,"longitude":-81.6386833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OH7","iata":"","local":"6OH7","name":"Nietz Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bowling Green","elevation_ft":676,"latitude":41.407008,"longitude":-83.679939,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OG3","iata":"","local":"6OG3","name":"Sky Wagon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Klamath Falls","elevation_ft":4150,"latitude":42.130283,"longitude":-121.531633,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OH9","iata":"","local":"6OH9","name":"Kemps Field of Dreams Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Covington","elevation_ft":974,"latitude":40.105899810791016,"longitude":-84.39990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OI9","iata":"","local":"6OI9","name":"Red Roof Inns Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":873,"latitude":40.05009841918945,"longitude":-83.1270980834961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OK3","iata":"","local":"","name":"Pinson's Cottonpatch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Tipton","elevation_ft":1297,"latitude":34.4748,"longitude":-99.1315,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OK4","iata":"","local":"6OK4","name":"Hillcrest Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":787,"latitude":36.14590072631836,"longitude":-95.96690368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OK5","iata":"","local":"","name":"Cary Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Reydon","elevation_ft":2455,"latitude":35.628601,"longitude":-99.929397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OR3","iata":"","local":"6OR3","name":"Adventist Health Tillamook Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Tillamook","elevation_ft":3,"latitude":45.457296,"longitude":-123.85501,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OR5","iata":"","local":"6OR5","name":"Meridian Park Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Tualatin","elevation_ft":215,"latitude":45.3780192213,"longitude":-122.739767432,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6OK0","iata":"","local":"6OK0","name":"White Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Kingfisher","elevation_ft":1110,"latitude":35.89139938354492,"longitude":-97.95890045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OR2","iata":"","local":"6OR2","name":"Chenoweth Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"The Dalles","elevation_ft":609,"latitude":45.610661,"longitude":-121.279282,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OR4","iata":"","local":"6OR4","name":"Tailwheel Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Prineville","elevation_ft":3130,"latitude":44.2731825,"longitude":-120.794741944,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OK1","iata":"","local":"6OK1","name":"John Reid Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Tahlequah","elevation_ft":831,"latitude":36.00149917602539,"longitude":-95.00299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1970,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OK9","iata":"","local":"6OK9","name":"Mulberry Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Stillwater","elevation_ft":1026,"latitude":36.14170074,"longitude":-96.94229889,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2670,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PA2","iata":"","local":"6PA2","name":"UPMC Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Somerset","elevation_ft":2272,"latitude":40.007049,"longitude":-79.077367,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PA7","iata":"","local":"","name":"Berwick Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Berwick","elevation_ft":610,"latitude":41.0695,"longitude":-76.216301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PN2","iata":"","local":"6PN2","name":"Lgh-Women and Babies Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":332,"latitude":40.06499862670898,"longitude":-76.35060119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PN3","iata":"","local":"6PN3","name":"Port Meadville Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Meadville","elevation_ft":1220,"latitude":41.5973014831543,"longitude":-80.1709976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":106,"width_ft":76,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PN4","iata":"","local":"6PN4","name":"Pocono Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mount Pocono","elevation_ft":1203,"latitude":41.08919906616211,"longitude":-75.31559753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PA6","iata":"","local":"6PA6","name":"Air Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Moscow","elevation_ft":1550,"latitude":41.35010147094727,"longitude":-75.48300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PA8","iata":"","local":"6PA8","name":"Tall Pines Airfield","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lock Haven","elevation_ft":1500,"latitude":41.20140075683594,"longitude":-77.44080352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PA4","iata":"","local":"6PA4","name":"Scandia Air Park","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Russell","elevation_ft":2050,"latitude":41.93059921264648,"longitude":-79.0342025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OR8","iata":"","local":"6OR8","name":"Holce & Oblack Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Birkenfield","elevation_ft":500,"latitude":45.971500396729,"longitude":-123.34999847412,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OR7","iata":"","local":"6OR7","name":"Schmidt Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Boring","elevation_ft":650,"latitude":45.452931,"longitude":-122.31821,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OR6","iata":"","local":"6OR6","name":"Wonder Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Wilderville","elevation_ft":1250,"latitude":42.368984,"longitude":-123.526003,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PN6","iata":"","local":"6PN6","name":"Henke Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1255,"latitude":40.38330078125,"longitude":-80.30000305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PN7","iata":"","local":"6PN7","name":"Moyer Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pocono Lake","elevation_ft":1675,"latitude":41.10029983520508,"longitude":-75.58080291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PN8","iata":"","local":"6PN8","name":"Posh Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bethlehem","elevation_ft":320,"latitude":40.64590072631836,"longitude":-75.33300018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PS0","iata":"","local":"6PS0","name":"Ellwood City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Ellwood City","elevation_ft":965,"latitude":40.8672981262207,"longitude":-80.27619934082031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PS4","iata":"","local":"6PS4","name":"Riddle Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Media","elevation_ft":317,"latitude":39.912899017333984,"longitude":-75.43160247802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PS5","iata":"","local":"6PS5","name":"Pir Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Nazareth","elevation_ft":450,"latitude":40.72679901123047,"longitude":-75.31990051269531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PS6","iata":"","local":"6PS6","name":"North Middlesex Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Carlisle","elevation_ft":489,"latitude":40.257333,"longitude":-77.136469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TA1","iata":"","local":"6TA1","name":"Sky Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Eustace","elevation_ft":530,"latitude":32.36109924316406,"longitude":-95.87560272216795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6PS3","iata":"","local":"6PS3","name":"Champ Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Knoxville","elevation_ft":1220,"latitude":41.95899963378906,"longitude":-77.42610168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PS8","iata":"","local":"6PS8","name":"Tyler Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Milford","elevation_ft":1401,"latitude":41.820464,"longitude":-75.69859,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1475,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TA2","iata":"","local":"6TA2","name":"Rockys Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Leonard","elevation_ft":685,"latitude":33.37220001220703,"longitude":-96.36219787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TA0","iata":"","local":"6TA0","name":"Rocking R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eldorado","elevation_ft":2250,"latitude":30.79898,"longitude":-100.33455,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4200,"width_ft":105,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TA4","iata":"","local":"","name":"Winn Exploration Co Inc Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Pass","elevation_ft":881,"latitude":28.718904,"longitude":-100.409544,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TA6","iata":"","local":"6TA6","name":"B & S Warehouse Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":70,"latitude":29.721900939941406,"longitude":-95.52220153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TA8","iata":"","local":"6TA8","name":"Bell Helicopters Auxiliary Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Hurst","elevation_ft":472,"latitude":32.79899978637695,"longitude":-97.15059661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":938,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TE4","iata":"","local":"","name":"Coldwater Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sunray","elevation_ft":3446,"latitude":36.233398,"longitude":-101.734,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TE7","iata":"","local":"6TE7","name":"Mc Neill Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wayside","elevation_ft":3413,"latitude":34.837600708,"longitude":-101.57900238,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":34,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TE6","iata":"","local":"6TE6","name":"6666 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Guthrie","elevation_ft":1775,"latitude":33.6412010193,"longitude":-100.347999573,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TN0","iata":"","local":"6TN0","name":"Waldens Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Pigeon Forge","elevation_ft":1000,"latitude":35.790401458740234,"longitude":-83.60679626464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TA9","iata":"","local":"6TA9","name":"Los Ebanos Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mathis","elevation_ft":225,"latitude":28.117000579833984,"longitude":-98.0447006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TN1","iata":"","local":"6TN1","name":"Weakleys Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Pleasantview","elevation_ft":705,"latitude":36.40620041,"longitude":-87.0821991,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3370,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TA3","iata":"","local":"6TA3","name":"Culp Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lawrence","elevation_ft":470,"latitude":32.72140121459961,"longitude":-96.7238998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TE3","iata":"","local":"6TE3","name":"Hahns Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Edna","elevation_ft":52,"latitude":28.94890022277832,"longitude":-96.54969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TN2","iata":"","local":"6TN2","name":"Hawkins County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Rogersville","elevation_ft":1250,"latitude":36.40039825439453,"longitude":-83.018798828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TN3","iata":"","local":"6TN3","name":"Sixty Six Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Sevierville","elevation_ft":1010,"latitude":35.89590072631836,"longitude":-83.5781021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TN5","iata":"","local":"","name":"Decatur County Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Parsons","elevation_ft":520,"latitude":35.63631,"longitude":-88.122036,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1863,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TN6","iata":"","local":"6TN6","name":"Milan General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Milan","elevation_ft":424,"latitude":35.91279983520508,"longitude":-88.75360107421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TN7","iata":"","local":"6TN7","name":"St. Somewhere Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Grand Junction","elevation_ft":550,"latitude":35.02389907836914,"longitude":-89.20500183105469,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TN8","iata":"","local":"6TN8","name":"Valley Regional Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Camden","elevation_ft":438,"latitude":36.0547981262207,"longitude":-88.10669708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TS2","iata":"","local":"","name":"Longs Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Leming","elevation_ft":456,"latitude":29.099062,"longitude":-98.465587,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TS0","iata":"","local":"6TS0","name":"True Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hale Center","elevation_ft":3385,"latitude":34.089612,"longitude":-101.740115,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TS5","iata":"","local":"6TS5","name":"Microfocus Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":720,"latitude":33.073688,"longitude":-96.814195,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TS1","iata":"","local":"6TS1","name":"Worrell Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kempner","elevation_ft":960,"latitude":31.17790031433105,"longitude":-98.0730972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TN9","iata":"","local":"6TN9","name":"Dripping Springs Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Burns","elevation_ft":728,"latitude":36.0614013671875,"longitude":-87.24720001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TS9","iata":"","local":"6TS9","name":"Medical City Plano Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":700,"latitude":33.022833,"longitude":-96.766564,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TX0","iata":"","local":"","name":"Department of Public Safety Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3211,"latitude":33.591688,"longitude":-101.847576,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TX1","iata":"","local":"","name":"Action 5 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":630,"latitude":32.750099,"longitude":-97.266998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TX2","iata":"","local":"","name":"Circle M Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Frelsburg","elevation_ft":340,"latitude":29.834999,"longitude":-96.514397,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5998,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TX3","iata":"","local":"","name":"Drewery Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"McKinney","elevation_ft":700,"latitude":33.233501,"longitude":-96.7836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TX5","iata":"","local":"6TX5","name":"Baptist St Anthony's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Amarillo","elevation_ft":3688,"latitude":35.195138,"longitude":-101.920187,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6VA3","iata":"","local":"6VA3","name":"Chippenham Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":180,"latitude":37.51461,"longitude":-77.525963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6TX9","iata":"","local":"6TX9","name":"Stovall Ranch Number 4 Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":3010,"latitude":29.859104,"longitude":-102.790603,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TX7","iata":"","local":"6TX7","name":"Flying L Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mansfield","elevation_ft":680,"latitude":32.537601470947266,"longitude":-97.13079833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TX6","iata":"","local":"6TX6","name":"JTJ Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corsicana","elevation_ft":350,"latitude":32.0826,"longitude":-96.356697,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TS8","iata":"","local":"6TS8","name":"Rabb And Nobra Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Industry","elevation_ft":400,"latitude":30.003333,"longitude":-96.581111,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TX4","iata":"","local":"6TX4","name":"Whitfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kress","elevation_ft":3330,"latitude":34.342711,"longitude":-101.542228,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6VA6","iata":"","local":"6VA6","name":"Roseland Rescue Squad Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Roseland","elevation_ft":720,"latitude":37.76319885253906,"longitude":-78.97889709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6VA7","iata":"","local":"","name":"Northampton Accomack Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Nassawadox","elevation_ft":40,"latitude":37.47565,"longitude":-75.863149,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6VA8","iata":"","local":"6VA8","name":"Mirador Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Crozet","elevation_ft":722,"latitude":38.04069900512695,"longitude":-78.756103515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6VG4","iata":"","local":"6VG4","name":"Stonesprings Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Arcola","elevation_ft":322,"latitude":38.940346,"longitude":-77.541151,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6VG8","iata":"","local":"6VG8","name":"Longview Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Leesburg","elevation_ft":279,"latitude":39.170278,"longitude":-77.519167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WA0","iata":"","local":"6WA0","name":"St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Chewelah","elevation_ft":1670,"latitude":48.29159927368164,"longitude":-117.70899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WA1","iata":"","local":"6WA1","name":"Sampson Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Camas","elevation_ft":525,"latitude":45.64979934692383,"longitude":-122.20099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WA4","iata":"","local":"6WA4","name":"Ochoa Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Othello","elevation_ft":1149,"latitude":46.862659,"longitude":-119.142937,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4500,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6VA9","iata":"","local":"6VA9","name":"Bush Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Woolwine","elevation_ft":1500,"latitude":36.84260177612305,"longitude":-80.2384033203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WA3","iata":"","local":"6WA3","name":"Green Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Basin City","elevation_ft":1000,"latitude":46.608482,"longitude":-119.290471,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2554,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WA2","iata":"","local":"6WA2","name":"Gower Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":130,"latitude":47.11149978637695,"longitude":-122.8209991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":40,"surface":"T"},{"id":"16W/34W","length_ft":5000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WA5","iata":"","local":"6WA5","name":"Wilding Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Shaw Island","elevation_ft":60,"latitude":48.575354,"longitude":-122.943568,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WA7","iata":"","local":"6WA7","name":"Metaline Radio Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Metaline Falls","elevation_ft":5130,"latitude":48.91849899291992,"longitude":-117.41600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WA8","iata":"","local":"6WA8","name":"East Gig Harbor Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Gig Harbor","elevation_ft":10,"latitude":47.33689880371094,"longitude":-122.5790023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":12,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WA9","iata":"","local":"6WA9","name":"Skagit Regional Health Arlington Specialty Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Arlington","elevation_ft":160,"latitude":48.188315,"longitude":-122.116964,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WI3","iata":"","local":"","name":"Will-Be-Gone Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Birchwood","elevation_ft":1290,"latitude":45.6772,"longitude":-91.5625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WI6","iata":"","local":"","name":"Mick Shier Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Rosiere","elevation_ft":650,"latitude":44.683998,"longitude":-87.627997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2108,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WI8","iata":"","local":"6WI8","name":"Waukesha Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Waukesha","elevation_ft":900,"latitude":43.01100158691406,"longitude":-88.2427978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6WN6","iata":"","local":"6WN6","name":"Fountain Prairie Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Columbus","elevation_ft":880,"latitude":43.380001,"longitude":-89.010696,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WI4","iata":"","local":"6WI4","name":"Saxon Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Saxon","elevation_ft":950,"latitude":46.514579,"longitude":-90.448965,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WI2","iata":"","local":"6WI2","name":"St Croix Riviera Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"River Falls","elevation_ft":895,"latitude":44.84389877319336,"longitude":-92.75579833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WA6","iata":"","local":"6WA6","name":"Carr Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Pasco","elevation_ft":625,"latitude":46.278181,"longitude":-118.958417,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6XA7","iata":"","local":"6XA7","name":"Baylor Scott & White Medical Center - McKinney Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"McKinney","elevation_ft":631,"latitude":33.220344,"longitude":-96.683478,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6XS0","iata":"","local":"6XS0","name":"Rwave Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Katy","elevation_ft":155,"latitude":29.83370018005371,"longitude":-95.8188018798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6XS1","iata":"","local":"6XS1","name":"Northeast Medical Center Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Humble","elevation_ft":168,"latitude":29.994706,"longitude":-95.276936,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6XS4","iata":"","local":"","name":"Noelke Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Mertzon","elevation_ft":2500,"latitude":31.167058,"longitude":-101.005855,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4950,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70AR","iata":"","local":"70AR","name":"Randal Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Blytheville","elevation_ft":242,"latitude":35.994342,"longitude":-89.997014,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70AZ","iata":"","local":"70AZ","name":"Regional Public Safety Training Academy Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2580,"latitude":32.065593,"longitude":-110.854411,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"6XS7","iata":"","local":"6XS7","name":"Eugene's Dream Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Springtown","elevation_ft":905,"latitude":33.0452995300293,"longitude":-97.67479705810548,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6XS2","iata":"","local":"6XS2","name":"Luscombe Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvarado","elevation_ft":700,"latitude":32.34600067138672,"longitude":-97.19920349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1650,"width_ft":80,"surface":"T"},{"id":"14/32","length_ft":2300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6XA0","iata":"","local":"6XA0","name":"Circle Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":2124,"latitude":30.351164,"longitude":-99.173056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6XS9","iata":"","local":"6XS9","name":"Harmony Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Elmendorf","elevation_ft":570,"latitude":29.29610061645508,"longitude":-98.37950134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6XA4","iata":"","local":"","name":"Zadow Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waller","elevation_ft":0,"latitude":29.991739,"longitude":-95.954354,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3320,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70CA","iata":"","local":"70CA","name":"The Wilshire Thayer Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":470,"latitude":34.062597,"longitude":-118.432328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70CO","iata":"","local":"70CO","name":"Greystone Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Evergreen","elevation_ft":7540,"latitude":39.64080047607422,"longitude":-105.39600372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70FD","iata":"","local":"70FD","name":"Gulf Coast Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":16,"latitude":30.23889923095703,"longitude":-85.55780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70FL","iata":"","local":"","name":"James A Haley Veterans Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":40,"latitude":28.063101,"longitude":-82.429298,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70GA","iata":"","local":"","name":"Gwinnett Department of Public Safety - Police Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Lawrenceville","elevation_ft":1040,"latitude":33.979453,"longitude":-83.970276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70KS","iata":"","local":"70KS","name":"Bannon Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Douglass","elevation_ft":1218,"latitude":37.581772,"longitude":-96.94602,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1825,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70IL","iata":"","local":"70IL","name":"Murphy Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Farmersville","elevation_ft":645,"latitude":39.423464,"longitude":-89.565696,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1205,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70CL","iata":"","local":"70CL","name":"Amargosa Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Death Valley Junction","elevation_ft":2037,"latitude":36.29579925537109,"longitude":-116.4260025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1625,"width_ft":50,"surface":"D"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70IN","iata":"","local":"70IN","name":"Lewis Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Milan","elevation_ft":989,"latitude":39.18170166015625,"longitude":-85.15129852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70KY","iata":"","local":"70KY","name":"Vine Grove Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Vine Grove","elevation_ft":680,"latitude":37.81589889526367,"longitude":-85.9646987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70LA","iata":"","local":"70LA","name":"Roland Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hineston","elevation_ft":220,"latitude":31.169099807739254,"longitude":-92.7563018798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70LL","iata":"","local":"70LL","name":"Adams Restricted Landing Area Number 1","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pontiac","elevation_ft":640,"latitude":40.936926,"longitude":-88.753739,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70MA","iata":"","local":"70MA","name":"Tobey Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Wareham","elevation_ft":86,"latitude":41.755001068115234,"longitude":-70.71389770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70ME","iata":"","local":"70ME","name":"SWN Pond Splash in Go Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Lyman","elevation_ft":318,"latitude":43.520544,"longitude":-70.648686,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":4000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70MI","iata":"","local":"70MI","name":"Charlevoix Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Charlevoix","elevation_ft":185,"latitude":45.314068458,"longitude":-85.2750259638,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":79,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70MN","iata":"","local":"","name":"Harry-Walt Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Cedar","elevation_ft":940,"latitude":45.351898,"longitude":-93.246101,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":5300,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70MO","iata":"","local":"","name":"Andrews Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Carthage","elevation_ft":1070,"latitude":37.2178,"longitude":-94.146301,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1550,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1675,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70NY","iata":"","local":"70NY","name":"Lakeside Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Middletown","elevation_ft":876,"latitude":41.422053,"longitude":-74.571475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70OI","iata":"","local":"70OI","name":"Crestline Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Crestline","elevation_ft":1150,"latitude":40.79230117797852,"longitude":-82.7396011352539,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":21,"width_ft":21,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70NH","iata":"","local":"70NH","name":"Surette Heliport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Concord","elevation_ft":412,"latitude":43.264916,"longitude":-71.548417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70ND","iata":"","local":"70ND","name":"Oak Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Sawyer","elevation_ft":2041,"latitude":47.933135,"longitude":-101.148175,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70NR","iata":"","local":"70NR","name":"Ruby's Landing","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Newton Grove","elevation_ft":144,"latitude":35.218562,"longitude":-78.366777,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2655,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70PA","iata":"","local":"","name":"Phico Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Mechanicsburg","elevation_ft":420,"latitude":40.245601,"longitude":-77.026901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70PR","iata":"","local":"70PR","name":"PR Police-Ponce Area Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Ponce","elevation_ft":37,"latitude":18.004055,"longitude":-66.584213,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70SC","iata":"","local":"70SC","name":"Robinson Nuclear Power Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Hartsville","elevation_ft":236,"latitude":34.4007167,"longitude":-80.1549694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70TA","iata":"","local":"","name":"BTA Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Midland","elevation_ft":2815,"latitude":31.996799,"longitude":-102.081001,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1850,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70TE","iata":"","local":"","name":"Flying Heart Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":415,"latitude":31.5021,"longitude":-97.080803,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70TS","iata":"","local":"70TS","name":"Memorial Hermann Katy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Katy","elevation_ft":131,"latitude":29.786674,"longitude":-95.78408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70TX","iata":"","local":"70TX","name":"Tgp 17 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"East Bernard","elevation_ft":130,"latitude":29.53249931335449,"longitude":-96.1457977294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70WA","iata":"","local":"70WA","name":"Whitman Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Colfax","elevation_ft":2250,"latitude":46.869483,"longitude":-117.375969,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70WI","iata":"","local":"","name":"Kanten Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Baldwin","elevation_ft":1160,"latitude":45.032203,"longitude":-92.354401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"70TT","iata":"","local":"70TT","name":"Big Bend Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Terlingua","elevation_ft":3344,"latitude":29.614018,"longitude":-103.553029,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1515,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70PN","iata":"","local":"70PN","name":"Sanders Personal Use Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Sugar Grove","elevation_ft":1455,"latitude":41.989200592041016,"longitude":-79.30110168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70OK","iata":"","local":"70OK","name":"Old 66 Strip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Miami","elevation_ft":853,"latitude":36.83369827270508,"longitude":-94.9040985107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71AZ","iata":"","local":"71AZ","name":"Spawr Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Lake Havasu City","elevation_ft":665,"latitude":34.5099983215332,"longitude":-114.34400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71FA","iata":"","local":"71FA","name":"FPL Jupiter West Office Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jupiter","elevation_ft":25,"latitude":26.907,"longitude":-80.3003471,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71FD","iata":"","local":"71FD","name":"Blackcreek International Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Middleburg","elevation_ft":5,"latitude":30.07390022277832,"longitude":-81.81580352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71FL","iata":"","local":"71FL","name":"Miami Federal Reserve Bank Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":9,"latitude":25.807396283800003,"longitude":-80.341912508,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71GA","iata":"","local":"71GA","name":"Piedmont Newton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Covington","elevation_ft":772,"latitude":33.601809,"longitude":-83.848699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71IL","iata":"","local":"71IL","name":"Lutheran General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Park Ridge","elevation_ft":805,"latitude":42.0382136985,"longitude":-87.8476452827,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71AK","iata":"","local":"71AK","name":"Bluff Park Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":110,"latitude":61.527752,"longitude":-149.496474,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71KS","iata":"","local":"71KS","name":"Stonehenge Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Williamstown","elevation_ft":1030,"latitude":39.10419845581055,"longitude":-95.2960968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71KY","iata":"","local":"71KY","name":"Sunrise Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Petersburg","elevation_ft":465,"latitude":39.0348014832,"longitude":-84.8727035522,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71AR","iata":"","local":"71AR","name":"Diamond C Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Gentry","elevation_ft":1270,"latitude":36.282576,"longitude":-94.473764,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1910,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70XA","iata":"","local":"70XA","name":"Looney Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Boston","elevation_ft":315,"latitude":33.392714,"longitude":-94.441422,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2650,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70XS","iata":"","local":"70XS","name":"Restoration Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wimberley","elevation_ft":840,"latitude":29.992146,"longitude":-98.044863,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71LA","iata":"","local":"","name":"Gustafson Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Tallulah","elevation_ft":80,"latitude":32.433101,"longitude":-91.315201,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71NH","iata":"","local":"71NH","name":"Brady-Laconia Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Laconia","elevation_ft":516,"latitude":43.600928,"longitude":-71.466115,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71NJ","iata":"","local":"","name":"RBH Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Bound Brook","elevation_ft":58,"latitude":40.540697,"longitude":-74.506501,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71NY","iata":"","local":"71NY","name":"St. Elizabeth Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Utica","elevation_ft":600,"latitude":43.08219909667969,"longitude":-75.26570129394531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71OH","iata":"","local":"","name":"Sattler Landing Strip","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Swanton","elevation_ft":700,"latitude":41.641701,"longitude":-83.874901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71PA","iata":"","local":"71PA","name":"Ybp Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"York","elevation_ft":410,"latitude":39.96680068969727,"longitude":-76.79969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71MI","iata":"","local":"71MI","name":"Johnston Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Belleville","elevation_ft":643,"latitude":42.084385,"longitude":-83.517015,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1420,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71NC","iata":"","local":"71NC","name":"K & D Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elon","elevation_ft":800,"latitude":36.263961,"longitude":-79.450216,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":200,"surface":"T"},{"id":"09/27","length_ft":1000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71MO","iata":"","local":"71MO","name":"Famuliner Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Wakenda","elevation_ft":655,"latitude":39.29199981689453,"longitude":-93.38410186767578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71LL","iata":"","local":"71LL","name":"Riverode Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pontiac","elevation_ft":651,"latitude":40.843992,"longitude":-88.56082,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71OR","iata":"","local":"71OR","name":"Cerny Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Seneca","elevation_ft":4765,"latitude":44.2445,"longitude":-119.126242,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71TS","iata":"","local":"","name":"Circle C Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Saginaw","elevation_ft":675,"latitude":32.879668,"longitude":-97.334169,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3153,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71VA","iata":"","local":"71VA","name":"Sentara Hampton General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Hampton","elevation_ft":25,"latitude":37.01100158691406,"longitude":-76.36859893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71WI","iata":"","local":"71WI","name":"Hoffman Prop Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Theinsville","elevation_ft":602,"latitude":43.26639938354492,"longitude":-87.96589660644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71XS","iata":"","local":"","name":"Flying V Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sanger","elevation_ft":680,"latitude":33.3465,"longitude":-97.205803,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1780,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72AK","iata":"","local":"72AK","name":"Trophy Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1200,"latitude":64.027099609375,"longitude":-145.67999267578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72AZ","iata":"","local":"72AZ","name":"Adams Place Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Prescott Valley","elevation_ft":5000,"latitude":34.70819854736328,"longitude":-112.33399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72CA","iata":"","local":"72CA","name":"Quincy Helitack Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Quincy","elevation_ft":3500,"latitude":39.98320007324219,"longitude":-120.95099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72FA","iata":"","local":"72FA","name":"Northside Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Saint Petersburg","elevation_ft":26,"latitude":27.825031,"longitude":-82.703203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72CL","iata":"","local":"72CL","name":"Iron Mountain Pumping Plant Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Desert Center","elevation_ft":890,"latitude":34.13420104980469,"longitude":-115.11900329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71XA","iata":"","local":"71XA","name":"Red Star Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Murchison","elevation_ft":530,"latitude":32.352929,"longitude":-95.716227,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71TE","iata":"","local":"71TE","name":"Moursund Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Round Mountain","elevation_ft":1471,"latitude":30.378065,"longitude":-98.376414,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3450,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71TX","iata":"","local":"71TX","name":"Grier Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Boerne","elevation_ft":1450,"latitude":29.872699737548828,"longitude":-98.7322006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72GA","iata":"","local":"72GA","name":"Barbour Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Shellman Bluff","elevation_ft":10,"latitude":31.58359909057617,"longitude":-81.23320007324219,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72II","iata":"","local":"72II","name":"Franciscan Health Dyer Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Dyer","elevation_ft":727,"latitude":41.493333,"longitude":-87.523611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72IL","iata":"","local":"72IL","name":"Cornerstone Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Warrenville","elevation_ft":773,"latitude":41.81029891967773,"longitude":-88.16829681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72KS","iata":"","local":"","name":"Mount Muncie Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Lansing","elevation_ft":750,"latitude":39.2733,"longitude":-94.880203,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2550,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72LA","iata":"","local":"72LA","name":"Sulphur Mines Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Sulphur","elevation_ft":15,"latitude":30.246000289916992,"longitude":-93.40850067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72MN","iata":"","local":"","name":"Bardwell Airstrip","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Clearbrook","elevation_ft":1260,"latitude":47.752699,"longitude":-95.334967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72MI","iata":"","local":"72MI","name":"Northwoods Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Watersmeet","elevation_ft":1642,"latitude":46.2859001159668,"longitude":-89.27749633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72LL","iata":"","local":"72LL","name":"Foley Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Princeton","elevation_ft":690,"latitude":41.37360000610352,"longitude":-89.34449768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2641,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72FL","iata":"","local":"72FL","name":"Gator Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":68,"latitude":28.157516479492188,"longitude":-81.23479461669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72IN","iata":"","local":"72IN","name":"Gutwein Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Monon","elevation_ft":680,"latitude":40.9119987487793,"longitude":-86.8739013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72MO","iata":"","local":"72MO","name":"Sunnys Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Leslie","elevation_ft":755,"latitude":38.425983,"longitude":-91.245396,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":906,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72KY","iata":"","local":"72KY","name":"Carr Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Williamsburg","elevation_ft":1105,"latitude":36.765292,"longitude":-84.199305,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72MU","iata":"","local":"72MU","name":"Executive Hills Polo Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":1042,"latitude":39.28060150146485,"longitude":-94.67130279541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72NC","iata":"","local":"72NC","name":"Bethany South Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Littleton","elevation_ft":220,"latitude":36.51100158691406,"longitude":-77.8915023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":26,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72NJ","iata":"","local":"","name":"Elmport Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Colts Neck","elevation_ft":80,"latitude":40.317299,"longitude":-74.159599,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72OK","iata":"","local":"72OK","name":"Jay Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Jay","elevation_ft":1032,"latitude":36.42238,"longitude":-94.80418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72PN","iata":"","local":"72PN","name":"Ibm Distribution Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"New Kingston","elevation_ft":454,"latitude":40.22790145874024,"longitude":-77.0886001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72NM","iata":"","local":"72NM","name":"Otero Mill Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"La Luz","elevation_ft":4603,"latitude":32.95840072631836,"longitude":-105.96299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4752,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72TN","iata":"","local":"72TN","name":"Lakeway Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Morristown","elevation_ft":1422,"latitude":36.21599960327149,"longitude":-83.30079650878906,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72TX","iata":"","local":"72TX","name":"Johnson Space Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":18,"latitude":29.562397,"longitude":-95.091146,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72OR","iata":"","local":"72OR","name":"Ochs Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Madras","elevation_ft":1790,"latitude":44.7843017578125,"longitude":-120.95500183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72TS","iata":"","local":"72TS","name":"Galaxy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sheridan","elevation_ft":178,"latitude":29.36079978942871,"longitude":-96.62249755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3335,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72TE","iata":"","local":"72TE","name":"Chaparrosa Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"La Pryor","elevation_ft":680,"latitude":28.8794002532959,"longitude":-99.9906005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72VA","iata":"","local":"72VA","name":"Inova Fairfax Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Falls Church","elevation_ft":388,"latitude":38.857133,"longitude":-77.227806,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":127,"width_ft":81,"surface":"C"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"C"},{"id":"H3","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72WA","iata":"","local":"72WA","name":"Hiline Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Darrington","elevation_ft":540,"latitude":48.26430130004883,"longitude":-121.59200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"72XS","iata":"","local":"","name":"El Paisano Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Round Top","elevation_ft":340,"latitude":30.0336,"longitude":-96.6847,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73AK","iata":"","local":"73AK","name":"Yankee Cove Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Juneau","elevation_ft":0,"latitude":58.59170150756836,"longitude":-134.89999389648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73AR","iata":"","local":"73AR","name":"Dogwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Austin","elevation_ft":280,"latitude":35.052948,"longitude":-92.053904,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73CO","iata":"","local":"","name":"Woods STOLport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Montrose","elevation_ft":6120,"latitude":38.388901,"longitude":-107.822998,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73FA","iata":"","local":"73FA","name":"HCA Florida South Shore Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sun City Center","elevation_ft":49,"latitude":27.714415,"longitude":-82.366086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73FL","iata":"","local":"73FL","name":"Williston Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Williston","elevation_ft":45,"latitude":29.382999420166016,"longitude":-82.45480346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73CA","iata":"","local":"73CA","name":"Bear Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Bear Valley","elevation_ft":7073,"latitude":38.457706,"longitude":-120.041991,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3200,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73AZ","iata":"","local":"73AZ","name":"Dunton Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Kingman","elevation_ft":5115,"latitude":35.201657,"longitude":-113.361804,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4800,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72XA","iata":"","local":"72XA","name":"Stiffs Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beasley","elevation_ft":118,"latitude":29.486632,"longitude":-96.041286,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73GA","iata":"","local":"73GA","name":"Ruffwood Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":780,"latitude":33.88249969482422,"longitude":-84.43579864501953,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73IL","iata":"","local":"73IL","name":"St Francis Hospital - Litchfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Litchfield","elevation_ft":690,"latitude":39.181366,"longitude":-89.640291,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73MI","iata":"","local":"73MI","name":"Port Huron Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Port Huron","elevation_ft":600,"latitude":42.98680114746094,"longitude":-82.42919921875,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73MN","iata":"","local":"","name":"Paynes Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"DeGraff","elevation_ft":1035,"latitude":45.135399,"longitude":-95.516701,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":2500,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73MO","iata":"","local":"73MO","name":"SSM Health St Mary's Hospital-St Louis Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":688,"latitude":38.633293,"longitude":-90.311523,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73NC","iata":"","local":"73NC","name":"Beard Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":210,"latitude":35.06769943237305,"longitude":-78.93419647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":850,"width_ft":450,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73NH","iata":"","local":"73NH","name":"Haynes Landing","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"North Stratford","elevation_ft":1010,"latitude":44.718915,"longitude":-71.597143,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73NJ","iata":"","local":"73NJ","name":"Montegue Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Montegue","elevation_ft":644,"latitude":41.3116666667,"longitude":-74.764,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73NY","iata":"","local":"73NY","name":"Olmstead Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Masonville","elevation_ft":1160,"latitude":42.265767,"longitude":-75.310033,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73IA","iata":"","local":"73IA","name":"Harris Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Mason City","elevation_ft":1180,"latitude":43.23559952,"longitude":-93.20829773,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73KY","iata":"","local":"73KY","name":"Brooks Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Brooks","elevation_ft":480,"latitude":38.03329849243164,"longitude":-85.80079650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2150,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73IN","iata":"","local":"73IN","name":"Benham Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lyons","elevation_ft":500,"latitude":38.976593,"longitude":-87.022727,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1320,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73OK","iata":"","local":"","name":"Haxton Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Leedey","elevation_ft":2050,"latitude":35.85017,"longitude":-99.33959,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73TN","iata":"","local":"73TN","name":"Humboldt Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Humboldt","elevation_ft":405,"latitude":35.815308,"longitude":-88.894997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":1000,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73TX","iata":"","local":"","name":"Frerich Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":995,"latitude":29.1719,"longitude":-100.641998,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73VA","iata":"","local":"73VA","name":"Southern Virginia Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Emporia","elevation_ft":130,"latitude":36.7020988464,"longitude":-77.5400009155,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73OI","iata":"","local":"73OI","name":"Rick's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Montville","elevation_ft":1265,"latitude":41.574501037597656,"longitude":-81.07569885253906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73OH","iata":"","local":"73OH","name":"Thompson Drag Raceway Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Thompson","elevation_ft":1100,"latitude":41.64699935913086,"longitude":-81.00869750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73WI","iata":"","local":"73WI","name":"Vetterkind Strip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"New Auburn","elevation_ft":1080,"latitude":45.239715,"longitude":-91.507296,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3200,"width_ft":100,"surface":"T"},{"id":"N/S","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73TE","iata":"","local":"73TE","name":"Moore Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Azle","elevation_ft":670,"latitude":32.92658,"longitude":-97.55957,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73WA","iata":"","local":"73WA","name":"Seven Bays Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Seven Bays","elevation_ft":1580,"latitude":47.849029,"longitude":-118.333442,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73OR","iata":"","local":"73OR","name":"Ribbon Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Newberg","elevation_ft":490,"latitude":45.370283,"longitude":-123.0659,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73TA","iata":"","local":"2TX","name":"Salado Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Salado","elevation_ft":670,"latitude":30.920684,"longitude":-97.540455,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73XS","iata":"","local":"","name":"Dearing Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Gordon","elevation_ft":1055,"latitude":32.445999,"longitude":-98.371201,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2307,"width_ft":30,"surface":"D"},{"id":"17/35","length_ft":3580,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74AK","iata":"","local":"","name":"Puviaq Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Barrow","elevation_ft":23,"latitude":70.715599,"longitude":-154.407037,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74CA","iata":"","local":"","name":"R.I. San Bernardino G/L Helistop","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"San Bernardino","elevation_ft":1030,"latitude":34.074501,"longitude":-117.268997,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":807,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73XA","iata":"","local":"73XA","name":"Tres Amigos Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Garden City","elevation_ft":2694,"latitude":31.748061,"longitude":-101.565922,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":30,"surface":"T"},{"id":"16/34","length_ft":5200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74GA","iata":"","local":"","name":"Bowens Mill Christian Center Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Fitzgerald","elevation_ft":362,"latitude":31.833506,"longitude":-83.219354,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1450,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74II","iata":"","local":"74II","name":"Hendricks Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Danville","elevation_ft":893,"latitude":39.76279830932617,"longitude":-86.50170135498047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74IL","iata":"","local":"14IL","name":"Mendota Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Mendota","elevation_ft":770,"latitude":41.5519981384,"longitude":-89.13150024410001,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"73WT","iata":"","local":"73WT","name":"McGregor Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Orchard","elevation_ft":1800,"latitude":46.717011,"longitude":-118.097509,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74CO","iata":"","local":"74CO","name":"Westberg-Rosling Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Roggen","elevation_ft":4857,"latitude":40.04719924926758,"longitude":-104.20899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74AZ","iata":"","local":"74AZ","name":"Rancho San Marcos Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tombstone","elevation_ft":4353,"latitude":31.619611,"longitude":-110.047361,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74IS","iata":"","local":"74IS","name":"Quad City Medical Force Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Colona","elevation_ft":654,"latitude":41.49420166015625,"longitude":-90.31279754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74ME","iata":"","local":"74ME","name":"Labrador Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"New Castle","elevation_ft":54,"latitude":44.065175,"longitude":-69.533522,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":3500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74MN","iata":"","local":"","name":"Frisch Personal Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Dumont","elevation_ft":1046,"latitude":45.697201,"longitude":-96.431395,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":4000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74MO","iata":"","local":"74MO","name":"Ozarkcom Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":600,"latitude":38.69369888305664,"longitude":-90.26959991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":230,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74NH","iata":"","local":"74NH","name":"Mercier Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hooksett","elevation_ft":577,"latitude":43.065433,"longitude":-71.499219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74NJ","iata":"","local":"74NJ","name":"Cruz Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Farmingdale","elevation_ft":60,"latitude":40.186798095703125,"longitude":-74.15070343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74OH","iata":"","local":"74OH","name":"University of Toledo Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Toledo","elevation_ft":620,"latitude":41.619947,"longitude":-83.618097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74NY","iata":"","local":"74NY","name":"New Salem Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Farmington","elevation_ft":660,"latitude":43.00559997558594,"longitude":-77.29139709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74NC","iata":"","local":"74NC","name":"Benton Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Whartonville","elevation_ft":9,"latitude":35.09640121459961,"longitude":-76.62969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74MU","iata":"","local":"74MU","name":"Koala-T-Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hawk Point","elevation_ft":690,"latitude":39.0400009155,"longitude":-91.13040161130002,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74KY","iata":"","local":"74KY","name":"Terry Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Cunningham","elevation_ft":370,"latitude":36.89870071411133,"longitude":-88.8467025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74KS","iata":"","local":"74KS","name":"Ensminger Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Moran","elevation_ft":1070,"latitude":37.93339920043945,"longitude":-95.21720123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74OI","iata":"","local":"74OI","name":"Licking Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Newark","elevation_ft":880,"latitude":40.0609016418457,"longitude":-82.44319915771484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74OK","iata":"","local":"","name":"W.G. Anderson Memorial Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Marietta","elevation_ft":825,"latitude":33.950102,"longitude":-97.150297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74PN","iata":"","local":"74PN","name":"Altoona Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Altoona","elevation_ft":1256,"latitude":40.52230072021485,"longitude":-78.39700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74TA","iata":"","local":"","name":"Glass Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":800,"latitude":28.445138,"longitude":-100.156431,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74TS","iata":"","local":"74TS","name":"St Mary of the Plains Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3280,"latitude":33.573871,"longitude":-101.899118,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74VA","iata":"","local":"74VA","name":"Inova Fair Oaks Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Fairfax","elevation_ft":466,"latitude":38.8843002319,"longitude":-77.37920379639999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"74WI","iata":"","local":"74WI","name":"Witi Tv Studio Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Brown Deer","elevation_ft":660,"latitude":43.18109893798828,"longitude":-87.9634017944336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75AR","iata":"","local":"75AR","name":"The Bluffs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Henderson","elevation_ft":782,"latitude":36.296199798583984,"longitude":-92.21600341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2700,"width_ft":150,"surface":"T"},{"id":"N/S","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74TE","iata":"","local":"74TE","name":"Flat Top Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Walnut Springs","elevation_ft":960,"latitude":32.05989838,"longitude":-97.79470062,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4191,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74TX","iata":"","local":"74TX","name":"Fort Clark Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1106,"latitude":29.28660011291504,"longitude":-100.43399810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4170,"width_ft":200,"surface":"T"},{"id":"17/35","length_ft":5500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75CA","iata":"","local":"75CA","name":"Civic Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":157,"latitude":33.67779922485352,"longitude":-118,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75CL","iata":"","local":"","name":"Willis Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Dos Palos","elevation_ft":115,"latitude":37.065497,"longitude":-120.567,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75FD","iata":"","local":"75FD","name":"Florida Power & Light St. Lucie Nuclear Power Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":17,"latitude":27.35063,"longitude":-80.244784,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75GA","iata":"","local":"75GA","name":"Effingham County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Springfield","elevation_ft":65,"latitude":32.348499298096,"longitude":-81.319801330566,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":6000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75IA","iata":"","local":"75IA","name":"Adair County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Greenfield","elevation_ft":1310,"latitude":41.30400085449219,"longitude":-94.45099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75IL","iata":"","local":"75IL","name":"Crossroads Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Mount Vernon","elevation_ft":545,"latitude":38.312198638916016,"longitude":-88.93609619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75IN","iata":"","local":"75IN","name":"Howard County Jail Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Kokomo","elevation_ft":800,"latitude":40.480899810791016,"longitude":-86.15809631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75LA","iata":"","local":"75LA","name":"Station 44 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":5,"latitude":29.75886,"longitude":-93.64891,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75IS","iata":"","local":"75IS","name":"Reinke Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rochelle","elevation_ft":790,"latitude":41.899200439453125,"longitude":-89.17040252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75FL","iata":"","local":"75FL","name":"Sandy Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":13,"latitude":30.102663,"longitude":-85.479555,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3175,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75DC","iata":"","local":"75DC","name":"Oakesdale Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Oakesdale","elevation_ft":2680,"latitude":47.1416015625,"longitude":-117.23600006103516,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75KY","iata":"","local":"75KY","name":"Hisle Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Winchester","elevation_ft":770,"latitude":37.94419860839844,"longitude":-83.997802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75MO","iata":"","local":"75MO","name":"Childrens Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":922,"latitude":39.08250045776367,"longitude":-94.57689666748048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75MU","iata":"","local":"75MU","name":"Pershing Regional Health Center -Marceline Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Marceline","elevation_ft":860,"latitude":39.72919845581055,"longitude":-92.94439697265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75NJ","iata":"","local":"","name":"Garfield Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Garfield","elevation_ft":26,"latitude":41.000099,"longitude":-74.082901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75NK","iata":"","local":"75NK","name":"Upstate Medical University Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Syracuse","elevation_ft":685,"latitude":43.042265,"longitude":-76.139374,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75OH","iata":"","local":"","name":"Howensting Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Hicksville","elevation_ft":740,"latitude":41.2592,"longitude":-84.793601,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75OK","iata":"","local":"","name":"Longhorn Field","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Enid","elevation_ft":1105,"latitude":36.3172,"longitude":-97.816101,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75PN","iata":"","local":"75PN","name":"Beaver Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-PA","municipality":"Beaver","elevation_ft":682,"latitude":40.68560028076172,"longitude":-80.31009674072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75OI","iata":"","local":"75OI","name":"Soltis Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Marion","elevation_ft":950,"latitude":40.503700256347656,"longitude":-83.09020233154297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75MN","iata":"","local":"75MN","name":"Galler's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Elysian","elevation_ft":1070,"latitude":44.18659973144531,"longitude":-93.71410369873048,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75NR","iata":"","local":"75NR","name":"Hamptonville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hamptonville","elevation_ft":1028,"latitude":36.092013,"longitude":-80.788975,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1913,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75NE","iata":"","local":"75NE","name":"Heaton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Fort Calhoun","elevation_ft":1000,"latitude":41.44580078125,"longitude":-95.95670318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75RI","iata":"","local":"75RI","name":"Hopedene, LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Newport","elevation_ft":64,"latitude":41.480371,"longitude":-71.297117,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75SC","iata":"","local":"75SC","name":"Greer Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Greer","elevation_ft":956,"latitude":34.919165,"longitude":-82.24502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75VA","iata":"","local":"75VA","name":"Norton Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Norton","elevation_ft":2200,"latitude":36.93510055541992,"longitude":-82.6448974609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75XS","iata":"","local":"","name":"Triple R Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":510,"latitude":29.248497,"longitude":-98.475807,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2580,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"75TA","iata":"","local":"75TA","name":"Coleman Cattle Company Nr 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ackerly","elevation_ft":2820,"latitude":32.5343017578125,"longitude":-101.7249984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4725,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75WI","iata":"","local":"75WI","name":"Smies Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cedar Grove","elevation_ft":640,"latitude":43.58890151977539,"longitude":-87.7843017578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75WA","iata":"","local":"75WA","name":"Port Elsner Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"White Salmon","elevation_ft":610,"latitude":45.80210113525391,"longitude":-121.4800033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75TS","iata":"","local":"75TS","name":"Venus Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Venus","elevation_ft":665,"latitude":32.41640090942383,"longitude":-97.09190368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":36,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75TE","iata":"","local":"75TE","name":"Womack Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":500,"latitude":31.74740028381348,"longitude":-97.24610137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1970,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75TX","iata":"","local":"75TX","name":"Leona Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1720,"latitude":29.509683,"longitude":-100.37324,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4250,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75XA","iata":"","local":"75XA","name":"Rocking B Cattle Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Coldspring","elevation_ft":287,"latitude":30.535835,"longitude":-95.083707,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3007,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76AZ","iata":"","local":"76AZ","name":"West Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Goodyear","elevation_ft":990,"latitude":33.46080017089844,"longitude":-112.35199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76CA","iata":"","local":"76CA","name":"Bald Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Long Barn","elevation_ft":5760,"latitude":38.139856,"longitude":-120.094662,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76CN","iata":"","local":"76CN","name":"El Centro Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Centro","elevation_ft":75,"latitude":32.779887,"longitude":-115.568652,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76FA","iata":"","local":"76FA","name":"Davie Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Davie","elevation_ft":67,"latitude":26.077222,"longitude":-80.250833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76FL","iata":"","local":"76FL","name":"Health Central Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Ocoee","elevation_ft":128,"latitude":28.550512,"longitude":-81.52729,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76IL","iata":"","local":"76IL","name":"Delnor Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Geneva","elevation_ft":770,"latitude":41.88750076293945,"longitude":-88.34359741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76IN","iata":"","local":"","name":"Krebs Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Boswell","elevation_ft":780,"latitude":40.5392,"longitude":-87.469498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76IS","iata":"","local":"76IS","name":"Steel Supply Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rolling Meadows","elevation_ft":700,"latitude":42.0584947372,"longitude":-88.01926240319999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76CO","iata":"","local":"76CO","name":"Hoy Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bennett","elevation_ft":5310,"latitude":39.83580017089844,"longitude":-104.4219970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76II","iata":"","local":"76II","name":"Ries Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Laotto","elevation_ft":880,"latitude":41.27640151977539,"longitude":-85.27110290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1150,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76AR","iata":"","local":"76AR","name":"Johnson Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Mountain Home","elevation_ft":814,"latitude":36.349669,"longitude":-92.450489,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":950,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76GA","iata":"","local":"76GA","name":"Landings East Sylvania Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sylvania","elevation_ft":155,"latitude":32.743904,"longitude":-81.614084,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76KS","iata":"","local":"","name":"Prima Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Scott City","elevation_ft":2915,"latitude":38.2584,"longitude":-100.879997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2670,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76LA","iata":"","local":"76LA","name":"Ochsner Lafayette General Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":120,"latitude":30.202297,"longitude":-92.019866,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":61,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76MD","iata":"","local":"76MD","name":"Singerly Fire Engine Company #13 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Elkton","elevation_ft":76,"latitude":39.621304,"longitude":-75.837468,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76MI","iata":"","local":"","name":"Kozal Airfield","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Sparta","elevation_ft":775,"latitude":43.133302,"longitude":-85.724998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76MU","iata":"","local":"","name":"Flobec Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Moberly","elevation_ft":866,"latitude":39.430599,"longitude":-92.433502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76NE","iata":"","local":"76NE","name":"Good Samaritan Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Kearney","elevation_ft":2146,"latitude":40.70750045776367,"longitude":-99.0814971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76NH","iata":"","local":"76NH","name":"Harris Homestead Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Loudon","elevation_ft":650,"latitude":43.3583984375,"longitude":-71.44120025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76NY","iata":"","local":"76NY","name":"Independent Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"New Windsor","elevation_ft":512,"latitude":41.492778,"longitude":-74.104361,"has_tower":false,"has_beacon":false,"runways":[{"id":"H4","length_ft":33,"width_ft":33,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76MO","iata":"","local":"76MO","name":"Walnut Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Elmer","elevation_ft":735,"latitude":39.96939849853516,"longitude":-92.6968994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76KY","iata":"","local":"76KY","name":"Buzzard's Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Lawrenceburg","elevation_ft":770,"latitude":38.01480102539063,"longitude":-84.84159851074219,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76LS","iata":"","local":"76LS","name":"Cool Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Kentwood","elevation_ft":251,"latitude":30.955972,"longitude":-90.54681,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76OH","iata":"","local":"76OH","name":"Wyandot Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Upper Sandusky","elevation_ft":840,"latitude":40.839808,"longitude":-83.28053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76PA","iata":"","local":"","name":"Aliquippa Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Aliquippa","elevation_ft":946,"latitude":40.608101,"longitude":-80.290297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76PN","iata":"","local":"76PN","name":"Heritage Valley Beaver Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Beaver","elevation_ft":1132,"latitude":40.711355,"longitude":-80.321908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76TN","iata":"","local":"76TN","name":"Donald Gammons Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Lyles","elevation_ft":950,"latitude":35.925865,"longitude":-87.285095,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76TS","iata":"","local":"76TS","name":"Golden Pegasus Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Algoa","elevation_ft":31,"latitude":29.38500022888184,"longitude":-95.16130065917967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76XS","iata":"","local":"","name":"Houston County Hospital/King's Inn Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":360,"latitude":31.322399,"longitude":-95.439101,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77AZ","iata":"","local":"77AZ","name":"Banner Thunderbird Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Glendale","elevation_ft":1328,"latitude":33.608333,"longitude":-112.179597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"76OK","iata":"","local":"76OK","name":"Odom's Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Newcastle","elevation_ft":1240,"latitude":35.282739,"longitude":-97.61982,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77AK","iata":"","local":"77AK","name":"Tidewater Bluffs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":80,"latitude":61.502267,"longitude":-149.594135,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1700,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77AR","iata":"","local":"77AR","name":"Benoit Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Hot Springs","elevation_ft":490,"latitude":34.5975,"longitude":-92.9369444,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2378,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76TA","iata":"","local":"46XS","name":"Canadian River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Adrian","elevation_ft":3839,"latitude":35.402675,"longitude":-102.807605,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76TE","iata":"","local":"76TE","name":"Big Tank Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Salt Flat","elevation_ft":4800,"latitude":31.500099182128903,"longitude":-105.08399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4800,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77CO","iata":"","local":"77CO","name":"UCH-MHS Memorial North Helipad","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6901,"latitude":38.966362,"longitude":-104.755997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77FD","iata":"","local":"77FD","name":"Memorial Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Hollywood","elevation_ft":62,"latitude":26.0187106514,"longitude":-80.1813152432,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77FL","iata":"","local":"77FL","name":"AdventHealth Celebration Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Celebration","elevation_ft":92,"latitude":28.329336,"longitude":-81.54285,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":68,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77GE","iata":"","local":"77GE","name":"Medical Center, Navicent Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Macon","elevation_ft":533,"latitude":32.83455,"longitude":-83.63606,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77IL","iata":"","local":"77IL","name":"Arch - Effingham Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Effingham","elevation_ft":585,"latitude":39.0800018311,"longitude":-88.5441970825,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77IN","iata":"","local":"77IN","name":"Memorial Hospital At Jasper Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Jasper","elevation_ft":531,"latitude":38.39390182495117,"longitude":-86.94080352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77KS","iata":"","local":"","name":"Abel Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Wilmont","elevation_ft":1320,"latitude":37.3675,"longitude":-96.878402,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2415,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77LA","iata":"","local":"77LA","name":"Ochsner LSU Health Shreveport Saint Mary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":60,"latitude":32.495433,"longitude":-93.75078,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77CL","iata":"","local":"77CL","name":"Baker & Hall Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Dunlap","elevation_ft":2150,"latitude":36.71770095825195,"longitude":-119.13700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3400,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77KY","iata":"","local":"77KY","name":"One Oak Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Mount Sterling/Owingsville","elevation_ft":1000,"latitude":38.11119842529297,"longitude":-83.87349700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77GA","iata":"","local":"77GA","name":"Toland Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Milner","elevation_ft":800,"latitude":33.163124,"longitude":-84.210258,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77MD","iata":"","local":"77MD","name":"National Harbor Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Oxon Hill","elevation_ft":50,"latitude":38.793703,"longitude":-77.012143,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77ME","iata":"","local":"77ME","name":"Long Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"North Livermore","elevation_ft":474,"latitude":44.43339920043945,"longitude":-70.21620178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":4000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77MI","iata":"","local":"","name":"David's Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Athens","elevation_ft":887,"latitude":42.0653,"longitude":-85.241602,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77NC","iata":"","local":"77NC","name":"Winnabow Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Winnabow","elevation_ft":33,"latitude":34.152099609375,"longitude":-78.10549926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3500,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77NE","iata":"","local":"77NE","name":"Nemaha County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Auburn","elevation_ft":1085,"latitude":40.39139938354492,"longitude":-95.85279846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77NJ","iata":"","local":"77NJ","name":"Liberty State Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Jersey City","elevation_ft":3,"latitude":40.69319915771485,"longitude":-74.05370330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77OI","iata":"","local":"77OI","name":"University Hospitals of Cleveland Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":761,"latitude":41.50590133666992,"longitude":-81.60489654541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H2","length_ft":128,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77OK","iata":"","local":"77OK","name":"Oklahoma National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1190,"latitude":35.503044,"longitude":-97.468178,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77OR","iata":"","local":"77OR","name":"BLM Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Prineville","elevation_ft":3250,"latitude":44.2790217965,"longitude":-120.902110934,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77NV","iata":"","local":"77NV","name":"Flying Eagle Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":4222,"latitude":39.84355,"longitude":-119.6865,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4049,"width_ft":20,"surface":"A"},{"id":"16/34","length_ft":4564,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77MO","iata":"","local":"77MO","name":"Springhill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mount Vernon","elevation_ft":1305,"latitude":37.09030151367188,"longitude":-93.76940155029295,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77TA","iata":"","local":"","name":"Blue Skies Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Azle","elevation_ft":960,"latitude":32.874001,"longitude":-97.6614,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77TE","iata":"","local":"","name":"Rowco, Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":706,"latitude":29.5466,"longitude":-98.410598,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77TX","iata":"","local":"","name":"Woods Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Brookshire","elevation_ft":160,"latitude":29.781601,"longitude":-95.914703,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1896,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77WA","iata":"","local":"77WA","name":"Mount Carmel Hospital Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Colville","elevation_ft":1775,"latitude":48.54079819,"longitude":-117.8889999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77WI","iata":"","local":"","name":"Foxewood Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"New Munster","elevation_ft":760,"latitude":42.571701,"longitude":-88.203102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78CO","iata":"","local":"78CO","name":"Pfister Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Aspen","elevation_ft":8000,"latitude":39.17720031738281,"longitude":-106.8560028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"77TN","iata":"","local":"77TN","name":"Darnell's Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Church Hill","elevation_ft":1150,"latitude":36.50920104980469,"longitude":-82.68170166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78AA","iata":"","local":"78AA","name":"Lakewood Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"North Pole","elevation_ft":540,"latitude":64.7717611,"longitude":-147.2466917,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77TS","iata":"","local":"77TS","name":"Flying R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":850,"latitude":29.799400329589844,"longitude":-98.08499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77XA","iata":"","local":"77XA","name":"XL Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Winnie","elevation_ft":37,"latitude":29.826004,"longitude":-94.511068,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3050,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77XS","iata":"","local":"77XS","name":"Garrett Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Danbury","elevation_ft":30,"latitude":29.28720092773437,"longitude":-95.35970306396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78IL","iata":"","local":"78IL","name":"Dixon Correctional Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Dixon","elevation_ft":794,"latitude":41.872501373291016,"longitude":-89.48390197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78IN","iata":"","local":"78IN","name":"Harrier Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Wolcott","elevation_ft":700,"latitude":40.75139999389648,"longitude":-86.9811019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78IS","iata":"","local":"78IS","name":"Red Bud Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Red Bud","elevation_ft":420,"latitude":38.20970153808594,"longitude":-89.99669647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78KY","iata":"","local":"","name":"Owen County Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Owenton","elevation_ft":970,"latitude":38.542665,"longitude":-84.841949,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1465,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78LA","iata":"","local":"","name":"Heinsohn's Airfield","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":230,"latitude":32.267501,"longitude":-93.726818,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3458,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78MI","iata":"","local":"78MI","name":"Carls Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"South Rockwood","elevation_ft":598,"latitude":42.04059982299805,"longitude":-83.30349731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2285,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78FD","iata":"","local":"78FD","name":"Mac's Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":16,"latitude":25.546499252319336,"longitude":-80.4655990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78FL","iata":"","local":"78FL","name":"Pomona Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pomona Park","elevation_ft":50,"latitude":29.502199172973636,"longitude":-81.57839965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2760,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78MN","iata":"","local":"78MN","name":"Hagens Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Gatzke","elevation_ft":1155,"latitude":48.37889862060547,"longitude":-95.81169891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78MO","iata":"","local":"78MO","name":"Staggs Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ewing","elevation_ft":660,"latitude":39.995300292969,"longitude":-91.689002990723,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78II","iata":"","local":"78II","name":"Fox Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"La Fontaine","elevation_ft":835,"latitude":40.63619995117188,"longitude":-85.68800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78GA","iata":"","local":"78GA","name":"C&R Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1013,"latitude":33.50429916381836,"longitude":-85.01719665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78NJ","iata":"","local":"78NJ","name":"Hazlet Township Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Keansburg","elevation_ft":31,"latitude":40.42649841308594,"longitude":-74.1404037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78OK","iata":"","local":"78OK","name":"Pawhuska Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Pawhuska","elevation_ft":879,"latitude":36.673853,"longitude":-96.325276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78PA","iata":"","local":"78PA","name":"SAP America Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Newtown Square","elevation_ft":417,"latitude":39.987028,"longitude":-75.415944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78PN","iata":"","local":"78PN","name":"Farmington Township Airpark Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Leeper","elevation_ft":1620,"latitude":41.373611,"longitude":-79.306944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78TS","iata":"","local":"78TS","name":"South Texas Emergency Care Foundation Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Harlingen","elevation_ft":35,"latitude":26.168486,"longitude":-97.666579,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78TX","iata":"","local":"78TX","name":"Baylor University Medical Center Grapevine Helipad","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Grapevine","elevation_ft":714,"latitude":32.934123,"longitude":-97.095366,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"78NC","iata":"","local":"78NC","name":"Fuquay Airport / Angier Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fuquay-Varina","elevation_ft":349,"latitude":35.543262,"longitude":-78.750386,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2780,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78OR","iata":"","local":"78OR","name":"Crowley Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Crowley","elevation_ft":4128,"latitude":43.307899475097656,"longitude":-117.8939971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":32,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78NE","iata":"","local":"78NE","name":"Stava Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Brainard","elevation_ft":1655,"latitude":41.16609954833984,"longitude":-97.03140258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78MU","iata":"","local":"78MU","name":"Stony Branch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jasper","elevation_ft":1025,"latitude":37.296929,"longitude":-94.195361,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78TA","iata":"","local":"78TA","name":"Ranch-Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bigfoot","elevation_ft":560,"latitude":29.061399459838867,"longitude":-98.80030059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78WI","iata":"","local":"78WI","name":"Mayo Clinic Health System-Oakridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Osseo","elevation_ft":989,"latitude":44.577514,"longitude":-91.211612,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79AR","iata":"","local":"79AR","name":"Franke Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jacksonville","elevation_ft":263,"latitude":34.852901,"longitude":-92.048203,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79CA","iata":"","local":"79CA","name":"Providence St Mary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Apple Valley","elevation_ft":2840,"latitude":34.543209,"longitude":-117.264528,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79GA","iata":"","local":"79GA","name":"Coates Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Gaines","elevation_ft":310,"latitude":31.491298,"longitude":-85.017078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79FL","iata":"","local":"79FL","name":"Neal Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chiefland","elevation_ft":45,"latitude":29.55270004272461,"longitude":-82.86869812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78WA","iata":"CWS","local":"78WA","name":"Center Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Center Island","elevation_ft":115,"latitude":48.4901008606,"longitude":-122.832000732,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79CL","iata":"","local":"79CL","name":"Milhous Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"North San Juan","elevation_ft":2625,"latitude":39.32490158081055,"longitude":-121.07599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2100,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79AK","iata":"","local":"79AK","name":"Huttunen Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":120,"latitude":61.481839,"longitude":-149.744019,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79II","iata":"","local":"79II","name":"Sauer-Harter Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greenfield","elevation_ft":930,"latitude":39.883399963378906,"longitude":-85.70249938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78XA","iata":"","local":"78XA","name":"Wayport Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Millsap","elevation_ft":1079,"latitude":32.739206,"longitude":-97.917739,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1421,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78XS","iata":"","local":"78XS","name":"Smith Aviation Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":75,"latitude":29.052999,"longitude":-96.262199,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79IN","iata":"","local":"79IN","name":"Memorial Hospital At South Bend Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"South Bend","elevation_ft":752,"latitude":41.684200286865234,"longitude":-86.25309753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79KS","iata":"","local":"79KS","name":"Greenwood County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Eureka","elevation_ft":1137,"latitude":37.836203,"longitude":-96.295261,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79LA","iata":"","local":"79LA","name":"Lakeview Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Covington","elevation_ft":20,"latitude":30.411897,"longitude":-90.079914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79ME","iata":"","local":"79ME","name":"Houlton Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Houlton","elevation_ft":393,"latitude":46.134466,"longitude":-67.843133,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79NE","iata":"","local":"79NE","name":"Cambridge Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Cambridge","elevation_ft":2268,"latitude":40.280799865722656,"longitude":-100.1790008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AL1","iata":"","local":"7AL1","name":"Explorer Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Lexington","elevation_ft":790,"latitude":34.99375,"longitude":-87.3419444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79NC","iata":"","local":"79NC","name":"Ball Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Louisburg","elevation_ft":366,"latitude":36.1343002319336,"longitude":-78.28189849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2459,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79MN","iata":"","local":"79MN","name":"Paul Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Gatzke","elevation_ft":1165,"latitude":48.37770080566406,"longitude":-95.75440216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79MU","iata":"","local":"79MU","name":"Dunham Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Smithville","elevation_ft":1000,"latitude":39.329833,"longitude":-94.557931,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79KY","iata":"","local":"79KY","name":"Lucas Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Nicholasville","elevation_ft":906,"latitude":37.87129974365234,"longitude":-84.6104965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5488,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79MO","iata":"","local":"79MO","name":"Faries Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Williamsville","elevation_ft":450,"latitude":36.986698,"longitude":-90.543297,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79NJ","iata":"","local":"79NJ","name":"Philips Lighting County Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Franklin Township","elevation_ft":61,"latitude":40.53810119628906,"longitude":-74.52690124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79OR","iata":"","local":"79OR","name":"Cruse Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Reedsport","elevation_ft":160,"latitude":43.694801330566406,"longitude":-124.13800048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79PN","iata":"","local":"79PN","name":"Geisinger Rooftop Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Danville","elevation_ft":661,"latitude":40.972900390625,"longitude":-76.6041030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79TX","iata":"","local":"","name":"Ag-Air Inc. Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Brownsville","elevation_ft":30,"latitude":26.073099,"longitude":-97.537498,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79UT","iata":"","local":"79UT","name":"Bear River Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tremonton","elevation_ft":4290,"latitude":40.708044,"longitude":-112.183056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79VA","iata":"","local":"79VA","name":"Windsor Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Windsor","elevation_ft":78,"latitude":36.80680084228516,"longitude":-76.73799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79WA","iata":"","local":"","name":"Grigg Farm Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Quincy","elevation_ft":1220,"latitude":47.173504,"longitude":-119.747002,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79WI","iata":"","local":"79WI","name":"Whitehall Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Whitehall","elevation_ft":835,"latitude":44.367614,"longitude":-91.332728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79OH","iata":"","local":"79OH","name":"Smith-Stewart Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Vienna","elevation_ft":1092,"latitude":41.20980072021485,"longitude":-80.68309783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79TE","iata":"","local":"79TE","name":"Arrowhead Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lagarto","elevation_ft":165,"latitude":28.1156005859375,"longitude":-97.93080139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79OK","iata":"","local":"79OK","name":"Little River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Pickens","elevation_ft":580,"latitude":35.38479995727539,"longitude":-95.17639923095705,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79TS","iata":"","local":"79TS","name":"Tallows Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Celina","elevation_ft":729,"latitude":33.31051,"longitude":-96.73808,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79XA","iata":"","local":"79XA","name":"Hacienda Rio Lindo Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ozona","elevation_ft":1677,"latitude":30.235,"longitude":-101.663472,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2409,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK7","iata":"","local":"7AK7","name":"Era Denali Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Healy","elevation_ft":1580,"latitude":63.738399505615234,"longitude":-148.8820037841797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"-"},{"id":"H3","length_ft":20,"width_ft":20,"surface":"-"},{"id":"H4","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AL0","iata":"","local":"7AL0","name":"Logan Martin Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Vincent","elevation_ft":485,"latitude":33.427258,"longitude":-86.340837,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AK8","iata":"","local":"7AK8","name":"Hess Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":355,"latitude":61.62129974365234,"longitude":-149.61500549316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":65,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK9","iata":"","local":"7AK9","name":"Vinduska Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":700,"latitude":61.64680099487305,"longitude":-149.0489959716797,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK6","iata":"","local":"7AK6","name":"Dan France Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":260,"latitude":60.475686,"longitude":-150.929875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1900,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK5","iata":"","local":"7AK5","name":"Dahler Homestead Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":300,"latitude":60.50360107421875,"longitude":-150.93600463867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79XS","iata":"","local":"79XS","name":"Silverton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Silverton","elevation_ft":3267,"latitude":34.467908,"longitude":-101.295706,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3530,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK4","iata":"","local":"7AK4","name":"Jack Fish Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":150,"latitude":61.541579,"longitude":-149.459102,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1915,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK3","iata":"","local":"7AK3","name":"Gaede Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":115,"latitude":60.476933,"longitude":-151.17136,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2712,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AL3","iata":"","local":"7AL3","name":"Oxford Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Oxford","elevation_ft":633,"latitude":33.600448,"longitude":-85.864283,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AL8","iata":"","local":"7AL8","name":"Forlala Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Florala","elevation_ft":324,"latitude":31.000911,"longitude":-86.313655,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR1","iata":"","local":"7AR1","name":"Ward's Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Eudora","elevation_ft":113,"latitude":33.0499992371,"longitude":-91.3415985107,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":18,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR3","iata":"","local":"7AR3","name":"Runsick Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Colt","elevation_ft":250,"latitude":35.151100158691406,"longitude":-90.81559753417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR5","iata":"","local":"7AR5","name":"Dallas County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Fordyce","elevation_ft":300,"latitude":33.8111991882,"longitude":-92.4256973267,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR6","iata":"","local":"7AR6","name":"RBC Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":261,"latitude":35.795794,"longitude":-90.802375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR7","iata":"","local":"7AR7","name":"Riddell Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Elaine","elevation_ft":169,"latitude":34.317812,"longitude":-90.857025,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":20,"surface":"A"},{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR0","iata":"","local":"7AR0","name":"Hammer Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Eureka Springs","elevation_ft":1600,"latitude":36.4245,"longitude":-93.6936,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2100,"width_ft":75,"surface":"T"},{"id":"16/34","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AR2","iata":"","local":"7AR2","name":"Verser's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Greers Ferry","elevation_ft":610,"latitude":35.5572013855,"longitude":-92.1321029663,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AL2","iata":"","local":"7AL2","name":"Peterson Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Steele","elevation_ft":600,"latitude":33.86482,"longitude":-86.310835,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AL9","iata":"","local":"7AL9","name":"Horak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Elberta","elevation_ft":110,"latitude":30.46689987182617,"longitude":-87.5416030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AR8","iata":"","local":"7AR8","name":"Shiloh Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Holly Grove","elevation_ft":180,"latitude":34.665085,"longitude":-91.17665,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3108,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AR9","iata":"","local":"7AR9","name":"Cullen Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":255,"latitude":35.956471,"longitude":-90.812978,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2558,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AZ0","iata":"","local":"7AZ0","name":"Aviation Ramp Area Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1455,"latitude":33.625006,"longitude":-111.921967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":155,"width_ft":155,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CA3","iata":"","local":"7CA3","name":"Mercy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Redding","elevation_ft":715,"latitude":40.572242,"longitude":-122.396637,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CA4","iata":"","local":"7CA4","name":"Desert Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Palm Springs","elevation_ft":560,"latitude":33.838461,"longitude":-116.543899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CA5","iata":"","local":"7CA5","name":"Balch Camp Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Balch Camp","elevation_ft":1603,"latitude":36.90629959106445,"longitude":-119.12899780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":96,"width_ft":81,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CA8","iata":"","local":"7CA8","name":"Eisenhower Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Rancho Mirage","elevation_ft":234,"latitude":33.7641,"longitude":-116.4049,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CA9","iata":"","local":"7CA9","name":"River Meadow Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Rutherford","elevation_ft":146,"latitude":38.46189880371094,"longitude":-122.41500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CL1","iata":"","local":"7CL1","name":"Children's Hospital Oakland Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Oakland","elevation_ft":134,"latitude":37.836169,"longitude":-122.266741,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CL2","iata":"","local":"7CL2","name":"Rogers Helicopters Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Clovis","elevation_ft":370,"latitude":36.82379913330078,"longitude":-119.66799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7AZ4","iata":"","local":"7AZ4","name":"Rancho Relaxo Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Pearce","elevation_ft":4475,"latitude":31.938611,"longitude":-109.588333,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7CL4","iata":"","local":"7CL4","name":"Marine Corps Mountain War Training Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Bridgeport","elevation_ft":6762,"latitude":38.354765,"longitude":-119.520972,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1007,"width_ft":78,"surface":"-"},{"id":"H1","length_ft":1000,"width_ft":78,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO1","iata":"","local":"","name":"Dave Nash Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Guffey","elevation_ft":8527,"latitude":38.75505,"longitude":-105.383311,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO2","iata":"","local":"","name":"Hawkins Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6200,"latitude":38.841538,"longitude":-107.877213,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO3","iata":"","local":"","name":"Lindys Airpark","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Hudson","elevation_ft":5040,"latitude":40.038898,"longitude":-104.624001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1000,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO4","iata":"","local":"","name":"Williams Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"New Raymer","elevation_ft":4860,"latitude":40.604198,"longitude":-103.939003,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO5","iata":"","local":"","name":"Yocam Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Orchard","elevation_ft":4461,"latitude":40.299999,"longitude":-104.230003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO7","iata":"","local":"7CO7","name":"Frontier Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Johnstown","elevation_ft":4900,"latitude":40.33806,"longitude":-104.90381,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO9","iata":"","local":"7CO9","name":"K2 Heliport Nr 1a Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Silverton","elevation_ft":9500,"latitude":37.85279846191406,"longitude":-107.5749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7GA1","iata":"","local":"7GA1","name":"Wsb-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":903,"latitude":33.79930114746094,"longitude":-84.3855972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":21,"width_ft":21,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7CO6","iata":"","local":"7CO6","name":"Vantage View Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rush","elevation_ft":5780,"latitude":38.760278,"longitude":-104.101389,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FA0","iata":"","local":"7FA0","name":"Lower Keys Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Key West","elevation_ft":5,"latitude":24.58151,"longitude":-81.742117,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FA5","iata":"","local":"7FA5","name":"Premium Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":128,"latitude":28.389166,"longitude":-81.488496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":31,"width_ft":31,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD0","iata":"","local":"7FD0","name":"Baptist Emergency Center Clay Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orange Park","elevation_ft":12,"latitude":30.078508,"longitude":-81.710386,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD1","iata":"","local":"","name":"Pine Ridge Helistop","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":5,"latitude":26.49023,"longitude":-81.933352,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD3","iata":"","local":"","name":"Central District Police Station Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Hialeah","elevation_ft":36,"latitude":25.853201,"longitude":-80.247002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD4","iata":"","local":"7FD4","name":"Baptist Jacksonville Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":65,"latitude":30.316221,"longitude":-81.664562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD5","iata":"","local":"7FD5","name":"Doctors Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bonifay","elevation_ft":133,"latitude":30.76128,"longitude":-85.682373,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD6","iata":"","local":"7FD6","name":"Loxahatchee Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Worth","elevation_ft":14,"latitude":26.62260055541992,"longitude":-80.3052978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FA3","iata":"","local":"7FA3","name":"Flying L Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"LaBelle","elevation_ft":40,"latitude":26.797887,"longitude":-81.525448,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4803,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FD2","iata":"","local":"7FD2","name":"Drake Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hernando","elevation_ft":50,"latitude":28.99029922485352,"longitude":-82.33039855957031,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2100,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FA2","iata":"","local":"7FA2","name":"Lykes Moore Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Moore Haven","elevation_ft":17,"latitude":26.878429,"longitude":-81.140042,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FA1","iata":"","local":"7FA1","name":"Sugar Loaf Shores Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Key West","elevation_ft":4,"latitude":24.648938,"longitude":-81.578357,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2700,"width_ft":12,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FD7","iata":"","local":"7FD7","name":"Lakeland Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":243,"latitude":28.062226,"longitude":-81.954315,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FD9","iata":"","local":"7FD9","name":"Estherbrook Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pinetta","elevation_ft":100,"latitude":30.622994,"longitude":-83.285651,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL0","iata":"","local":"7FL0","name":"Jordan Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Belleview","elevation_ft":56,"latitude":29.01409912109375,"longitude":-81.9844970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL1","iata":"","local":"7FL1","name":"Adams Executive Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Winter Haven","elevation_ft":137,"latitude":28.01689910888672,"longitude":-81.67500305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL2","iata":"","local":"","name":"Wellborn Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Wellborn","elevation_ft":180,"latitude":30.245501,"longitude":-82.778503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL3","iata":"","local":"","name":"Adams Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":25,"latitude":27.441653,"longitude":-80.584953,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":5264,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL4","iata":"","local":"7FL4","name":"Haller Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Green Cove Springs","elevation_ft":75,"latitude":29.904057,"longitude":-81.68515,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":72,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL5","iata":"","local":"7FL5","name":"West Palm Beach Police Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":25,"latitude":26.714275,"longitude":-80.058292,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL7","iata":"","local":"7FL7","name":"Lazy S Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"High Springs","elevation_ft":80,"latitude":29.86860084533692,"longitude":-82.63459777832031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1793,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL9","iata":"","local":"7FL9","name":"Lakewood Ranch Medical Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bradenton","elevation_ft":20,"latitude":27.390033,"longitude":-82.435448,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7GA0","iata":"","local":"7GA0","name":"St Marys Health Care Systems Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Athens","elevation_ft":736,"latitude":33.948464,"longitude":-83.407071,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7FL8","iata":"","local":"7FL8","name":"Dragonfly Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":25,"latitude":27.44389915466309,"longitude":-80.56510162353516,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7GA2","iata":"","local":"7GA2","name":"Alyssas Animal Sanctuary Air Park","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Valdosta","elevation_ft":229,"latitude":30.777552,"longitude":-83.205729,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7GA6","iata":"","local":"7GA6","name":"Hilton Garden Inn Downtown Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1170,"latitude":33.761964,"longitude":-84.395469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7GA7","iata":"","local":"7GA7","name":"Tanner Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Villa Rica","elevation_ft":1145,"latitude":33.743598937988,"longitude":-84.876403808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7GA8","iata":"","local":"7GA8","name":"Emory University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1051,"latitude":33.79230117797852,"longitude":-84.32550048828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":39,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IA5","iata":"","local":"7IA5","name":"Mercy Medical Center - Clinton Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Clinton","elevation_ft":708,"latitude":41.860886,"longitude":-90.190349,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IA6","iata":"","local":"7IA6","name":"Jefferson County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Fairfield","elevation_ft":768,"latitude":41.00310134887695,"longitude":-91.9521026611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IA9","iata":"","local":"7IA9","name":"Pella Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Pella","elevation_ft":836,"latitude":41.41249847412109,"longitude":-92.90989685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7GA3","iata":"","local":"7GA3","name":"Hacienda De Gay Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Garfield","elevation_ft":328,"latitude":32.663299560546875,"longitude":-82.07530212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7GA4","iata":"","local":"7GA4","name":"Danville Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Danville","elevation_ft":459,"latitude":32.58100128173828,"longitude":-83.2677001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7GE7","iata":"","local":"7GE7","name":"Brandt Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Greenville","elevation_ft":840,"latitude":33.046389,"longitude":-84.661111,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3585,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7GA9","iata":"","local":"7GA9","name":"Smisson Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Whitesburg","elevation_ft":1044,"latitude":33.57059860229492,"longitude":-84.89779663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7ID7","iata":"","local":"7ID7","name":"Gritman Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Moscow","elevation_ft":2035,"latitude":46.728057861328125,"longitude":-117.0009994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7II2","iata":"","local":"7II2","name":"Franciscan Alliance Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Crawfordsville","elevation_ft":760,"latitude":40.065822,"longitude":-86.904552,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IL1","iata":"","local":"7IL1","name":"Heading Heli Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"New Bedford","elevation_ft":637,"latitude":41.605111,"longitude":-89.740611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IL4","iata":"","local":"7IL4","name":"Northwest Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Arlington Heights","elevation_ft":758,"latitude":42.067723,"longitude":-87.993396,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IL5","iata":"","local":"","name":"Amboy Fire Protection District Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Amboy","elevation_ft":744,"latitude":41.715801,"longitude":-89.334198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IL6","iata":"","local":"","name":"Dr Joseph W Esser Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Hampshire","elevation_ft":979,"latitude":42.1306,"longitude":-88.502899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IL9","iata":"","local":"","name":"Ambler - Cady Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Earlville","elevation_ft":700,"latitude":41.5439,"longitude":-88.9934,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2170,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IN3","iata":"","local":"7IN3","name":"Garrett Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Poseyville","elevation_ft":400,"latitude":38.239564,"longitude":-87.78707,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IL0","iata":"","local":"7IL0","name":"Mussman Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Grant Park","elevation_ft":705,"latitude":41.27090072631836,"longitude":-87.57779693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2415,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IN2","iata":"","local":"7IN2","name":"Flying Crown Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Hamilton","elevation_ft":920,"latitude":41.50139999389648,"longitude":-84.87830352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7II3","iata":"","local":"7II3","name":"Schroeder Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Mount Vernon","elevation_ft":385,"latitude":38.00339889526367,"longitude":-87.75640106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IN4","iata":"","local":"7IN4","name":"Franciscan Health Hammond Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Hammond","elevation_ft":624,"latitude":41.614205,"longitude":-87.524093,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IS4","iata":"","local":"7IS4","name":"Danville Correctional Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Danville","elevation_ft":650,"latitude":40.13169860839844,"longitude":-87.53610229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IS7","iata":"","local":"7IS7","name":"Hammock Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Leef Township","elevation_ft":595,"latitude":38.914077,"longitude":-89.669809,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2420,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7IS8","iata":"","local":"7IS8","name":"Rush-Copley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Aurora","elevation_ft":700,"latitude":41.728482,"longitude":-88.27193,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7JY7","iata":"","local":"7JY7","name":"Russell Springs County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Russell Springs","elevation_ft":1111,"latitude":37.057006,"longitude":-85.06754,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7KS1","iata":"","local":"7KS1","name":"Rooks County Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Plainville","elevation_ft":2156,"latitude":39.247744,"longitude":-99.297533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7KS0","iata":"","local":"7KS0","name":"Flying T Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Oskaloosa","elevation_ft":1160,"latitude":39.271085,"longitude":-95.31705,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IN6","iata":"","local":"7IN6","name":"Myers Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Livonia","elevation_ft":800,"latitude":38.58190155029297,"longitude":-86.25360107421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IS2","iata":"","local":"7IS2","name":"Aero Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belleville","elevation_ft":565,"latitude":38.52450180053711,"longitude":-90.05690002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7KS7","iata":"","local":"","name":"Evans Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Oakley","elevation_ft":2950,"latitude":38.958302,"longitude":-100.800003,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3110,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2630,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7KY1","iata":"","local":"7KY1","name":"Nicholas County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Carlisle","elevation_ft":830,"latitude":38.316108,"longitude":-84.060109,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7KS9","iata":"","local":"7KS9","name":"Eagle Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Sedgwick","elevation_ft":1379,"latitude":37.849197,"longitude":-97.510239,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3600,"width_ft":92,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7KY6","iata":"","local":"7KY6","name":"Grider Hilldock - Dillon Helipad","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Albany","elevation_ft":731,"latitude":36.828549,"longitude":-85.122988,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7KY8","iata":"","local":"7KY8","name":"TJ Samson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Glasgow","elevation_ft":910,"latitude":37.011784,"longitude":-85.904846,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7LA2","iata":"","local":"7LA2","name":"Ochsner St Anne General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Raceland","elevation_ft":11,"latitude":29.703216,"longitude":-90.564659,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7KY2","iata":"","local":"7KY2","name":"Ryan Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Verona","elevation_ft":890,"latitude":38.802661,"longitude":-84.661861,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7KS3","iata":"","local":"7KS3","name":"Youvan Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Arma","elevation_ft":1000,"latitude":37.52920150756836,"longitude":-94.69609832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7LA0","iata":"","local":"7LA0","name":"Valverda Strip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Maringouin","elevation_ft":50,"latitude":30.522159,"longitude":-91.530855,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":178,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7LA1","iata":"","local":"7LA1","name":"Birdwin Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Port Sulphur","elevation_ft":2,"latitude":29.46023,"longitude":-89.67766,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7KS2","iata":"","local":"7KS2","name":"Cloud Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Overbrook","elevation_ft":1020,"latitude":38.85082,"longitude":-95.467906,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7LA6","iata":"","local":"7LA6","name":"Southern Natural Gas County Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"St Bernard","elevation_ft":5,"latitude":29.865126,"longitude":-89.829304,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7LA7","iata":"","local":"7LA7","name":"Romere Pass Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":0,"latitude":29.27630043029785,"longitude":-89.24199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":75,"surface":"W"},{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7LA8","iata":"","local":"7LA8","name":"Natchitoches Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Natchitoches","elevation_ft":116,"latitude":31.752241,"longitude":-93.077885,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7LL2","iata":"","local":"7LL2","name":"Vista Medical Center-East Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Waukegan","elevation_ft":624,"latitude":42.37860107421875,"longitude":-87.83260345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MA0","iata":"","local":"7MA0","name":"Digital (Boxboro) Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boxborough","elevation_ft":210,"latitude":42.49869918823242,"longitude":-71.47760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MA1","iata":"","local":"7MA1","name":"Digital (Box 2) Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boxborough","elevation_ft":265,"latitude":42.49340057373047,"longitude":-71.543701171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":10,"width_ft":10,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MA2","iata":"","local":"7MA2","name":"Craig Cove Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"East Freetown","elevation_ft":53,"latitude":41.780556,"longitude":-70.947222,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":4000,"width_ft":150,"surface":"W"},{"id":"16W/34W","length_ft":2100,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7LL7","iata":"","local":"7LL7","name":"Delhotal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"West Brooklyn","elevation_ft":760,"latitude":41.73682,"longitude":-89.175941,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7LL3","iata":"","local":"7LL3","name":"Jasper County Flying Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Newton","elevation_ft":575,"latitude":38.930605,"longitude":-88.155928,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3365,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7LA4","iata":"","local":"7LA4","name":"Gladney Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Rayne","elevation_ft":23,"latitude":30.125200271606,"longitude":-92.219596862793,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7LA9","iata":"","local":"7LA9","name":"Chute N Gators Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bell City","elevation_ft":4,"latitude":29.999507,"longitude":-93.138592,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1239,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MD2","iata":"","local":"7MD2","name":"Nat'l Emergency Training Ctr Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Emmitsburg","elevation_ft":416,"latitude":39.6850013733,"longitude":-77.3182983398,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MD3","iata":"","local":"7MD3","name":"Frederick Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Frederick","elevation_ft":325,"latitude":39.42169952392578,"longitude":-77.41419982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MD4","iata":"","local":"7MD4","name":"Allegheny Power-Hagerstown Corp Ctr Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Hagerstown","elevation_ft":578,"latitude":39.5992012024,"longitude":-77.7639007568,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MD5","iata":"","local":"7MD5","name":"St. Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Leonardtown","elevation_ft":110,"latitude":38.30009841918945,"longitude":-76.63719940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MI0","iata":"","local":"7MI0","name":"Kamikaze Run Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Novi","elevation_ft":935,"latitude":42.51390075683594,"longitude":-83.4894027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MI1","iata":"","local":"7MI1","name":"Mc Phail Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Orchard Lake","elevation_ft":970,"latitude":42.572175,"longitude":-83.395066,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":350,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MI2","iata":"","local":"","name":"Beckman Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Paw Paw","elevation_ft":740,"latitude":42.277802,"longitude":-85.890297,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MI4","iata":"","local":"","name":"Ludington Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Port Hope","elevation_ft":690,"latitude":43.922199,"longitude":-82.748595,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MI5","iata":"","local":"","name":"Lada Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Petersburg","elevation_ft":678,"latitude":41.89038,"longitude":-83.673023,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MI3","iata":"","local":"7MI3","name":"Thrall Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Vicksburg","elevation_ft":850,"latitude":42.118428,"longitude":-85.510166,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MN1","iata":"","local":"7MN1","name":"Regions Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"St Paul","elevation_ft":780,"latitude":44.954778,"longitude":-93.093953,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MN2","iata":"","local":"7MN2","name":"Eagles Nest Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Tower","elevation_ft":1490,"latitude":47.82849884033203,"longitude":-92.09970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":3000,"width_ft":400,"surface":"W"},{"id":"17W/35W","length_ft":5000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MN5","iata":"","local":"","name":"White Bear Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"White Bear Lake","elevation_ft":925,"latitude":45.091599,"longitude":-92.9991,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MN7","iata":"","local":"7MN7","name":"Bridges Medical Center Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Ada","elevation_ft":878,"latitude":47.298301696777344,"longitude":-96.5302963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MO0","iata":"","local":"7MO0","name":"Truman Medical Center East Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":983,"latitude":38.97499847412109,"longitude":-94.39469909667967,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MO1","iata":"","local":"7MO1","name":"Wood Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Perry","elevation_ft":720,"latitude":39.473129,"longitude":-91.709034,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MN8","iata":"","local":"7MN8","name":"Willis Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Thief River Falls","elevation_ft":1135,"latitude":48.06999969482422,"longitude":-96.27890014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MN3","iata":"","local":"7MN3","name":"Caldbeck Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Spring Valley","elevation_ft":1340,"latitude":43.7052001953125,"longitude":-92.46070098876952,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MN6","iata":"","local":"7MN6","name":"Johnson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Argyle","elevation_ft":820,"latitude":48.34280014038086,"longitude":-96.88089752197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MI7","iata":"","local":"7MI7","name":"Walker Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Cooper","elevation_ft":750,"latitude":42.38059997558594,"longitude":-85.57749938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MI6","iata":"","local":"7MI6","name":"Wightman Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Owosso","elevation_ft":725,"latitude":43.110298,"longitude":-84.126404,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MO6","iata":"","local":"","name":"Mac's Field","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Plattsburg","elevation_ft":1015,"latitude":39.483299,"longitude":-94.466904,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MO7","iata":"","local":"","name":"Kimray Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Plattsburg","elevation_ft":940,"latitude":39.5667,"longitude":-94.414703,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2646,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MS1","iata":"","local":"7MS1","name":"Eagle Crest Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Canton","elevation_ft":280,"latitude":32.603484,"longitude":-89.980216,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MS3","iata":"","local":"7MS3","name":"Maidment Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Byhalia","elevation_ft":370,"latitude":34.710888,"longitude":-89.719194,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MS4","iata":"","local":"7MS4","name":"Cloud 9 Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Canton","elevation_ft":250,"latitude":32.602777,"longitude":-90.192781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MS7","iata":"","local":"7MS7","name":"Freebird Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Bolton","elevation_ft":242,"latitude":32.37409,"longitude":-90.437061,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7MT5","iata":"","local":"7MT5","name":"Kyle Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Darby","elevation_ft":3860,"latitude":46.080271,"longitude":-114.178644,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":1000,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NA9","iata":"","local":"7NA9","name":"Sjule Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Souris","elevation_ft":1680,"latitude":48.92829895019531,"longitude":-100.5780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NA4","iata":"","local":"7NA4","name":"Ingebretson Airspray Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mayville","elevation_ft":982,"latitude":47.5172004699707,"longitude":-97.33370208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MO4","iata":"","local":"7MO4","name":"Flintlock Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Platte City","elevation_ft":930,"latitude":39.43190002441406,"longitude":-94.8030014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NA2","iata":"","local":"7NA2","name":"Undlin Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Lansford","elevation_ft":1575,"latitude":48.687801361083984,"longitude":-101.3499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1830,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MO3","iata":"","local":"7MO3","name":"B S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pineville","elevation_ft":1000,"latitude":36.599405,"longitude":-94.366297,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2250,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC0","iata":"","local":"","name":"Pamlico Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Bayboro","elevation_ft":20,"latitude":35.158501,"longitude":-76.762703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NC1","iata":"","local":"7NC1","name":"Stag Air Park","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Burgaw","elevation_ft":23,"latitude":34.52790069580078,"longitude":-77.85030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NC4","iata":"","local":"7NC4","name":"Catawba Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Hickory","elevation_ft":1002,"latitude":35.7130279541,"longitude":-81.266746521,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NC8","iata":"","local":"7NC8","name":"Fish Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Angier","elevation_ft":280,"latitude":35.534900665283,"longitude":-78.696403503418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7ND5","iata":"","local":"7ND5","name":"Buchmiller Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bowdon","elevation_ft":1850,"latitude":47.35969924926758,"longitude":-99.62259674072266,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7ND8","iata":"","local":"7ND8","name":"Forest Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Langdon","elevation_ft":1570,"latitude":48.85219955444336,"longitude":-98.74819946289062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7ND1","iata":"","local":"7ND1","name":"Wolberg's Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Dickinson","elevation_ft":2540,"latitude":47.03609848022461,"longitude":-102.77799987792967,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC7","iata":"","local":"7NC7","name":"Lewis Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Walnut Cove","elevation_ft":650,"latitude":36.37983,"longitude":-80.17412,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC6","iata":"","local":"7NC6","name":"Kimrey Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mebane","elevation_ft":624,"latitude":36.05540084838867,"longitude":-79.32669830322266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC9","iata":"","local":"7NC9","name":"Spencer Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Asheboro","elevation_ft":460,"latitude":35.72740173339844,"longitude":-79.91110229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NJ0","iata":"","local":"7NJ0","name":"Indian Mills Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Medford","elevation_ft":90,"latitude":39.80149841308594,"longitude":-74.75959777832031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NJ1","iata":"","local":"7NJ1","name":"New Freedom Switching Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Winslow Township","elevation_ft":130,"latitude":39.73899841308594,"longitude":-74.966796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NJ3","iata":"","local":"7NJ3","name":"Newton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newton","elevation_ft":500,"latitude":41.057212,"longitude":-74.770181,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NJ5","iata":"","local":"7NJ5","name":"Morristown Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Morristown","elevation_ft":422,"latitude":40.789369,"longitude":-74.465786,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":88,"width_ft":88,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NJ6","iata":"","local":"7NJ6","name":"Lebanon Twnshp Mun Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Woodglen","elevation_ft":925,"latitude":40.71760177612305,"longitude":-74.89209747314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NJ8","iata":"","local":"7NJ8","name":"Merck & County Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Rahway","elevation_ft":15,"latitude":40.60940170288086,"longitude":-74.26000213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NK2","iata":"","local":"7NK2","name":"Saratoga Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Saratoga Springs","elevation_ft":379,"latitude":43.08610153198242,"longitude":-73.802001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":87,"width_ft":87,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NE5","iata":"","local":"7NE5","name":"Lierley Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Paxton","elevation_ft":3220,"latitude":41.06669998168945,"longitude":-101.36799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NK0","iata":"","local":"7NK0","name":"Valley View Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Middleburgh","elevation_ft":1160,"latitude":42.64528,"longitude":-74.390514,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NK4","iata":"","local":"7NK4","name":"Ridge Road West Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Spenceport","elevation_ft":400,"latitude":43.222599029541016,"longitude":-77.81060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NE8","iata":"","local":"7NE8","name":"NE Hitchcock Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Culbertson","elevation_ft":2805,"latitude":40.327906,"longitude":-100.790951,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2840,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NK8","iata":"","local":"7NK8","name":"Westchester Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Valhalla","elevation_ft":409,"latitude":41.084891,"longitude":-73.805332,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NR2","iata":"","local":"7NR2","name":"Granville Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Oxford","elevation_ft":478,"latitude":36.326445,"longitude":-78.591701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NY3","iata":"","local":"7NY3","name":"North Shore University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Manhasset","elevation_ft":93,"latitude":40.77790069580078,"longitude":-73.7051010131836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NY5","iata":"","local":"7NY5","name":"State Police Troop K Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Millbrook","elevation_ft":350,"latitude":41.782816,"longitude":-73.752704,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NM1","iata":"","local":"7NM1","name":"Mesa Verde Ranch Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4237,"latitude":32.935278,"longitude":-106.045278,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NY7","iata":"","local":"7NY7","name":"HNA Palisades Premier Conference Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Palisades","elevation_ft":173,"latitude":41.01911,"longitude":-73.91819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NY8","iata":"","local":"","name":"Shaw Field","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Gansevoort","elevation_ft":190,"latitude":43.198007,"longitude":-73.632524,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NY9","iata":"","local":"7NY9","name":"Yorktown Helipad","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Yorktown","elevation_ft":499,"latitude":41.211825,"longitude":-73.803363,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7NY1","iata":"","local":"7NY1","name":"Gar Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Esperance","elevation_ft":640,"latitude":42.76340103149414,"longitude":-74.27850341796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NK7","iata":"","local":"7NK7","name":"Morin Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Sherburne","elevation_ft":1068,"latitude":42.71329879760742,"longitude":-75.88999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1060,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OA7","iata":"","local":"7OA7","name":"Skydive Greene County Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Xenia","elevation_ft":1055,"latitude":39.67919921875,"longitude":-83.87079620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":2615,"width_ft":150,"surface":"T"},{"id":"E/W","length_ft":3500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OH0","iata":"","local":"7OH0","name":"East Liverpool City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"East Liverpool","elevation_ft":791,"latitude":40.62205,"longitude":-80.58566,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OH4","iata":"","local":"7OH4","name":"Meigs Mine 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Albany","elevation_ft":716,"latitude":39.125099182128906,"longitude":-82.283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OH6","iata":"","local":"7OH6","name":"Karam Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cuyahoga Falls","elevation_ft":1020,"latitude":41.14580154418945,"longitude":-81.51860046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OH7","iata":"","local":"","name":"Hydebrook Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Yellow Springs","elevation_ft":960,"latitude":39.780102,"longitude":-83.899902,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":975,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OH9","iata":"","local":"7OH9","name":"Cleveland Police Department 6th District Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":655,"latitude":41.54999923706055,"longitude":-81.56649780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OH8","iata":"","local":"7OH8","name":"Curtis Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Chardon","elevation_ft":1250,"latitude":41.63779830932617,"longitude":-81.10140228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OH5","iata":"","local":"7OH5","name":"Mahoning County Joint Vocational School Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Canfield","elevation_ft":1130,"latitude":41.03419876098633,"longitude":-80.78170013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2850,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OH1","iata":"","local":"7OH1","name":"Rauhaus Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Medina","elevation_ft":912,"latitude":41.211246,"longitude":-81.97312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OH2","iata":"","local":"7OH2","name":"Canal Fulton Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Canal Fulton","elevation_ft":1150,"latitude":40.900299,"longitude":-81.533699,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1820,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OH3","iata":"","local":"7OH3","name":"Obi One Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Delaware","elevation_ft":952,"latitude":40.35279846191406,"longitude":-83.0510025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OI5","iata":"","local":"7OI5","name":"Bea-D Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Graytown","elevation_ft":605,"latitude":41.520599365234375,"longitude":-83.27519989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OI1","iata":"","local":"7OI1","name":"Blevins Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ayersville","elevation_ft":722,"latitude":41.207298278808594,"longitude":-84.26969909667969,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":58,"surface":"T"},{"id":"18/36","length_ft":1158,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OK1","iata":"","local":"","name":"Meadowlark Field","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Boynton","elevation_ft":746,"latitude":35.620398,"longitude":-95.744202,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1613,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK3","iata":"","local":"7OK3","name":"Hillcrest Hospital Pryor Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Pryor","elevation_ft":621,"latitude":36.308794,"longitude":-95.304025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK4","iata":"","local":"","name":"Martin Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Amber","elevation_ft":1200,"latitude":35.150101,"longitude":-97.866997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2058,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK5","iata":"","local":"","name":"Atrium Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1270,"latitude":35.533401,"longitude":-97.579201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK6","iata":"","local":"7OK6","name":"Norman Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Norman","elevation_ft":1182,"latitude":35.22919845581055,"longitude":-97.439697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK8","iata":"","local":"","name":"Myers Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Crescent","elevation_ft":1060,"latitude":35.989201,"longitude":-97.573095,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1320,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK9","iata":"","local":"7OK9","name":"St John Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":740,"latitude":36.1343002319336,"longitude":-95.96640014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OK2","iata":"","local":"7OK2","name":"Scott Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mangum","elevation_ft":1650,"latitude":34.976866,"longitude":-99.501261,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":18,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OR5","iata":"","local":"7OR5","name":"Emanuel Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":160,"latitude":45.5430206012,"longitude":-122.670512795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7OR6","iata":"","local":"7OR6","name":"Green Acres Air Park","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Hood River","elevation_ft":800,"latitude":45.63679885864258,"longitude":-121.59100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1150,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OR1","iata":"","local":"7OR1","name":"Arnold Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Crane","elevation_ft":4140,"latitude":43.4193000793457,"longitude":-118.57599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1500,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7PA0","iata":"","local":"","name":"Manor Knoll Personal Use Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Mountville","elevation_ft":440,"latitude":40.020901,"longitude":-76.423897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PA2","iata":"","local":"7PA2","name":"State Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wind Gap","elevation_ft":620,"latitude":40.80390167236328,"longitude":-75.2969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PA6","iata":"","local":"","name":"Stott Private Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Newtown","elevation_ft":143,"latitude":40.245398,"longitude":-74.9913,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PA7","iata":"","local":"","name":"One Montgomery Plaza Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Norristown","elevation_ft":269,"latitude":40.115687,"longitude":-75.34437,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PA9","iata":"","local":"7PA9","name":"Caterpillar Pbp Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"York","elevation_ft":420,"latitude":39.98260116577149,"longitude":-76.67330169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PN3","iata":"","local":"7PN3","name":"Suburban General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Norristown","elevation_ft":316,"latitude":40.15010070800781,"longitude":-75.34960174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PN4","iata":"","local":"","name":"Knorr Farm Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Reading","elevation_ft":825,"latitude":40.396,"longitude":-75.834503,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3415,"width_ft":89,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PN5","iata":"","local":"7PN5","name":"Letterkenny Army Depot Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Chambersburg","elevation_ft":774,"latitude":40.0072222222,"longitude":-77.6452777778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PA3","iata":"","local":"7PA3","name":"Charles G. Kalko Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Honesdale","elevation_ft":1400,"latitude":41.708053,"longitude":-75.287872,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7PA1","iata":"","local":"7PA1","name":"Warren Airpark","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Warren","elevation_ft":1790,"latitude":41.865838,"longitude":-79.206684,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OR9","iata":"","local":"7OR9","name":"Parson Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon City","elevation_ft":640,"latitude":45.3242988586,"longitude":-122.472000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OR8","iata":"","local":"7OR8","name":"Inshallah International Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Seneca","elevation_ft":4560,"latitude":44.09040069580078,"longitude":-119.29000091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7PN6","iata":"","local":"7PN6","name":"Hagan Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Winterstown","elevation_ft":845,"latitude":39.82469940185547,"longitude":-76.62999725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PN7","iata":"","local":"7PN7","name":"Wellspan York Hospital Alternate Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"York","elevation_ft":408,"latitude":39.943902,"longitude":-76.742302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PN9","iata":"","local":"7PN9","name":"East Forest Junior/Senior High School Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Marienville","elevation_ft":1901,"latitude":41.475008,"longitude":-79.126108,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS0","iata":"","local":"7PS0","name":"B S Corporation Steelton Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Steelton","elevation_ft":300,"latitude":40.23059844970703,"longitude":-76.83660125732422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS1","iata":"","local":"7PS1","name":"St. Vincent Outpatient Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Union City","elevation_ft":1400,"latitude":41.90620040893555,"longitude":-79.8467025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS2","iata":"","local":"7PS2","name":"Braehead Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Willistown","elevation_ft":500,"latitude":39.98789978027344,"longitude":-75.49099731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS3","iata":"","local":"7PS3","name":"Susquehanna High School Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Susquehanna","elevation_ft":1040,"latitude":41.949786,"longitude":-75.588953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS4","iata":"","local":"","name":"Sky Classics Field","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Grantville","elevation_ft":500,"latitude":40.3979,"longitude":-76.5989,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS5","iata":"","local":"7PS5","name":"Muncy Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Muncy","elevation_ft":500,"latitude":41.21060180664063,"longitude":-76.77330017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS6","iata":"","local":"7PS6","name":"Allegheny Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Natrona Heights","elevation_ft":965,"latitude":40.61899948120117,"longitude":-79.73780059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS8","iata":"","local":"7PS8","name":"Bucktail Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"South Renovo","elevation_ft":665,"latitude":41.32780075073242,"longitude":-77.73580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7PS9","iata":"","local":"7PS9","name":"Elk Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"St Mary's","elevation_ft":1735,"latitude":41.42620086669922,"longitude":-78.57859802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TA1","iata":"","local":"7TA1","name":"Navasota Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Navasota","elevation_ft":248,"latitude":30.39240074157715,"longitude":-96.07749938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TA6","iata":"","local":"","name":"PHI Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Port O'Connor","elevation_ft":4,"latitude":28.439699,"longitude":-96.434998,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TA9","iata":"","local":"7TA9","name":"San Angelo Community Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Angelo","elevation_ft":1900,"latitude":31.418884,"longitude":-100.470575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":18,"width_ft":18,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TE1","iata":"","local":"","name":"Zachry Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Escobas","elevation_ft":592,"latitude":27.072788,"longitude":-98.935425,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TA3","iata":"","local":"7TA3","name":"Quarterway Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Plainview","elevation_ft":3470,"latitude":34.18090057373047,"longitude":-101.83699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE8","iata":"","local":"","name":"Trulock Ranch Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Colorado City","elevation_ft":2168,"latitude":32.421001,"longitude":-100.810997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2758,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TA7","iata":"","local":"7TA7","name":"Flying M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Reklaw","elevation_ft":310,"latitude":31.83989906311035,"longitude":-94.9613037109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE4","iata":"","local":"7TE4","name":"Flying J Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Leakey","elevation_ft":1620,"latitude":29.599505,"longitude":-99.846325,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TA5","iata":"","local":"7TA5","name":"Weber Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Caldwell","elevation_ft":350,"latitude":30.587099075317383,"longitude":-96.63410186767578,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE3","iata":"","local":"7TE3","name":"Lometa Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lometa","elevation_ft":1400,"latitude":31.22624,"longitude":-98.4612,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2290,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE0","iata":"","local":"7TE0","name":"Kelley Crop Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fannett","elevation_ft":21,"latitude":29.913799285888672,"longitude":-94.20819854736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE6","iata":"","local":"7TE6","name":"Stovall Ranch Nr 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":108,"latitude":29.200300216674805,"longitude":-96.5543975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TN2","iata":"","local":"7TN2","name":"Centennial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":617,"latitude":36.15359878540039,"longitude":-86.80889892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TN4","iata":"","local":"7TN4","name":"Pegasus Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Oakland","elevation_ft":380,"latitude":35.17279815673828,"longitude":-89.5625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TN5","iata":"","local":"7TN5","name":"Flying D Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Hickory Valley","elevation_ft":477,"latitude":35.133806,"longitude":-89.186806,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TN6","iata":"","local":"7TN6","name":"Goodlark Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Dickson","elevation_ft":845,"latitude":36.07500076293945,"longitude":-87.375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TN7","iata":"","local":"7TN7","name":"Pca Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Counce","elevation_ft":480,"latitude":35.04499816894531,"longitude":-88.26439666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TN8","iata":"","local":"7TN8","name":"Van Stratum Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Newport","elevation_ft":1160,"latitude":35.977500915527344,"longitude":-83.22640228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TN9","iata":"","local":"7TN9","name":"Jacques Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Newport","elevation_ft":1160,"latitude":35.957801818847656,"longitude":-83.29609680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TS1","iata":"","local":"7TS1","name":"Cowden Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Saginaw","elevation_ft":783,"latitude":32.863061,"longitude":-97.397822,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":375,"width_ft":145,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TS2","iata":"","local":"7TS2","name":"Alison Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Marcos","elevation_ft":630,"latitude":29.831300735473636,"longitude":-97.88919830322266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1950,"width_ft":26,"surface":"G"},{"id":"H1","length_ft":12,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TN1","iata":"","local":"7TN1","name":"Krashinsky Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Pelham","elevation_ft":995,"latitude":35.320599,"longitude":-85.8536,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3400,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TN3","iata":"","local":"7TN3","name":"Stones River Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":537,"latitude":35.970798,"longitude":-86.393097,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TS3","iata":"","local":"","name":"Wyatt Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Marcos","elevation_ft":800,"latitude":29.9599,"longitude":-97.985298,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TS5","iata":"","local":"7TS5","name":"CIG 806 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Lavaca","elevation_ft":24,"latitude":28.625657,"longitude":-96.682745,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TS6","iata":"","local":"7TS6","name":"Strack Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Spring","elevation_ft":125,"latitude":30.03300094604492,"longitude":-95.50129699707033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TS7","iata":"","local":"","name":"Broussard Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Hamshire","elevation_ft":20,"latitude":29.9111,"longitude":-94.339103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TS9","iata":"","local":"","name":"Ag Aviation Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bay City","elevation_ft":50,"latitude":29.0541,"longitude":-95.962502,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1730,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TX1","iata":"","local":"7TX1","name":"Ascension Providence Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":660,"latitude":31.514099,"longitude":-97.200302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TX2","iata":"","local":"7TX2","name":"Falcon's Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":900,"latitude":30.411221,"longitude":-97.877669,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TX3","iata":"","local":"7TX3","name":"Big Town Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mesquite","elevation_ft":550,"latitude":32.79180145263672,"longitude":-96.5635986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TX7","iata":"","local":"7TX7","name":"Ryan Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Midland","elevation_ft":2740,"latitude":32.06891,"longitude":-102.02557,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2650,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TX6","iata":"","local":"7TX6","name":"Kemah Waterfront Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":5,"latitude":29.546899795532227,"longitude":-95.01689910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TX0","iata":"","local":"7TX0","name":"Tom Danaher Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wichita Falls","elevation_ft":986,"latitude":33.82820129394531,"longitude":-98.57270050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3380,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7VA0","iata":"","local":"7VA0","name":"Airduce Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Cheriton","elevation_ft":16,"latitude":37.273611,"longitude":-75.971944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7VA1","iata":"","local":"7VA1","name":"Bristol Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Bristol","elevation_ft":1820,"latitude":36.602298736572266,"longitude":-82.21510314941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7VA2","iata":"","local":"7VA2","name":"Technical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Colonial Heights","elevation_ft":65,"latitude":37.30569839477539,"longitude":-77.39440155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7VA3","iata":"","local":"7VA3","name":"Hopewell Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Hopewell","elevation_ft":35,"latitude":37.28739929199219,"longitude":-77.27110290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7VA4","iata":"","local":"7VA4","name":"Bermuda Hundred Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Hopewell","elevation_ft":15,"latitude":37.29570007324219,"longitude":-77.27110290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7VA7","iata":"","local":"9VA7","name":"Brammer Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VA","municipality":"Union Hall","elevation_ft":795,"latitude":37.033501,"longitude":-79.699799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7VA8","iata":"","local":"7VA8","name":"Tri-Cities Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Bristol","elevation_ft":1880,"latitude":36.64590072631836,"longitude":-82.11070251464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7TX8","iata":"","local":"7TX8","name":"Flying K Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Amarillo","elevation_ft":3560,"latitude":35.107601165771484,"longitude":-102.03800201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3600,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WA1","iata":"","local":"7WA1","name":"Eclipse Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":600,"latitude":48.0968017578125,"longitude":-123.48300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":140,"width_ft":96,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WA0","iata":"","local":"7WA0","name":"Big Andy Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":830,"latitude":48.0984001159668,"longitude":-123.64299774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TX9","iata":"","local":"7TX9","name":"Ashford Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Old Boston","elevation_ft":305,"latitude":33.358699798583984,"longitude":-94.4376983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WA2","iata":"","local":"7WA2","name":"Jefferson General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Port Townsend","elevation_ft":160,"latitude":48.10979843139648,"longitude":-122.79299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WA6","iata":"","local":"","name":"Prosser Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Prosser","elevation_ft":690,"latitude":46.208199,"longitude":-119.764,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WA8","iata":"","local":"7WA8","name":"Good Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Puyallup","elevation_ft":120,"latitude":47.17900085449219,"longitude":-122.28900146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WA9","iata":"","local":"7WA9","name":"Ocean Beach Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Ilwaco","elevation_ft":25,"latitude":46.3026008605957,"longitude":-124.04299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":98,"width_ft":64,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WI1","iata":"","local":"7WI1","name":"Little Clam Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Clam Lake","elevation_ft":1456,"latitude":46.158599853515625,"longitude":-90.8843002319336,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":3500,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WI3","iata":"","local":"7WI3","name":"St Vincent Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":659,"latitude":44.50139999389648,"longitude":-88.0114974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WI0","iata":"","local":"7WI0","name":"Turkey Bluff Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ferryville","elevation_ft":1110,"latitude":43.37300109863281,"longitude":-91.10990142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WA4","iata":"","local":"7WA4","name":"Humbert Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ford","elevation_ft":1890,"latitude":47.85749816894531,"longitude":-117.77999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WA7","iata":"","local":"","name":"Mc Whorter Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Prosser","elevation_ft":1356,"latitude":46.313653,"longitude":-119.615042,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WA5","iata":"SSW","local":"7WA5","name":"Stuart Island Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Friday Harbor","elevation_ft":10,"latitude":48.673379,"longitude":-123.175439,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WA3","iata":"","local":"7WA3","name":"West Wind Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Everson","elevation_ft":160,"latitude":48.88610076904297,"longitude":-122.3290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WI7","iata":"","local":"","name":"Charlies Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Medford","elevation_ft":1490,"latitude":45.158901,"longitude":-90.1493,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7WV2","iata":"","local":"7WV2","name":"Greenbrier Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Ronceverte","elevation_ft":2202,"latitude":37.772052,"longitude":-80.470338,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7XA7","iata":"","local":"7XA7","name":"The Post Oak Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":534,"latitude":29.752034,"longitude":-95.457204,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7XS2","iata":"","local":"","name":"Kenley's Mustang Prairie Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":300,"latitude":31.242399,"longitude":-95.604103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7XS5","iata":"","local":"","name":"Christian Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Eldorado","elevation_ft":2425,"latitude":30.8603,"longitude":-100.567,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3683,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7XS8","iata":"","local":"7XS8","name":"Lift Crane Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":65,"latitude":29.638095,"longitude":-95.456963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"7XA2","iata":"","local":"7XA2","name":"Sagebrush Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":810,"latitude":33.148726,"longitude":-97.373993,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2900,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WI5","iata":"","local":"7WI5","name":"Syvrud Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Brooklyn","elevation_ft":1000,"latitude":42.88249969482422,"longitude":-89.40070343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3100,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7XA4","iata":"","local":"7XA4","name":"Buckshot Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Troy","elevation_ft":721,"latitude":31.161201,"longitude":-97.302523,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7XS7","iata":"","local":"7XS7","name":"Indian Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":2030,"latitude":30.11470031738281,"longitude":-98.93109893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3300,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7XS0","iata":"","local":"7XS0","name":"Polly Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Friendswood","elevation_ft":24,"latitude":29.5047,"longitude":-95.175499,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80AK","iata":"","local":"80AK","name":"Morvro Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Houston","elevation_ft":300,"latitude":61.60200119018555,"longitude":-149.78399658203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":1500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80CL","iata":"","local":"80CL","name":"Blythe Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Blythe","elevation_ft":297,"latitude":33.604879,"longitude":-114.602305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80CN","iata":"","local":"80CN","name":"US Border Patrol Campo Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Pine Valley","elevation_ft":3275,"latitude":32.716072,"longitude":-116.450054,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80FA","iata":"","local":"80FA","name":"Lake Marian Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Kenansville","elevation_ft":62,"latitude":27.8863889,"longitude":-81.0838888,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":6000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80FL","iata":"","local":"80FL","name":"Northwest Florida Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Chipley","elevation_ft":130,"latitude":30.765957,"longitude":-85.543769,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80ID","iata":"","local":"80ID","name":"St Luke's Magic Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Twin Falls","elevation_ft":3686,"latitude":42.591282,"longitude":-114.496567,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80KS","iata":"","local":"80KS","name":"Gilley's Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Peabody","elevation_ft":1427,"latitude":38.157798767100005,"longitude":-97.1930999756,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80CA","iata":"","local":"80CA","name":"Bacchi Valley Industries Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lotus","elevation_ft":760,"latitude":38.817133,"longitude":-120.922541,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80IN","iata":"","local":"80IN","name":"Gustin's /Private/ Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Harlan","elevation_ft":740,"latitude":41.2042007446,"longitude":-84.8051986694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80KY","iata":"","local":"80KY","name":"David Lowe Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Sacramento","elevation_ft":465,"latitude":37.39619827270508,"longitude":-87.2354965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80GA","iata":"","local":"80GA","name":"Murphy's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Grantville","elevation_ft":820,"latitude":33.259103,"longitude":-84.844937,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80CO","iata":"","local":"80CO","name":"Simonson Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":5130,"latitude":38.15169906616211,"longitude":-104.70600128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80LA","iata":"","local":"","name":"Luscombe Lane 1 Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Eunice","elevation_ft":42,"latitude":30.4263,"longitude":-92.318199,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2524,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80MA","iata":"","local":"80MA","name":"Tew Mac Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Tewksbury","elevation_ft":92,"latitude":42.5975,"longitude":-71.205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80MI","iata":"","local":"80MI","name":"Fox Hollow Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ada","elevation_ft":720,"latitude":42.944423,"longitude":-85.513029,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80MN","iata":"","local":"80MN","name":"North Shore Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Grand Marais","elevation_ft":805,"latitude":47.757012,"longitude":-90.341161,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80NJ","iata":"","local":"80NJ","name":"Middletown Township Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Red Bank","elevation_ft":100,"latitude":40.387100219727,"longitude":-74.087898254395,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80NR","iata":"","local":"80NR","name":"Wakemed North Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Raleigh","elevation_ft":425,"latitude":35.909444,"longitude":-78.5975,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80OI","iata":"","local":"80OI","name":"Cleveland Clinic South Pointe Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Warrensville Heights","elevation_ft":1014,"latitude":41.446742,"longitude":-81.538206,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80OK","iata":"","local":"","name":"Flying S Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Reydon","elevation_ft":2440,"latitude":35.576698,"longitude":-99.8862,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2112,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80PA","iata":"","local":"80PA","name":"Pamco Pa Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Moosic","elevation_ft":990,"latitude":41.36899948120117,"longitude":-75.67739868164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80ND","iata":"","local":"80ND","name":"Troy Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Crosby","elevation_ft":2080,"latitude":48.87860107421875,"longitude":-103.37000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"08L/26R","length_ft":2000,"width_ft":75,"surface":"T"},{"id":"08R/26L","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80OR","iata":"","local":"80OR","name":"Wilderness Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bly","elevation_ft":4540,"latitude":42.36429977416992,"longitude":-120.96600341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80MO","iata":"","local":"80MO","name":"Seiferd Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Carthage","elevation_ft":980,"latitude":37.276536,"longitude":-94.351897,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80TA","iata":"","local":"80TA","name":"Porta-Kamp 12th Street Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":70,"latitude":29.791304,"longitude":-95.444345,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80TE","iata":"","local":"80TE","name":"Opela Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Carrollton","elevation_ft":445,"latitude":32.9557991027832,"longitude":-96.91310119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80SD","iata":"","local":"80SD","name":"Comstock Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Columbia","elevation_ft":1332,"latitude":45.772675,"longitude":-98.352894,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2670,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81AL","iata":"","local":"81AL","name":"Bibb Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Centreville","elevation_ft":254,"latitude":32.95177,"longitude":-87.14819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81AR","iata":"","local":"","name":"Smith's Strip","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Lonoke","elevation_ft":250,"latitude":34.750099,"longitude":-91.848701,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81AZ","iata":"","local":"81AZ","name":"Hangar 5 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1500,"latitude":33.632496,"longitude":-111.906604,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"80WI","iata":"","local":"80WI","name":"Spring Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Spring Lake","elevation_ft":800,"latitude":44.02299880981445,"longitude":-89.13849639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80XA","iata":"","local":"80XA","name":"Knight Trow Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canton","elevation_ft":505,"latitude":32.487519,"longitude":-95.954513,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1350,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81AK","iata":"","local":"81AK","name":"McKinley Country Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Trapper Creek","elevation_ft":600,"latitude":62.577634,"longitude":-150.23666,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1650,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80TS","iata":"","local":"80TS","name":"M Y Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":300,"latitude":31.327699661254883,"longitude":-95.572998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80TN","iata":"","local":"80TN","name":"Big T Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lenoir City","elevation_ft":900,"latitude":35.826698303222656,"longitude":-84.33000183105469,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81CA","iata":"","local":"","name":"7-M Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Middletown","elevation_ft":1153,"latitude":38.731602,"longitude":-122.563004,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2840,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81FA","iata":"","local":"81FA","name":"Johnson Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Hobe Sound","elevation_ft":14,"latitude":27.033889,"longitude":-80.166389,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81FL","iata":"","local":"","name":"Cox's Hammock Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Indiantown","elevation_ft":35,"latitude":27.071699,"longitude":-80.520102,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4145,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81II","iata":"","local":"81II","name":"Methodist Hospital of In. Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":854,"latitude":39.78889846801758,"longitude":-86.16230010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81IL","iata":"","local":"81IL","name":"Illinois Valley Parachute Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Minier","elevation_ft":646,"latitude":40.433943,"longitude":-89.356585,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2640,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81KY","iata":"","local":"","name":"Hi Rise Farm Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"New Liberty","elevation_ft":480,"latitude":38.5783,"longitude":-85.017502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81LS","iata":"","local":"81LS","name":"Richardson Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Rayville","elevation_ft":72,"latitude":32.463538,"longitude":-91.750022,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81MI","iata":"","local":"81MI","name":"Three Rivers Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Three Rivers","elevation_ft":818,"latitude":41.935475,"longitude":-85.648708,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81KS","iata":"","local":"81KS","name":"Blackhawk Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Meriden","elevation_ft":1015,"latitude":39.1562,"longitude":-95.577499,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1720,"width_ft":63,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81LL","iata":"","local":"81LL","name":"Otterbach Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mendota","elevation_ft":840,"latitude":41.572305,"longitude":-89.171391,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81CO","iata":"","local":"81CO","name":"Mesa 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Steamboat Springs","elevation_ft":7000,"latitude":40.40610122680664,"longitude":-106.8209991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81GA","iata":"","local":"81GA","name":"Lucky Lairds Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Villa Rica","elevation_ft":1130,"latitude":33.6409,"longitude":-84.9049,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81MO","iata":"","local":"81MO","name":"Bates County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Butler","elevation_ft":820,"latitude":38.24829864501953,"longitude":-94.34220123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81MU","iata":"","local":"81MU","name":"Mercy Hospital Springfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1300,"latitude":37.179464,"longitude":-93.27601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"},{"id":"H2","length_ft":46,"width_ft":46,"surface":"C"},{"id":"H3","length_ft":44,"width_ft":44,"surface":"-"},{"id":"H4","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81NC","iata":"","local":"81NC","name":"Cox Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Tabor City","elevation_ft":50,"latitude":34.0408325195,"longitude":-78.7399978638,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81OH","iata":"","local":"","name":"Elbel Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Hamersville","elevation_ft":975,"latitude":38.891701,"longitude":-83.983002,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81OI","iata":"","local":"81OI","name":"Brown Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":870,"latitude":39.08060073852539,"longitude":-84.60189819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81PN","iata":"","local":"81PN","name":"Armstrong County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Kittanning","elevation_ft":1157,"latitude":40.81119918823242,"longitude":-79.54810333251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81TA","iata":"","local":"81TA","name":"Masterson Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mico","elevation_ft":1100,"latitude":29.55660057067871,"longitude":-98.92949676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81TS","iata":"","local":"","name":"Dibrell Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":385,"latitude":31.443304,"longitude":-95.276191,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81TX","iata":"","local":"","name":"La Leona Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Terlingua","elevation_ft":2590,"latitude":29.3433,"longitude":-103.565001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81OK","iata":"","local":"81OK","name":"Twin Lakes Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Granite","elevation_ft":1630,"latitude":35.02640151977539,"longitude":-99.3394012451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81OR","iata":"","local":"81OR","name":"Wagontire Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Burns","elevation_ft":4725,"latitude":43.24990081787109,"longitude":-119.875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81MN","iata":"","local":"81MN","name":"Ewen Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Jeffers","elevation_ft":1483,"latitude":44.03049850463867,"longitude":-95.19550323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81WA","iata":"","local":"81WA","name":"Jobe Skis Plant 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Redmond","elevation_ft":30,"latitude":47.68539810180664,"longitude":-122.13600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81WI","iata":"","local":"","name":"Gunner Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Athens","elevation_ft":1465,"latitude":45.0786041,"longitude":-90.176498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"81XS","iata":"","local":"81XS","name":"Post Oak Central Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":148,"latitude":29.72909927368164,"longitude":-95.4646987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82AK","iata":"","local":"","name":"Jim's Landing Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":425,"latitude":61.615518,"longitude":-149.189315,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82CA","iata":"","local":"82CA","name":"SCE Moorpark Substation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Moorpark","elevation_ft":470,"latitude":34.281799,"longitude":-118.904542,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82CD","iata":"","local":"82CD","name":"Creech Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":1001,"latitude":38.081583,"longitude":-84.31825,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82CO","iata":"","local":"82CO","name":"Mountain Bell Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4580,"latitude":39.09749984741211,"longitude":-108.58399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"},{"id":"H2","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82FA","iata":"","local":"82FA","name":"Airrep Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Freeport","elevation_ft":17,"latitude":30.488626,"longitude":-86.19166,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82FD","iata":"","local":"82FD","name":"Atc Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jupiter","elevation_ft":6,"latitude":26.98870086669922,"longitude":-80.0927963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82FL","iata":"","local":"","name":"BR Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Jupiter","elevation_ft":20,"latitude":26.9142,"longitude":-80.205299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82CL","iata":"FOB","local":"82CL","name":"Fort Bragg Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Fort Bragg","elevation_ft":71,"latitude":39.472445,"longitude":-123.795319,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1850,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82IL","iata":"","local":"82IL","name":"Mercyhealth System-Riverside Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":908,"latitude":42.315222,"longitude":-88.960166,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82KS","iata":"","local":"82KS","name":"Greg Post Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Mapleton","elevation_ft":884,"latitude":38.012073,"longitude":-94.857872,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82LS","iata":"","local":"82LS","name":"Lookout Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Transylvania","elevation_ft":86,"latitude":32.691119,"longitude":-91.11008,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2480,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82MN","iata":"","local":"82MN","name":"Lake City Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Lake City","elevation_ft":703,"latitude":44.460111,"longitude":-92.288147,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82MO","iata":"","local":"82MO","name":"Cameron Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Cameron","elevation_ft":1016,"latitude":39.7304556,"longitude":-94.2189417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82NE","iata":"","local":"82NE","name":"DRC Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Mullen","elevation_ft":3343,"latitude":41.925195,"longitude":-101.185257,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4548,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82NM","iata":"","local":"82NM","name":"Skeen Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Hondo","elevation_ft":5524,"latitude":33.16879,"longitude":-105.133201,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82OH","iata":"","local":"82OH","name":"Rocky Ridge Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Waterville","elevation_ft":650,"latitude":41.5078010559082,"longitude":-83.77130126953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82IS","iata":"","local":"82IS","name":"Landings Condominium Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Huntley","elevation_ft":880,"latitude":42.14310073852539,"longitude":-88.40290069580078,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":3141,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82KY","iata":"","local":"82KY","name":"Woodledge Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Crestwood","elevation_ft":680,"latitude":38.28340148925781,"longitude":-85.48190307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82NC","iata":"","local":"82NC","name":"Pineview Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Sanford","elevation_ft":300,"latitude":35.308101654052734,"longitude":-79.07330322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82OK","iata":"","local":"82OK","name":"Ascension Saint John Sapulpa Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Sapulpa","elevation_ft":750,"latitude":35.993146,"longitude":-96.099575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82TE","iata":"","local":"","name":"Tarry Bank Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Leon Springs","elevation_ft":1380,"latitude":29.691602,"longitude":-98.707498,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82TX","iata":"","local":"82TX","name":"St Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bryan","elevation_ft":320,"latitude":30.65710067749023,"longitude":-96.34750366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82WA","iata":"","local":"82WA","name":"Kittitas Valley Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":1597,"latitude":46.9876555,"longitude":-120.5378194,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82TS","iata":"","local":"82TS","name":"Elmdale Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1775,"latitude":32.450872,"longitude":-99.648785,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2950,"width_ft":30,"surface":"A"},{"id":"18/36","length_ft":3270,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83CA","iata":"","local":"83CA","name":"The Met Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Costa Mesa","elevation_ft":204,"latitude":33.688469,"longitude":-117.877966,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83CO","iata":"","local":"83CO","name":"Snake River Health Services Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Keystone","elevation_ft":9300,"latitude":39.60419845581055,"longitude":-105.95899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"82WI","iata":"","local":"82WI","name":"Triple S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Whitelaw","elevation_ft":855,"latitude":44.149200439453125,"longitude":-87.81439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1650,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83FD","iata":"","local":"83FD","name":"Lake Montaza Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":52,"latitude":27.580299377441406,"longitude":-80.81529998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82WN","iata":"","local":"82WN","name":"Magee Creek Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Rice","elevation_ft":1945,"latitude":48.361371,"longitude":-118.140814,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82XS","iata":"","local":"82XS","name":"Circle P Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":500,"latitude":29.10269927978516,"longitude":-98.2166976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2600,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83FL","iata":"","local":"83FL","name":"Nassau Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Yulee","elevation_ft":20,"latitude":30.618799209594727,"longitude":-81.53369903564453,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3150,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83GA","iata":"","local":"83GA","name":"Brock Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Bainbridge","elevation_ft":130,"latitude":30.99970054626465,"longitude":-84.506103515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83IA","iata":"","local":"83IA","name":"Keokuk County Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Sigourney","elevation_ft":753,"latitude":41.3224983215332,"longitude":-92.20549774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83IL","iata":"","local":"83IL","name":"Oltman-Shuck Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Minonk","elevation_ft":736,"latitude":40.892799377441406,"longitude":-89.10399627685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":90,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83KY","iata":"","local":"83KY","name":"Works Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Erlanger","elevation_ft":800,"latitude":38.98109817504883,"longitude":-84.5447006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83MI","iata":"","local":"83MI","name":"St. Joseph Mercy Oakland-Bassett Street Helipad","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Pontiac","elevation_ft":980,"latitude":42.612111,"longitude":-83.27586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83MN","iata":"","local":"","name":"Ponderosa Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Outing","elevation_ft":1316,"latitude":46.863098,"longitude":-93.989403,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83MO","iata":"","local":"83MO","name":"North Kansas City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"North Kansas City","elevation_ft":411,"latitude":39.14939880371094,"longitude":-94.55130004882812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83NC","iata":"","local":"83NC","name":"Holly Green Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Durham","elevation_ft":300,"latitude":35.922298431396484,"longitude":-78.98809814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83NH","iata":"","local":"83NH","name":"Pier 19 Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Tuftonborough","elevation_ft":500,"latitude":43.654167,"longitude":-71.288056,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":5129,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83IS","iata":"","local":"83IS","name":"Prairie Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Irvington","elevation_ft":550,"latitude":38.42639923095703,"longitude":-89.1312026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":89,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83OI","iata":"","local":"83OI","name":"M P W Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Hebron","elevation_ft":900,"latitude":39.954498291015625,"longitude":-82.52739715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83PA","iata":"","local":"83PA","name":"Mmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Jeannette","elevation_ft":1348,"latitude":40.31119918823242,"longitude":-79.61029815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83PN","iata":"","local":"83PN","name":"Wpxi-Tv Television Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1182,"latitude":40.4632987976,"longitude":-80.00460052490001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83XA","iata":"","local":"83XA","name":"TR Zato Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Spur","elevation_ft":2408,"latitude":33.462463,"longitude":-100.93519,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3102,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83XS","iata":"","local":"83XS","name":"Ball Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":90,"latitude":29.674699783325195,"longitude":-95.61830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84AK","iata":"","local":"84AK","name":"T-Time Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":375,"latitude":61.587245,"longitude":-149.33453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84CA","iata":"","local":"84CA","name":"Beverly Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":278,"latitude":34.07389831542969,"longitude":-118.3769989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"83OK","iata":"","local":"83OK","name":"Sweetbriar Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Murry Spur","elevation_ft":560,"latitude":35.25680160522461,"longitude":-94.5780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1747,"width_ft":28,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83TS","iata":"","local":"83TS","name":"Moore Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gordon","elevation_ft":1200,"latitude":32.426896,"longitude":-98.418374,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83TX","iata":"","local":"83TX","name":"Texas A And M Flight Test Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bryan","elevation_ft":264,"latitude":30.6334991455,"longitude":-96.4835968018,"has_tower":false,"has_beacon":false,"runways":[{"id":"17R/35L","length_ft":7000,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84AL","iata":"","local":"84AL","name":"Blessings Landing Air Ranch","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Pinckard","elevation_ft":400,"latitude":31.3031,"longitude":-85.52705,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84CL","iata":"CCD","local":"84CL","name":"Century City Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":473,"latitude":34.060798645,"longitude":-118.417999268,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84CO","iata":"","local":"84CO","name":"Rampart Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Castle Rock","elevation_ft":6480,"latitude":39.344239,"longitude":-104.841906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84FD","iata":"","local":"84FD","name":"North Port Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"North Port","elevation_ft":14,"latitude":27.04610061645508,"longitude":-82.23629760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84FL","iata":"","local":"84FL","name":"Capeletti Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Hialeah","elevation_ft":7,"latitude":25.92539978027344,"longitude":-80.29979705810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84GA","iata":"","local":"84GA","name":"Screven Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Sylvania","elevation_ft":250,"latitude":32.750999450683594,"longitude":-81.6720962524414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84ID","iata":"","local":"84ID","name":"Shetler's Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Twin Falls","elevation_ft":3848,"latitude":42.543319,"longitude":-114.545791,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84IL","iata":"","local":"","name":"Rossi's Farm Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Minooka","elevation_ft":580,"latitude":41.507,"longitude":-88.277802,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84IN","iata":"","local":"84IN","name":"Kosciusko Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Warsaw","elevation_ft":839,"latitude":41.24779891967773,"longitude":-85.82890319824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84IS","iata":"","local":"84IS","name":"Passavant Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Jacksonville","elevation_ft":604,"latitude":39.747743,"longitude":-90.260396,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84KY","iata":"","local":"","name":"Greene County Parachute Center Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Bardstown","elevation_ft":650,"latitude":37.8153,"longitude":-85.540002,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2265,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84MI","iata":"","local":"","name":"Timbers Sky Camp Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"South Branch","elevation_ft":945,"latitude":44.469501,"longitude":-83.881897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":67,"width_ft":67,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84MO","iata":"","local":"84MO","name":"Holiday Inn Westport Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":600,"latitude":38.69390106201172,"longitude":-90.44869995117188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":86,"width_ft":86,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84NK","iata":"","local":"84NK","name":"St. Luke's Cornwall Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Cornwall","elevation_ft":264,"latitude":41.434583,"longitude":-74.041111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84NR","iata":"","local":"84NR","name":"Dupree Willow Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Fuquay-Varina","elevation_ft":368,"latitude":35.582577,"longitude":-78.719495,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84OH","iata":"","local":"","name":"Hanshell Flying Apple Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Octa","elevation_ft":1055,"latitude":39.5812,"longitude":-83.651001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84OI","iata":"","local":"84OI","name":"Grant Lifeflight 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Wellston","elevation_ft":716,"latitude":39.125099182128906,"longitude":-82.53820037841797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84OK","iata":"","local":"","name":"Collier Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Taloga","elevation_ft":1740,"latitude":35.938901,"longitude":-99.053201,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84PA","iata":"","local":"84PA","name":"Ged Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Birdsboro","elevation_ft":440,"latitude":40.30929946899414,"longitude":-75.82630157470703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84TA","iata":"","local":"","name":"Allied Northborough Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":200,"latitude":29.957399,"longitude":-95.419403,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":910,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84NY","iata":"","local":"84NY","name":"Skyview Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Rush","elevation_ft":642,"latitude":42.98619842529297,"longitude":-77.61250305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84ND","iata":"","local":"84ND","name":"Kyllo Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mc Canna","elevation_ft":1150,"latitude":48.00080108642578,"longitude":-97.75700378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":1850,"width_ft":50,"surface":"T"},{"id":"17R/35L","length_ft":1550,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84OR","iata":"","local":"84OR","name":"B Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Selma","elevation_ft":1400,"latitude":42.24760055541992,"longitude":-123.56999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84TE","iata":"","local":"84TE","name":"W4 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Morgan","elevation_ft":833,"latitude":31.988067,"longitude":-97.543181,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84NC","iata":"","local":"84NC","name":"Rooster Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cameron","elevation_ft":340,"latitude":35.272724,"longitude":-79.248548,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2155,"width_ft":132,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84TS","iata":"","local":"84TS","name":"Tourist Ride Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":18,"latitude":29.2460994720459,"longitude":-94.8646011352539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84TX","iata":"","local":"","name":"Camp Longhorn Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Buchanan Dam","elevation_ft":934,"latitude":30.741373,"longitude":-98.37873,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84VA","iata":"","local":"84VA","name":"Cia Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Langley","elevation_ft":255,"latitude":38.95289993286133,"longitude":-77.15249633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84WI","iata":"","local":"84WI","name":"Lutheran Hospital - La Crosse Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"La Crosse","elevation_ft":656,"latitude":43.7929992676,"longitude":-91.2473983765,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85AK","iata":"","local":"85AK","name":"Marion Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":150,"latitude":61.509167,"longitude":-149.908611,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":3400,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85CA","iata":"","local":"85CA","name":"Redwood Coast Medical Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Gualala","elevation_ft":135,"latitude":38.770806,"longitude":-123.529453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85CO","iata":"","local":"85CO","name":"Anderson Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Niwot","elevation_ft":5160,"latitude":40.11249923706055,"longitude":-105.16200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85FD","iata":"","local":"85FD","name":"AdventHealth Kissimmee Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":81,"latitude":28.315393,"longitude":-81.405979,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84WA","iata":"","local":"84WA","name":"D and B Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Elma","elevation_ft":55,"latitude":46.969535,"longitude":-123.386024,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85FL","iata":"","local":"85FL","name":"Thomas Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":215,"latitude":30.96929931640625,"longitude":-87.05159759521484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85LA","iata":"","local":"","name":"Transco Kaplan Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Kaplan","elevation_ft":65,"latitude":29.9813,"longitude":-92.282303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85MA","iata":"","local":"85MA","name":"Lahey Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Burlington","elevation_ft":241,"latitude":42.484749,"longitude":-71.201549,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85MO","iata":"","local":"","name":"Willhite Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Swedeborg","elevation_ft":1022,"latitude":37.875,"longitude":-92.322403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85NJ","iata":"","local":"85NJ","name":"Webcraft Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"North Brunswick","elevation_ft":115,"latitude":40.4468002319336,"longitude":-74.4937973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85NM","iata":"","local":"85NM","name":"Playas Medical Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Playas","elevation_ft":4506,"latitude":31.91449928283692,"longitude":-108.53399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85NE","iata":"","local":"85NE","name":"Meyers Freedom Flight Hardy Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hardy","elevation_ft":1624,"latitude":40.02080154418945,"longitude":-97.94200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85MN","iata":"","local":"85MN","name":"Christison Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Plainview","elevation_ft":1175,"latitude":44.158599853515625,"longitude":-92.2021026611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85KY","iata":"","local":"85KY","name":"Deer Run Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"New Castle","elevation_ft":890,"latitude":38.47029876708984,"longitude":-85.13860321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85IL","iata":"","local":"85IL","name":"Durbin Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sullivan","elevation_ft":664,"latitude":39.636894,"longitude":-88.619413,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85MI","iata":"","local":"85MI","name":"Dewind Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Zeeland","elevation_ft":640,"latitude":42.93230056762695,"longitude":-86.01380157470703,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85GA","iata":"","local":"85GA","name":"Aiken Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Talmo","elevation_ft":1020,"latitude":34.172298431396484,"longitude":-83.73100280761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85OH","iata":"","local":"","name":"Tounshendeaux Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"West Farmington","elevation_ft":838,"latitude":41.412609,"longitude":-80.949245,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85OI","iata":"","local":"85OI","name":"Akron Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":950,"latitude":41.079093,"longitude":-81.526859,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85OK","iata":"","local":"85OK","name":"Red Stevenson Property Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tijuana","elevation_ft":765,"latitude":36.4833984375,"longitude":-95.0001983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85TA","iata":"","local":"","name":"J-Bar Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Collinsville","elevation_ft":718,"latitude":33.579899,"longitude":-96.812401,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1475,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85TS","iata":"","local":"","name":"Airbus Helicopter Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":588,"latitude":32.702139,"longitude":-97.047864,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85WA","iata":"","local":"","name":"Scott Seed Farm Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Pomeroy","elevation_ft":1866,"latitude":46.527221,"longitude":-117.764672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85XS","iata":"","local":"","name":"Marine Consultants Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":50,"latitude":29.7061,"longitude":-95.274101,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2935,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86AK","iata":"","local":"86AK","name":"Hoppe'S Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":180,"latitude":61.551431,"longitude":-149.94575,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":1150,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86AL","iata":"","local":"86AL","name":"Eagle Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Midland City","elevation_ft":369,"latitude":31.292514,"longitude":-85.539308,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85OR","iata":"","local":"85OR","name":"Allen's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bly","elevation_ft":4410,"latitude":42.404598236083984,"longitude":-121.04900360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85TE","iata":"","local":"85TE","name":"Old Kingsbury Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kingsbury","elevation_ft":560,"latitude":29.63419914245605,"longitude":-97.81169891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86CN","iata":"","local":"86CN","name":"Mercy Medical Center Merced Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Merced","elevation_ft":194,"latitude":37.340819,"longitude":-120.466636,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":98,"width_ft":98,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86FD","iata":"","local":"86FD","name":"Country Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bell","elevation_ft":55,"latitude":29.76469993591309,"longitude":-82.89640045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86FL","iata":"","local":"86FL","name":"Lake Shore Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":190,"latitude":30.193300247192383,"longitude":-82.63009643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86IN","iata":"","local":"86IN","name":"Washington County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Salem","elevation_ft":776,"latitude":38.61330032348633,"longitude":-86.10690307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86IS","iata":"","local":"86IS","name":"Michael Pfister Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Roanoke","elevation_ft":805,"latitude":40.77939987182617,"longitude":-89.25779724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":134,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86KS","iata":"","local":"","name":"Weiss Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Spring Hill","elevation_ft":1031,"latitude":38.705799,"longitude":-94.824699,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4492,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86KY","iata":"","local":"","name":"Hornback Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Hodgenville","elevation_ft":760,"latitude":37.622277,"longitude":-85.791374,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86ME","iata":"","local":"86ME","name":"Cathance Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Bowdoinham","elevation_ft":0,"latitude":44.006528,"longitude":-69.895222,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":2592,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86CO","iata":"","local":"86CO","name":"Lazy W Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Berthoud","elevation_ft":5200,"latitude":40.3135986328125,"longitude":-105.1449966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86GA","iata":"","local":"86GA","name":"Flying G Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Tunnel Hill","elevation_ft":845,"latitude":34.86790084838867,"longitude":-85.06109619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86LA","iata":"","local":"86LA","name":"Spring Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Kentwood","elevation_ft":400,"latitude":30.973800659179688,"longitude":-90.66570281982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86MN","iata":"","local":"","name":"Minn D O T Heliport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Rochester","elevation_ft":1024,"latitude":44.072201,"longitude":-92.505698,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86MO","iata":"","local":"86MO","name":"Bothwell Regional Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Sedalia","elevation_ft":898,"latitude":38.699694,"longitude":-93.222378,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86NE","iata":"","local":"86NE","name":"Orum Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Blair","elevation_ft":1320,"latitude":41.54169845581055,"longitude":-96.2739028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86NJ","iata":"","local":"86NJ","name":"Hercules Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Sayerville","elevation_ft":90,"latitude":40.4519996643,"longitude":-74.3339996338,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86OI","iata":"","local":"86OI","name":"Belcan Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Blue Ash","elevation_ft":780,"latitude":39.2578010559082,"longitude":-84.38829803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86OK","iata":"","local":"86OK","name":"St Francis Hospital Vinita Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Vinita","elevation_ft":700,"latitude":36.653438,"longitude":-95.156666,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86OR","iata":"","local":"86OR","name":"Amber Glen Business Center Hp Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Beaverton","elevation_ft":200,"latitude":45.530399322509766,"longitude":-122.88300323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86PA","iata":"","local":"86PA","name":"7D Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Tipton","elevation_ft":1080,"latitude":40.64450073242188,"longitude":-78.30059814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86OH","iata":"","local":"86OH","name":"Westfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Westfield Center","elevation_ft":1044,"latitude":41.01279830932617,"longitude":-81.92009735107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86TN","iata":"","local":"86TN","name":"Dumplin Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Dandridge","elevation_ft":1000,"latitude":36.016459,"longitude":-83.544073,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86TE","iata":"","local":"86TE","name":"Matthews Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Santo","elevation_ft":835,"latitude":32.649898529052734,"longitude":-98.14730072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1725,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86VA","iata":"","local":"86VA","name":"Newport News General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Newport News","elevation_ft":19,"latitude":36.99990081787109,"longitude":-76.42469787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"86WI","iata":"","local":"","name":"Bakers Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Blanchardville","elevation_ft":875,"latitude":42.825298,"longitude":-89.870102,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87CL","iata":"","local":"87CL","name":"City National Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":980,"latitude":34.051544,"longitude":-118.256949,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87CN","iata":"","local":"87CN","name":"Honda of Santa Ana Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ana","elevation_ft":113,"latitude":33.72710037231445,"longitude":-117.83599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87FD","iata":"","local":"87FD","name":"Palm Beach Gardens Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palm Beach Gardens","elevation_ft":14,"latitude":26.828694,"longitude":-80.085369,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87FL","iata":"","local":"87FL","name":"King Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"New Port Richey","elevation_ft":8,"latitude":28.25271,"longitude":-82.743718,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2882,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87GA","iata":"","local":"87GA","name":"Tanner Medical Center/Villa Rica Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Villa Rica","elevation_ft":1000,"latitude":33.73619842529297,"longitude":-85.92410278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87CD","iata":"","local":"87CD","name":"The Flying Z Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":5440,"latitude":37.98994,"longitude":-104.760845,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87CO","iata":"","local":"87CO","name":"Young's Strip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bennett","elevation_ft":5650,"latitude":39.69110107421875,"longitude":-104.41600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":15,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87AK","iata":"","local":"87AK","name":"Soloy Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":545,"latitude":61.6515007019043,"longitude":-149.28799438476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1100,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86TX","iata":"","local":"86TX","name":"Flying J Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bulverde","elevation_ft":1055,"latitude":29.737199783325195,"longitude":-98.37889862060548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86XS","iata":"","local":"86XS","name":"Gesin Ranches Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sweetwater","elevation_ft":2200,"latitude":32.40010070800781,"longitude":-100.36699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87KY","iata":"","local":"87KY","name":"Midwest Communication Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Highland Heights","elevation_ft":850,"latitude":39.04560089111328,"longitude":-84.46379852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":23,"width_ft":23,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87LA","iata":"","local":"","name":"Lafayette Hilton Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":169,"latitude":30.196,"longitude":-92.0153,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87ME","iata":"","local":"87ME","name":"High Note Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Sweden","elevation_ft":730,"latitude":44.151331,"longitude":-70.793986,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87MI","iata":"","local":"87MI","name":"Ascension Borgess Pipp Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Plainwell","elevation_ft":726,"latitude":42.447261,"longitude":-85.654975,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87MN","iata":"","local":"87MN","name":"Erickson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Roosevelt","elevation_ft":1155,"latitude":48.81029891967773,"longitude":-95.20159912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87NJ","iata":"","local":"87NJ","name":"Shore Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Somers Point","elevation_ft":75,"latitude":39.314571,"longitude":-74.593156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87NY","iata":"","local":"87NY","name":"Clearview Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"East Moriches","elevation_ft":50,"latitude":40.826444,"longitude":-72.745944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87OK","iata":"","local":"87OK","name":"Wagoner Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Wagoner","elevation_ft":650,"latitude":35.95009994506836,"longitude":-95.05020141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87NE","iata":"","local":"87NE","name":"Knox Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"York","elevation_ft":1638,"latitude":40.809200286865234,"longitude":-97.58779907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87IL","iata":"","local":"87IL","name":"Bushby RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Minooka","elevation_ft":580,"latitude":41.5167007446,"longitude":-88.2667007446,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87NC","iata":"","local":"27NR","name":"C A G Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Angier","elevation_ft":310,"latitude":35.468762,"longitude":-78.652003,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87TS","iata":"","local":"87TS","name":"Star Houston Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":123,"latitude":29.783606,"longitude":-95.442603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87WA","iata":"","local":"87WA","name":"Trios Women & Childrens Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Kennewick","elevation_ft":395,"latitude":46.199343,"longitude":-119.120221,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87XA","iata":"","local":"87XA","name":"Methodist Midlothian Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Midlothian","elevation_ft":761,"latitude":32.469717,"longitude":-96.980824,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88AZ","iata":"","local":"88AZ","name":"Grapevine Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Roosevelt","elevation_ft":2329,"latitude":33.6409083,"longitude":-111.0569167,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87PA","iata":"","local":"87PA","name":"Waltman Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Chicora","elevation_ft":1360,"latitude":40.92649841308594,"longitude":-79.73870086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87WS","iata":"","local":"87WS","name":"Valhalla Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mosinee","elevation_ft":1328,"latitude":44.840956,"longitude":-89.760461,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87WI","iata":"","local":"87WI","name":"Quale Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cottage Grove","elevation_ft":955,"latitude":43.01940155029297,"longitude":-89.1854019165039,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87OR","iata":"","local":"87OR","name":"Moondance Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Beatty","elevation_ft":4980,"latitude":42.651798248291016,"longitude":-121.3290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87TE","iata":"","local":"87TE","name":"Rose Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Needville","elevation_ft":100,"latitude":29.4519004822,"longitude":-95.8655014038,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87XS","iata":"","local":"87XS","name":"Cinco B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Medina","elevation_ft":1457,"latitude":29.791121,"longitude":-99.263964,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87TX","iata":"","local":"87TX","name":"Porter Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Burnell","elevation_ft":418,"latitude":28.690000534058,"longitude":-97.760299682617,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88CA","iata":"","local":"88CA","name":"Regional Medical Center San Jose H2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Jose","elevation_ft":120,"latitude":37.361464,"longitude":-121.848503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88FA","iata":"","local":"88FA","name":"Tampa Hard Rock Helipad","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":87,"latitude":27.9955167,"longitude":-82.370144,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88FD","iata":"","local":"88FD","name":"Baptist Health Bethesda Hospital East Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Boynton Beach","elevation_ft":55,"latitude":26.505224,"longitude":-80.070478,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88FL","iata":"","local":"88FL","name":"Sailfish Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sewall's Point","elevation_ft":5,"latitude":27.177813,"longitude":-80.157706,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88IL","iata":"","local":"","name":"Mary's Landing Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Capron","elevation_ft":910,"latitude":42.413102,"longitude":-88.733299,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88IN","iata":"","local":"","name":"Gardner Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Boggstown","elevation_ft":740,"latitude":39.5798,"longitude":-85.932198,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2565,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88KY","iata":"","local":"88KY","name":"Saint Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":980,"latitude":38.032901763916016,"longitude":-84.52519989013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88ME","iata":"","local":"88ME","name":"Deer Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Waterford","elevation_ft":762,"latitude":44.15024,"longitude":-70.669453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88MS","iata":"","local":"88MS","name":"Strayhorn Hay Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Senatobia","elevation_ft":255,"latitude":34.628469,"longitude":-90.129139,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2073,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88IS","iata":"","local":"88IS","name":"Blickhan Lndg Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Quincy","elevation_ft":635,"latitude":40.0083999634,"longitude":-91.3821029663,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88LL","iata":"","local":"88LL","name":"Block Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pearl City","elevation_ft":917,"latitude":42.19169998168945,"longitude":-89.83820343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88CO","iata":"","local":"88CO","name":"Tranquila Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Yoder","elevation_ft":6320,"latitude":38.88610076904297,"longitude":-104.2490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88OI","iata":"","local":"88OI","name":"Akron City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":1368,"latitude":41.080736,"longitude":-81.500164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":90,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88TA","iata":"","local":"88TA","name":"Figure 2 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Van Horn","elevation_ft":3700,"latitude":31.45599937438965,"longitude":-104.84400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88TE","iata":"","local":"","name":"Thunderbird Southwest Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"La Grange","elevation_ft":385,"latitude":29.902865,"longitude":-96.793199,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1867,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88TS","iata":"","local":"88TS","name":"Fort Wolters Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mineral Wells","elevation_ft":887,"latitude":32.83855,"longitude":-98.062463,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":600,"width_ft":600,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88TX","iata":"","local":"88TX","name":"Christus Mother Frances Hospital Sulphur Springs Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sulphur Springs","elevation_ft":476,"latitude":33.158041,"longitude":-95.599235,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88NY","iata":"","local":"88NY","name":"Zelazny Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Shelby","elevation_ft":635,"latitude":43.15779876708984,"longitude":-78.3583984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88ND","iata":"","local":"88ND","name":"Goodman Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Milton","elevation_ft":1560,"latitude":48.709166,"longitude":-97.995577,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88OR","iata":"","local":"88OR","name":"Tallman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Lebanon","elevation_ft":303,"latitude":44.56829833984375,"longitude":-122.97100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88TT","iata":"","local":"88TT","name":"Shady Lane Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pilot Point","elevation_ft":650,"latitude":33.351246,"longitude":-97.001188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88NC","iata":"","local":"88NC","name":"Corriher Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mount Ulla","elevation_ft":840,"latitude":35.6325,"longitude":-80.685303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88TN","iata":"","local":"88TN","name":"Piney Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Altamont","elevation_ft":1960,"latitude":35.4245,"longitude":-85.779333,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88XS","iata":"","local":"","name":"Bogan & Fontenot Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Nome","elevation_ft":35,"latitude":30.0191,"longitude":-94.387703,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5068,"width_ft":63,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89CA","iata":"","local":"","name":"Swanson Ranch Number 2 Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Riverdale","elevation_ft":237,"latitude":36.467298,"longitude":-119.880655,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3353,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89FD","iata":"","local":"89FD","name":"Tranquility Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Dade City","elevation_ft":38,"latitude":28.40139961242676,"longitude":-82.24259948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89FL","iata":"","local":"89FL","name":"Lake Hiawassee Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":70,"latitude":28.529199600219727,"longitude":-81.48090362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":5000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89IL","iata":"","local":"","name":"UMC Trauma Center Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Moline","elevation_ft":695,"latitude":41.5028,"longitude":-90.526496,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1975,"width_ft":102,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89KS","iata":"","local":"89KS","name":"Neosho Memorial Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Chanute","elevation_ft":988,"latitude":37.675021,"longitude":-95.473876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"88WI","iata":"","local":"88WI","name":"Nicolet Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":790,"latitude":44.508301,"longitude":-87.860703,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88WS","iata":"","local":"88WS","name":"Ottos Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Verona","elevation_ft":917,"latitude":42.930978,"longitude":-89.624749,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":900,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89AK","iata":"","local":"89AK","name":"Lincoln Village Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":250,"latitude":61.55939865112305,"longitude":-149.7050018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":200,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89IN","iata":"","local":"89IN","name":"Milhon Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Martinsville","elevation_ft":615,"latitude":39.511172,"longitude":-86.384724,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88XA","iata":"","local":"88XA","name":"Tejas Stone Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Anna","elevation_ft":577,"latitude":33.337444,"longitude":-96.480222,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88VT","iata":"","local":"88VT","name":"Hawk's Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Isle Lamotte","elevation_ft":140,"latitude":44.878299713134766,"longitude":-73.35030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89KY","iata":"","local":"","name":"Clark Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Winchester","elevation_ft":988,"latitude":38.01131,"longitude":-84.21762,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":78,"width_ft":78,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89LA","iata":"","local":"89LA","name":"Acadiana One Office Bldg Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":30,"latitude":30.174900054900004,"longitude":-92.0792999268,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89MI","iata":"","local":"89MI","name":"Peach Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"West Branch","elevation_ft":940,"latitude":44.289453,"longitude":-84.171856,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":140,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89MN","iata":"","local":"","name":"Beskar Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Taylors Falls","elevation_ft":900,"latitude":45.386425,"longitude":-92.699053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89MU","iata":"","local":"89MU","name":"Cox Health Monett Replacement Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Monett","elevation_ft":1400,"latitude":36.914401,"longitude":-93.892909,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89NC","iata":"","local":"89NC","name":"Strickland Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fair Bluff","elevation_ft":98,"latitude":34.26639938354492,"longitude":-79.02359771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2642,"width_ft":118,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89NY","iata":"AXB","local":"89NY","name":"Maxson Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Alexandria Bay","elevation_ft":340,"latitude":44.312002,"longitude":-75.90034,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4280,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89OH","iata":"","local":"89OH","name":"Blanchard Valey Regional Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Findlay","elevation_ft":860,"latitude":41.017799377441406,"longitude":-83.65139770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89MO","iata":"","local":"89MO","name":"Bishop's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Westline","elevation_ft":1000,"latitude":38.58330154418945,"longitude":-94.57969665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2560,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89ME","iata":"","local":"89ME","name":"Fox Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Vassalboro","elevation_ft":150,"latitude":44.404764,"longitude":-69.676436,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":10000,"width_ft":2000,"surface":"W"},{"id":"13/31","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89OI","iata":"","local":"89OI","name":"Circle C Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Berlin Center","elevation_ft":1042,"latitude":41.03889846801758,"longitude":-80.98400115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89ND","iata":"","local":"89ND","name":"Poleschook Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Minot","elevation_ft":2245,"latitude":47.911399841308594,"longitude":-101.2490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89PA","iata":"","local":"89PA","name":"Kirschstein Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Murrysville","elevation_ft":1195,"latitude":40.46620178222656,"longitude":-79.62809753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89TN","iata":"","local":"89TN","name":"Edwards Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Johnson City","elevation_ft":1580,"latitude":36.4325,"longitude":-82.293611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":48,"width_ft":20,"surface":"C"},{"id":"H3","length_ft":48,"width_ft":20,"surface":"C"},{"id":"H4","length_ft":48,"width_ft":20,"surface":"C"},{"id":"H5","length_ft":48,"width_ft":20,"surface":"C"},{"id":"H6","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89TX","iata":"","local":"","name":"Aero-Bee Ranch Airstrip","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Burnet","elevation_ft":1242,"latitude":30.870309,"longitude":-98.418322,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89XS","iata":"","local":"89XS","name":"Joe Rye Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pearland","elevation_ft":49,"latitude":29.5851993560791,"longitude":-95.30359649658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":290,"width_ft":113,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AK0","iata":"","local":"","name":"Diamond NN Cannery Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"South Naknek","elevation_ft":60,"latitude":58.710513,"longitude":-156.997741,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"89WI","iata":"","local":"89WI","name":"Tuschen Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Jonesdale","elevation_ft":1060,"latitude":42.90689849853516,"longitude":-90.03209686279297,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1584,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89OR","iata":"","local":"89OR","name":"Mucky Flat Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Eagle Point","elevation_ft":2000,"latitude":42.597900390625,"longitude":-122.71299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1250,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89OK","iata":"","local":"89OK","name":"Neversweat Too Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sallisaw","elevation_ft":565,"latitude":35.44309997558594,"longitude":-94.89749908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1970,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89TS","iata":"","local":"89TS","name":"Carter Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Oakwood","elevation_ft":215,"latitude":31.56679916381836,"longitude":-95.7666015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89XA","iata":"","local":"89XA","name":"Hidden Ridge Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Clifton","elevation_ft":863,"latitude":31.801811,"longitude":-97.523021,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK4","iata":"","local":"","name":"Scout Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":245,"latitude":60.534066,"longitude":-150.847692,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AL0","iata":"","local":"8AL0","name":"Mitchell Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Clanton","elevation_ft":442,"latitude":32.800559,"longitude":-86.446674,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AL1","iata":"","local":"8AL1","name":"Med West-Hoover Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Hoover","elevation_ft":600,"latitude":33.354794,"longitude":-86.85609,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AL4","iata":"","local":"8AL4","name":"Lay Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Jemison","elevation_ft":331,"latitude":32.959231,"longitude":-86.519564,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AK9","iata":"","local":"8AK9","name":"Tok 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Tok","elevation_ft":1630,"latitude":63.308904791,"longitude":-143.016929626,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2035,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK3","iata":"","local":"8AK3","name":"Roland Norton Memorial Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Selawik","elevation_ft":360,"latitude":66.76599884033203,"longitude":-160.1529998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AL2","iata":"","local":"8AL2","name":"Charles C Killough Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Talladega","elevation_ft":443,"latitude":33.355426,"longitude":-86.262135,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AL3","iata":"","local":"8AL3","name":"Fricks Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Boaz","elevation_ft":0,"latitude":34.1417667,"longitude":-86.0885667,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AL5","iata":"","local":"8AL5","name":"Plant Gorgas Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Parrish","elevation_ft":256,"latitude":33.642452,"longitude":-87.197209,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AL6","iata":"","local":"8AL6","name":"Air Evac 32 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Scottsboro","elevation_ft":612,"latitude":34.660352,"longitude":-86.049279,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8AL9","iata":"","local":"8AL9","name":"Wiregrass Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Geneva","elevation_ft":160,"latitude":31.04960060119629,"longitude":-85.8916015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CA2","iata":"","local":"8CA2","name":"Cal Fire Auburn Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Auburn","elevation_ft":1635,"latitude":38.934085,"longitude":-121.053779,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CA4","iata":"","local":"8CA4","name":"SCE Eastern Division Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Rialto","elevation_ft":1205,"latitude":34.104739,"longitude":-117.351691,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CA6","iata":"","local":"8CA6","name":"Yucca Valley Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Yucca Valley","elevation_ft":3238,"latitude":34.124906,"longitude":-116.413607,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CA7","iata":"","local":"8CA7","name":"Platform Henry Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Carpinteria","elevation_ft":111,"latitude":34.333099365234375,"longitude":-119.56099700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CA9","iata":"","local":"8CA9","name":"KGTV-10 Parking Lot Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":200,"latitude":32.720207,"longitude":-117.097355,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CA8","iata":"","local":"8CA8","name":"Wallom Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lodi","elevation_ft":56,"latitude":38.06740188598633,"longitude":-121.20800018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3488,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AZ5","iata":"","local":"8AZ5","name":"Lizzy Lizard Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Portal","elevation_ft":4200,"latitude":31.892427,"longitude":-109.05407,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CA0","iata":"","local":"8CA0","name":"Osborne Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Victorville","elevation_ft":2900,"latitude":34.583793,"longitude":-117.266693,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AR1","iata":"","local":"8AR1","name":"Totty Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Oakland","elevation_ft":780,"latitude":36.4893989563,"longitude":-92.6421966553,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CD0","iata":"","local":"8CD0","name":"Yuma District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Yuma","elevation_ft":4153,"latitude":40.121167,"longitude":-102.73763,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CL4","iata":"","local":"8CL4","name":"A G Spanos Companies Hq Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":96,"latitude":38.047638,"longitude":-121.370251,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CL7","iata":"","local":"8CL7","name":"Adventist Health Lodi Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lodi","elevation_ft":40,"latitude":38.122408,"longitude":-121.28675,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":690,"width_ft":177,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CO1","iata":"","local":"8CO1","name":"Prospect Peak Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Texas Creek","elevation_ft":8660,"latitude":38.47779846191406,"longitude":-105.52100372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CO3","iata":"","local":"8CO3","name":"Fremont Peak Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Canon City","elevation_ft":7100,"latitude":38.45389938354492,"longitude":-105.28600311279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CO6","iata":"","local":"8CO6","name":"Arkansas Valley Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"La Junta","elevation_ft":4124,"latitude":37.96139907836914,"longitude":-103.5500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8CO2","iata":"","local":"8CO2","name":"William Leon Schawo Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Briggsdale","elevation_ft":4950,"latitude":40.67079925537109,"longitude":-104.20800018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CO5","iata":"","local":"8CO5","name":"Widner Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6020,"latitude":38.833618,"longitude":-107.892838,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CO7","iata":"","local":"8CO7","name":"Colorado Antique Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Niwot","elevation_ft":5069,"latitude":40.122501373291016,"longitude":-105.1719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CO0","iata":"","local":"8CO0","name":"Kent Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Wiggins","elevation_ft":4480,"latitude":40.249152,"longitude":-103.994473,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2550,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CL1","iata":"","local":"8CL1","name":"Lake Wohlford Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Escondido","elevation_ft":1643,"latitude":33.175891,"longitude":-117.001868,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1345,"width_ft":30,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FA0","iata":"","local":"8FA0","name":"Lake Gibson Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":142,"latitude":28.10860061645508,"longitude":-81.95870208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":7000,"width_ft":7000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FA1","iata":"","local":"8FA1","name":"Clark Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Raiford","elevation_ft":123,"latitude":30.052951,"longitude":-82.241775,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FA5","iata":"","local":"8FA5","name":"Sacred Heart Hospital On the Gulf Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Port St. Joe","elevation_ft":15,"latitude":29.77837,"longitude":-85.288623,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FA7","iata":"","local":"8FA7","name":"Viera Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Melbourne","elevation_ft":29,"latitude":28.226619,"longitude":-80.730963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FA9","iata":"","local":"8FA9","name":"Seashell Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Crawfordville","elevation_ft":0,"latitude":30.057717,"longitude":-84.293694,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":504,"width_ft":35,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FD4","iata":"","local":"8FD4","name":"Rockledge Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Rockledge","elevation_ft":100,"latitude":28.334695,"longitude":-80.723363,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":69,"width_ft":69,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FD8","iata":"","local":"","name":"Bayflite One Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Odessa","elevation_ft":55,"latitude":28.193899,"longitude":-82.620598,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FL0","iata":"","local":"8FL0","name":"Hutson Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hastings","elevation_ft":50,"latitude":29.72800064086914,"longitude":-81.4397964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2390,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":2140,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FD5","iata":"","local":"8FD5","name":"Lykes Brighton Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":30,"latitude":27.188899993896484,"longitude":-81.08699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CO9","iata":"","local":"8CO9","name":"Pine View Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6572,"latitude":39.344398498535,"longitude":-104.58100128174,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4400,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CO8","iata":"","local":"8CO8","name":"Koenig Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Yuma","elevation_ft":4150,"latitude":40.10829925537109,"longitude":-102.72799682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FD3","iata":"","local":"8FD3","name":"Blackwater Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Munson","elevation_ft":200,"latitude":30.877700805664062,"longitude":-86.85440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FL4","iata":"","local":"8FL4","name":"Bay Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":30,"latitude":30.15780067443848,"longitude":-85.64939880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FL5","iata":"","local":"","name":"Dancing Oaks Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Bartow","elevation_ft":107,"latitude":27.9484,"longitude":-81.863503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FL7","iata":"","local":"8FL7","name":"Capra Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Gainesville","elevation_ft":175,"latitude":29.68549919128418,"longitude":-82.47589874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FL8","iata":"","local":"8FL8","name":"Jacksonville Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":77,"latitude":30.325192,"longitude":-81.651297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FL9","iata":"","local":"","name":"Burnt Store Road Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Punta Gorda","elevation_ft":9,"latitude":26.846631,"longitude":-82.022228,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2790,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8GA2","iata":"","local":"8GA2","name":"Dwight David Eisenhower Army Medical Ctr Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Augusta","elevation_ft":400,"latitude":33.4300994873,"longitude":-82.12120056150002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8GA4","iata":"","local":"","name":"Doctors Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Augusta","elevation_ft":400,"latitude":33.481701,"longitude":-82.091698,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8FL1","iata":"","local":"8FL1","name":"Mc Donald's Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Arcadia","elevation_ft":54,"latitude":27.1970005035,"longitude":-81.9156036377,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GA3","iata":"","local":"8GA3","name":"Leesburg Spraying Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Leesburg","elevation_ft":260,"latitude":31.77519989013672,"longitude":-84.1249008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GA1","iata":"","local":"8GA1","name":"Gum Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Roopville","elevation_ft":1070,"latitude":33.4212,"longitude":-85.161903,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2350,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FL6","iata":"","local":"8FL6","name":"George T Mc Cutchan Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Harold","elevation_ft":160,"latitude":30.67350006103516,"longitude":-86.85189819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GA5","iata":"","local":"","name":"Marion Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Buena Vista","elevation_ft":740,"latitude":32.3288,"longitude":-84.526299,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8ID8","iata":"","local":"8ID8","name":"Lewis and Clark Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Salmon","elevation_ft":4530,"latitude":45.354071,"longitude":-113.864472,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GE8","iata":"","local":"8GE8","name":"Northside Hospital-Cherokee Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Canton","elevation_ft":975,"latitude":34.246700286865234,"longitude":-84.49919891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IA0","iata":"","local":"8IA0","name":"Unity Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Muscatine","elevation_ft":633,"latitude":41.4336013794,"longitude":-91.0541992188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IA1","iata":"","local":"8IA1","name":"Hegg Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Rock Valley","elevation_ft":1256,"latitude":43.201215,"longitude":-96.283547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IA8","iata":"","local":"8IA8","name":"Pfeifer Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Riverside","elevation_ft":715,"latitude":41.455074,"longitude":-91.617259,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":600,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8II6","iata":"","local":"8II6","name":"Rolls Royce Plant 5 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":780,"latitude":39.733377,"longitude":-86.20471,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8II7","iata":"","local":"8II7","name":"Allison Plant 8 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":795,"latitude":39.7411994934082,"longitude":-86.20970153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8II5","iata":"","local":"8II5","name":"Holt Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Hoagland","elevation_ft":790,"latitude":40.899436,"longitude":-85.000491,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GA8","iata":"","local":"8GA8","name":"Falcons Aerie Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1180,"latitude":33.577301025390625,"longitude":-85.00299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8II8","iata":"","local":"8II8","name":"Allison Plant 3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":780,"latitude":39.77920150756836,"longitude":-86.24579620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8II9","iata":"","local":"8II9","name":"Summe Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Zionsville","elevation_ft":880,"latitude":39.95750045776367,"longitude":-86.24800109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IL4","iata":"","local":"8IL4","name":"Mercy Harvard Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Harvard","elevation_ft":980,"latitude":42.42657,"longitude":-88.605908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IL6","iata":"","local":"","name":"Robertson's Roost Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Edgewood","elevation_ft":542,"latitude":38.859402,"longitude":-88.6586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IL7","iata":"","local":"8IL7","name":"Dutch Creek Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IL","municipality":"Mc Henry","elevation_ft":737,"latitude":42.37110137939453,"longitude":-88.24700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":3500,"width_ft":300,"surface":"W"},{"id":"05W/23W","length_ft":4000,"width_ft":400,"surface":"W"},{"id":"09W/27W","length_ft":2500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IL8","iata":"","local":"8IL8","name":"Advocate South Suburban Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Hazel Crest","elevation_ft":665,"latitude":41.567695,"longitude":-87.697161,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IN1","iata":"","local":"8IN1","name":"Clarian Arnett Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Lafayette","elevation_ft":675,"latitude":40.400833,"longitude":-86.808056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IN4","iata":"","local":"8IN4","name":"Hancock Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Greenfield","elevation_ft":902,"latitude":39.814701,"longitude":-85.782204,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IN5","iata":"","local":"8IN5","name":"Portage Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Portage","elevation_ft":640,"latitude":41.54669952392578,"longitude":-87.18440246582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IL5","iata":"","local":"8IL5","name":"O'Connor Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pecatonica","elevation_ft":900,"latitude":42.368327,"longitude":-89.354301,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IN2","iata":"","local":"8IN2","name":"Robinson Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greenwood","elevation_ft":840,"latitude":39.62329864501953,"longitude":-86.03140258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2347,"width_ft":61,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IN6","iata":"","local":"8IN6","name":"Parkview Noble Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Kendallville","elevation_ft":980,"latitude":41.44720077514648,"longitude":-85.2957992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IN8","iata":"","local":"8IN8","name":"Bremen Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Bremen","elevation_ft":812,"latitude":41.456864,"longitude":-86.158379,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS0","iata":"","local":"8IS0","name":"St Joseph's Hospital - Breese Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Breese","elevation_ft":755,"latitude":38.6263999939,"longitude":-89.5236968994,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS1","iata":"","local":"8IS1","name":"Nelson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Carlinville","elevation_ft":615,"latitude":39.308265,"longitude":-89.99289,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS3","iata":"","local":"8IS3","name":"Dept of Corrections Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Grafton","elevation_ft":450,"latitude":38.973400116,"longitude":-90.4611968994,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS4","iata":"","local":"8IS4","name":"Hillsboro Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Hillsboro","elevation_ft":650,"latitude":39.15169906616211,"longitude":-89.48139953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS6","iata":"","local":"8IS6","name":"Decatur Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Decatur","elevation_ft":750,"latitude":39.8671989440918,"longitude":-88.9614028930664,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS8","iata":"","local":"8IS8","name":"Vista Surgery Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Lindenhurst","elevation_ft":809,"latitude":42.4130480418,"longitude":-88.0567127466,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS9","iata":"","local":"8IS9","name":"Anderson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Maryville","elevation_ft":590,"latitude":38.73699951171875,"longitude":-89.9468002319336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8IS5","iata":"","local":"8IS5","name":"Raymond Classen Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Danforth","elevation_ft":650,"latitude":40.814178,"longitude":-87.98813,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2585,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IN9","iata":"","local":"8IN9","name":"Marcidale Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Amo","elevation_ft":855,"latitude":39.68560028,"longitude":-86.60220337,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IS2","iata":"","local":"8IS2","name":"Kilsoquah Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Roanoke","elevation_ft":840,"latitude":40.99779891967773,"longitude":-85.38890075683594,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KS6","iata":"","local":"8KS6","name":"Wesley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1440,"latitude":37.69559860229492,"longitude":-97.29840087890624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KS8","iata":"","local":"8KS8","name":"Prairie Cottage Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Chapman","elevation_ft":1222,"latitude":38.91780090332031,"longitude":-97.00779724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KT1","iata":"","local":"8KT1","name":"Papa John's Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":868,"latitude":38.213611,"longitude":-85.531776,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KS3","iata":"","local":"8KS3","name":"Davis Airfield","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hiawatha","elevation_ft":1100,"latitude":39.85279846191406,"longitude":-95.48049926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2540,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KY1","iata":"","local":"8KY1","name":"Greenview Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Bowling Green","elevation_ft":537,"latitude":36.963789,"longitude":-86.437554,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KY2","iata":"","local":"8KY2","name":"LRFO Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":938,"latitude":37.964014,"longitude":-84.371856,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KY3","iata":"","local":"","name":"Battle Field","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Perryville","elevation_ft":950,"latitude":37.661111,"longitude":-84.992627,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KS7","iata":"","local":"8KS7","name":"Pine Sod Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Stilwell","elevation_ft":1072,"latitude":38.73310089111328,"longitude":-94.64520263671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KS5","iata":"","local":"8KS5","name":"Blue Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Parsons","elevation_ft":890,"latitude":37.316148,"longitude":-95.280089,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KS4","iata":"","local":"8KS4","name":"Rans Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hays","elevation_ft":2100,"latitude":38.90499877929688,"longitude":-99.35089874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KS0","iata":"","local":"8KS0","name":"Morgan Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ulysses","elevation_ft":3190,"latitude":37.813242,"longitude":-101.465043,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KY4","iata":"","local":"8KY4","name":"Cumberland County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Burkesville","elevation_ft":636,"latitude":36.795505,"longitude":-85.37312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KY5","iata":"","local":"8KY5","name":"Kentucky River Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Jackson","elevation_ft":738,"latitude":37.564986,"longitude":-83.370003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KY7","iata":"","local":"8KY7","name":"Fort Logan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Stanford","elevation_ft":940,"latitude":37.541966,"longitude":-84.653161,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8KY9","iata":"","local":"8KY9","name":"Meadowview Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Maysville","elevation_ft":912,"latitude":38.641487,"longitude":-83.808239,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LA0","iata":"","local":"8LA0","name":"Transco Schriever Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Thibodaux","elevation_ft":7,"latitude":29.74673,"longitude":-90.824706,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":25,"surface":"C"},{"id":"H3","length_ft":40,"width_ft":25,"surface":"C"},{"id":"H4","length_ft":40,"width_ft":25,"surface":"C"},{"id":"H5","length_ft":40,"width_ft":25,"surface":"C"},{"id":"H6","length_ft":40,"width_ft":25,"surface":"C"},{"id":"H7","length_ft":40,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LA4","iata":"","local":"8LA4","name":"Conoco Inc. Venice Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":3,"latitude":29.2593994140625,"longitude":-89.3551025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LA5","iata":"","local":"8LA5","name":"Chevron Southpass Tank Battery W-2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":0,"latitude":29.04015,"longitude":-89.32848,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LA7","iata":"","local":"8LA7","name":"Southern Natural Gas Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Verret","elevation_ft":5,"latitude":29.86409950256348,"longitude":-89.8333969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LA8","iata":"","local":"8LA8","name":"Galvez-Lake Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Prairieville","elevation_ft":60,"latitude":30.306939,"longitude":-90.904135,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LL4","iata":"","local":"8LL4","name":"Richland Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Olney","elevation_ft":485,"latitude":38.7374992371,"longitude":-88.07730102539999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LL5","iata":"","local":"8LL5","name":"Horizon Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Paris","elevation_ft":734,"latitude":39.607106,"longitude":-87.675941,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LL6","iata":"","local":"8LL6","name":"State Highway Paris Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Paris","elevation_ft":740,"latitude":39.60340118408203,"longitude":-87.71219635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8LL8","iata":"","local":"8LL8","name":"Miners Memorial Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"West Frankfort","elevation_ft":402,"latitude":37.8993988,"longitude":-88.9539032,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MD1","iata":"","local":"8MD1","name":"Rite Aid Distribution Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Aberdeen","elevation_ft":35,"latitude":39.454036,"longitude":-76.209286,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MD2","iata":"","local":"8MD2","name":"Montebello Filtration Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":223,"latitude":39.33610153198242,"longitude":-76.58670043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MD3","iata":"","local":"8MD3","name":"Sinai Ii Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":320,"latitude":39.357799530029,"longitude":-76.662498474121,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":38,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MI0","iata":"","local":"","name":"Trowbridge Farms Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"South Haven","elevation_ft":640,"latitude":42.411999,"longitude":-86.170898,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MI1","iata":"","local":"","name":"B & G Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":755,"latitude":42.889198,"longitude":-85.567802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MD5","iata":"","local":"8MD5","name":"Harrison Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Libertytown","elevation_ft":610,"latitude":39.49829864501953,"longitude":-77.2217025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MA4","iata":"","local":"8MA4","name":"Crow Island Airport (Pvt)","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Stow","elevation_ft":185,"latitude":42.4172222,"longitude":-71.4944444,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2350,"width_ft":180,"surface":"T"},{"id":"12W/30W","length_ft":3000,"width_ft":30,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MI5","iata":"","local":"","name":"Consumers Power Company Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"South Haven","elevation_ft":610,"latitude":42.327301,"longitude":-86.304703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MI8","iata":"","local":"","name":"Cupp/SJVS Landing Strip","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Mendon","elevation_ft":850,"latitude":42.994701,"longitude":-85.454201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MN4","iata":"","local":"","name":"Sethney Personal Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Deerwood","elevation_ft":1289,"latitude":46.3797,"longitude":-93.813599,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2040,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MN7","iata":"","local":"8MN7","name":"Gundersen St Elizabeth Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Wabasha","elevation_ft":708,"latitude":44.388308,"longitude":-92.048583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MN8","iata":"","local":"","name":"Porter Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Jacobson","elevation_ft":1125,"latitude":47.012699,"longitude":-93.393799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MN9","iata":"","local":"","name":"Mavencamp Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Maple Lake","elevation_ft":1027,"latitude":45.256901,"longitude":-94.039101,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MO0","iata":"","local":"8MO0","name":"Barnes St Peters Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Peters","elevation_ft":513,"latitude":38.793399810791016,"longitude":-90.57869720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MO2","iata":"","local":"8MO2","name":"Liberty Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Liberty","elevation_ft":925,"latitude":39.266700744628906,"longitude":-94.43360137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MN6","iata":"","local":"8MN6","name":"Minske Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Princeton","elevation_ft":1006,"latitude":45.583604,"longitude":-93.741275,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1755,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MN3","iata":"","local":"8MN3","name":"Breezy Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Pequot Lakes","elevation_ft":1255,"latitude":46.59579849243164,"longitude":-94.22000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2576,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MN2","iata":"","local":"8MN2","name":"Aslesen Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Halstad","elevation_ft":879,"latitude":47.335586,"longitude":-96.748933,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2505,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MI3","iata":"","local":"8MI3","name":"Mattawan Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mattawan","elevation_ft":830,"latitude":42.195899963378906,"longitude":-85.80560302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MO6","iata":"","local":"8MO6","name":"Pike County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Louisiana","elevation_ft":508,"latitude":39.440719,"longitude":-91.065612,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MO9","iata":"","local":"8MO9","name":"Mercy Hospital St Louis Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":633,"latitude":38.643667,"longitude":-90.448336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":135,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MS1","iata":"","local":"8MS1","name":"Henderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Greenwood","elevation_ft":162,"latitude":33.585044,"longitude":-90.097736,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MS2","iata":"","local":"8MS2","name":"Godspeed Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Fulton","elevation_ft":350,"latitude":34.234296,"longitude":-88.507179,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3900,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MS8","iata":"","local":"8MS8","name":"Betty Ann Cooper Memorial Helipad","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Steiner","elevation_ft":136,"latitude":33.623263,"longitude":-90.6227778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":22,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MU0","iata":"","local":"8MU0","name":"Freedom Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1276,"latitude":37.118875,"longitude":-93.266056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NA7","iata":"","local":"8NA7","name":"Camp Grafton Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Devils Lake","elevation_ft":1469,"latitude":48.0625,"longitude":-98.9292984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8MO3","iata":"","local":"8MO3","name":"Curtis Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Richmond","elevation_ft":760,"latitude":39.32469940185547,"longitude":-93.94159698486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":80,"surface":"T"},{"id":"17/35","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MO7","iata":"","local":"8MO7","name":"Bean Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rushville","elevation_ft":780,"latitude":39.49169921875,"longitude":-95.00659942626952,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NA0","iata":"","local":"8NA0","name":"Tappen Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Tappen","elevation_ft":1780,"latitude":46.88109970092773,"longitude":-99.63089752197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MT4","iata":"","local":"8MT4","name":"Elk Meadows Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Townsend","elevation_ft":4066,"latitude":46.53577,"longitude":-111.498901,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC0","iata":"","local":"8NC0","name":"Vidant Bertie Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Windsor","elevation_ft":5,"latitude":35.988669,"longitude":-76.92924,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NC5","iata":"","local":"8NC","name":"Adams Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Rowland","elevation_ft":143,"latitude":34.576023,"longitude":-79.248828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8ND6","iata":"","local":"8ND6","name":"J Vining Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Chaffee","elevation_ft":1025,"latitude":46.71269989013672,"longitude":-97.39089965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8ND0","iata":"","local":"8ND0","name":"Amble-Tiger North Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Sarles","elevation_ft":1590,"latitude":48.90140151977539,"longitude":-99.0167999267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8ND4","iata":"","local":"8ND4","name":"Heyde Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Manvel","elevation_ft":820,"latitude":48.07360076904297,"longitude":-97.18620300292967,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8ND5","iata":"","local":"8ND5","name":"Ausk Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Chaffee","elevation_ft":1020,"latitude":46.76390075683594,"longitude":-97.40540313720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC6","iata":"","local":"8NC6","name":"Brooks Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Siler City","elevation_ft":620,"latitude":35.693638,"longitude":-79.411624,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC1","iata":"","local":"8NC1","name":"Dean Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cameron","elevation_ft":480,"latitude":35.377311,"longitude":-79.239535,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC4","iata":"","local":"8NC4","name":"Dead Dog Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Pittsboro","elevation_ft":525,"latitude":35.72990036010742,"longitude":-79.31279754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NE4","iata":"","local":"8NE4","name":"Bornemeier Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Elmwood","elevation_ft":1292,"latitude":40.87080001831055,"longitude":-96.29199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NJ1","iata":"","local":"8NJ1","name":"Merck Whitehouse Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Whitehouse Station","elevation_ft":185,"latitude":40.639802,"longitude":-74.76553,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NJ2","iata":"","local":"8NJ2","name":"Carnegie Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Princeton","elevation_ft":80,"latitude":40.32210159301758,"longitude":-74.64790344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":92,"width_ft":92,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NJ4","iata":"","local":"8NJ4","name":"Inspira Bridgeton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgeton","elevation_ft":100,"latitude":39.436558,"longitude":-75.221162,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NJ6","iata":"","local":"8NJ6","name":"Lamington House Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bedminster","elevation_ft":210,"latitude":40.653506,"longitude":-74.696668,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NJ7","iata":"","local":"8NJ7","name":"Pio Costa Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Pequannock","elevation_ft":200,"latitude":40.94309997558594,"longitude":-74.29070281982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NJ8","iata":"","local":"8NJ8","name":"Kraemer Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Richwood","elevation_ft":110,"latitude":39.74430084228516,"longitude":-75.15879821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NE6","iata":"","local":"8NE6","name":"Franklin's Plainview Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Franklin","elevation_ft":2000,"latitude":40.12080001831055,"longitude":-98.92539978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NE5","iata":"","local":"8NE5","name":"X1 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ericson","elevation_ft":2070,"latitude":41.79059982299805,"longitude":-98.72979736328124,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":170,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8ND7","iata":"","local":"8ND7","name":"Sprague Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Courtenay","elevation_ft":1555,"latitude":47.120664,"longitude":-98.657833,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NE3","iata":"","local":"8NE3","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Champion","elevation_ft":3380,"latitude":40.48189926147461,"longitude":-101.81300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3300,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NK5","iata":"","local":"8NK5","name":"Montefiore Saint Luke's Cornwall Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Newburgh","elevation_ft":193,"latitude":41.50271,"longitude":-74.01556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NK8","iata":"","local":"8NK8","name":"Mister Dog Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Bolton Landing","elevation_ft":360,"latitude":43.565,"longitude":-73.6086112,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":2500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NR6","iata":"","local":"8NR6","name":"Person Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Roxboro","elevation_ft":729,"latitude":36.409186,"longitude":-78.985595,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NY1","iata":"","local":"8NY1","name":"James Carl Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Roscoe","elevation_ft":1863,"latitude":41.98754,"longitude":-74.9331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NY2","iata":"","local":"8NY2","name":"Mountain Fresh Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Milton","elevation_ft":350,"latitude":41.68479919433594,"longitude":-73.99349975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":95,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NY4","iata":"","local":"8NY4","name":"Guthrie Corning Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Corning","elevation_ft":901,"latitude":42.134986,"longitude":-76.970875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NY6","iata":"","local":"8NY6","name":"Mercy Hospital of Buffalo Helipad","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Buffalo","elevation_ft":631,"latitude":42.84724,"longitude":-78.811621,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NY7","iata":"","local":"","name":"Sha-Wan-Ga Valley Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Bloomingburg","elevation_ft":437,"latitude":41.571517,"longitude":-74.401095,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1955,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8NK6","iata":"","local":"8NK6","name":"Suntime Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"West Burlington","elevation_ft":1650,"latitude":42.713056,"longitude":-75.168333,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NY5","iata":"","local":"8NY5","name":"Mariaville Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Duanesburg","elevation_ft":1260,"latitude":42.819052,"longitude":-74.14644,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1820,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NY8","iata":"","local":"8NY8","name":"Hawks Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Utica","elevation_ft":940,"latitude":43.048694,"longitude":-75.292311,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NK4","iata":"","local":"8NK4","name":"Bethany Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Bethany Center","elevation_ft":1000,"latitude":42.94329833984375,"longitude":-78.13829803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NY9","iata":"","local":"8NY9","name":"Nassau County Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Bethpage","elevation_ft":132,"latitude":40.74589920043945,"longitude":-73.49120330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OA3","iata":"","local":"8OA3","name":"The Jewish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":817,"latitude":39.20610046386719,"longitude":-84.37999725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OH0","iata":"","local":"8OH0","name":"Ashtabula County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Ashtabula","elevation_ft":639,"latitude":41.880145,"longitude":-80.793777,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OH1","iata":"","local":"8OH1","name":"Dunlap Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Orrville","elevation_ft":1124,"latitude":40.83259963989258,"longitude":-81.76210021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OH2","iata":"","local":"8OH2","name":"Honda Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Marysville","elevation_ft":1080,"latitude":40.28089904785156,"longitude":-83.50409698486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OH6","iata":"","local":"","name":"ODOT District 4 Summit County Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Cuyahoga Falls","elevation_ft":1029,"latitude":41.1423,"longitude":-81.466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OH9","iata":"","local":"8OH9","name":"University Hospital/Sicu Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":937,"latitude":39.137298583984375,"longitude":-84.50270080566406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OH5","iata":"","local":"8OH5","name":"Urban Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cortland","elevation_ft":1045,"latitude":41.38199996948242,"longitude":-80.7123031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OI3","iata":"","local":"8OI3","name":"Allen Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cortland","elevation_ft":1105,"latitude":41.3734016418457,"longitude":-80.66899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OH4","iata":"","local":"8OH4","name":"York Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Leetonia","elevation_ft":1260,"latitude":40.84407,"longitude":-80.703195,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2611,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OA6","iata":"","local":"8OA6","name":"Warner Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Vickery","elevation_ft":611,"latitude":41.385793,"longitude":-82.897103,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OI4","iata":"","local":"8OI4","name":"Trinity Medical Center West Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Steubenville","elevation_ft":1220,"latitude":40.367000579833984,"longitude":-80.65840148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK3","iata":"","local":"8OK3","name":"Cleveland Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Cleveland","elevation_ft":960,"latitude":36.31669998168945,"longitude":-96.50029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK4","iata":"","local":"","name":"Brandley Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"El Reno","elevation_ft":1400,"latitude":35.5042,"longitude":-98.040604,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2184,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK5","iata":"","local":"8OK5","name":"Grove General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Grove","elevation_ft":833,"latitude":36.581092,"longitude":-94.759776,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK6","iata":"","local":"","name":"Barry Dotson Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Marble City","elevation_ft":880,"latitude":35.566799,"longitude":-94.750198,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK7","iata":"","local":"","name":"CC & M Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Medford","elevation_ft":1085,"latitude":36.797298,"longitude":-97.718399,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2630,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK8","iata":"","local":"8OK8","name":"Baptist Regional Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Miami","elevation_ft":806,"latitude":36.87198,"longitude":-94.88113,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK9","iata":"","local":"8OK9","name":"Nu-Tech Energy County Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1225,"latitude":35.45059967041016,"longitude":-97.53500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK1","iata":"","local":"8OK1","name":"Warbonnet Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Blanchard","elevation_ft":1335,"latitude":35.16830062866211,"longitude":-97.71080017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":60,"surface":"T"},{"id":"04/22","length_ft":600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OI9","iata":"","local":"8OI9","name":"Morkassel Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Idaho","elevation_ft":850,"latitude":39.09920120239258,"longitude":-83.1166000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1375,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OK2","iata":"","local":"8OK2","name":"Baker Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"El Reno","elevation_ft":1370,"latitude":35.475101470947266,"longitude":-97.92890167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OR1","iata":"","local":"8OR1","name":"Lebanon Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Lebanon","elevation_ft":340,"latitude":44.5515336263,"longitude":-122.907743454,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OR9","iata":"","local":"8OR9","name":"Samaritan Pacific Communities Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Newport","elevation_ft":100,"latitude":44.627876,"longitude":-124.059329,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PA2","iata":"","local":"8PA2","name":"Ronca Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bethlehem","elevation_ft":375,"latitude":40.68429946899414,"longitude":-75.33409881591797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PA1","iata":"","local":"8PA1","name":"Dee Jay Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Ono","elevation_ft":505,"latitude":40.40840148925781,"longitude":-76.50389862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8PA0","iata":"","local":"8PA0","name":"Numidia Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Catawissa","elevation_ft":1070,"latitude":40.866199,"longitude":-76.3974,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8PA4","iata":"","local":"8PA4","name":"J F T Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Mifflinburg","elevation_ft":660,"latitude":40.94449996948242,"longitude":-77.0457992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OR6","iata":"","local":"8OR6","name":"Grabhorn's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Scappoose","elevation_ft":255,"latitude":45.78229904174805,"longitude":-122.8939971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OL1","iata":"","local":"8OL1","name":"Petes Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Wetumka","elevation_ft":771,"latitude":35.227901458740234,"longitude":-96.22949981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OR5","iata":"","local":"8OR5","name":"Pilot Butte Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3675,"latitude":44.04729843139648,"longitude":-121.2760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OR3","iata":"","local":"8OR3","name":"Riverview Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Days Creek","elevation_ft":840,"latitude":42.93370056152344,"longitude":-123.12100219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8PA5","iata":"","local":"8PA5","name":"Echo 8 Communications Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Kittanning","elevation_ft":1304,"latitude":40.81449890136719,"longitude":-79.5062026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PA7","iata":"","local":"8PA7","name":"Lazzarini Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Nazareth","elevation_ft":750,"latitude":40.796388,"longitude":-75.3575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PA9","iata":"","local":"8PA9","name":"Sons Ii Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lahaska","elevation_ft":200,"latitude":40.32569885253906,"longitude":-74.99130249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PN3","iata":"","local":"8PN3","name":"McCauley's Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Venus","elevation_ft":1571,"latitude":41.383297,"longitude":-79.498701,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PN5","iata":"","local":"8PN5","name":"Helfrick Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Elysburg","elevation_ft":1000,"latitude":40.83340072631836,"longitude":-76.54969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PN6","iata":"","local":"8PN6","name":"Lansdale Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lansdale","elevation_ft":330,"latitude":40.252389,"longitude":-75.270333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PN7","iata":"","local":"8PN7","name":"Cameron County Junior/Senior High School Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Emporium","elevation_ft":2581,"latitude":41.5135,"longitude":-78.248431,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PN8","iata":"","local":"8PN8","name":"Rorer Group Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Fort Washington","elevation_ft":182,"latitude":40.14179992675781,"longitude":-75.1884994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PS1","iata":"","local":"8PS1","name":"Bethlehem Steel Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bethlehem","elevation_ft":300,"latitude":40.61259841918945,"longitude":-75.3468017578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PS3","iata":"","local":"8PS3","name":"Empire Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Taylor","elevation_ft":900,"latitude":41.39450073242188,"longitude":-75.73490142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PS5","iata":"","local":"8PS5","name":"HMC Hanger Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hershey","elevation_ft":421,"latitude":40.261942,"longitude":-76.684731,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PA8","iata":"","local":"8PA8","name":"Sunny Rest Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Palmerton","elevation_ft":980,"latitude":40.81679916381836,"longitude":-75.66629791259766,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8PS7","iata":"","local":"8PS7","name":"Nay Aug Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Scranton","elevation_ft":1055,"latitude":41.399074,"longitude":-75.643126,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8PS9","iata":"","local":"8PS9","name":"Commonwealth Health Tunkhannock Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Tunkhannock","elevation_ft":1080,"latitude":41.578334,"longitude":-75.970037,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TA2","iata":"","local":"8TA2","name":"Department of Public Safety Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman","elevation_ft":725,"latitude":33.649361,"longitude":-96.61017,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TA4","iata":"","local":"","name":"Laseair Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Texas City","elevation_ft":12,"latitude":29.445499,"longitude":-95.007697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TE0","iata":"","local":"","name":"Gillingham Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":450,"latitude":29.139099,"longitude":-98.113297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TE1","iata":"","local":"8TE1","name":"Wall Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":440,"latitude":29.01799964904785,"longitude":-98.20670318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2172,"width_ft":27,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA3","iata":"","local":"8TA3","name":"Flying X River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Spicewood","elevation_ft":820,"latitude":30.51689910888672,"longitude":-98.17420196533205,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4500,"width_ft":75,"surface":"T"},{"id":"11/29","length_ft":3400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA0","iata":"","local":"8TA0","name":"John B Connally Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":530,"latitude":29.135799407958984,"longitude":-98.27639770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4050,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA1","iata":"","local":"8TA1","name":"Whatley Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seadrift","elevation_ft":20,"latitude":28.477877,"longitude":-96.760184,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3100,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA9","iata":"","local":"8TA9","name":"Star Dusters Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Washington","elevation_ft":37,"latitude":30.64368,"longitude":-92.0583,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA5","iata":"","local":"8TA5","name":"Short Stop Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Farmersville","elevation_ft":645,"latitude":33.16320037841797,"longitude":-96.32219696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TE6","iata":"","local":"","name":"Faith Cattle Company Longfellow Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Stockton","elevation_ft":3900,"latitude":30.305316,"longitude":-102.723629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TE9","iata":"","local":"8TE9","name":"Mc Gill Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Harris","elevation_ft":118,"latitude":29.8911991119,"longitude":-95.7326965332,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TN0","iata":"","local":"8TN0","name":"Le Bonheur Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":300,"latitude":35.000099182128906,"longitude":-90.03369903564453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TN1","iata":"","local":"8TN1","name":"Parker Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Eads","elevation_ft":375,"latitude":35.1963996887207,"longitude":-89.62689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TE2","iata":"","local":"8TE2","name":"J-Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crane","elevation_ft":2667,"latitude":31.52790069580078,"longitude":-102.52799987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":40,"surface":"G"},{"id":"15/33","length_ft":3300,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TE3","iata":"","local":"8TE3","name":"Lopez Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort McKavett","elevation_ft":2318,"latitude":30.718249,"longitude":-100.082557,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TE4","iata":"","local":"8TE4","name":"H & F Properties Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crystal City","elevation_ft":640,"latitude":28.815606,"longitude":-99.761317,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN4","iata":"","local":"8TN4","name":"Flaglor Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Mosheim","elevation_ft":1135,"latitude":36.24470138549805,"longitude":-82.96890258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN2","iata":"","local":"8TN2","name":"Pleasant Grove Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Shelbyville","elevation_ft":850,"latitude":35.399098,"longitude":-86.554843,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN6","iata":"","local":"8TN6","name":"Rachel's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":560,"latitude":35.921579,"longitude":-86.345034,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TE8","iata":"","local":"8TE8","name":"Tradewind Agricultural Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":95,"latitude":29.162613,"longitude":-96.226655,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2550,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN9","iata":"","local":"8TN9","name":"Bull Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Covington","elevation_ft":376,"latitude":35.51559829711914,"longitude":-89.67780303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1716,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TS4","iata":"","local":"8TS4","name":"Memorial City General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":88,"latitude":29.780707,"longitude":-95.545169,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TX1","iata":"","local":"8TX1","name":"Medical Emergency Gbc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Gun Barrel City","elevation_ft":395,"latitude":32.33489990234375,"longitude":-96.11329650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TS2","iata":"","local":"8TS2","name":"Henrietta Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Henrietta","elevation_ft":932,"latitude":33.78340148925781,"longitude":-98.21700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3180,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN7","iata":"","local":"8TN7","name":"Short Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Dover","elevation_ft":390,"latitude":36.401967,"longitude":-87.992018,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2560,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TS8","iata":"","local":"8TS8","name":"RNK Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1945,"latitude":29.9174,"longitude":-100.913002,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TS1","iata":"","local":"8TS1","name":"Retta Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Burleson","elevation_ft":700,"latitude":32.54180145263672,"longitude":-97.24199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TX0","iata":"","local":"8TX0","name":"Hub Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jewett","elevation_ft":400,"latitude":31.427809,"longitude":-96.134892,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3370,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TX2","iata":"","local":"8TX2","name":"Freeman Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rocksprings","elevation_ft":2380,"latitude":29.978500366210938,"longitude":-100.2020034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TX4","iata":"","local":"8TX4","name":"Sartor Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Willis","elevation_ft":203,"latitude":30.37579917907715,"longitude":-95.55740356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TX5","iata":"","local":"","name":"Texaco Chemical Company-East Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Port Neches","elevation_ft":17,"latitude":29.9624,"longitude":-93.932098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TX6","iata":"","local":"","name":"Harper Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Palmer","elevation_ft":510,"latitude":32.427499,"longitude":-96.717131,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4285,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TX9","iata":"","local":"8TX9","name":"North Texas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Gainesville","elevation_ft":780,"latitude":33.645475,"longitude":-97.163525,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8VA0","iata":"","local":"8VA0","name":"VCU Health System-I Lot Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":160,"latitude":37.547937,"longitude":-77.43038,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8VA1","iata":"","local":"","name":"Grand Pre Farm Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Brightwood","elevation_ft":500,"latitude":38.454303,"longitude":-78.186402,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8VA3","iata":"","local":"8VA3","name":"Fauquier Hospital Emergency Transport Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Warrenton","elevation_ft":600,"latitude":38.71149826049805,"longitude":-77.80940246582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8VA5","iata":"","local":"8VA5","name":"University of Virginia Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Charlottesville","elevation_ft":490,"latitude":38.03279876708984,"longitude":-78.49970245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8VA7","iata":"","local":"8VA7","name":"Carilion Stonewall Jackson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Lexington","elevation_ft":1200,"latitude":37.779356,"longitude":-79.441172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8VA8","iata":"","local":"8VA8","name":"Mary Immaculate Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Newport News","elevation_ft":79,"latitude":37.1431999206543,"longitude":-76.51219940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8TX8","iata":"","local":"8TX8","name":"Weeks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Premont","elevation_ft":190,"latitude":27.360745,"longitude":-98.179622,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WA1","iata":"","local":"8WA1","name":"Lone Star Pad 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Graham","elevation_ft":298,"latitude":47.05985,"longitude":-122.293689,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WA2","iata":"","local":"8WA2","name":"Boeing Renton Ramp Site Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Renton","elevation_ft":29,"latitude":47.49589920043945,"longitude":-122.20099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WA3","iata":"","local":"8WA3","name":"Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Renton","elevation_ft":100,"latitude":47.44150161743164,"longitude":-122.21399688720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":118,"width_ft":118,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WA4","iata":"","local":"8WA4","name":"Providence St Peters Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":252,"latitude":47.052073,"longitude":-122.847313,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WA8","iata":"","local":"8WA8","name":"Snoqualmie Valley Hospital Emergency Room Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"King County","elevation_ft":900,"latitude":47.51470184326172,"longitude":-121.8280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WA9","iata":"","local":"8WA9","name":"Broadcast House Helistop","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":175,"latitude":47.617721,"longitude":-122.350493,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WI1","iata":"","local":"8WI1","name":"Dillenburg's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Shawano","elevation_ft":915,"latitude":44.75360107421875,"longitude":-88.72820281982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WI0","iata":"","local":"8WI0","name":"Wood Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wisconsin Dells","elevation_ft":935,"latitude":43.743900299072266,"longitude":-89.81430053710938,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WA7","iata":"","local":"8WA7","name":"Gossard Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"St John","elevation_ft":1973,"latitude":47.11520004272461,"longitude":-117.5739974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WA0","iata":"","local":"8WA0","name":"Flying B Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Rainier","elevation_ft":445,"latitude":46.87760162353516,"longitude":-122.60099792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WA6","iata":"","local":"8WA6","name":"Christensen Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Royal City","elevation_ft":1150,"latitude":46.92070007324219,"longitude":-119.58999633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WI4","iata":"","local":"8WI4","name":"St Mary's Hospital Ozaukee Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Port Washington","elevation_ft":710,"latitude":43.39640045166016,"longitude":-87.87650299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WI7","iata":"","local":"","name":"Dunbar Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Dunbar","elevation_ft":1196,"latitude":45.651102,"longitude":-88.182098,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":4336,"width_ft":1000,"surface":"W"},{"id":"16W/34W","length_ft":6157,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WI9","iata":"","local":"8WI9","name":"River Falls Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"River Falls","elevation_ft":947,"latitude":44.86529922485352,"longitude":-92.60279846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WT0","iata":"","local":"8WT0","name":"Eastern State Hospital EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Medical Lake","elevation_ft":2500,"latitude":47.573333,"longitude":-117.704167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8XS0","iata":"","local":"","name":"Tivydale Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":1910,"latitude":30.2544,"longitude":-99.099701,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8XS1","iata":"","local":"","name":"Harold Freeman Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Katy","elevation_ft":160,"latitude":29.8827,"longitude":-95.811897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8XS2","iata":"","local":"","name":"Rachal Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Laredo","elevation_ft":600,"latitude":27.929701,"longitude":-99.851196,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8XS3","iata":"","local":"","name":"Pegasus Place Airstrip","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Leander","elevation_ft":965,"latitude":30.5669,"longitude":-97.829498,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8XS4","iata":"","local":"8XS4","name":"Patco Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Arthur","elevation_ft":15,"latitude":29.91904,"longitude":-93.88634,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8WI6","iata":"","local":"8WI6","name":"Funk Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Luxemburg","elevation_ft":831,"latitude":44.610752,"longitude":-87.653567,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WI3","iata":"","local":"8WI3","name":"Rwnway Leasing Inc Nr 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Plover","elevation_ft":1070,"latitude":44.42079925537109,"longitude":-89.5553970336914,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8XS5","iata":"","local":"8XS5","name":"San Luis Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":10,"latitude":29.271559,"longitude":-94.818656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90AK","iata":"","local":"90AK","name":"Northstar Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Prudhoe Bay/Deadhorse","elevation_ft":10,"latitude":70.490086,"longitude":-148.698669,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90AL","iata":"","local":"90AL","name":"South Baldwin Coastal FED Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Gulf Shores","elevation_ft":17,"latitude":30.292525,"longitude":-87.682489,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90CO","iata":"","local":"","name":"Tri-County Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Erie","elevation_ft":5050,"latitude":40.010799,"longitude":-105.052002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8XS8","iata":"REE","local":"8XS8","name":"Reese Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3338,"latitude":33.590301513672,"longitude":-102.03700256348,"has_tower":false,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":6500,"width_ft":150,"surface":"A"},{"id":"17R/35L","length_ft":10500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90GA","iata":"","local":"90GA","name":"Georgia Public Safety Training Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Forsyth","elevation_ft":590,"latitude":33.06010055541992,"longitude":-83.96379852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90IA","iata":"","local":"90IA","name":"Missouri Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Missouri Valley","elevation_ft":1000,"latitude":41.54029846191406,"longitude":-95.88780212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90ID","iata":"","local":"90ID","name":"St Luke'S Meridian Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Meridian","elevation_ft":2680,"latitude":43.598111,"longitude":-116.351389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90CL","iata":"","local":"90CL","name":"Diamond M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Elk Creek","elevation_ft":1296,"latitude":39.571225,"longitude":-122.607513,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90IN","iata":"","local":"90IN","name":"Mc Daniel's Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Martinsville","elevation_ft":600,"latitude":39.40890121459999,"longitude":-86.44419860839999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8XS9","iata":"","local":"8XS9","name":"Rust Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waring","elevation_ft":1331,"latitude":29.957731,"longitude":-98.790569,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2324,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90MD","iata":"","local":"90MD","name":"Medstar Franklin Helipad","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":248,"latitude":39.351602,"longitude":-76.478888,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90MN","iata":"","local":"","name":"Schmidt Private Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Vesta","elevation_ft":1060,"latitude":44.5033,"longitude":-95.453903,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2220,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90MO","iata":"","local":"90MO","name":"Golden Valley Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Clinton","elevation_ft":797,"latitude":38.389456,"longitude":-93.766847,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90MT","iata":"","local":"90MT","name":"Aero Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Missoula","elevation_ft":3300,"latitude":46.955611,"longitude":-114.127083,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90NC","iata":"","local":"90NC","name":"Pardee Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Hendersonville","elevation_ft":2219,"latitude":35.31999969482422,"longitude":-82.46690368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90NH","iata":"","local":"90NH","name":"Daisy's Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Wolfeboro","elevation_ft":601,"latitude":43.637244,"longitude":-71.153133,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90NJ","iata":"","local":"90NJ","name":"Bridgewater Crossing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgewater Township","elevation_ft":140,"latitude":40.58212,"longitude":-74.610911,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90NR","iata":"","local":"90NR","name":"Caledonia Tactical Landing Zones Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Boones Crossroads","elevation_ft":45,"latitude":36.311308,"longitude":-77.483032,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":1000,"surface":"T"},{"id":"H2","length_ft":1000,"width_ft":1000,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90NV","iata":"","local":"90NV","name":"KPVM Television Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Pahrump","elevation_ft":2695,"latitude":36.206451,"longitude":-115.96006,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90KS","iata":"","local":"90KS","name":"Sunset Strip Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":1075,"latitude":38.982238,"longitude":-95.593667,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90KY","iata":"","local":"90KY","name":"Williams Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Hodgenville","elevation_ft":760,"latitude":37.58259963989258,"longitude":-85.7332992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90LA","iata":"","local":"90LA","name":"Sharp Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Minden","elevation_ft":165,"latitude":32.61389923095703,"longitude":-93.32360076904295,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90OH","iata":"","local":"90OH","name":"Woodsfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Woodsfield","elevation_ft":1200,"latitude":39.76539993286133,"longitude":-81.13510131835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90OK","iata":"","local":"","name":"Stewart Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Aline","elevation_ft":1460,"latitude":36.500599,"longitude":-98.501999,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90OR","iata":"","local":"90OR","name":"Lake District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Lakeview","elevation_ft":4750,"latitude":42.1811152999,"longitude":-120.351123512,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90PN","iata":"","local":"","name":"Baney's Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Dover","elevation_ft":470,"latitude":40.0173,"longitude":-76.819702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90TA","iata":"","local":"90TA","name":"Faulkner Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Garland","elevation_ft":460,"latitude":32.866798400878906,"longitude":-96.54049682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90TN","iata":"","local":"90TN","name":"Methodist Medical Center of Oak Ridge Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Oak Ridge","elevation_ft":938,"latitude":36.024967,"longitude":-84.245648,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90TS","iata":"","local":"","name":"Jordan Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bedias","elevation_ft":265,"latitude":30.7792,"longitude":-95.797203,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90PA","iata":"","local":"90PA","name":"Adams Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Shinglehouse","elevation_ft":1780,"latitude":41.8805,"longitude":-78.114295,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90NY","iata":"","local":"90NY","name":"Hopewell Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Canandaigua","elevation_ft":730,"latitude":42.919508,"longitude":-77.242778,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1495,"width_ft":65,"surface":"T"},{"id":"07/25","length_ft":1425,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90TX","iata":"","local":"90TX","name":"Callaghan Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Callaghan","elevation_ft":635,"latitude":27.8794002532959,"longitude":-99.39669799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4640,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90OI","iata":"","local":"90OI","name":"Joe Cimprich Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Camden","elevation_ft":1010,"latitude":39.60419845581055,"longitude":-84.63500213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90TT","iata":"","local":"90TT","name":"WT Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waelder","elevation_ft":369,"latitude":29.682675,"longitude":-97.252677,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90XS","iata":"","local":"90XS","name":"Houston Oil & Minerals Port Bolivar Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Bolivar","elevation_ft":10,"latitude":29.38330078125,"longitude":-94.77349853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91AK","iata":"","local":"91AK","name":"Kucera Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":175,"latitude":61.576389,"longitude":-149.943333,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91AL","iata":"","local":"91AL","name":"Shelby County Sheriff's Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Columbiana","elevation_ft":593,"latitude":33.186619,"longitude":-86.626801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91CA","iata":"","local":"91CA","name":"Devers Substation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Desert Hot Springs","elevation_ft":1150,"latitude":33.939936,"longitude":-116.574172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91CO","iata":"","local":"91CO","name":"Summit Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Frisco","elevation_ft":9042,"latitude":39.58140182495117,"longitude":-106.09200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91FA","iata":"","local":"91FA","name":"Williams Road Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Estero","elevation_ft":10,"latitude":26.417734,"longitude":-81.824487,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91FD","iata":"","local":"91FD","name":"Freedom Wpec Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Mangonia Park","elevation_ft":18,"latitude":26.761499404907227,"longitude":-80.07060241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91FL","iata":"","local":"91FL","name":"Lake Conway North Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":80,"latitude":28.47920036315918,"longitude":-81.36759948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":3000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91ID","iata":"","local":"91ID","name":"Double Dreidel Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Smith'S Ferry","elevation_ft":4883,"latitude":44.230833,"longitude":-116.1775,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"90WA","iata":"WDN","local":"90WA","name":"Waldron Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Eastsound","elevation_ft":140,"latitude":48.7118,"longitude":-123.017998,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2700,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90XA","iata":"","local":"90XA","name":"TG Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Berlin","elevation_ft":555,"latitude":29.437778,"longitude":-98.113056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1616,"width_ft":240,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91GA","iata":"","local":"91GA","name":"Flying Frog Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Moreland","elevation_ft":910,"latitude":33.273602,"longitude":-84.793297,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91KY","iata":"","local":"91KY","name":"Big 'G' Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisa","elevation_ft":568,"latitude":38.21060180664063,"longitude":-82.60600280761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91MD","iata":"","local":"91MD","name":"Prince George Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Largo","elevation_ft":379,"latitude":38.902285,"longitude":-76.844607,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"},{"id":"H2","length_ft":69,"width_ft":69,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91MI","iata":"","local":"91MI","name":"McHelipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Middleville","elevation_ft":770,"latitude":42.748795,"longitude":-85.476956,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91MN","iata":"","local":"91MN","name":"Sanford Canby Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Canby","elevation_ft":1244,"latitude":44.70740127559999,"longitude":-96.2789993286,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91MO","iata":"","local":"91MO","name":"Boone Hospital Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":780,"latitude":38.948902,"longitude":-92.315343,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91NC","iata":"","local":"91NC","name":"Alamance Regnl Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Burlington","elevation_ft":688,"latitude":36.06230163574219,"longitude":-79.50469970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91NJ","iata":"","local":"91NJ","name":"Newport Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Jersey City","elevation_ft":6,"latitude":40.724423,"longitude":-74.029738,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91KS","iata":"","local":"91KS","name":"St. Joseph'S Landing","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"St. Mary'S","elevation_ft":1136,"latitude":39.243803,"longitude":-96.033039,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91IN","iata":"","local":"91IN","name":"Strietelmeier Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Columbus","elevation_ft":625,"latitude":39.208581,"longitude":-85.974884,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1050,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91LS","iata":"","local":"91LS","name":"Duclos RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Red Bud","elevation_ft":520,"latitude":38.2089004517,"longitude":-90.03720092770001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91LA","iata":"","local":"91LA","name":"Koch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Eunice","elevation_ft":51,"latitude":30.53459930419922,"longitude":-92.36740112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2480,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91PA","iata":"","local":"91PA","name":"Clarion Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Clarion","elevation_ft":1489,"latitude":41.19257,"longitude":-79.398413,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91PN","iata":"","local":"91PN","name":"Hospital of Pottsville Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pottsville","elevation_ft":850,"latitude":40.69039917,"longitude":-76.19219971,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91OK","iata":"","local":"91OK","name":"The Flying Cowboy Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Altus","elevation_ft":1365,"latitude":34.641998,"longitude":-99.371201,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92AK","iata":"","local":"92AK","name":"Mat-Su Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":145,"latitude":61.56290054321289,"longitude":-149.25900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"91WI","iata":"","local":"91WI","name":"Gottschalk Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Nekoosa","elevation_ft":976,"latitude":44.29389953613281,"longitude":-90.03209686279297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91WA","iata":"","local":"91WA","name":"Christensen Bros Wahluke Strip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Mattawa","elevation_ft":840,"latitude":46.70819854736328,"longitude":-119.8010025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92CA","iata":"","local":"92CA","name":"Westlake Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stratford","elevation_ft":192,"latitude":36.12080001831055,"longitude":-119.88800048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91TA","iata":"","local":"91TA","name":"Rhines Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canton","elevation_ft":540,"latitude":32.44599914550781,"longitude":-95.9188995361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2230,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91TE","iata":"","local":"91TE","name":"Britts Crosswind Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Liberty Hill","elevation_ft":1000,"latitude":30.72470092773437,"longitude":-97.86199951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"},{"id":"16/34","length_ft":3200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91TX","iata":"","local":"91TX","name":"Paisano Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Calliham","elevation_ft":235,"latitude":28.396900177001957,"longitude":-98.36280059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91TS","iata":"","local":"91TS","name":"Songbird Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rosharon","elevation_ft":34,"latitude":29.36860084533692,"longitude":-95.33989715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3200,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92CN","iata":"","local":"92CN","name":"Riverside County Sheriff, Palm Desert Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Palm Desert","elevation_ft":314,"latitude":33.78555,"longitude":-116.37905,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92FA","iata":"","local":"92FA","name":"Amcdlz Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"St. Augustine","elevation_ft":46,"latitude":29.901396,"longitude":-81.413555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92FD","iata":"","local":"92FD","name":"Nierenberg Estate Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Melbourne","elevation_ft":32,"latitude":28.218299865722656,"longitude":-80.68419647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92FL","iata":"","local":"","name":"Carlstrom Field","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Arcadia","elevation_ft":35,"latitude":27.1206,"longitude":-81.8498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92GA","iata":"","local":"92GA","name":"Stone Mountain Park Skylift Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Stone Mountain","elevation_ft":950,"latitude":33.8130989074707,"longitude":-84.14080047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92KS","iata":"","local":"92KS","name":"Cloud County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Concordia","elevation_ft":1442,"latitude":39.554583,"longitude":-97.6605,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92KY","iata":"","local":"","name":"Timmons Field","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Pewee Valley","elevation_ft":690,"latitude":38.284199,"longitude":-85.472603,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1091,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92LA","iata":"","local":"92LA","name":"Terrebonne General Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Houma","elevation_ft":12,"latitude":29.59678,"longitude":-90.71384,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92MA","iata":"","local":"92MA","name":"Ames Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Hamilton","elevation_ft":64,"latitude":42.63150024,"longitude":-70.86509705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92CO","iata":"","local":"92CO","name":"Lake Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hillside","elevation_ft":7200,"latitude":38.29169845581055,"longitude":-105.61100006103516,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92IN","iata":"","local":"92IN","name":"H R Weisser Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Milford","elevation_ft":832,"latitude":41.42340087890625,"longitude":-85.84750366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92GE","iata":"","local":"92GE","name":"Midville International Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Midville","elevation_ft":265,"latitude":32.845298767089844,"longitude":-82.27079772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92MO","iata":"","local":"92MO","name":"Fox Run Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Eureka","elevation_ft":510,"latitude":38.44390106201172,"longitude":-90.60710144042967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92NC","iata":"","local":"92NC","name":"Grace Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Morganton","elevation_ft":1178,"latitude":35.72740173339844,"longitude":-81.65370178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92NH","iata":"","local":"92NH","name":"Morrison Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Center Harbor","elevation_ft":720,"latitude":43.67851,"longitude":-71.51719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92NR","iata":"","local":"92NR","name":"Firsthealth Richmond Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Rockingham","elevation_ft":107,"latitude":34.929263,"longitude":-79.748967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92OI","iata":"","local":"92OI","name":"Good Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":825,"latitude":39.139198303222656,"longitude":-84.52079772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92OK","iata":"","local":"","name":"Flying W Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Atoka","elevation_ft":618,"latitude":34.385142,"longitude":-96.289729,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1320,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92OR","iata":"","local":"92OR","name":"Falcon Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"West Linn","elevation_ft":400,"latitude":45.3364982605,"longitude":-122.665000916,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":220,"width_ft":140,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92PA","iata":"","local":"","name":"Hawkins Field","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Cooperstown","elevation_ft":1150,"latitude":40.704201,"longitude":-79.952003,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1285,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92MU","iata":"","local":"92MU","name":"Parks Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Smithville","elevation_ft":847,"latitude":39.409119,"longitude":-94.606228,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92ME","iata":"","local":"92ME","name":"Buzzport Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Passadumkeag","elevation_ft":180,"latitude":45.22039,"longitude":-68.63428,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92NY","iata":"","local":"92NY","name":"Bloecher Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Strykersville","elevation_ft":1430,"latitude":42.752936,"longitude":-78.462124,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":850,"width_ft":60,"surface":"T"},{"id":"N/S","length_ft":3600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92MN","iata":"","local":"92MN","name":"Brutlag Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wendell","elevation_ft":1127,"latitude":46.01440048217773,"longitude":-96.10169982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92TS","iata":"","local":"92TS","name":"AdventHealth Central Texas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Killeen","elevation_ft":991,"latitude":31.113265,"longitude":-97.802541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92TX","iata":"","local":"","name":"TGP 409 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Edinburg","elevation_ft":92,"latitude":26.41659,"longitude":-98.135629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92TE","iata":"","local":"92TE","name":"Chaney San Francisco Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":3250,"latitude":29.967377,"longitude":-102.942183,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2650,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92WA","iata":"","local":"92WA","name":"Conner Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Issaquah","elevation_ft":28,"latitude":47.56010055541992,"longitude":-122.08000183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93CA","iata":"","local":"93CA","name":"Fountain Valley Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fountain Valley","elevation_ft":38,"latitude":33.71500015258789,"longitude":-117.93599700927734,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"92WI","iata":"","local":"92WI","name":"Knight Aire Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrill","elevation_ft":1605,"latitude":45.29610061645508,"longitude":-89.64109802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2880,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93AZ","iata":"","local":"93AZ","name":"Inde Motorsports Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Willcox","elevation_ft":4463,"latitude":32.224683,"longitude":-110.007391,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3800,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92TA","iata":"","local":"92TA","name":"Drennan Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Los Fresnos","elevation_ft":27,"latitude":26.12120056152344,"longitude":-97.4280014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92XS","iata":"","local":"92XS","name":"T R Funk Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Raymondville","elevation_ft":24,"latitude":26.479176,"longitude":-97.686734,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93AK","iata":"","local":"93AK","name":"The Queens Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Queens","elevation_ft":25,"latitude":58.87200164794922,"longitude":-158.4720001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1590,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92SC","iata":"","local":"92SC","name":"Mack's Patch-Derrick Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Aiken","elevation_ft":400,"latitude":33.52135,"longitude":-81.578361,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1715,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93CN","iata":"","local":"93CN","name":"UCSD Jacobs Medical Center Rooftop Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"La Jolla, San Diego","elevation_ft":538,"latitude":32.877679,"longitude":-117.226762,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93GA","iata":"","local":"93GA","name":"Emanuel County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Swainsboro","elevation_ft":328,"latitude":32.592899322509766,"longitude":-82.34739685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93IA","iata":"","local":"93IA","name":"Lund Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Jewell","elevation_ft":1063,"latitude":42.26029968261719,"longitude":-93.64969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93ID","iata":"","local":"93ID","name":"Salmon River Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Riggins","elevation_ft":1827,"latitude":45.420105,"longitude":-116.174728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93IL","iata":"","local":"","name":"Bauer Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Lindenwood","elevation_ft":780,"latitude":42.068474,"longitude":-88.987971,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93IS","iata":"","local":"93IS","name":"OSF Healthcare Sacred Heart Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Danville","elevation_ft":612,"latitude":40.138908,"longitude":-87.645336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93LA","iata":"","local":"93LA","name":"Ochsner Abrom Kaplan Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Kaplan","elevation_ft":15,"latitude":30.008219,"longitude":-92.297977,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93MO","iata":"","local":"","name":"Kathy's Patch Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Prosperity","elevation_ft":1030,"latitude":37.108898,"longitude":-94.405502,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93MN","iata":"","local":"93MN","name":"Hoppe Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Mankato","elevation_ft":1010,"latitude":44.03210067749024,"longitude":-93.94840240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93CO","iata":"","local":"93CO","name":"Antelope Airpark","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Lake George","elevation_ft":8700,"latitude":39.025294,"longitude":-105.609763,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93KY","iata":"","local":"93KY","name":"Baggett Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Sacramento","elevation_ft":405,"latitude":37.47079849243164,"longitude":-87.25330352783203,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93MS","iata":"","local":"93MS","name":"Shelby Air Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Shelby","elevation_ft":154,"latitude":33.9715995789,"longitude":-90.7682037354,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3150,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93NC","iata":"","local":"93NC","name":"Angel Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Franklin","elevation_ft":2086,"latitude":35.184547,"longitude":-83.380036,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93NH","iata":"","local":"93NH","name":"Sharkey Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Plainfield","elevation_ft":550,"latitude":43.525001525878906,"longitude":-72.3582992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93NY","iata":"","local":"93NY","name":"Taylor Field Heliport at Fort Hamilton","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Brooklyn","elevation_ft":19,"latitude":40.605355,"longitude":-74.022285,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93OG","iata":"","local":"93OG","name":"Robeck Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Powell Butte","elevation_ft":3060,"latitude":44.3125,"longitude":-121.006944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93OI","iata":"","local":"93OI","name":"Stouffer's Dublin Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Dublin","elevation_ft":890,"latitude":40.09650039672852,"longitude":-83.13520050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":170,"width_ft":225,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93OR","iata":"","local":"93OR","name":"St Elizabeth Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Baker","elevation_ft":3410,"latitude":44.7943000793457,"longitude":-117.84600067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93TA","iata":"","local":"93TA","name":"Mac Kay Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mount Vernon","elevation_ft":351,"latitude":33.0601005554,"longitude":-95.157699585,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93TX","iata":"","local":"93TX","name":"John Peter Smith EMS Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":750,"latitude":32.726978302,"longitude":-97.3265914917,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93OK","iata":"","local":"93OK","name":"Jantzen Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Coweta","elevation_ft":670,"latitude":35.93450164794922,"longitude":-95.59140014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93TN","iata":"","local":"93TN","name":"Center Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Gray","elevation_ft":1700,"latitude":36.360809,"longitude":-82.45044,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93WA","iata":"","local":"","name":"Harris Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Tyler","elevation_ft":2375,"latitude":47.447899,"longitude":-117.806,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":3097,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93WI","iata":"","local":"","name":"Arrowhead Springs Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Richfield","elevation_ft":980,"latitude":43.253601,"longitude":-88.209503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93XS","iata":"","local":"","name":"Joseph Ross Scherdin Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Richwood","elevation_ft":10,"latitude":29.0811,"longitude":-95.382697,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2244,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94AR","iata":"","local":"94AR","name":"Galloway Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Gregory","elevation_ft":195,"latitude":35.156381,"longitude":-91.331883,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94CA","iata":"","local":"94CA","name":"Kaiser Permanente Fontana Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fontana","elevation_ft":1214,"latitude":34.072585,"longitude":-117.432514,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94CL","iata":"","local":"94CL","name":"Loma Linda University Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Loma Linda","elevation_ft":1223,"latitude":34.050241,"longitude":-117.264141,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"},{"id":"H2","length_ft":51,"width_ft":51,"surface":"C"},{"id":"H3","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94FD","iata":"","local":"94FD","name":"Santa Rosa Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Milton","elevation_ft":156,"latitude":30.633689,"longitude":-87.066178,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94IL","iata":"","local":"","name":"Lutz Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Mulberry Grove","elevation_ft":526,"latitude":38.917301,"longitude":-89.225601,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1944,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94FL","iata":"","local":"94FL","name":"Pine Shadows Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":20,"latitude":26.732799530029297,"longitude":-81.89730072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3195,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94IS","iata":"","local":"94IS","name":"Adams Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Royalton","elevation_ft":410,"latitude":37.901542,"longitude":-89.140892,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94GA","iata":"","local":"94GA","name":"Snow Hill Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Unadilla","elevation_ft":465,"latitude":32.262901306152344,"longitude":-83.78710174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93XA","iata":"","local":"93XA","name":"Scott Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bellevue","elevation_ft":1069,"latitude":33.509594,"longitude":-98.120211,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2425,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94KS","iata":"","local":"94KS","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Macksville","elevation_ft":2023,"latitude":37.97499847412109,"longitude":-98.9656982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2540,"width_ft":140,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94LA","iata":"","local":"94LA","name":"Prevost Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Donaldsonville","elevation_ft":15,"latitude":30.087808,"longitude":-91.002397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94NC","iata":"","local":"94NC","name":"Viking Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Raeford","elevation_ft":295,"latitude":35.008988,"longitude":-79.261766,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94NJ","iata":"","local":"94NJ","name":"Pio Costa Sand & Gravel Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hackettstown/Great Meadows","elevation_ft":550,"latitude":40.86399841308594,"longitude":-74.91909790039062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94OH","iata":"","local":"94OH","name":"St Rita's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Lima","elevation_ft":862,"latitude":40.73949813842773,"longitude":-84.12159729003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94OI","iata":"","local":"94OI","name":"Blades Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Hudson","elevation_ft":1100,"latitude":41.242804,"longitude":-81.414902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94OK","iata":"","local":"94OK","name":"Saint Francis Hospital Muskogee Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Muskogee","elevation_ft":604,"latitude":35.75183,"longitude":-95.406365,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94PN","iata":"","local":"94PN","name":"Wellspan York Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"York","elevation_ft":480,"latitude":39.944781,"longitude":-76.718903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94NY","iata":"","local":"94NY","name":"St Bernard Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Union Springs","elevation_ft":540,"latitude":42.82509994506836,"longitude":-76.69129943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94MN","iata":"","local":"94MN","name":"Ag Spray Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Barnesville","elevation_ft":960,"latitude":46.57659912109375,"longitude":-96.51200103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94OR","iata":"","local":"94OR","name":"Umpqua RV Park Fly In Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Elkton","elevation_ft":230,"latitude":43.530701,"longitude":-123.549004,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94KY","iata":"","local":"94KY","name":"Woosley Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Rumsey","elevation_ft":400,"latitude":37.5005989074707,"longitude":-87.32939910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94TE","iata":"","local":"94TE","name":"Barbaro North Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Argyle","elevation_ft":632,"latitude":33.098056,"longitude":-97.146944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94TS","iata":"","local":"94TS","name":"Mc David Honda Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Irving","elevation_ft":540,"latitude":32.8375015259,"longitude":-96.9708023071,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94WI","iata":"","local":"","name":"Koller Heliport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Wales","elevation_ft":980,"latitude":42.987715,"longitude":-88.416759,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1250,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94XA","iata":"","local":"94XA","name":"GHMC Micro Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Orange","elevation_ft":9,"latitude":30.109925,"longitude":-93.815514,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94XS","iata":"","local":"","name":"Heritage Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Richmond","elevation_ft":103,"latitude":29.6544,"longitude":-95.829399,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95AK","iata":"","local":"","name":"Medivac - Wasilla Heliport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":340,"latitude":61.585602,"longitude":-149.425004,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1100,"width_ft":58,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95CL","iata":"","local":"95CL","name":"Verdugo Hills Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":1400,"latitude":34.204136,"longitude":-118.217289,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":79,"width_ft":79,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95CN","iata":"","local":"95CN","name":"Desert Valley Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Victorville","elevation_ft":3045,"latitude":34.471609,"longitude":-117.296843,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95FA","iata":"","local":"95FA","name":"Spirit of Suwannee Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Suwannee","elevation_ft":93,"latitude":30.401111,"longitude":-82.956389,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"94TX","iata":"","local":"94TX","name":"River Bend Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brady","elevation_ft":1500,"latitude":31.437700271606445,"longitude":-99.31559753417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95CO","iata":"","local":"95CO","name":"Mann Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rye","elevation_ft":6000,"latitude":37.868499755859375,"longitude":-104.83599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3500,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94TA","iata":"","local":"94TA","name":"Reece Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Angelo","elevation_ft":1960,"latitude":31.307851,"longitude":-100.463705,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3024,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95FL","iata":"","local":"95FL","name":"Pinellas County Mosquito Control Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pinellas Park","elevation_ft":10,"latitude":27.875600814819336,"longitude":-82.68930053710938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95LA","iata":"","local":"95LA","name":"Louisiana State Police Troop E Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":95,"latitude":31.31667,"longitude":-92.468365,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95LL","iata":"","local":"","name":"Warren Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Somonauk","elevation_ft":694,"latitude":41.6478,"longitude":-88.694397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95MN","iata":"","local":"","name":"Whaletail Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Minnetrista","elevation_ft":948,"latitude":44.9389,"longitude":-93.722702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95NC","iata":"","local":"95NC","name":"Onslow Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Jacksonville","elevation_ft":39,"latitude":34.764243,"longitude":-77.385846,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95IS","iata":"","local":"95IS","name":"Jan Knipe Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Warsaw","elevation_ft":645,"latitude":40.36941,"longitude":-91.38863,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1760,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95FD","iata":"","local":"95FD","name":"South Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":22,"latitude":26.768299102783203,"longitude":-81.53890228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95IL","iata":"","local":"95IL","name":"Henderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Golconda","elevation_ft":485,"latitude":37.48516,"longitude":-88.40003,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95GA","iata":"","local":"95GA","name":"Mcintosh Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Whitesburg","elevation_ft":771,"latitude":33.45589828491211,"longitude":-84.94300079345703,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2480,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95NE","iata":"","local":"95NE","name":"W Meeks Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Taylor","elevation_ft":2335,"latitude":41.992801666259766,"longitude":-99.45539855957033,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2550,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95ID","iata":"","local":"95ID","name":"Deer Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cottonwood","elevation_ft":1169,"latitude":46.000458,"longitude":-116.691186,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1016,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95NH","iata":"","local":"95NH","name":"Macy Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hooksett","elevation_ft":262,"latitude":43.063662,"longitude":-71.453499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95NJ","iata":"","local":"95NJ","name":"Middle Sedge Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Toms River","elevation_ft":5,"latitude":40.000099182128906,"longitude":-74.0801010131836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95OI","iata":"","local":"95OI","name":"C C A Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Indian Hill","elevation_ft":850,"latitude":39.202598571777344,"longitude":-84.30740356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95TE","iata":"","local":"95TE","name":"Star Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Cross Roads","elevation_ft":615,"latitude":33.21780014038086,"longitude":-96.9832992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95WA","iata":"","local":"95WA","name":"Black Diamond Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Black Diamond","elevation_ft":595,"latitude":47.31570053100586,"longitude":-122.01000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95OR","iata":"","local":"95OR","name":"Flournoy Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Roseburg","elevation_ft":790,"latitude":43.20759963989258,"longitude":-123.53299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95TX","iata":"","local":"95TX","name":"Chupadera Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":651,"latitude":28.1924991607666,"longitude":-100.0719985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95TN","iata":"","local":"95TN","name":"Blue Ridge Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Adams","elevation_ft":525,"latitude":36.526583,"longitude":-87.172806,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2150,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95OK","iata":"","local":"95OK","name":"Barcus Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Claremore","elevation_ft":660,"latitude":36.2676010131836,"longitude":-95.63069915771484,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95TA","iata":"","local":"95TA","name":"Thunder Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Utopia","elevation_ft":1500,"latitude":29.634899139404297,"longitude":-99.4822998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95VA","iata":"","local":"95VA","name":"Buck Hollar Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Danville","elevation_ft":450,"latitude":36.62319946289063,"longitude":-79.35590362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95XS","iata":"","local":"","name":"Air Logistics Sabine Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":7,"latitude":29.713849,"longitude":-93.913329,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":4495,"width_ft":653,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96AK","iata":"","local":"96AK","name":"Hackney Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Clam Gulch","elevation_ft":208,"latitude":60.28779983520508,"longitude":-151.3459930419922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":2000,"width_ft":1400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96CA","iata":"","local":"96CA","name":"Warner Center Plaza I Helipad","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Woodland Hills","elevation_ft":1133,"latitude":34.178276,"longitude":-118.60032,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96CL","iata":"","local":"96CL","name":"Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Newbury Park","elevation_ft":1162,"latitude":34.157704,"longitude":-118.917802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96KS","iata":"","local":"96KS","name":"Palmer Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Glasco","elevation_ft":1404,"latitude":39.368598,"longitude":-97.788116,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96IL","iata":"","local":"96IL","name":"Gerbick Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lena","elevation_ft":930,"latitude":42.37571,"longitude":-89.850848,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96FD","iata":"","local":"96FD","name":"Citrus Hedging Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":60,"latitude":27.33340072631836,"longitude":-80.73619842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2550,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96ID","iata":"","local":"96ID","name":"Flying H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Priest River","elevation_ft":2230,"latitude":48.235098,"longitude":-116.875634,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2550,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96CO","iata":"","local":"96CO","name":"Logan Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bennett","elevation_ft":5300,"latitude":39.8564,"longitude":-104.396004,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96IS","iata":"","local":"96IS","name":"Hildreth Air Park","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sidell","elevation_ft":730,"latitude":39.875,"longitude":-87.84500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96GA","iata":"","local":"96GA","name":"3-M's Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Williamson","elevation_ft":890,"latitude":33.18579864501953,"longitude":-84.36810302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96LA","iata":"","local":"96LA","name":"Louisiana State Police Troop A Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":18,"latitude":30.347384,"longitude":-91.031395,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96MI","iata":"","local":"96MI","name":"Dick Huvaere's Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Petoskey","elevation_ft":675,"latitude":45.395581,"longitude":-84.874333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96MN","iata":"","local":"","name":"Air-Ag Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Glenville","elevation_ft":1240,"latitude":43.568001,"longitude":-93.254402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96MO","iata":"","local":"96MO","name":"Riverlands Area Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"West Alton","elevation_ft":434,"latitude":38.86309814453125,"longitude":-90.15709686279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96NC","iata":"","local":"96NC","name":"Raleigh Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Raleigh","elevation_ft":207,"latitude":35.812824,"longitude":-78.610359,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96NJ","iata":"","local":"96NJ","name":"Lourdes Medical Center Of Burlington Cty Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Willingboro","elevation_ft":72,"latitude":40.046798706100006,"longitude":-74.8824005127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96NY","iata":"","local":"96NY","name":"Massaro Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Carmel","elevation_ft":681,"latitude":41.049444,"longitude":-73.738333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96OH","iata":"","local":"","name":"Ohio Department of Transportation Dist 6 Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Delaware","elevation_ft":927,"latitude":40.295797,"longitude":-83.052002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96OI","iata":"","local":"96OI","name":"Kettering Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Kettering","elevation_ft":836,"latitude":39.76279830932617,"longitude":-84.19129943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96MT","iata":"","local":"96MT","name":"Powers Propair Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Laurel","elevation_ft":3265,"latitude":45.6655,"longitude":-108.717333,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1443,"width_ft":50,"surface":"T"},{"id":"07/25","length_ft":1357,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":1064,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96MU","iata":"","local":"96MU","name":"Green Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"St. James","elevation_ft":1068,"latitude":37.94340133666992,"longitude":-91.6020965576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96PA","iata":"","local":"","name":"Franklin Center Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Cranesville","elevation_ft":1225,"latitude":41.920898,"longitude":-80.249803,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":3000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96TA","iata":"","local":"96TA","name":"Roy H Laird Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kilgore","elevation_ft":343,"latitude":32.373199462890625,"longitude":-94.86830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96OK","iata":"","local":"96OK","name":"Millers Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Buffalo","elevation_ft":1787,"latitude":36.847124,"longitude":-99.457392,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96WI","iata":"","local":"96WI","name":"Vette/Blust Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Oshkosh","elevation_ft":750,"latitude":43.94110107421875,"longitude":-88.49369812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":60,"surface":"T"},{"id":"N/S","length_ft":10000,"width_ft":4000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD6","iata":"","local":"9FD6","name":"Academy Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":0,"latitude":27.94657,"longitude":-82.420251,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96TS","iata":"","local":"T96","name":"Southwest Lubbock Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wolfforth","elevation_ft":3265,"latitude":33.395581,"longitude":-102.009458,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2131,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96OR","iata":"","local":"96OR","name":"Cable Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Ukiah","elevation_ft":4060,"latitude":45.10060119628906,"longitude":-118.81700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4800,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96WY","iata":"","local":"96WY","name":"Cedar Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Saratoga","elevation_ft":7760,"latitude":41.408939,"longitude":-106.593488,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1500,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96TX","iata":"","local":"96TX","name":"Brown Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Christoval","elevation_ft":2125,"latitude":31.1653995513916,"longitude":-100.47599792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2450,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96TN","iata":"","local":"96TN","name":"Mount Bakewell Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Bakewell","elevation_ft":1640,"latitude":35.367073,"longitude":-85.161678,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96TE","iata":"","local":"96TE","name":"Bodine Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sterling City","elevation_ft":2623,"latitude":31.9030278,"longitude":-100.8716111,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":3200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96XS","iata":"","local":"96XS","name":"Houston Oil & Minerals Smith Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Smith Point","elevation_ft":9,"latitude":29.52879905700684,"longitude":-94.76599884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97AL","iata":"","local":"97AL","name":"Thomasville Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Thomasville","elevation_ft":351,"latitude":31.875828,"longitude":-87.743069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97CA","iata":"","local":"","name":"Tejon Agricultural Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Lebec","elevation_ft":1065,"latitude":34.989101,"longitude":-118.915001,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96XA","iata":"","local":"96XA","name":"Gnaws Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pecos","elevation_ft":2717,"latitude":31.284444,"longitude":-103.643889,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97IA","iata":"","local":"97IA","name":"Volkens Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Carson","elevation_ft":1275,"latitude":41.25579833984375,"longitude":-95.47669982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97IL","iata":"","local":"97IL","name":"Graham Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Canton","elevation_ft":680,"latitude":40.55220032,"longitude":-90.03669739,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97IS","iata":"","local":"97IS","name":"St Johns Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Springfield","elevation_ft":632,"latitude":39.80670166015625,"longitude":-89.64440155029297,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97KY","iata":"","local":"97KY","name":"Greener Horizons Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":745,"latitude":38.243900299072266,"longitude":-85.48889923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97MI","iata":"","local":"97MI","name":"Hawk Hollow Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Brighton","elevation_ft":950,"latitude":42.5613,"longitude":-83.7355,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97MN","iata":"","local":"97MN","name":"Mayo Clinic Health System-Red Wing Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Red Wing","elevation_ft":862,"latitude":44.559342,"longitude":-92.572757,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":90,"width_ft":105,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97AK","iata":"","local":"97AK","name":"High Ridge Association Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":720,"latitude":61.66400146484375,"longitude":-149.25399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97NC","iata":"","local":"97NC","name":"Transylvania Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Brevard","elevation_ft":2120,"latitude":35.25579833984375,"longitude":-82.14240264892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97OI","iata":"","local":"97OI","name":"Salem Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Salem","elevation_ft":1305,"latitude":40.900551,"longitude":-80.833427,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97OK","iata":"","local":"97OK","name":"Presbyterian Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1262,"latitude":35.48118,"longitude":-97.502609,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H3","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H4","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97TA","iata":"","local":"97TA","name":"Hickory Hollow Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":80,"latitude":29.92609977722168,"longitude":-95.52359771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97TE","iata":"","local":"97TE","name":"Go Helitrans Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Freeport","elevation_ft":14,"latitude":28.94969940185547,"longitude":-95.3572006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"T"},{"id":"H3","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97MT","iata":"","local":"97MT","name":"Cabin Creek Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Marion","elevation_ft":3999,"latitude":48.074036,"longitude":-114.677782,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97OR","iata":"","local":"97OR","name":"Hi Country No 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Prairie City","elevation_ft":3840,"latitude":44.43519973754883,"longitude":-118.66200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97TX","iata":"","local":"97TX","name":"San Pedro Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":710,"latitude":28.283599853515625,"longitude":-100.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3600,"width_ft":710,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97TN","iata":"","local":"97TN","name":"Kite Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Jonesborough","elevation_ft":1450,"latitude":36.2785568902,"longitude":-82.5857627392,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97TS","iata":"","local":"97TS","name":"Gdap Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Willis","elevation_ft":300,"latitude":30.480199813842773,"longitude":-95.53990173339844,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97WY","iata":"","local":"97WY","name":"Snake River Canyon Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":5886,"latitude":43.29930114746094,"longitude":-110.7770004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97XA","iata":"","local":"97XA","name":"Helibarn Landing","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":886,"latitude":32.699019,"longitude":-97.512352,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98AL","iata":"","local":"98AL","name":"Lakeland Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Haleyville","elevation_ft":960,"latitude":34.242369,"longitude":-87.592292,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98CL","iata":"","local":"","name":"Noltas Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Willows","elevation_ft":145,"latitude":39.578999,"longitude":-122.200996,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98CO","iata":"","local":"98CO","name":"North Colorado Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Greeley","elevation_ft":4882,"latitude":40.414832,"longitude":-104.710844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98FD","iata":"","local":"98FD","name":"Lake Jessup Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Oviedo","elevation_ft":32,"latitude":28.71689987182617,"longitude":-81.23310089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":1800,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98FL","iata":"","local":"98FL","name":"Sand Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Orlando/Buena Vista","elevation_ft":90,"latitude":28.4335994720459,"longitude":-81.49150085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":2000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98IA","iata":"","local":"","name":"Hawarden Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Hawarden","elevation_ft":1174,"latitude":42.998468,"longitude":-96.481038,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98AK","iata":"","local":"98AK","name":"Eastland Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":1190,"latitude":59.77621,"longitude":-151.187882,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":120,"surface":"G"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97XS","iata":"","local":"97XS","name":"Tilghman Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Van Alstyne","elevation_ft":741,"latitude":33.432833,"longitude":-96.479467,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1100,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":3150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98GA","iata":"","local":"98GA","name":"Circle T Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Indian Springs","elevation_ft":545,"latitude":33.2056999206543,"longitude":-83.91239929199219,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98ID","iata":"","local":"98ID","name":"Walter Knox Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Emmett","elevation_ft":238,"latitude":43.8805999756,"longitude":-116.48500061,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98IL","iata":"","local":"98IL","name":"St Mary's Hospital - Centralia Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Centralia","elevation_ft":490,"latitude":38.5317001343,"longitude":-89.11940002440001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98IN","iata":"","local":"","name":"B & V Flying Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Albion","elevation_ft":950,"latitude":41.36431,"longitude":-85.391297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98KY","iata":"","local":"","name":"TGP Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Campbellsville","elevation_ft":900,"latitude":37.412498,"longitude":-85.394402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98LA","iata":"","local":"98LA","name":"Louisiana State Police Troop L Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Covington","elevation_ft":25,"latitude":30.402311,"longitude":-90.087655,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98MI","iata":"","local":"98MI","name":"L & L Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Huron Township","elevation_ft":630,"latitude":42.163333,"longitude":-83.345278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98KS","iata":"","local":"98KS","name":"Rexford Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Montezuma","elevation_ft":2775,"latitude":37.445899963378906,"longitude":-100.49199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2440,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98MN","iata":"","local":"98MN","name":"Up Yonder Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1446,"latitude":47.29349899,"longitude":-94.87490082,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98MT","iata":"","local":"98MT","name":"Rosemont Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Stevensville","elevation_ft":4172,"latitude":46.44279861450195,"longitude":-114.00299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98LL","iata":"","local":"98LL","name":"Braden Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Watseka","elevation_ft":630,"latitude":40.799198150634766,"longitude":-87.78359985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98MO","iata":"","local":"98MO","name":"Woodliff Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Foristell","elevation_ft":750,"latitude":38.78620147705078,"longitude":-90.94239807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2828,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98LS","iata":"","local":"98LS","name":"Tietjes Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Elton","elevation_ft":44,"latitude":30.434651,"longitude":-92.721745,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2501,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98NC","iata":"","local":"98NC","name":"Linville Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Linville","elevation_ft":4826,"latitude":36.118099,"longitude":-81.860603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98NH","iata":"","local":"98NH","name":"Skybast Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Northwood","elevation_ft":565,"latitude":43.21120071411133,"longitude":-71.24009704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98NJ","iata":"","local":"98NJ","name":"Creamer Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hackensack","elevation_ft":10,"latitude":40.875016,"longitude":-74.035649,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98PN","iata":"","local":"98PN","name":"Lehigh Valley Hospital Cedar Crest Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":400,"latitude":40.56561,"longitude":-75.523356,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98TA","iata":"","local":"98TA","name":"Medical City Weatherford Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":1050,"latitude":32.747722,"longitude":-97.786487,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98OK","iata":"","local":"98OK","name":"Candy Lake Estate Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Avant","elevation_ft":685,"latitude":36.489200592041016,"longitude":-96.05280303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2008,"width_ft":51,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98OH","iata":"","local":"98OH","name":"Paine's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Geneva","elevation_ft":660,"latitude":41.82276,"longitude":-80.8968,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98ND","iata":"","local":"98ND","name":"Sobolik Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Pisek","elevation_ft":920,"latitude":48.263301849365234,"longitude":-97.62229919433594,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98OR","iata":"","local":"98OR","name":"Mach-O Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sheridan","elevation_ft":435,"latitude":45.19900131225586,"longitude":-123.37000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98TS","iata":"","local":"98TS","name":"Cabrito Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Goldthwaite","elevation_ft":1676,"latitude":31.55888,"longitude":-98.42263,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98TX","iata":"","local":"98TX","name":"Cig 402 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Falfurrias","elevation_ft":110,"latitude":27.25670051574707,"longitude":-98.09420013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98WA","iata":"","local":"98WA","name":"Zirkle Fruit Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Selah","elevation_ft":1100,"latitude":46.67559814453125,"longitude":-120.50599670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98WI","iata":"","local":"98WI","name":"Shawano Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Shawano","elevation_ft":812,"latitude":44.784698486328125,"longitude":-88.6176986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98WT","iata":"","local":"98WT","name":"St Michael Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Silverdale","elevation_ft":295,"latitude":47.656796,"longitude":-122.674955,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98WY","iata":"","local":"98WY","name":"Hmhs Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":5886,"latitude":43.30149841308594,"longitude":-110.7760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98XS","iata":"","local":"98XS","name":"LZ Phantom Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Jamestown","elevation_ft":800,"latitude":30.455929,"longitude":-97.934318,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99AA","iata":"","local":"99AA","name":"Aviator Hotel Anchorage Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":123,"latitude":61.218906,"longitude":-149.886482,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99AL","iata":"","local":"99AL","name":"Morrison Crossroads Volunteer Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Woodland","elevation_ft":1113,"latitude":33.427111,"longitude":-85.493436,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99AZ","iata":"","local":"99AZ","name":"Eagletail Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tonopah","elevation_ft":1203,"latitude":33.395646,"longitude":-113.222888,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3280,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99CA","iata":"","local":"99CA","name":"San Antonio Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Upland","elevation_ft":1274,"latitude":34.102747,"longitude":-117.636211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"98XA","iata":"","local":"98XA","name":"Three Ninety-Eighth Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":460,"latitude":31.629249,"longitude":-97.162442,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2070,"width_ft":30,"surface":"T"},{"id":"15/33","length_ft":1503,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99AK","iata":"","local":"99AK","name":"Moore Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Moore Creek","elevation_ft":980,"latitude":62.5989990234375,"longitude":-157.15199279785156,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1200,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99CN","iata":"","local":"99CN","name":"Banner Lassen Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Susanville","elevation_ft":4419,"latitude":40.437491,"longitude":-120.628728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":86,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99FA","iata":"","local":"99FA","name":"Halifax Hospital Emergency Helostop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Deltona","elevation_ft":65,"latitude":28.958386,"longitude":-81.255586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99FD","iata":"","local":"99FD","name":"Heli-Tech Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":10,"latitude":30.2113,"longitude":-85.691597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99FL","iata":"","local":"","name":"Madison County Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Lee","elevation_ft":150,"latitude":30.442756,"longitude":-83.311965,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99GA","iata":"","local":"99GA","name":"Curtis Parkway North Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Calhoun","elevation_ft":660,"latitude":34.45119857788086,"longitude":-84.93440246582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":220,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99HI","iata":"","local":"99HI","name":"Kawela Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Kaunakakai","elevation_ft":450,"latitude":21.079367,"longitude":-156.97007,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99IA","iata":"","local":"99IA","name":"Courtney's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Eddyville","elevation_ft":835,"latitude":41.21659851074219,"longitude":-92.77799987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99ID","iata":"","local":"99ID","name":"CAHC Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Challis","elevation_ft":5149,"latitude":44.511516,"longitude":-114.224542,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99ME","iata":"","local":"99ME","name":"Isle Au Haut Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Isle Au Haut","elevation_ft":55,"latitude":44.075318,"longitude":-68.632418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99KS","iata":"","local":"99KS","name":"Elm Creek Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Medicine Lodge","elevation_ft":1600,"latitude":37.410995,"longitude":-98.649306,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99LA","iata":"","local":"99LA","name":"Lawson Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Crowley","elevation_ft":25,"latitude":30.289400100708008,"longitude":-92.38899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99CO","iata":"","local":"99CO","name":"Rock Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":5660,"latitude":38.13639831542969,"longitude":-104.81500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99MN","iata":"","local":"99MN","name":"St Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Rochester","elevation_ft":1166,"latitude":44.019798278808594,"longitude":-92.48310089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":91,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99MO","iata":"","local":"99MO","name":"Parkland Bonne Terre Primary Care Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Bonne Terre","elevation_ft":850,"latitude":37.90840148925781,"longitude":-90.53350067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99MS","iata":"","local":"99MS","name":"Paradise Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Yazoo City","elevation_ft":250,"latitude":32.712408,"longitude":-90.294872,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99NA","iata":"","local":"99NA","name":"Fly I Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":593,"latitude":35.060633,"longitude":-80.845989,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99NC","iata":"","local":"99NC","name":"Streets Ferry Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"New Bern","elevation_ft":7,"latitude":35.21440124511719,"longitude":-77.11810302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99NJ","iata":"","local":"99NJ","name":"Atlantic County Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Northfield","elevation_ft":12,"latitude":39.37570190429688,"longitude":-74.53569793701172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99NR","iata":"","local":"99NR","name":"Tsali Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Bryson City","elevation_ft":2102,"latitude":35.391129,"longitude":-83.584592,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99NV","iata":"","local":"99NV","name":"Mesa View Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Mesquite","elevation_ft":1656,"latitude":36.810119,"longitude":-114.116905,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99OH","iata":"","local":"99OH","name":"Mercy Health Urbana Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Urbana","elevation_ft":1050,"latitude":40.10833,"longitude":-83.729174,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99OI","iata":"","local":"99OI","name":"Fostoria Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Fostoria","elevation_ft":768,"latitude":41.16279983520508,"longitude":-83.42379760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99OK","iata":"","local":"99OK","name":"Warren Cat Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1297,"latitude":35.4648017883,"longitude":-97.6042022705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99TN","iata":"","local":"99TN","name":"Haywood County Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Brownsville","elevation_ft":350,"latitude":35.60279846191406,"longitude":-89.23750305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99VA","iata":"","local":"","name":"Anderson Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Scottsville","elevation_ft":450,"latitude":37.815412,"longitude":-78.470106,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99WA","iata":"","local":"99WA","name":"Providence Medical Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1134,"latitude":46.596206,"longitude":-120.52223,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99XS","iata":"","local":"","name":"Sam Little International Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":900,"latitude":32.683498,"longitude":-97.805602,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3430,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99WY","iata":"","local":"99WY","name":"Xingu Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Wolf","elevation_ft":4340,"latitude":44.845798,"longitude":-107.277,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99UT","iata":"","local":"99UT","name":"Sundog Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Jensen","elevation_ft":4900,"latitude":40.35060119628906,"longitude":-109.4010009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AA9","iata":"","local":"9AA9","name":"Airkat Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Haines","elevation_ft":260,"latitude":59.403598,"longitude":-136.008511,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AA1","iata":"","local":"9AA1","name":"Elk Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":800,"latitude":61.68203,"longitude":-149.29073,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1250,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99TX","iata":"","local":"99TX","name":"Briggs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Catarina","elevation_ft":520,"latitude":28.30030059814453,"longitude":-99.56700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3450,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99TE","iata":"","local":"99TE","name":"Pritchard Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bells","elevation_ft":800,"latitude":33.60580062866211,"longitude":-96.41560363769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":75,"surface":"T"},{"id":"H1","length_ft":500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99XA","iata":"","local":"","name":"Skotz Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Briggs","elevation_ft":1200,"latitude":30.863976,"longitude":-98.003712,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK1","iata":"","local":"9AK1","name":"Stormy Hill Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":500,"latitude":61.63090133666992,"longitude":-149.23199462890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":3000,"width_ft":200,"surface":"W"},{"id":"02/20","length_ft":1700,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AL1","iata":"","local":"9AL1","name":"Brookwood Fed Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Hoover","elevation_ft":606,"latitude":33.420277,"longitude":-86.669444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AL2","iata":"","local":"9AL2","name":"Holt Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Tuscaloosa","elevation_ft":250,"latitude":33.256711,"longitude":-87.450491,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AL3","iata":"","local":"9AL3","name":"Weiss Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Leesburg","elevation_ft":570,"latitude":34.132261,"longitude":-85.795408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AL4","iata":"","local":"9AL4","name":"Henry Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Ohatchee","elevation_ft":509,"latitude":33.784866,"longitude":-86.050671,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AK4","iata":"","local":"9AK4","name":"Arctic Angel Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1009,"latitude":64.137685,"longitude":-145.830889,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK0","iata":"","local":"9AK0","name":"Sports Mans Paradise Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Tok","elevation_ft":3120,"latitude":62.51210021972656,"longitude":-143.23500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK3","iata":"","local":"9AK3","name":"Nikolai Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Tyonek","elevation_ft":30,"latitude":61.01390075683594,"longitude":-151.44900512695312,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4100,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK2","iata":"","local":"9AK2","name":"Kako Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Russian Mission","elevation_ft":300,"latitude":61.89889908,"longitude":-161.4380035,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AL5","iata":"","local":"9AL5","name":"Greene County Steam Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Forkland","elevation_ft":107,"latitude":32.601313,"longitude":-87.7835056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AL7","iata":"","local":"9AL7","name":"JK Farms LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Shorter","elevation_ft":287,"latitude":32.365276,"longitude":-85.811944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AL8","iata":"","local":"9AL8","name":"North Mississippi Medical Center-Hamilton Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Hamilton","elevation_ft":441,"latitude":34.127194,"longitude":-87.9908334,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AR9","iata":"","local":"","name":"Henry Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Cabot","elevation_ft":250,"latitude":34.887389,"longitude":-91.989486,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":21,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA1","iata":"","local":"9CA1","name":"SCE Barstow Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Barstow","elevation_ft":2240,"latitude":34.87516,"longitude":-116.995978,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA2","iata":"","local":"9CA2","name":"Pioneers Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Brawley","elevation_ft":-99,"latitude":32.958457,"longitude":-115.553106,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA3","iata":"JID","local":"9CA3","name":"Recreation and Conference Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"City of Industry","elevation_ft":701,"latitude":34.020472,"longitude":-117.927396,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA4","iata":"","local":"9CA4","name":"Hi-Desert Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Joshua Tree","elevation_ft":2652,"latitude":34.131312,"longitude":-116.275822,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA5","iata":"","local":"9CA5","name":"California Mart Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":434,"latitude":34.04029846191406,"longitude":-118.25599670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":185,"width_ft":87,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA6","iata":"","local":"","name":"North Valley Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Dyer","elevation_ft":4960,"latitude":37.869099,"longitude":-118.095001,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5300,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CA9","iata":"","local":"9CA9","name":"Santa Fe International Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Alhambra","elevation_ft":460,"latitude":34.081494,"longitude":-118.149842,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9AR1","iata":"","local":"9AR1","name":"Catlett Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Briggsville","elevation_ft":466,"latitude":34.933266,"longitude":-93.517234,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2661,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CL6","iata":"","local":"9CL6","name":"Children's Hospital Central California Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fresno","elevation_ft":354,"latitude":36.883262,"longitude":-119.80159,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H2","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CL8","iata":"","local":"9CL8","name":"Union Eva Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":79,"latitude":33.66170120239258,"longitude":-118.06199645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CN1","iata":"","local":"9CN1","name":"Hazel Hawkins Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Hollister","elevation_ft":397,"latitude":36.834811,"longitude":-121.386479,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CO0","iata":"","local":"9CO0","name":"Denver Police Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5350,"latitude":39.737098,"longitude":-104.992333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CO1","iata":"","local":"9CO1","name":"Deer Creek Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Littleton","elevation_ft":6228,"latitude":39.55609893798828,"longitude":-105.16200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CO4","iata":"","local":"9CO4","name":"Indian Hills/Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Indian Hills","elevation_ft":7310,"latitude":39.63669967651367,"longitude":-105.26699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CL0","iata":"","local":"9CL0","name":"Turlock Airpark","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Turlock","elevation_ft":100,"latitude":37.47079849243164,"longitude":-120.84400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2075,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CL9","iata":"","local":"9CL9","name":"Spezia Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Walnut Grove","elevation_ft":0,"latitude":38.21659851074219,"longitude":-121.53399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CL2","iata":"","local":"9CL2","name":"Christensen Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hollister","elevation_ft":380,"latitude":36.87160110473633,"longitude":-121.33699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CO3","iata":"","local":"9CO3","name":"Hubbard Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Gateway","elevation_ft":4670,"latitude":38.675444,"longitude":-108.988101,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CO2","iata":"","local":"9CO2","name":"Van Slyke Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Watkins","elevation_ft":5400,"latitude":39.69609833,"longitude":-104.4759979,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9FA2","iata":"","local":"9FA2","name":"Lakeside Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Belle Glade","elevation_ft":11,"latitude":26.723725,"longitude":-80.6719694,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FA3","iata":"","local":"9FA3","name":"HCA Florida Trinity Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Trinity","elevation_ft":37,"latitude":28.202422,"longitude":-82.66015,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CO5","iata":"","local":"9CO5","name":"Scherler Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Brandon","elevation_ft":4126,"latitude":38.576698303222656,"longitude":-102.43699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5280,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9FA8","iata":"","local":"9FA8","name":"Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":15,"latitude":25.66699981689453,"longitude":-80.33309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD1","iata":"","local":"9FD1","name":"Sacred Heart Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pensacola","elevation_ft":134,"latitude":30.474932,"longitude":-87.211831,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD3","iata":"","local":"9FD3","name":"HCA Florida Highlands Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sebring","elevation_ft":106,"latitude":27.465446,"longitude":-81.431882,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD4","iata":"","local":"9FD4","name":"Adventhealth Oviedo ER Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Oviedo","elevation_ft":43,"latitude":28.658003,"longitude":-81.239213,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD5","iata":"","local":"9FD5","name":"Thompson's Goinbroke Aero Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Citra","elevation_ft":85,"latitude":29.38660049438477,"longitude":-82.14289855957031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9CO7","iata":"","local":"9CO7","name":"Beaugh Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Kersey","elevation_ft":4770,"latitude":40.340599060059,"longitude":-104.57299804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":33,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CO9","iata":"","local":"9CO9","name":"Phylcon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Mesa","elevation_ft":6585,"latitude":39.127886,"longitude":-108.143302,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CO6","iata":"","local":"9CO6","name":"D Bar D Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6752,"latitude":39.28129959106445,"longitude":-104.572998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9FD7","iata":"","local":"9FD7","name":"Fort Atkinson Plantation Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Day","elevation_ft":90,"latitude":30.196482,"longitude":-83.311646,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD8","iata":"","local":"9FD8","name":"Wesh-Tv Channel 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Eatonville","elevation_ft":105,"latitude":28.612499237060547,"longitude":-81.3855972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FD9","iata":"","local":"9FD9","name":"Buddys Ag Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mc Alpin","elevation_ft":100,"latitude":30.1224002838,"longitude":-82.9679031372,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2560,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL0","iata":"","local":"9FL0","name":"Suwannee Belle Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":50,"latitude":30.09239959716797,"longitude":-83.08540344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2750,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL2","iata":"","local":"9FL2","name":"Saranac Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Havana","elevation_ft":230,"latitude":30.65250015258789,"longitude":-84.47470092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3150,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL3","iata":"","local":"9FL3","name":"Lake Josephine Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Sebring","elevation_ft":85,"latitude":27.396900177001957,"longitude":-81.42669677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":4600,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL4","iata":"","local":"9FL4","name":"Pasco County Mosquito Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Odessa","elevation_ft":40,"latitude":28.193424,"longitude":-82.620376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL5","iata":"","local":"9FL5","name":"Shady Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bell","elevation_ft":25,"latitude":29.81410026550293,"longitude":-82.92569732666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL6","iata":"","local":"9FL6","name":"Land South Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Mulberry","elevation_ft":136,"latitude":27.86639976501465,"longitude":-81.96939849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL8","iata":"","local":"9FL8","name":"Finlayson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Greenville","elevation_ft":150,"latitude":30.616600036621097,"longitude":-83.65239715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL9","iata":"","local":"9FL9","name":"Suwannee Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":94,"latitude":30.29129981994629,"longitude":-83.00399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9FL7","iata":"","local":"9FL7","name":"Oasis Ranger Station - US Government Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Everglades City","elevation_ft":10,"latitude":25.860072,"longitude":-81.034727,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2060,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9GA3","iata":"","local":"9GA3","name":"Young Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dawson","elevation_ft":401,"latitude":31.839759,"longitude":-84.481602,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GA6","iata":"","local":"9GA6","name":"Brookline - Meadowmere Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Milledgeville","elevation_ft":500,"latitude":33.099829,"longitude":-83.404784,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GA7","iata":"","local":"9GA7","name":"Dorminy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Fitzgerald","elevation_ft":363,"latitude":31.696807,"longitude":-83.260167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GA9","iata":"","local":"9GA9","name":"Deerfield Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Eatonton","elevation_ft":445,"latitude":33.218101501464844,"longitude":-83.31719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GE6","iata":"","local":"9GE6","name":"Linscott Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Washington","elevation_ft":532,"latitude":33.646167,"longitude":-82.65445,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GE8","iata":"","local":"9GE8","name":"Legacy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":857,"latitude":33.740278,"longitude":-84.511389,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GE9","iata":"","local":"","name":"National EMS Headquarters Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Conyers","elevation_ft":815,"latitude":33.649839,"longitude":-84.022172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9GA8","iata":"","local":"9GA8","name":"Chinaberry Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"East Dublin","elevation_ft":295,"latitude":32.693599700927734,"longitude":-82.8989028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9GA5","iata":"","local":"9GA5","name":"Lowell Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Americus","elevation_ft":475,"latitude":32.05820083618164,"longitude":-84.29019927978516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9GA0","iata":"","local":"9GA0","name":"Brown Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Zebulon","elevation_ft":864,"latitude":33.057098388671875,"longitude":-84.34239959716797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9GE7","iata":"","local":"9GE7","name":"Neely Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Covington","elevation_ft":720,"latitude":33.531389,"longitude":-83.791944,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9II5","iata":"","local":"9II5","name":"Rush Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Rushville","elevation_ft":980,"latitude":39.622512,"longitude":-85.443218,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":98,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9II7","iata":"","local":"9II7","name":"Parkview Dekalb Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Auburn","elevation_ft":900,"latitude":41.369694,"longitude":-85.035186,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IL1","iata":"","local":"9IL1","name":"Durand Ambulance Service Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Durand","elevation_ft":775,"latitude":42.43059921264648,"longitude":-89.32859802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IL3","iata":"","local":"","name":"William Quinton Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Heyworth","elevation_ft":715,"latitude":40.284076,"longitude":-89.027667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IL5","iata":"","local":"9IL5","name":"City of Highland Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Highland Park","elevation_ft":640,"latitude":42.198314,"longitude":-87.827027,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":140,"width_ft":140,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IL6","iata":"","local":"9IL6","name":"Weishaupt Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mackinaw","elevation_ft":650,"latitude":40.51309967041016,"longitude":-89.36730194091797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IL0","iata":"","local":"9IL0","name":"Villiger Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Henry","elevation_ft":500,"latitude":41.09450149536133,"longitude":-89.38619995117188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IL7","iata":"","local":"9IL7","name":"Black Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hillsdale","elevation_ft":580,"latitude":41.50979995727539,"longitude":-90.18209838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2250,"width_ft":75,"surface":"T"},{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9II8","iata":"","local":"9II8","name":"Francis Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Holton","elevation_ft":920,"latitude":39.08610153198242,"longitude":-85.37110137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9II4","iata":"","local":"9II4","name":"Cruzan Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Arcadia","elevation_ft":845,"latitude":40.17250061035156,"longitude":-85.9447021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IL2","iata":"","local":"9IL2","name":"Routh Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"St Joseph","elevation_ft":668,"latitude":40.06499862670898,"longitude":-88.02639770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2664,"width_ft":134,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IL8","iata":"","local":"9IL8","name":"Fairfield Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Fairfield","elevation_ft":450,"latitude":38.380465,"longitude":-88.375233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IL9","iata":"","local":"9IL9","name":"Silver Cross Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"New Lenox","elevation_ft":717,"latitude":41.545597,"longitude":-87.981986,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IN1","iata":"","local":"9IN1","name":"Franciscan Health Indianapolis Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":825,"latitude":39.647393,"longitude":-86.080041,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IN5","iata":"","local":"9IN5","name":"Dupont Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":828,"latitude":41.17440032958984,"longitude":-85.10780334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IS0","iata":"","local":"9IS0","name":"Cedar Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Nauvoo","elevation_ft":680,"latitude":40.54309844970703,"longitude":-91.33070373535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3408,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IS3","iata":"","local":"9IS3","name":"St Mary's Hospital - Decatur Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Decatur","elevation_ft":658,"latitude":39.8273010254,"longitude":-88.93090057370001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IS7","iata":"","local":"9IS7","name":"Black Hawk Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Geneseo","elevation_ft":630,"latitude":41.45560073852539,"longitude":-90.16819763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IS8","iata":"","local":"9IS8","name":"Gibson Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Gibson City","elevation_ft":782,"latitude":40.479655,"longitude":-88.369475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9IN9","iata":"","local":"9IN9","name":"Gessie Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Gessie","elevation_ft":635,"latitude":40.07780075073242,"longitude":-87.51529693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IN8","iata":"","local":"9IN8","name":"Green Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Churubusco","elevation_ft":890,"latitude":41.22919845581055,"longitude":-85.35810089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IN4","iata":"","local":"9IN4","name":"Bandmill Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Decker","elevation_ft":400,"latitude":38.534407,"longitude":-87.591714,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9JY9","iata":"","local":"9JY9","name":"Hazard ARH Regional Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Hazard","elevation_ft":1232,"latitude":37.278465,"longitude":-83.229097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KS0","iata":"","local":"9KS0","name":"Coffeyville Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Coffeyville","elevation_ft":750,"latitude":37.04169845581055,"longitude":-95.63909912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KS2","iata":"","local":"9KS2","name":"Shawnee Mission Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Merriam","elevation_ft":1030,"latitude":38.99580001831055,"longitude":-94.69110107421876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KT0","iata":"","local":"9KT0","name":"Norton Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":546,"latitude":38.248972,"longitude":-85.749472,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY0","iata":"","local":"9KY0","name":"Clay City Vol. Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Clay City","elevation_ft":667,"latitude":38.853083,"longitude":-83.917416,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY1","iata":"","local":"9KY1","name":"Mary Breckenridge ARH Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Hyden","elevation_ft":482,"latitude":37.167238,"longitude":-83.400425,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY2","iata":"","local":"9KY2","name":"Air Evac 92 Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Hardinsburg","elevation_ft":691,"latitude":37.761979,"longitude":-86.452553,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY3","iata":"","local":"9KY3","name":"Montgomery County Fire Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Mount Sterling","elevation_ft":1030,"latitude":38.063139,"longitude":-83.957319,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY4","iata":"","local":"9KY4","name":"TEC Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"London","elevation_ft":1190,"latitude":37.023019,"longitude":-84.12225,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":650,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KS1","iata":"","local":"9KS1","name":"Hartland Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wellsville","elevation_ft":993,"latitude":38.6594444,"longitude":-95.0922222,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9KS6","iata":"","local":"9KS6","name":"Lundgren Hereford Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Gove","elevation_ft":2600,"latitude":38.808549,"longitude":-100.570478,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9KS4","iata":"","local":"9KS4","name":"Rose Port Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ionia","elevation_ft":1500,"latitude":39.636395,"longitude":-98.359802,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9KY5","iata":"","local":"9KY5","name":"Norton Brownsboro Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":679,"latitude":38.316176,"longitude":-85.576217,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY7","iata":"","local":"9KY7","name":"Milton Fire Rescue Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Bedford","elevation_ft":928,"latitude":38.65708,"longitude":-85.317442,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9KY8","iata":"","local":"9KY8","name":"Trigg County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Cadiz","elevation_ft":502,"latitude":36.86636,"longitude":-87.821129,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LA0","iata":"","local":"","name":"Air Logistics (Belle Chasse) Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Belle Chasse","elevation_ft":1,"latitude":29.841,"longitude":-90.043999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LA4","iata":"","local":"9LA4","name":"Texaco Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Morgan City","elevation_ft":5,"latitude":29.686899185180664,"longitude":-91.17179870605467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LA7","iata":"","local":"","name":"Air Logistics Amelia Base Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Morgan City","elevation_ft":4,"latitude":29.668301,"longitude":-91.096802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LA8","iata":"","local":"9LA8","name":"Cornerstone Chemical Company Helistop","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"South Kenner","elevation_ft":9,"latitude":29.958504,"longitude":-90.274551,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LL5","iata":"","local":"9LL5","name":"Tommy's Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Edinburg","elevation_ft":595,"latitude":39.651100158691406,"longitude":-89.45860290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LL8","iata":"","local":"9LL8","name":"Refreshment Services Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Decatur","elevation_ft":680,"latitude":39.86669921875,"longitude":-88.88529968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LL2","iata":"","local":"9LL2","name":"Hepp Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Cutler","elevation_ft":505,"latitude":38.03369903564453,"longitude":-89.57929992675781,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1780,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9LA9","iata":"","local":"9LA9","name":"Skyline Airpark","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Amite","elevation_ft":200,"latitude":30.73479,"longitude":-90.44458,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9LA6","iata":"","local":"9LA6","name":"Chandler Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":82,"latitude":31.306801,"longitude":-92.611504,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9LS1","iata":"","local":"9LS1","name":"Bayou Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Pioneer","elevation_ft":85,"latitude":32.699507,"longitude":-91.386638,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":180,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9LS5","iata":"","local":"9LS5","name":"Red Beard Dusting Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Tallulah","elevation_ft":86,"latitude":32.303812,"longitude":-91.128674,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MA8","iata":"","local":"9MA8","name":"Wayne West Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Carver","elevation_ft":90,"latitude":41.8468017578125,"longitude":-70.76090240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI0","iata":"","local":"9MI0","name":"St Joseph Mercy Ann Arbor Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ypsilanti","elevation_ft":837,"latitude":42.264027,"longitude":-83.653692,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI3","iata":"","local":"9MI3","name":"Amway Downtown Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":670,"latitude":42.965737,"longitude":-85.674313,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI4","iata":"","local":"","name":"Thorn Health Center Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Hudson","elevation_ft":930,"latitude":41.862259,"longitude":-84.359677,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI7","iata":"","local":"9MI7","name":"Glen Oaks Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Novi","elevation_ft":920,"latitude":42.4900016784668,"longitude":-83.46520233154297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI8","iata":"","local":"9MI8","name":"Jott Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Utica","elevation_ft":630,"latitude":42.6609001159668,"longitude":-82.99629974365234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI9","iata":"","local":"9MI9","name":"Bronson Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":786,"latitude":42.2869987487793,"longitude":-85.5813980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":96,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MN0","iata":"","local":"9MN0","name":"Carey Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Hibbing","elevation_ft":1351,"latitude":47.41830062866211,"longitude":-92.82769775390624,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":2500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MI2","iata":"","local":"9MI2","name":"Newport Woods Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Newport","elevation_ft":593,"latitude":41.98789978027344,"longitude":-83.30760192871094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2550,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MI5","iata":"","local":"9MI5","name":"Grass Roots STOLport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Millington","elevation_ft":780,"latitude":43.23780059814453,"longitude":-83.52439880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1320,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MN2","iata":"","local":"9MN2","name":"Wabana Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Grand Rapids","elevation_ft":1319,"latitude":47.41859817504883,"longitude":-93.518798828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":6000,"width_ft":500,"surface":"W"},{"id":"16W/34W","length_ft":12000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MN4","iata":"","local":"9MN4","name":"Fairview Riverside Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Minneapolis","elevation_ft":987,"latitude":44.967184,"longitude":-93.23745,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MN7","iata":"","local":"9MN7","name":"Watonwan Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"St James","elevation_ft":1078,"latitude":43.97999954223633,"longitude":-94.6168975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MN9","iata":"","local":"","name":"Tofte Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Tofte","elevation_ft":790,"latitude":47.588003,"longitude":-90.8235,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":64,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MO1","iata":"","local":"9MO1","name":"Missouri Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":630,"latitude":38.63529968261719,"longitude":-90.4459991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MO2","iata":"","local":"9MO2","name":"Fitzgibbon Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Marshall","elevation_ft":744,"latitude":39.11249923706055,"longitude":-93.18910217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MN5","iata":"","local":"9MN5","name":"Janssen Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Barnesville","elevation_ft":1100,"latitude":46.71189880371094,"longitude":-96.35150146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MN6","iata":"","local":"9MN6","name":"Merill L Harris Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Jordan","elevation_ft":800,"latitude":44.644216,"longitude":-93.700762,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MO3","iata":"","local":"9MO3","name":"Lawlor-Justus Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Faucett","elevation_ft":1100,"latitude":39.641700744628906,"longitude":-94.8135986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MN3","iata":"","local":"9MN3","name":"Barnesville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Barnesville","elevation_ft":980,"latitude":46.66519927978516,"longitude":-96.44120025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2780,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MO5","iata":"","local":"9MO5","name":"Wakefield Wings Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sparta","elevation_ft":1380,"latitude":37.061199,"longitude":-93.099297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MS7","iata":"","local":"9MS7","name":"Martin Heliport Area","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":5,"latitude":30.356515,"longitude":-88.507352,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":95,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MU4","iata":"","local":"9MU4","name":"Homestead Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Grain Valley","elevation_ft":838,"latitude":39.041357,"longitude":-94.199513,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NC1","iata":"","local":"9NC1","name":"Atrium Health Stanly Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Albemarle","elevation_ft":650,"latitude":35.364665,"longitude":-80.193071,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MT9","iata":"","local":"9MT9","name":"Pierces Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Belgrade","elevation_ft":4450,"latitude":45.79041,"longitude":-111.124735,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC3","iata":"","local":"9NC3","name":"Edwards Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Monroe","elevation_ft":640,"latitude":35.07080078125,"longitude":-80.56639862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NC4","iata":"","local":"","name":"Jiles Field","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Gates","elevation_ft":75,"latitude":36.508843,"longitude":-76.665387,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NC5","iata":"","local":"9NC5","name":"Saint Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Columbus","elevation_ft":1100,"latitude":35.2400016784668,"longitude":-82.21109771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9MT0","iata":"","local":"9MT0","name":"Pale Morning Dun Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Fort Smith","elevation_ft":3220,"latitude":45.402953,"longitude":-107.774616,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3550,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NA4","iata":"","local":"9NA4","name":"Bodmer Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Kenmare","elevation_ft":1885,"latitude":48.66609954833984,"longitude":-101.89099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MO6","iata":"","local":"9MO6","name":"Ivy Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Stover","elevation_ft":690,"latitude":38.19309997558594,"longitude":-92.99240112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MS9","iata":"","local":"9MS9","name":"Beets Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Columbia","elevation_ft":238,"latitude":31.202544,"longitude":-89.749755,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC6","iata":"","local":"","name":"Sandy Run Acres Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Maco","elevation_ft":60,"latitude":34.27881,"longitude":-78.16122,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NE8","iata":"","local":"9NE8","name":"Brosius Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Stapleton","elevation_ft":3010,"latitude":41.400055,"longitude":-100.478296,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NE6","iata":"","local":"","name":"Bates Airpark","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1250,"latitude":41.338299,"longitude":-96.088529,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2125,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":2004,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NJ1","iata":"","local":"9NJ1","name":"Bound Brook Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bound Brook","elevation_ft":65,"latitude":40.56449890136719,"longitude":-74.55490112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NJ2","iata":"","local":"9NJ2","name":"Bound Brook Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bound Brook","elevation_ft":32,"latitude":40.55649948120117,"longitude":-74.5624008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NE3","iata":"","local":"9NE3","name":"Davis Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hyannis","elevation_ft":3768,"latitude":42.189736,"longitude":-101.786013,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2900,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9ND8","iata":"","local":"9ND8","name":"Hinkle Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Cavalier","elevation_ft":908,"latitude":48.78549957275391,"longitude":-97.67230224609376,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NE4","iata":"","local":"9NE4","name":"Johnston Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lindsay","elevation_ft":1800,"latitude":41.70330047607422,"longitude":-97.74449920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NE1","iata":"","local":"9NE1","name":"El-Co Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Brule","elevation_ft":3650,"latitude":41.14440155029297,"longitude":-101.927001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC7","iata":"","local":"9NC7","name":"Willow Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mt Pleasant","elevation_ft":572,"latitude":35.36970138549805,"longitude":-80.44000244140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC8","iata":"","local":"9NC8","name":"Eagles Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Pittsboro","elevation_ft":430,"latitude":35.6869010925293,"longitude":-79.21880340576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NJ3","iata":"","local":"9NJ3","name":"At&T Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Basking Ridge","elevation_ft":280,"latitude":40.71680068969727,"longitude":-74.54959869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NJ4","iata":"","local":"9NJ4","name":"Robert Wood Johnson University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":199,"latitude":40.495813,"longitude":-74.449972,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NJ5","iata":"","local":"","name":"Stallone Airport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Harrisonville","elevation_ft":80,"latitude":39.680099,"longitude":-75.252403,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1350,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NJ9","iata":"","local":"","name":"Ash Personal Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Loveladies","elevation_ft":5,"latitude":39.715403,"longitude":-74.131203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NK2","iata":"","local":"9NK2","name":"UHS Chenango Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Norwich","elevation_ft":1090,"latitude":42.542188,"longitude":-75.526859,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NR8","iata":"","local":"9NR8","name":"Buie Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Red Springs","elevation_ft":203,"latitude":34.793333,"longitude":-79.193611,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2780,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NR9","iata":"","local":"9NR9","name":"210 Investors Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Castle Hayne","elevation_ft":28,"latitude":34.358889,"longitude":-77.860556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":104,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NJ8","iata":"","local":"9NJ8","name":"High Meadow Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Blairstown","elevation_ft":630,"latitude":40.89565,"longitude":-75.00359,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NK4","iata":"","local":"9NK4","name":"Greig Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Red Hook","elevation_ft":215,"latitude":42.024318,"longitude":-73.856292,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":35,"surface":"T"},{"id":"06/24","length_ft":3400,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NR7","iata":"","local":"9NR7","name":"Triple F Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Salemburg","elevation_ft":148,"latitude":35.018333,"longitude":-78.565833,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NR4","iata":"","local":"9NR4","name":"Wolf Pit Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mount Pleasant","elevation_ft":535,"latitude":35.355102,"longitude":-80.431461,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NY0","iata":"","local":"9NY0","name":"Bumblebee Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Slate Hill","elevation_ft":494,"latitude":41.391841,"longitude":-74.472107,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY1","iata":"","local":"9NY1","name":"Wilson Memorial Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Johnson City","elevation_ft":911,"latitude":42.113927,"longitude":-75.957742,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY2","iata":"","local":"9NY2","name":"Westfield Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Westfield","elevation_ft":756,"latitude":42.329498291015625,"longitude":-79.57060241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY3","iata":"","local":"9NY3","name":"Susquehanna Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Owego","elevation_ft":884,"latitude":42.098944,"longitude":-76.22401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY5","iata":"","local":"","name":"Norman Kurrass Contractor Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Yaphank","elevation_ft":30,"latitude":40.800567,"longitude":-72.918055,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY8","iata":"","local":"9NY8","name":"Thomson Industries Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Port Washington","elevation_ft":20,"latitude":40.84230041503906,"longitude":-73.70120239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY9","iata":"","local":"9NY9","name":"Poughkeepsie Main Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Poughkeepsie","elevation_ft":100,"latitude":41.6572827552,"longitude":-73.935649395,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OA2","iata":"","local":"9OA2","name":"Hueston Woods Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Oxford","elevation_ft":920,"latitude":39.582801818847656,"longitude":-84.76270294189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OA6","iata":"","local":"9OA6","name":"Burr Oak Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Glouster","elevation_ft":820,"latitude":39.53030014038086,"longitude":-82.0333023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9NY7","iata":"","local":"9NY7","name":"Hart Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Broadalbin","elevation_ft":925,"latitude":43.032452,"longitude":-74.151013,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OA9","iata":"","local":"9OA9","name":"Bender Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bellville","elevation_ft":1140,"latitude":40.62139892578125,"longitude":-82.53379821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OA5","iata":"","local":"9OA5","name":"Buckeye Executive Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hebron","elevation_ft":914,"latitude":39.961215,"longitude":-82.540723,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2764,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OG1","iata":"","local":"9OG1","name":"Barrigada Readiness Center Heliport","category":"heliport","iso_country":"GU","iso_region":"GU-U-A","municipality":"Barrigada","elevation_ft":311,"latitude":13.475158,"longitude":144.815983,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OH3","iata":"","local":"9OH3","name":"C.C.A. Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Loveland","elevation_ft":810,"latitude":39.28340148925781,"longitude":-84.29769897460938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OH4","iata":"","local":"","name":"Richards Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Elyria","elevation_ft":690,"latitude":41.4039,"longitude":-82.106499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OH6","iata":"","local":"","name":"Weaver Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Findlay","elevation_ft":795,"latitude":41.035301,"longitude":-83.569001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OH9","iata":"","local":"","name":"Forest Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Forest","elevation_ft":890,"latitude":40.828701,"longitude":-83.513802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OI1","iata":"","local":"9OI1","name":"Dice's Personal Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Maumee","elevation_ft":630,"latitude":41.60048,"longitude":-83.689698,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OI4","iata":"","local":"9OI4","name":"Quail Lakes Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Wilmington","elevation_ft":1057,"latitude":39.45479965209961,"longitude":-83.78130340576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OI5","iata":"","local":"9OI5","name":"Transportation Research Center of Ohio Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"East Liberty","elevation_ft":1100,"latitude":40.308101654052734,"longitude":-83.54170227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3500,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OH7","iata":"","local":"9OH7","name":"Lutz Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Findlay","elevation_ft":808,"latitude":40.961700439453125,"longitude":-83.59519958496094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OH2","iata":"","local":"9OH2","name":"Toussaint Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Elmore","elevation_ft":610,"latitude":41.51559829711914,"longitude":-83.30580139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OH1","iata":"","local":"9OH1","name":"Haar Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Elmore","elevation_ft":617,"latitude":41.455174,"longitude":-83.264798,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OI9","iata":"","local":"9OI9","name":"Riverside Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":746,"latitude":40.03120040893555,"longitude":-83.03489685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK0","iata":"","local":"9OK0","name":"Governor's Mansion Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1200,"latitude":35.49449920654297,"longitude":-97.52110290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK1","iata":"","local":"9OK1","name":"OMH Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1240,"latitude":35.481196,"longitude":-97.502711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H2","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H3","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H4","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK2","iata":"","local":"9OK2","name":"Pawnee Municipal Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Pawnee","elevation_ft":925,"latitude":36.33340072631836,"longitude":-96.80030059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK4","iata":"","local":"","name":"Vo-Tech Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":676,"latitude":36.091801,"longitude":-95.216904,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2641,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK6","iata":"","local":"9OK6","name":"Community Hospital Lakeview Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Eufaula","elevation_ft":640,"latitude":35.3109016418457,"longitude":-95.5907974243164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK8","iata":"","local":"","name":"Central Park Helistop","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1110,"latitude":35.533383,"longitude":-97.500604,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1750,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OK9","iata":"","local":"","name":"Strang Airpark","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Short","elevation_ft":690,"latitude":35.544498,"longitude":-94.486297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OR1","iata":"","local":"9OR1","name":"Shaniko Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Shaniko","elevation_ft":3300,"latitude":45.00289916992188,"longitude":-120.73999786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OK3","iata":"","local":"9OK3","name":"Flying Eagle Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bartlesville","elevation_ft":690,"latitude":36.70370101928711,"longitude":-95.84049987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OK7","iata":"","local":"9OK7","name":"Cimarron Strip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Jennings","elevation_ft":920,"latitude":36.184799194336,"longitude":-96.550300598145,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OR2","iata":"","local":"9OR2","name":"Reforestation Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":410,"latitude":44.86819839477539,"longitude":-123.02300262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OR3","iata":"","local":"9OR3","name":"Sky Lakes Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Klamath Falls","elevation_ft":4420,"latitude":42.25400161739999,"longitude":-121.783996582,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OR5","iata":"","local":"9OR5","name":"Portland Adventist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":322,"latitude":45.51399994,"longitude":-122.5579987,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OR6","iata":"","local":"9OR6","name":"Oregon Health Sciences University Emerg Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":540,"latitude":45.4991281091,"longitude":-122.685334682,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":59,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9OR7","iata":"","local":"9OR7","name":"Fishback Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Banks","elevation_ft":200,"latitude":45.603889,"longitude":-123.078611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PA1","iata":"","local":"","name":"Carbondale-Clifford Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Carbondale","elevation_ft":1400,"latitude":41.652223,"longitude":-75.581446,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PA3","iata":"","local":"","name":"Meadow Strip Ultralightport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Richlandtown","elevation_ft":499,"latitude":40.475142,"longitude":-75.309981,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1295,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PA4","iata":"","local":"","name":"Strawbridge & Clothier 8th & Market Helistop","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":300,"latitude":39.951415,"longitude":-75.154037,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PA6","iata":"","local":"9PA6","name":"State Police Area Six Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":100,"latitude":40.03340148925781,"longitude":-75.24960327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PA2","iata":"","local":"9PA2","name":"Old Plains Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Pennsburg","elevation_ft":660,"latitude":40.388566,"longitude":-75.441811,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OR4","iata":"","local":"9OR4","name":"King's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Milton/Freewater","elevation_ft":950,"latitude":45.93370056152344,"longitude":-118.447998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1500,"width_ft":36,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OR8","iata":"","local":"9OR8","name":"Wooldridge Agstrip Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Albany","elevation_ft":205,"latitude":44.73260116577149,"longitude":-123.05599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1820,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9PA8","iata":"","local":"9PA8","name":"Thomas Jefferson University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":253,"latitude":39.94896,"longitude":-75.158688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PA9","iata":"","local":"9PA9","name":"Lankenau Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":250,"latitude":39.98789978027344,"longitude":-75.26069641113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PN2","iata":"","local":"9PN2","name":"Childrens Hospital Of Philadelphia Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":203,"latitude":39.947927,"longitude":-75.193981,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PN5","iata":"","local":"9PN5","name":"Franklin Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wilkes Barre","elevation_ft":710,"latitude":41.21979904174805,"longitude":-75.88099670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":140,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PN9","iata":"","local":"9PN9","name":"Perin Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pen Argyl","elevation_ft":740,"latitude":40.84700012207031,"longitude":-75.2437973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PR1","iata":"","local":"9PR1","name":"Cesar Castillo LLC Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Guaynabo","elevation_ft":236,"latitude":18.330966,"longitude":-66.098315,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PS0","iata":"","local":"9PS0","name":"Zokaites Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wexford","elevation_ft":1268,"latitude":40.60900115966797,"longitude":-80.03299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PS3","iata":"","local":"9PS3","name":"Doylestown Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Doylestown","elevation_ft":325,"latitude":40.30709838867188,"longitude":-75.14659881591797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PS4","iata":"","local":"9PS4","name":"Pheasant Run Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Easton-Forks Township","elevation_ft":400,"latitude":40.7495002746582,"longitude":-75.21019744873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PS5","iata":"","local":"9PS5","name":"Reading Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"West Reading","elevation_ft":320,"latitude":40.33060073852539,"longitude":-75.95020294189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PS7","iata":"","local":"9PS7","name":"W S Lee & Sons Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Duncansville","elevation_ft":1104,"latitude":40.44720077514648,"longitude":-78.42890167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9PN8","iata":"","local":"9PN8","name":"Malinchak Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Carbondale","elevation_ft":1700,"latitude":41.6250991821,"longitude":-75.53299713130001,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9PS9","iata":"","local":"9PS9","name":"St Mary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Langhorne","elevation_ft":150,"latitude":40.20220184326172,"longitude":-74.92289733886719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TA0","iata":"","local":"","name":"Aero Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Pflugerville","elevation_ft":800,"latitude":30.4501,"longitude":-97.663902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TA4","iata":"","local":"9TA4","name":"Placid Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":1090,"latitude":32.78179931640625,"longitude":-96.79810333251952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TA6","iata":"","local":"9TA6","name":"Buccaneer Shore Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Freeport","elevation_ft":5,"latitude":28.976900100708008,"longitude":-95.31739807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TA7","iata":"","local":"9TA7","name":"U of Texas Medical Branch Emergency Room Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":35,"latitude":29.312433,"longitude":-94.779149,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TA9","iata":"","local":"9TA9","name":"Delta Mechanical Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":73,"latitude":29.85219955444336,"longitude":-95.40850067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9SD7","iata":"","local":"9SD7","name":"Beaman Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Selby","elevation_ft":1960,"latitude":45.47499847412109,"longitude":-100.03500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":3000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9SD8","iata":"","local":"9SD8","name":"Oakleaf Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hartford","elevation_ft":1625,"latitude":43.582434,"longitude":-96.94502,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TE0","iata":"","local":"9TE0","name":"Twin Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Scurry","elevation_ft":340,"latitude":32.392338,"longitude":-96.404329,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TE2","iata":"","local":"9TE2","name":"JL Bar Ranch","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sonora","elevation_ft":2344,"latitude":30.568731,"longitude":-100.444462,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5301,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TA1","iata":"","local":"9TA1","name":"Hilltop Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":762,"latitude":29.659882,"longitude":-98.139153,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TA3","iata":"","local":"9TA3","name":"Rogers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crosby","elevation_ft":38,"latitude":29.87299919128418,"longitude":-94.9896011352539,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TE6","iata":"","local":"9TE6","name":"Rocky Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"La Grange","elevation_ft":390,"latitude":29.921611,"longitude":-96.800966,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2984,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TE7","iata":"","local":"9TE7","name":"Flying G H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paige","elevation_ft":455,"latitude":30.245278,"longitude":-97.082778,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN0","iata":"","local":"9TN0","name":"Summit Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":530,"latitude":36.17779922485352,"longitude":-86.6082992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN2","iata":"","local":"9TN2","name":"Meadowlark Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Camden","elevation_ft":460,"latitude":36.16389846801758,"longitude":-88.2052993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN3","iata":"","local":"","name":"Mehrhoff Field","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Rossville","elevation_ft":426,"latitude":35.114924,"longitude":-89.524423,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN6","iata":"","local":"9TN6","name":"Performance Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Arlington","elevation_ft":280,"latitude":35.28860092163086,"longitude":-89.67420196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN7","iata":"","local":"9TN7","name":"Baskin Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Covington","elevation_ft":400,"latitude":35.534400939941406,"longitude":-89.73500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN1","iata":"","local":"9TN1","name":"Versailles Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Eagleville","elevation_ft":855,"latitude":35.72999954223633,"longitude":-86.53780364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TN4","iata":"","local":"9TN4","name":"Foreman Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Springfield","elevation_ft":705,"latitude":36.45769882202149,"longitude":-86.94599914550781,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TN5","iata":"","local":"9TN5","name":"Askey Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Culleoka","elevation_ft":810,"latitude":35.45830154418945,"longitude":-86.95690155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1650,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TN8","iata":"","local":"9TN8","name":"Dollar General Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Goodlettsville","elevation_ft":736,"latitude":36.31330108642578,"longitude":-86.69860076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS0","iata":"","local":"9TS0","name":"Diamond E Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sealy","elevation_ft":115,"latitude":29.78610038757324,"longitude":-96.04329681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS1","iata":"","local":"9TS1","name":"One O'Connor Plaza-Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Victoria","elevation_ft":277,"latitude":28.80109977722168,"longitude":-97.00579833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS2","iata":"","local":"9TS2","name":"Cig 816 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Wallisville","elevation_ft":23,"latitude":29.861299514770508,"longitude":-94.70099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS3","iata":"","local":"","name":"Simaron Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waller","elevation_ft":310,"latitude":30.1483,"longitude":-95.966904,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS4","iata":"","local":"9TS4","name":"Ladue Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Wylie","elevation_ft":520,"latitude":33.007287,"longitude":-96.506438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":329,"width_ft":284,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS5","iata":"","local":"","name":"Wilford Hall Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":762,"latitude":29.397377,"longitude":-98.624175,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS7","iata":"","local":"9TS7","name":"U of Texas Medical Branch Ewing Hall Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":16,"latitude":29.313251,"longitude":-94.778385,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS8","iata":"","local":"9TS8","name":"Dallas Rehabilitation Institute Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":428,"latitude":32.84870147705078,"longitude":-96.87889862060548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TS9","iata":"","local":"9TS9","name":"Toyota of Dallas Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":487,"latitude":32.907901763916016,"longitude":-96.8906021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TX0","iata":"","local":"9TX0","name":"Houston Police Department Southeast Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":40,"latitude":29.657868,"longitude":-95.319099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TN9","iata":"","local":"9TN9","name":"Toy Box Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lebanon","elevation_ft":630,"latitude":36.01940155029297,"longitude":-86.28810119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TX1","iata":"","local":"9TX1","name":"Bar S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Giddings","elevation_ft":465,"latitude":30.143299102783203,"longitude":-96.8561019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TX8","iata":"","local":"","name":"Infomart Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":420,"latitude":32.802907,"longitude":-96.821112,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9VA2","iata":"","local":"9VA2","name":"Inova Alexandria Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Alexandria","elevation_ft":254,"latitude":38.822362,"longitude":-77.104278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TX6","iata":"","local":"9TX6","name":"Beggs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Post","elevation_ft":2355,"latitude":33.17509841918945,"longitude":-101.02400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9VA5","iata":"","local":"9VA5","name":"Bluegrass Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Bluemont","elevation_ft":1720,"latitude":39.06329,"longitude":-77.890025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9VA6","iata":"","local":"","name":"Old Louise Obici Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Suffolk","elevation_ft":40,"latitude":36.756056,"longitude":-76.585028,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9TX3","iata":"","local":"9TX3","name":"Horan Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Plainview","elevation_ft":3339,"latitude":34.175167,"longitude":-101.638126,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2560,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9VA1","iata":"","local":"9VA1","name":"Holly Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bohannon","elevation_ft":12,"latitude":37.405142,"longitude":-76.388272,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TX7","iata":"","local":"9TX7","name":"Hitex Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pottsboro","elevation_ft":700,"latitude":33.839975,"longitude":-96.670544,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TX4","iata":"","local":"9TX4","name":"Flying H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Liberty Hill","elevation_ft":1000,"latitude":30.65959930419922,"longitude":-97.91110229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TX5","iata":"","local":"9TX5","name":"Camp Bullis ALS Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":1158,"latitude":29.744699,"longitude":-98.537201,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3600,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9VA7","iata":"","local":"","name":"Fire Station No. 14 Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Chester","elevation_ft":169,"latitude":37.3549,"longitude":-77.415497,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":4000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9VA8","iata":"","local":"9VA8","name":"Innsbrook Pavilion Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":250,"latitude":37.64879989624024,"longitude":-77.58499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9VA9","iata":"","local":"9VA9","name":"Southampton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Franklin","elevation_ft":44,"latitude":36.69929885864258,"longitude":-76.93830108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA0","iata":"","local":"9WA0","name":"Boeing Plant 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":17,"latitude":47.536747,"longitude":-122.313441,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA1","iata":"","local":"9WA1","name":"Quincy Valley Hospital Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Quincy","elevation_ft":1260,"latitude":47.230501,"longitude":-119.867674,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA2","iata":"","local":"9WA2","name":"Odessa Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Odessa","elevation_ft":1700,"latitude":47.331446,"longitude":-118.682299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA5","iata":"","local":"9WA5","name":"Mid-Valley Hospital EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Omak","elevation_ft":800,"latitude":48.397229,"longitude":-119.547837,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA6","iata":"","local":"9WA6","name":"Puget Sound Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":670,"latitude":47.60847,"longitude":-122.33573,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA8","iata":"","local":"9WA8","name":"Mason General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Shelton","elevation_ft":278,"latitude":47.226578,"longitude":-123.114027,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA9","iata":"","local":"9WA9","name":"Naval Submarine Base Bangor Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Silverdale","elevation_ft":285,"latitude":47.7036031255,"longitude":-122.714806795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WA7","iata":"","local":"9WA7","name":"Albritton Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Buckley","elevation_ft":530,"latitude":47.217382,"longitude":-122.133036,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WA4","iata":"","local":"9WA4","name":"Piper Canyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Goldendale","elevation_ft":1610,"latitude":45.810391,"longitude":-120.952851,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2100,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI7","iata":"","local":"9WI7","name":"Cumberland Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Cumberland","elevation_ft":1335,"latitude":45.540322,"longitude":-92.053489,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9WI8","iata":"","local":"9WI8","name":"Fletcher Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Spring Prairie","elevation_ft":980,"latitude":42.69390106201172,"longitude":-88.37930297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI1","iata":"","local":"9WI1","name":"Black Otter Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hortonville","elevation_ft":805,"latitude":44.32939910888672,"longitude":-88.62359619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WN2","iata":"","local":"9WN2","name":"Voyager Village Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Webster","elevation_ft":1020,"latitude":45.96659851074219,"longitude":-92.14600372314452,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WN1","iata":"","local":"9WN1","name":"Courtney Plummer Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Winneconne","elevation_ft":758,"latitude":44.10689926147461,"longitude":-88.68399810791016,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3403,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI9","iata":"","local":"9WI9","name":"Carlson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Superior","elevation_ft":680,"latitude":46.62080001831055,"longitude":-92.08190155029295,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI5","iata":"","local":"9WI5","name":"Tamarack Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Palmyra","elevation_ft":850,"latitude":42.82830047607422,"longitude":-88.57450103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI4","iata":"","local":"9WI4","name":"Faken Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"New Berlin","elevation_ft":904,"latitude":42.97859954833984,"longitude":-88.13480377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WN5","iata":"","local":"9WN5","name":"Lodi Lakeland Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lodi","elevation_ft":844,"latitude":43.326674,"longitude":-89.522733,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1875,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WY0","iata":"","local":"9WY0","name":"Sheridan Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Sheridan","elevation_ft":3880,"latitude":44.807664,"longitude":-106.975449,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9XA1","iata":"","local":"9XA1","name":"ESD 100 Training Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":91,"latitude":29.700792,"longitude":-95.669669,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9XS7","iata":"","local":"9XS7","name":"Reeder Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lone Oak","elevation_ft":530,"latitude":32.94710159301758,"longitude":-95.95860290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9XS9","iata":"","local":"9XS9","name":"Rancho Verde Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brenham","elevation_ft":275,"latitude":30.27307,"longitude":-96.44071,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1334,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA01","iata":"","local":"AA01","name":"West Beaver Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":215,"latitude":61.584961,"longitude":-149.846531,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":3800,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA02","iata":"","local":"AA02","name":"Horseshoe Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":140,"latitude":61.571481,"longitude":-149.924111,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":5500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA03","iata":"","local":"AA03","name":"Central Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Deadhorse","elevation_ft":10,"latitude":70.171228,"longitude":-146.258517,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA04","iata":"","local":"AA04","name":"Viking Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":72,"latitude":61.224775,"longitude":-149.839094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9XS6","iata":"","local":"9XS6","name":"Sudan Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sudan","elevation_ft":3769,"latitude":34.0531005859375,"longitude":-102.52200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2900,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9XS4","iata":"","local":"9XS4","name":"Mc Keon Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Denison","elevation_ft":750,"latitude":33.7342987061,"longitude":-96.626701355,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9XA4","iata":"","local":"9XA4","name":"Chimera Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Venus","elevation_ft":649,"latitude":32.355752,"longitude":-97.039822,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1966,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9XS1","iata":"","local":"9XS1","name":"The Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hill","elevation_ft":570,"latitude":31.835599899291992,"longitude":-96.95279693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3044,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA07","iata":"","local":"AA07","name":"Saddleback Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":150,"latitude":61.521791,"longitude":-149.926633,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA08","iata":"","local":"AA08","name":"Alaska Heliworx Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":250,"latitude":61.594722,"longitude":-149.153889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA11","iata":"","local":"AA11","name":"Misty Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":350,"latitude":61.550739,"longitude":-149.676131,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":1950,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA12","iata":"","local":"AA12","name":"Dove Island Lodge Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Sitka","elevation_ft":0,"latitude":57.0408333,"longitude":-135.2955556,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":2500,"width_ft":900,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA13","iata":"","local":"AA13","name":"Northwest Hospital/Sahuarita Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Sahuarita","elevation_ft":2831,"latitude":31.95624,"longitude":-110.985491,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA14","iata":"","local":"AA14","name":"Toolik Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Toolik Field Station","elevation_ft":2405,"latitude":68.628168,"longitude":-149.589,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":140,"width_ft":85,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA22","iata":"","local":"AA22","name":"Delta Daves Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1070,"latitude":64.130758,"longitude":-145.805054,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2350,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA16","iata":"","local":"AA16","name":"Treasure Chest Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":125,"latitude":60.627657,"longitude":-151.294679,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1370,"width_ft":100,"surface":"G"},{"id":"16/34","length_ft":2700,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA35","iata":"","local":"AA35","name":"35 Mile Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Haines","elevation_ft":690,"latitude":59.4375556,"longitude":-136.2293611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA38","iata":"","local":"AA38","name":"Nikaitchuq Operations Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Kuparuk","elevation_ft":20,"latitude":70.4824806,"longitude":-149.8532333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA44","iata":"","local":"AA44","name":"Barlett Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Juneau","elevation_ft":296,"latitude":58.328608,"longitude":-134.46565,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA51","iata":"","local":"AA51","name":"Spy Island Drill-Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Kuparuk","elevation_ft":21,"latitude":70.55625,"longitude":-149.9105278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AA85","iata":"","local":"AA85","name":"Walby Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":114,"latitude":61.616419,"longitude":-149.221031,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":2500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AGGH","iata":"HIR","local":"","name":"Honiara International Airport","category":"large_airport","iso_country":"SB","iso_region":"SB-GU","municipality":"Honiara","elevation_ft":28,"latitude":-9.428,"longitude":160.054993,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7218,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AGGA","iata":"AKS","local":"","name":"Gwaunaru'u Airport","category":"small_airport","iso_country":"SB","iso_region":"SB-ML","municipality":"Auki","elevation_ft":5,"latitude":-8.70257,"longitude":160.682007,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3120,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA76","iata":"","local":"AA76","name":"Timber Trails Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"North Pole","elevation_ft":480,"latitude":64.78001,"longitude":-147.32769,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AGGM","iata":"MUA","local":"","name":"Munda Airport","category":"medium_airport","iso_country":"SB","iso_region":"SB-WE","municipality":"Munda","elevation_ft":10,"latitude":-8.32797,"longitude":157.263,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5906,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AGGL","iata":"SCZ","local":"","name":"Santa Cruz/Graciosa Bay/Luova Airport","category":"small_airport","iso_country":"SB","iso_region":"SB-TE","municipality":"Santa Cruz/Graciosa Bay/Luova","elevation_ft":18,"latitude":-10.72029972076416,"longitude":165.7949981689453,"has_tower":false,"has_beacon":false,"runways":[{"id":"5/23","length_ft":2900,"width_ft":90,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AGGK","iata":"IRA","local":"","name":"Ngorangora Airport","category":"small_airport","iso_country":"SB","iso_region":"SB-MK","municipality":"Kirakira","elevation_ft":54,"latitude":-10.4497003555,"longitude":161.897994995,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4200,"width_ft":140,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK09","iata":"","local":"AK09","name":"Wingsong Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1100,"latitude":64.04959869384766,"longitude":-145.5019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2380,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK00","iata":"","local":"AK00","name":"Anchor River Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anchor Point","elevation_ft":120,"latitude":59.783144,"longitude":-151.853156,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK11","iata":"","local":"","name":"Point Mcintyre Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mcintyre","elevation_ft":15,"latitude":70.401389,"longitude":-148.682562,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1000,"width_ft":75,"surface":"D"},{"id":"16/34","length_ft":400,"width_ft":150,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK06","iata":"","local":"AK06","name":"Denali Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Denali Park","elevation_ft":2050,"latitude":63.640088,"longitude":-148.791618,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK02","iata":"","local":"AK02","name":"Bear Creek 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Bear Creek","elevation_ft":575,"latitude":65.53990173339844,"longitude":-161.06199645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1400,"width_ft":65,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK13","iata":"CEX","local":"AK13","name":"Chena Hot Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chena Hot Springs","elevation_ft":1195,"latitude":65.0518035889,"longitude":-146.04699707,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AGGR","iata":"RNL","local":"","name":"Rennell/Tingoa Airport","category":"small_airport","iso_country":"SB","iso_region":"SB-RB","municipality":"Rennell Island","elevation_ft":0,"latitude":-11.533900260925291,"longitude":160.06300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":90,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK17","iata":"","local":"AK17","name":"Glacierview Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":1600,"latitude":59.76359939575195,"longitude":-151.22300720214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1555,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK19","iata":"","local":"AK19","name":"Carl's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":300,"latitude":62.17390060424805,"longitude":-150.06399536132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1975,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK22","iata":"","local":"AK22","name":"Lakloey Air Park","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":475,"latitude":64.821984,"longitude":-147.522891,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4000,"width_ft":50,"surface":"G"},{"id":"06W/24W","length_ft":3400,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK16","iata":"","local":"AK16","name":"Sunset Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":303,"latitude":61.52339935,"longitude":-149.7149963,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK21","iata":"","local":"AK21","name":"Nushagak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Dillingham","elevation_ft":40,"latitude":59.132598876953125,"longitude":-157.77699279785156,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK28","iata":"","local":"AK28","name":"Chena Marina Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":427,"latitude":64.81400299072266,"longitude":-147.91900634765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4700,"width_ft":60,"surface":"G"},{"id":"18W/36W","length_ft":4000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK26","iata":"SOL","local":"AK26","name":"Solomon State Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Solomon","elevation_ft":25,"latitude":64.5605,"longitude":-164.4457,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1150,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK20","iata":"","local":"AK20","name":"CD-3 Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nuiqsut","elevation_ft":7,"latitude":70.420622,"longitude":-150.886667,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3500,"width_ft":170,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK34","iata":"","local":"AK34","name":"Kashwitna Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":186,"latitude":61.8353004456,"longitude":-150.080001831,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":4000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK35","iata":"","local":"AK35","name":"Buffalo Row Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1180,"latitude":64.0389022827,"longitude":-145.738998413,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK37","iata":"","local":"AK37","name":"Point Mackenzie Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":72,"latitude":61.247469,"longitude":-150.032178,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK38","iata":"","local":"AK38","name":"Providence Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":140,"latitude":61.189125,"longitude":-149.821855,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK42","iata":"","local":"","name":"Valley Hospital - Palmer Heliport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":248,"latitude":61.600899,"longitude":-149.106009,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK43","iata":"","local":"AK43","name":"Jacobsen Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":350,"latitude":61.5791015625,"longitude":-149.539001465,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":3500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK36","iata":"","local":"AK36","name":"Point Mac Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":300,"latitude":61.43600082397461,"longitude":-150.1219940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK41","iata":"","local":"AK41","name":"Greg'n Sage Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"North Pole","elevation_ft":925,"latitude":64.544038,"longitude":-146.845551,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK40","iata":"","local":"AK40","name":"Nixon Fork Mine Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"McGrath","elevation_ft":1510,"latitude":63.2291984558,"longitude":-154.759994507,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4200,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK33","iata":"HED","local":"AK33","name":"Herendeen Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Herendeen Bay","elevation_ft":20,"latitude":55.801399231,"longitude":-160.899002075,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":970,"width_ft":50,"surface":"G"},{"id":"12/30","length_ft":1090,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK45","iata":"","local":"","name":"Lost River 2 Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Lost River","elevation_ft":220,"latitude":65.4562,"longitude":-167.1755,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK48","iata":"","local":"","name":"Valley Hospital, Wasilla Heliport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":340,"latitude":61.585202,"longitude":-149.425004,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK56","iata":"KTH","local":"AK56","name":"Tikchik Lodge Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Tikchik","elevation_ft":304,"latitude":59.9631996155,"longitude":-158.477005005,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK51","iata":"","local":"05K","name":"Wilder/Natwick LLC Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Port Alsworth","elevation_ft":288,"latitude":60.198567,"longitude":-154.322789,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":4000,"width_ft":200,"surface":"W"},{"id":"07/25","length_ft":1560,"width_ft":50,"surface":"G"},{"id":"08W/26W","length_ft":3000,"width_ft":100,"surface":"W"},{"id":"12W/30W","length_ft":4000,"width_ft":200,"surface":"W"},{"id":"16/34","length_ft":1400,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK49","iata":"TWE","local":"AK49","name":"Taylor Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Taylor","elevation_ft":440,"latitude":65.6792984009,"longitude":-164.798995972,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":45,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK52","iata":"","local":"AK52","name":"Moen's Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":582,"latitude":64.88890075683594,"longitude":-147.53599548339844,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK55","iata":"","local":"AK55","name":"Moose Run Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":290,"latitude":60.489429,"longitude":-150.801473,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK57","iata":"","local":"AK57","name":"Long Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":180,"latitude":61.7257003784,"longitude":-150.091003418,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":5000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK62","iata":"NKI","local":"AK62","name":"Naukati Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Tuxekan Island","elevation_ft":0,"latitude":55.849602,"longitude":-133.227994,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":10000,"width_ft":1000,"surface":"W"},{"id":"NE/SW","length_ft":10000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK60","iata":"","local":"AK60","name":"Fort Jensen Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Jensens","elevation_ft":240,"latitude":57.884684,"longitude":-157.095036,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4700,"width_ft":125,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK68","iata":"","local":"AK68","name":"Minuteman Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":290,"latitude":61.72029876708984,"longitude":-150.0540008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK69","iata":"","local":"AK69","name":"Long Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":200,"latitude":61.72930145263672,"longitude":-150.09800720214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK71","iata":"LNI","local":"AK71","name":"Point Lonely Short Range Radar Site Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Lonely","elevation_ft":17,"latitude":70.911118,"longitude":-153.237766,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK64","iata":"","local":"ATM","name":"Taylor Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Taylor Mountain Mine","elevation_ft":1000,"latitude":60.867802,"longitude":-157.391998,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":900,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK74","iata":"","local":"AK74","name":"Kodiak Emergency/Spruce Cape Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Kodiak","elevation_ft":41,"latitude":57.807899475097656,"longitude":-152.35400390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1400,"width_ft":45,"surface":"G"},{"id":"17/35","length_ft":1200,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK79","iata":"","local":"","name":"Jolly Field","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":100,"latitude":61.593688,"longitude":-149.566519,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK81","iata":"AOS","local":"AK81","name":"Amook Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Amook Bay","elevation_ft":0,"latitude":57.4715003967,"longitude":-153.815002441,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":8000,"width_ft":700,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK82","iata":"","local":"AK82","name":"Campbell BLM Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":235,"latitude":61.1561012268,"longitude":-149.792007446,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":90,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK77","iata":"","local":"AK77","name":"All West Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1275,"latitude":63.946809,"longitude":-145.424109,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK83","iata":"","local":"AK83","name":"Gannon's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":380,"latitude":61.62730026245117,"longitude":-149.60899353027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK72","iata":"","local":"AK72","name":"Jewell Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":113,"latitude":61.7047004699707,"longitude":-150.6009979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1950,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK84","iata":"","local":"AK84","name":"Scooter's Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":259,"latitude":60.52939987182617,"longitude":-150.83099365234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK75","iata":"CDL","local":"AK75","name":"Candle 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Candle","elevation_ft":15,"latitude":65.907699585,"longitude":-161.925994873,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3880,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK80","iata":"","local":"80A","name":"American Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"American Creek","elevation_ft":520,"latitude":65.1046,"longitude":-151.176,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1310,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK87","iata":"","local":"AK87","name":"Team Levine Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":150,"latitude":61.5149002075,"longitude":-149.929000854,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK91","iata":"","local":"AK91","name":"Elmendorf Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":228,"latitude":61.235372,"longitude":-149.749282,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK94","iata":"","local":"AK94","name":"Alascom/Coastal Lena Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Juneau","elevation_ft":150,"latitude":58.3908004761,"longitude":-134.776992798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AK88","iata":"","local":"AK88","name":"Eagle Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":416,"latitude":61.60469818115234,"longitude":-149.0399932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1300,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK90","iata":"","local":"AK90","name":"Shirley Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":185,"latitude":61.74470138549805,"longitude":-150.11500549316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK98","iata":"","local":"AK98","name":"Buck Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Buck Creek","elevation_ft":560,"latitude":65.63870239257812,"longitude":-167.48599243164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1220,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL00","iata":"","local":"","name":"Charlie Wilkes Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Fayette","elevation_ft":340,"latitude":33.7444,"longitude":-87.7864,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL01","iata":"","local":"","name":"Bedsole Farm Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Claiborne","elevation_ft":180,"latitude":31.569466,"longitude":-87.562588,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL03","iata":"","local":"AL03","name":"Strickland/Smalley Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Akron","elevation_ft":369,"latitude":35.853889,"longitude":-87.723889,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2002,"width_ft":60,"surface":"T"},{"id":"07/25","length_ft":1104,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL04","iata":"","local":"","name":"Pleasant View Farm Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Elberta","elevation_ft":105,"latitude":30.4627,"longitude":-87.525002,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2533,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL06","iata":"","local":"","name":"Drummond Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Jasper","elevation_ft":470,"latitude":33.5159,"longitude":-87.256699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL07","iata":"","local":"AL07","name":"EAMC-Lanier Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Valley","elevation_ft":640,"latitude":32.829531,"longitude":-85.168711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL11","iata":"","local":"AL11","name":"Baptist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Montgomery","elevation_ft":252,"latitude":32.32749938964844,"longitude":-86.27660369873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL13","iata":"","local":"AL13","name":"Westrock - Mahrt Mill Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Cottonton","elevation_ft":95,"latitude":32.172375,"longitude":-85.028819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL05","iata":"","local":"AL05","name":"Sehoy Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Hurtsboro","elevation_ft":331,"latitude":32.22010040283203,"longitude":-85.46800231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL10","iata":"","local":"AL10","name":"Frerichs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Gurley","elevation_ft":650,"latitude":34.65119934082031,"longitude":-86.41690063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL08","iata":"","local":"AL08","name":"Perdido Winds Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Elberta","elevation_ft":75,"latitude":30.424400329589844,"longitude":-87.5353012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL14","iata":"","local":"AL14","name":"Whitfield Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Demopolis","elevation_ft":156,"latitude":32.505696,"longitude":-87.83635,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL15","iata":"","local":"","name":"Styron Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Foley","elevation_ft":120,"latitude":30.403,"longitude":-87.724197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL19","iata":"","local":"AL19","name":"Medical West Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Bessemer","elevation_ft":670,"latitude":33.37155,"longitude":-86.991,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL20","iata":"","local":"AL20","name":"Southeast Alabama Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Dothan","elevation_ft":314,"latitude":31.21809959411621,"longitude":-85.36720275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL21","iata":"","local":"AL21","name":"Lakeside Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":645,"latitude":33.51210021972656,"longitude":-86.67749786376953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL24","iata":"","local":"AL24","name":"Rotor Wing Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Mount Olive","elevation_ft":630,"latitude":33.6776,"longitude":-86.8703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL26","iata":"","local":"AL26","name":"Bryant Culberson Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Tuscaloosa","elevation_ft":283,"latitude":33.20600128173828,"longitude":-87.52780151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL28","iata":"","local":"","name":"Huntsville Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":644,"latitude":34.737301,"longitude":-86.574203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL29","iata":"","local":"AL29","name":"New Horizon Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Blountsville","elevation_ft":750,"latitude":34.12929916381836,"longitude":-86.63330078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL17","iata":"","local":"AL17","name":"Lazy Eight Airpark Llc Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Wilsonville","elevation_ft":450,"latitude":33.2340011597,"longitude":-86.51300048830001,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL30","iata":"","local":"","name":"Mizell Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Opp","elevation_ft":298,"latitude":31.2932,"longitude":-86.254097,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3279,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL31","iata":"","local":"","name":"Vaughan Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Selma","elevation_ft":125,"latitude":32.406799,"longitude":-87.054199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL34","iata":"","local":"AL34","name":"Elam's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Moulton","elevation_ft":685,"latitude":34.446999,"longitude":-87.386101,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL36","iata":"","local":"AL36","name":"The Huntsville Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":728,"latitude":34.72090148925781,"longitude":-86.58059692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL38","iata":"","local":"AL38","name":"University of Alabama Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":787,"latitude":33.50590133666992,"longitude":-86.80280303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL39","iata":"","local":"AL39","name":"Shelby Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Alabaster","elevation_ft":510,"latitude":33.252201080322266,"longitude":-86.81220245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL42","iata":"","local":"AL42","name":"Regional Medical Center Anniston Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Anniston","elevation_ft":844,"latitude":33.656068,"longitude":-85.8244,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL43","iata":"","local":"AL43","name":"Henley Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Geiger","elevation_ft":200,"latitude":32.90850067138672,"longitude":-88.3333969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL37","iata":"","local":"AL37","name":"Benedick Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Jack","elevation_ft":335,"latitude":31.555028,"longitude":-85.977278,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL33","iata":"","local":"AL33","name":"Sturdy Oak Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Perdido","elevation_ft":230,"latitude":31.02519989013672,"longitude":-87.58580017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL41","iata":"","local":"AL41","name":"Freedom Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Slocomb","elevation_ft":285,"latitude":31.11599922180176,"longitude":-85.62550354003906,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL44","iata":"","local":"AL44","name":"Cullman Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Cullman","elevation_ft":789,"latitude":34.172298431396484,"longitude":-86.84359741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2053,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL45","iata":"","local":"","name":"Trinty Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":966,"latitude":33.517502,"longitude":-86.749702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL46","iata":"","local":"AL46","name":"Shoals Creek Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AL","municipality":"Florence","elevation_ft":510,"latitude":34.9025993347168,"longitude":-87.58719635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":6200,"width_ft":1200,"surface":"W"},{"id":"08W/26W","length_ft":6500,"width_ft":1000,"surface":"W"},{"id":"17W/35W","length_ft":11000,"width_ft":1100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL49","iata":"","local":"AL49","name":"Carraway Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":672,"latitude":33.5359001159668,"longitude":-86.8114013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL50","iata":"","local":"AL50","name":"Baptist Medical Center-Princeton Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":557,"latitude":33.49760055541992,"longitude":-86.84639739990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL52","iata":"","local":"AL52","name":"USA Health University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":28,"latitude":30.707988,"longitude":-88.098475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL53","iata":"","local":"AL53","name":"Humana Hospital Shoals Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Muscle Shoals","elevation_ft":500,"latitude":34.74620056152344,"longitude":-87.67639923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL58","iata":"","local":"AL58","name":"Lower Delta Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AL","municipality":"Spanish Fort","elevation_ft":0,"latitude":30.675476,"longitude":-87.959871,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":3200,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL59","iata":"","local":"AL59","name":"Flowers Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Dothan","elevation_ft":305,"latitude":31.237699508666992,"longitude":-85.456298828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL55","iata":"","local":"AL55","name":"Shields Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Elberta","elevation_ft":95,"latitude":30.433936,"longitude":-87.457211,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2175,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL63","iata":"","local":"AL63","name":"Walker Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Jasper","elevation_ft":418,"latitude":33.84339904785156,"longitude":-87.23390197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL65","iata":"","local":"AL65","name":"St Vincents East Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":1070,"latitude":33.596972,"longitude":-86.667808,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL66","iata":"","local":"AL66","name":"Alabama Power Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":676,"latitude":33.51959991455078,"longitude":-86.8135986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL67","iata":"","local":"","name":"Exxon Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Theodore","elevation_ft":8,"latitude":30.528558,"longitude":-88.10945,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL70","iata":"","local":"AL70","name":"ABC 33/40 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Hoover","elevation_ft":550,"latitude":33.352729,"longitude":-86.787855,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL73","iata":"","local":"","name":"Sharpe Field","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Tuskegee","elevation_ft":253,"latitude":32.491901,"longitude":-85.775597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL75","iata":"","local":"AL75","name":"Gulf State Park Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AL","municipality":"Gulf Shores","elevation_ft":0,"latitude":30.2632999420166,"longitude":-87.63690185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":4330,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL76","iata":"","local":"AL76","name":"Mayfield (Private) Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Maplesville","elevation_ft":495,"latitude":32.84870147705078,"longitude":-86.87000274658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL62","iata":"","local":"AL62","name":"Striplin Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Hartford","elevation_ft":255,"latitude":31.08300018310547,"longitude":-85.68350219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL69","iata":"","local":"AL69","name":"Vaughn Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Summerdale","elevation_ft":30,"latitude":30.511838,"longitude":-87.496708,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL74","iata":"","local":"AL74","name":"Grimes Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Semmes","elevation_ft":215,"latitude":30.76440048217773,"longitude":-88.30580139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL82","iata":"","local":"AL82","name":"Providence Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":210,"latitude":30.679512,"longitude":-88.200071,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL83","iata":"","local":"AL83","name":"Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Tallassee","elevation_ft":400,"latitude":32.53400039672852,"longitude":-85.91130065917969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL85","iata":"","local":"","name":"Towers Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":1020,"latitude":33.4743,"longitude":-86.324997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL86","iata":"","local":"AL86","name":"Lawrence County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Moulton","elevation_ft":650,"latitude":34.484081,"longitude":-87.284882,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL87","iata":"","local":"AL87","name":"Dale Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Ozark","elevation_ft":390,"latitude":31.45159912109375,"longitude":-85.63189697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL90","iata":"","local":"AL90","name":"Selma Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Selma","elevation_ft":150,"latitude":32.42900085449219,"longitude":-87.05670166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL91","iata":"","local":"AL91","name":"The Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":698,"latitude":33.50429916381836,"longitude":-86.8052978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"-"},{"id":"H2","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL88","iata":"","local":"AL88","name":"Ban Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Lillian","elevation_ft":80,"latitude":30.427002,"longitude":-87.471407,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL93","iata":"","local":"AL93","name":"Big Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":830,"latitude":34.88560104370117,"longitude":-86.70999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL92","iata":"","local":"AL92","name":"Hawk Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Harpersville","elevation_ft":420,"latitude":33.30730056762695,"longitude":-86.40360260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL84","iata":"","local":"AL84","name":"Pecan Ponds Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Robertsdale","elevation_ft":131,"latitude":30.540622,"longitude":-87.568846,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2750,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL94","iata":"","local":"AL94","name":"Evans Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Wilmer","elevation_ft":212,"latitude":30.812700271606445,"longitude":-88.377197265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL95","iata":"","local":"AL95","name":"McIntosh Community Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"McIntosh","elevation_ft":50,"latitude":31.273182,"longitude":-88.012408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL96","iata":"","local":"AL96","name":"Bon Secour Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AL","municipality":"Gulf Shores","elevation_ft":0,"latitude":30.29829978942871,"longitude":-87.74079895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":3000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL98","iata":"","local":"","name":"DCH Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Tuscaloosa","elevation_ft":284,"latitude":33.2061,"longitude":-87.526398,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AL99","iata":"","local":"","name":"Blast Off Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Bay Minette","elevation_ft":241,"latitude":30.839701,"longitude":-87.772797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AN37","iata":"","local":"AN37","name":"Frog Pond Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":260,"latitude":35.782262,"longitude":-90.651955,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1927,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR02","iata":"","local":"AR02","name":"Johnson Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Clarksville","elevation_ft":491,"latitude":35.461216,"longitude":-93.445383,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AN04","iata":"","local":"AN04","name":"Dorcol Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":891,"latitude":61.704275,"longitude":-149.216115,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":889,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AN03","iata":"","local":"AN03","name":"Alaska View Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Skwentna","elevation_ft":166,"latitude":61.991944,"longitude":-151.360972,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2032,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR05","iata":"","local":"AR05","name":"John Harris Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Chickala","elevation_ft":1770,"latitude":35.21590042114258,"longitude":-93.30490112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ANYN","iata":"INU","local":"","name":"Nauru International Airport","category":"medium_airport","iso_country":"NR","iso_region":"NR-14","municipality":"Yaren District","elevation_ft":22,"latitude":-0.547458,"longitude":166.919006,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7054,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL97","iata":"","local":"AL97","name":"Williamson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Loxley","elevation_ft":162,"latitude":30.644927,"longitude":-87.670512,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR06","iata":"","local":"AR06","name":"Cantrell Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Conway","elevation_ft":325,"latitude":35.23249816894531,"longitude":-92.34329986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR07","iata":"","local":"AR07","name":"Ashley County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Crossett","elevation_ft":164,"latitude":33.14179992675781,"longitude":-91.93350219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR10","iata":"","local":"AR10","name":"Greenwalt Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Hazen","elevation_ft":232,"latitude":34.80670166015625,"longitude":-91.6082992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR17","iata":"","local":"AR17","name":"Burns Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Palestine","elevation_ft":207,"latitude":34.9833984375,"longitude":-90.91510009765624,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR20","iata":"","local":"AR20","name":"Lawrence Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Walnut Ridge","elevation_ft":265,"latitude":36.07369995117188,"longitude":-90.96849822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR21","iata":"","local":"AR21","name":"Mercy Hospital Fort Smith Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Fort Smith","elevation_ft":454,"latitude":35.35375,"longitude":-94.352024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR22","iata":"","local":"AR22","name":"Tommy's Flying Service Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Sherrill","elevation_ft":215,"latitude":34.3815,"longitude":-91.958504,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR24","iata":"","local":"AR24","name":"White River Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Batesville","elevation_ft":360,"latitude":35.76810073852539,"longitude":-91.63459777832033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR09","iata":"","local":"AR09","name":"Gravette Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Gravette","elevation_ft":1200,"latitude":36.413898,"longitude":-94.438904,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR12","iata":"","local":"AR12","name":"Mc Donald's Strip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Rose Bud","elevation_ft":700,"latitude":35.320598602299995,"longitude":-92.018699646,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR13","iata":"","local":"AR13","name":"Pearson Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Bigelow","elevation_ft":300,"latitude":34.98619842529297,"longitude":-92.6334991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR29","iata":"","local":"AR29","name":"UAMS Bravo Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":360,"latitude":34.749942,"longitude":-92.320148,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR30","iata":"","local":"","name":"Baptist Memorial Hospital-Blytheville Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Blytheville","elevation_ft":254,"latitude":35.943536,"longitude":-89.916378,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR31","iata":"","local":"AR31","name":"C. Andrew Laird Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Sun City","elevation_ft":1140,"latitude":33.61389923095703,"longitude":-112.27300262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR32","iata":"","local":"AR32","name":"Dardanelle Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Dardanelle","elevation_ft":320,"latitude":35.22090148925781,"longitude":-93.15270233154295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR33","iata":"","local":"AR33","name":"Honey Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Searcy","elevation_ft":340,"latitude":35.2333984375,"longitude":-91.7873992919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR34","iata":"","local":"AR34","name":"Pine Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Mayflower","elevation_ft":610,"latitude":34.98199844360352,"longitude":-92.44519805908205,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR36","iata":"","local":"AR36","name":"Medi-Port Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Rogers","elevation_ft":1350,"latitude":36.332989,"longitude":-94.13202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR37","iata":"","local":"AR37","name":"St Michael Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Texarkana","elevation_ft":1100,"latitude":33.427325,"longitude":-94.042344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR40","iata":"","local":"AR40","name":"Sparks Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Fort Smith","elevation_ft":460,"latitude":35.37699890136719,"longitude":-94.42019653320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR41","iata":"","local":"AR41","name":"Mercy Hospital Berryville Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Berryville","elevation_ft":1280,"latitude":36.359253,"longitude":-93.550912,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR42","iata":"","local":"AR42","name":"Ouachita County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Camden","elevation_ft":212,"latitude":33.576499939,"longitude":-92.8354034424,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR44","iata":"","local":"AR44","name":"Flying W Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Texarkana","elevation_ft":265,"latitude":33.51259994506836,"longitude":-94.01349639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR45","iata":"","local":"AR45","name":"CHI Saint Vincent Infirmary Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":435,"latitude":34.750433,"longitude":-92.340699,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR46","iata":"","local":"AR46","name":"Penrose Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Mc Crory","elevation_ft":220,"latitude":35.18895,"longitude":-91.050131,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR47","iata":"","local":"AR47","name":"Warner Brown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"El Dorado","elevation_ft":212,"latitude":33.2135009765625,"longitude":-92.66790008544922,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":31,"width_ft":31,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR48","iata":"","local":"AR48","name":"Union Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"El Dorado","elevation_ft":265,"latitude":33.214599609375,"longitude":-92.66790008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR51","iata":"","local":"AR51","name":"Smith Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Berryville","elevation_ft":1200,"latitude":36.2239990234375,"longitude":-93.57820129394533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR53","iata":"","local":"AR53","name":"Five Rivers Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Pocahontas","elevation_ft":433,"latitude":36.289249,"longitude":-90.996319,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR55","iata":"","local":"AR55","name":"R.V. Stewart Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"North Little Rock","elevation_ft":251,"latitude":34.73979949951172,"longitude":-92.09010314941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR59","iata":"","local":"AR59","name":"De Witt Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"De Witt","elevation_ft":190,"latitude":34.278808,"longitude":-91.338628,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR60","iata":"","local":"AR60","name":"NEA Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":260,"latitude":35.807603,"longitude":-90.666472,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR61","iata":"","local":"AR61","name":"Chicot Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Lake Village","elevation_ft":125,"latitude":33.305301666259766,"longitude":-91.28919982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR62","iata":"","local":"AR62","name":"Arkansas Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":440,"latitude":34.742698669433594,"longitude":-92.293701171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"},{"id":"H2","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR63","iata":"","local":"AR63","name":"Mc Gehee Desha County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Mc Gehee","elevation_ft":140,"latitude":33.6184005737,"longitude":-91.3923034668,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR65","iata":"","local":"AR65","name":"St Anthony's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Morrilton","elevation_ft":400,"latitude":35.167598724399994,"longitude":-92.7220993042,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR66","iata":"","local":"AR66","name":"Pike County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Murfreesboro","elevation_ft":335,"latitude":34.049800872802734,"longitude":-93.68409729003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR67","iata":"","local":"AR67","name":"SMC Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Osceola","elevation_ft":244,"latitude":35.700401,"longitude":-89.975601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR68","iata":"","local":"AR68","name":"Fulton County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Salem","elevation_ft":700,"latitude":36.38309860229492,"longitude":-91.8102035522461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR69","iata":"","local":"","name":"Siloam Springs Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Siloam Springs","elevation_ft":1140,"latitude":36.182567,"longitude":-94.541109,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR70","iata":"","local":"AR70","name":"Bradley County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Warren","elevation_ft":200,"latitude":33.61040115356445,"longitude":-92.0593032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR72","iata":"","local":"AR72","name":"Forrest City Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Forrest City","elevation_ft":350,"latitude":35.039778,"longitude":-90.776972,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"A"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR73","iata":"","local":"AR73","name":"Piggott Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Piggott","elevation_ft":272,"latitude":36.38980102539063,"longitude":-90.2020034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR74","iata":"","local":"AR74","name":"Cross Ridge County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Wynne","elevation_ft":265,"latitude":35.220118,"longitude":-90.785992,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR76","iata":"","local":"AR76","name":"Augusta Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Augusta","elevation_ft":212,"latitude":35.288700103759766,"longitude":-91.3584976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR77","iata":"","local":"AR77","name":"Helena Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Helena","elevation_ft":215,"latitude":34.5098,"longitude":-90.626198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR78","iata":"","local":"AR78","name":"Unity Health Specialty Care Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Searcy","elevation_ft":260,"latitude":35.233443,"longitude":-91.729728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR79","iata":"","local":"AR79","name":"Flying G Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Tillar","elevation_ft":150,"latitude":33.693497,"longitude":-91.379612,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3750,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR80","iata":"","local":"AR80","name":"North Arkansas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Harrison","elevation_ft":1150,"latitude":36.236487,"longitude":-93.10934,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"},{"id":"H2","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR85","iata":"","local":"AR85","name":"Drew Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Monticello","elevation_ft":296,"latitude":33.62009811401367,"longitude":-91.82599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR87","iata":"","local":"AR87","name":"Sparks Medical Center Van Buren Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Van Buren","elevation_ft":467,"latitude":35.434625,"longitude":-94.339947,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR88","iata":"","local":"AR88","name":"Poe's Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Conway","elevation_ft":295,"latitude":35.0547981262207,"longitude":-92.35399627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR92","iata":"","local":"AR92","name":"Unity Health Harris Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Newport","elevation_ft":225,"latitude":35.609774,"longitude":-91.264466,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":145,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR95","iata":"","local":"AR95","name":"Arkansas Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Paragould","elevation_ft":326,"latitude":36.050899505615234,"longitude":-90.49819946289062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AYNZ","iata":"LAE","local":"","name":"Nadzab Airport","category":"medium_airport","iso_country":"PG","iso_region":"PG-MPL","municipality":"Lae","elevation_ft":239,"latitude":-6.569803,"longitude":146.725977,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7999,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AR91","iata":"","local":"AR91","name":"Circle S Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Lowell","elevation_ft":1200,"latitude":36.22589874267578,"longitude":-94.03209686279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR89","iata":"","local":"AR89","name":"Landers Loop Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Dover","elevation_ft":730,"latitude":35.40010070800781,"longitude":-93.06600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AYGN","iata":"GUR","local":"","name":"Gurney Airport","category":"medium_airport","iso_country":"PG","iso_region":"PG-MBA","municipality":"Gurney","elevation_ft":88,"latitude":-10.3114995956,"longitude":150.333999634,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6430,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AYMO","iata":"MAS","local":"","name":"Momote Airport","category":"medium_airport","iso_country":"PG","iso_region":"PG-MRL","municipality":"Manus Island","elevation_ft":12,"latitude":-2.06189,"longitude":147.423996,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6496,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ02","iata":"","local":"AZ02","name":"Gateway East KNXV-TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1185,"latitude":33.454181,"longitude":-111.983753,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ04","iata":"","local":"","name":"Hillair Dirt Strip","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Aguila","elevation_ft":2210,"latitude":33.916869,"longitude":-113.189049,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ06","iata":"","local":"","name":"Dateland Airfield","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Dateland","elevation_ft":450,"latitude":32.8172,"longitude":-113.527,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1403,"width_ft":65,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ07","iata":"","local":"AZ07","name":"Phoenix Area Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1050,"latitude":33.442718,"longitude":-112.149135,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ08","iata":"","local":"AZ08","name":"Banner Boswell Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Sun City","elevation_ft":1163,"latitude":33.603867,"longitude":-112.282536,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ09","iata":"","local":"","name":"Sergio Private Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Yucca","elevation_ft":1900,"latitude":34.804483,"longitude":-114.113166,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2420,"width_ft":60,"surface":"D"},{"id":"17/35","length_ft":2845,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ10","iata":"","local":"","name":"JSJ Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1250,"latitude":33.44346,"longitude":-111.85856,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ05","iata":"","local":"AZ05","name":"Lakeside Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Gila Bend","elevation_ft":763,"latitude":33.112536,"longitude":-112.662735,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2750,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ01","iata":"","local":"AZ01","name":"Outback Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Wenden","elevation_ft":1980,"latitude":33.847732,"longitude":-113.57106,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AYVN","iata":"VAI","local":"","name":"Vanimo Airport","category":"medium_airport","iso_country":"PG","iso_region":"PG-SAN","municipality":"Vanimo","elevation_ft":10,"latitude":-2.6926,"longitude":141.3028,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6437,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ11","iata":"","local":"","name":"KPNX-TV Studios Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1327,"latitude":33.461201,"longitude":-112.075996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ12","iata":"","local":"AZ12","name":"183 Mile Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Peach Springs","elevation_ft":1705,"latitude":36.10829925537109,"longitude":-113.21299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ15","iata":"HAE","local":"AZ15","name":"Lava Falls Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Supai Village","elevation_ft":1720,"latitude":36.1916007996,"longitude":-113.092002869,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ16","iata":"","local":"AZ16","name":"Northern Cochise Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Willcox","elevation_ft":4174,"latitude":32.264473,"longitude":-109.837897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ18","iata":"","local":"AZ18","name":"Madison Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tusayan","elevation_ft":6600,"latitude":35.974998474121094,"longitude":-112.13099670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ20","iata":"","local":"AZ20","name":"Westcor Home Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1370,"latitude":33.591873,"longitude":-111.978047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ22","iata":"","local":"AZ22","name":"Marcus J Lawrence Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Cottonwood","elevation_ft":3450,"latitude":34.7333984375,"longitude":-112.02999877929688,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ23","iata":"","local":"","name":"Flagstaff Mall Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Flagstaff","elevation_ft":6835,"latitude":35.223569,"longitude":-111.583613,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ24","iata":"","local":"AZ24","name":"Phoenix Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1174,"latitude":33.52479934692383,"longitude":-112.10199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ14","iata":"","local":"AZ14","name":"Ammon Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Willcox","elevation_ft":4520,"latitude":32.02470016,"longitude":-109.9570007,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1950,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ17","iata":"","local":"AZ17","name":"Circle H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Douglas","elevation_ft":4680,"latitude":31.502199172973636,"longitude":-109.39099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":45,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ13","iata":"","local":"AZ13","name":"Schu Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1410,"latitude":33.017246,"longitude":-112.279415,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":90,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ29","iata":"","local":"AZ29","name":"Westridge Mall Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1055,"latitude":33.47560119628906,"longitude":-112.2239990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ30","iata":"","local":"AZ30","name":"United Bank Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1100,"latitude":33.48529815673828,"longitude":-112.0749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ33","iata":"","local":"AZ33","name":"Knoell Main Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1140,"latitude":33.425624,"longitude":-112.029682,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ35","iata":"","local":"AZ35","name":"Grand Canyon West 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Peach Springs","elevation_ft":1220,"latitude":35.99594,"longitude":-113.78233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ36","iata":"","local":"AZ36","name":"Grand Canyon West 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Peach Springs","elevation_ft":4790,"latitude":36.029905,"longitude":-113.827408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ37","iata":"","local":"AZ37","name":"Tucson Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2485,"latitude":32.25170135498047,"longitude":-110.87899780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ27","iata":"","local":"AZ27","name":"Big Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Paulden","elevation_ft":4421,"latitude":34.909848,"longitude":-112.532723,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4200,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ32","iata":"","local":"AZ32","name":"Roesner Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Morristown","elevation_ft":2060,"latitude":33.84749984741211,"longitude":-112.58799743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4700,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ25","iata":"","local":"AZ25","name":"Tri-Rotor Ag Services Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Somerton","elevation_ft":126,"latitude":32.55705,"longitude":-114.678947,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2510,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ28","iata":"","local":"AZ28","name":"Thunder Ridge Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Morristown","elevation_ft":1915,"latitude":33.821499,"longitude":-112.572998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ38","iata":"","local":"AZ38","name":"Rittenhouse Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Queen Creek","elevation_ft":1550,"latitude":33.258248,"longitude":-111.518639,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ39","iata":"","local":"AZ39","name":"Turf Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1385,"latitude":33.46319961547852,"longitude":-111.72899627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":900,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ41","iata":"","local":"AZ41","name":"Abacus Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1850,"latitude":33.4833984375,"longitude":-112.06999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ44","iata":"","local":"AZ44","name":"Mount Graham Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Safford","elevation_ft":2955,"latitude":32.821694,"longitude":-109.736014,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":210,"width_ft":105,"surface":"A"},{"id":"H2","length_ft":210,"width_ft":105,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ47","iata":"","local":"AZ47","name":"La Paz Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Parker","elevation_ft":450,"latitude":34.137032,"longitude":-114.284924,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ48","iata":"","local":"AZ48","name":"Banner University Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1148,"latitude":33.464972,"longitude":-112.057782,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":129,"width_ft":69,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ49","iata":"","local":"","name":"Walter Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Stanfield","elevation_ft":1615,"latitude":32.895599,"longitude":-112.253998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ43","iata":"","local":"AZ43","name":"Hidden Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1245,"latitude":33.053965,"longitude":-112.173543,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2650,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ40","iata":"","local":"AZ40","name":"Sheepy Hollow Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Salome","elevation_ft":1930,"latitude":33.785711,"longitude":-113.636742,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ51","iata":"","local":"AZ51","name":"Bartlett Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Carefree","elevation_ft":1610,"latitude":33.81869888305664,"longitude":-111.63300323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ52","iata":"","local":"AZ52","name":"Horseshoe Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Carefree","elevation_ft":2020,"latitude":33.98199844360352,"longitude":-111.71700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ53","iata":"","local":"AZ53","name":"Horse Mesa Dam Heliport 2","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Goldfield","elevation_ft":1891,"latitude":33.590599,"longitude":-111.344002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ54","iata":"","local":"AZ54","name":"Stewart Mountain Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Goldfield","elevation_ft":1530,"latitude":33.563401,"longitude":-111.535956,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ55","iata":"","local":"AZ55","name":"Horse Mesa Dam Heliport 1","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Goldfield","elevation_ft":1890,"latitude":33.5825,"longitude":-111.357002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ56","iata":"","local":"AZ56","name":"Mormon Flat Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Goldfield","elevation_ft":1640,"latitude":33.55339813232422,"longitude":-111.44499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ58","iata":"","local":"AZ58","name":"Roosevelt Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Roosevelt","elevation_ft":1895,"latitude":33.669535,"longitude":-111.163819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ59","iata":"","local":"AZ59","name":"Cross Cut Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tempe","elevation_ft":1180,"latitude":33.441279,"longitude":-111.946957,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ60","iata":"","local":"","name":"Coyner Airstrip","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Litchfield Park","elevation_ft":1170,"latitude":33.505001,"longitude":-112.474566,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3189,"width_ft":70,"surface":"G"},{"id":"08/26","length_ft":1246,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ62","iata":"","local":"AZ62","name":"Inn Place Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1245,"latitude":33.577801,"longitude":-112.121003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ57","iata":"","local":"AZ57","name":"Pilots Rest Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Paulden","elevation_ft":4482,"latitude":34.931576,"longitude":-112.515364,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5250,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ65","iata":"","local":"AZ65","name":"Palo Verde Nuclear Generating Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Wintersburg","elevation_ft":940,"latitude":33.389152,"longitude":-112.861653,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ66","iata":"","local":"","name":"Mesa Hospital Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1243,"latitude":33.42448,"longitude":-111.820827,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2495,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ68","iata":"","local":"","name":"Black Canyon City Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Black Canyon City","elevation_ft":2040,"latitude":34.06374,"longitude":-112.145819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"A"},{"id":"H3","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ69","iata":"","local":"","name":"Honeywell Inc. Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Glendale","elevation_ft":1260,"latitude":33.638401,"longitude":-112.176003,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ70","iata":"","local":"AZ70","name":"Versatile Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Prescott Valley","elevation_ft":4800,"latitude":34.627201080322266,"longitude":-112.30899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ71","iata":"","local":"","name":"Cooper Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Kirkland","elevation_ft":3440,"latitude":34.215302,"longitude":-112.536003,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2034,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ72","iata":"","local":"","name":"Police & Public Safety Building Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1146,"latitude":33.448613,"longitude":-112.082283,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":584,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ73","iata":"","local":"AZ73","name":"Tempe St. Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tempe","elevation_ft":1160,"latitude":33.413112,"longitude":-111.940952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ74","iata":"","local":"AZ74","name":"Mayo Clinic Arizona Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1567,"latitude":33.658768,"longitude":-111.957722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ75","iata":"","local":"AZ75","name":"Navapache Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Show Low","elevation_ft":6500,"latitude":34.203399658203125,"longitude":-110.01799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ76","iata":"","local":"AZ76","name":"Chandler Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Chandler","elevation_ft":1195,"latitude":33.298117,"longitude":-111.873527,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ77","iata":"","local":"","name":"Sunrise Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Williams","elevation_ft":6958,"latitude":35.238546,"longitude":-111.935708,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ80","iata":"","local":"AZ80","name":"Havasu Samaritan Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Lake Havasu City","elevation_ft":600,"latitude":34.48109817504883,"longitude":-114.33899688720705,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ81","iata":"","local":"AZ81","name":"Boeing Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1385,"latitude":33.47309875488281,"longitude":-111.72699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"},{"id":"H2","length_ft":90,"width_ft":90,"surface":"C"},{"id":"H3","length_ft":90,"width_ft":90,"surface":"C"},{"id":"H4","length_ft":90,"width_ft":90,"surface":"C"},{"id":"H5","length_ft":90,"width_ft":90,"surface":"C"},{"id":"H6","length_ft":120,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ83","iata":"","local":"AZ83","name":"Phoenix Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1071,"latitude":33.435901641846,"longitude":-112.08000183105,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ84","iata":"","local":"","name":"Pima County Sheriff's Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2500,"latitude":32.172001,"longitude":-110.946999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ87","iata":"","local":"AZ87","name":"Jeppesen Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Chandler","elevation_ft":1203,"latitude":33.227317,"longitude":-111.854424,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ88","iata":"","local":"AZ88","name":"Granite Reef Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1507,"latitude":33.70309829711914,"longitude":-112.06999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ89","iata":"","local":"AZ89","name":"Sierra Vista Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Sierra Vista","elevation_ft":4548,"latitude":31.55139923095703,"longitude":-110.2699966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ91","iata":"","local":"AZ91","name":"The Boulders Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Carefree","elevation_ft":2360,"latitude":33.80279922485352,"longitude":-111.91799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ90","iata":"","local":"AZ90","name":"Hangar Haciendas Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Laveen","elevation_ft":1225,"latitude":33.34989,"longitude":-112.122946,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2436,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ92","iata":"","local":"AZ92","name":"Valley Lutheran Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1425,"latitude":33.411399841308594,"longitude":-111.68699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ93","iata":"","local":"AZ93","name":"Toyota Arizona Proving Ground Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Wickenburg","elevation_ft":1660,"latitude":33.743099212646484,"longitude":-112.76799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ94","iata":"","local":"AZ94","name":"Biltmore Golf Course Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1240,"latitude":33.52140045166016,"longitude":-112.0199966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ95","iata":"","local":"AZ95","name":"Abrazo Scottsdale Hospital Emergency Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1461,"latitude":33.639277,"longitude":-111.996522,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ96","iata":"","local":"AZ96","name":"HonorHealth Scottsdale Osborn Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1375,"latitude":33.487916,"longitude":-111.922381,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":44,"surface":"C"},{"id":"H2","length_ft":65,"width_ft":44,"surface":"C"},{"id":"H3","length_ft":98,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ98","iata":"","local":"AZ98","name":"John C. Lincoln Helistop","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1285,"latitude":33.56950378417969,"longitude":-112.07115936279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H3","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"AZ99","iata":"","local":"AZ99","name":"Phoenix Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1175,"latitude":33.47919845581055,"longitude":-112.04199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGGH","iata":"GOH","local":"","name":"Nuuk Airport","category":"medium_airport","iso_country":"GL","iso_region":"GL-SE","municipality":"Nuuk","elevation_ft":283,"latitude":64.193022,"longitude":-51.676512,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2936,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGCO","iata":"CNP","local":"","name":"Neerlerit Inaat Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-SE","municipality":"Neerlerit Inaat","elevation_ft":45,"latitude":70.743103,"longitude":-22.650499,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3281,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BGAA","iata":"JEG","local":"","name":"Aasiaat Airport","category":"medium_airport","iso_country":"GL","iso_region":"GL-QK","municipality":"Aasiaat","elevation_ft":74,"latitude":68.721802,"longitude":-52.784698,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BGQQ","iata":"NAQ","local":"","name":"Qaanaaq Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-AV","municipality":"Qaanaaq","elevation_ft":51,"latitude":77.488602,"longitude":-69.388702,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2953,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGTL","iata":"THU","local":"","name":"Pituffik Space Base","category":"medium_airport","iso_country":"GL","iso_region":"GL-AV","municipality":"Pituffik","elevation_ft":251,"latitude":76.531197,"longitude":-68.703201,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9997,"width_ft":140,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BGMQ","iata":"JSU","local":"","name":"Maniitsoq Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-QA","municipality":"Maniitsoq","elevation_ft":91,"latitude":65.412498,"longitude":-52.9394,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BGSS","iata":"JHS","local":"","name":"Sisimiut Airport","category":"medium_airport","iso_country":"GL","iso_region":"GL-QA","municipality":"Sisimiut","elevation_ft":33,"latitude":66.951302,"longitude":-53.729301,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BGPT","iata":"JFR","local":"","name":"Paamiut Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-SE","municipality":"Paamiut","elevation_ft":120,"latitude":62.014736,"longitude":-49.670937,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BIBD","iata":"BIU","local":"","name":"Bildudalur Airport","category":"small_airport","iso_country":"IS","iso_region":"IS-4","municipality":"Bildudalur","elevation_ft":18,"latitude":65.64129638671875,"longitude":-23.546199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3084,"width_ft":984,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BGUQ","iata":"JQA","local":"","name":"Qaarsut Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-AV","municipality":"Uummannaq","elevation_ft":289,"latitude":70.7342,"longitude":-52.696201,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2953,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA00","iata":"","local":"CA00","name":"Platform Hermosa Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lompoc","elevation_ft":152,"latitude":34.455299377441406,"longitude":-120.64700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA01","iata":"","local":"CA01","name":"Burney Sheriff's Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Burney","elevation_ft":3127,"latitude":40.885121,"longitude":-121.669368,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":39,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"BIHN","iata":"HFN","local":"","name":"Hornafjörður Airport","category":"medium_airport","iso_country":"IS","iso_region":"IS-8","municipality":"Höfn","elevation_ft":24,"latitude":64.295601,"longitude":-15.2272,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4921,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BIIS","iata":"IFJ","local":"","name":"Ísafjörður Airport","category":"medium_airport","iso_country":"IS","iso_region":"IS-4","municipality":"Ísafjörður","elevation_ft":8,"latitude":66.05809783935547,"longitude":-23.135299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4593,"width_ft":139,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BITN","iata":"THO","local":"","name":"Þórshöfn Airport","category":"small_airport","iso_country":"IS","iso_region":"IS-6","municipality":"Þórshöfn","elevation_ft":65,"latitude":66.218498,"longitude":-15.3356,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3934,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BIGJ","iata":"GJR","local":"","name":"Gjögur Airport","category":"small_airport","iso_country":"IS","iso_region":"IS-4","municipality":"Gjögur","elevation_ft":83,"latitude":65.99530029296875,"longitude":-21.32690048217773,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3150,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BIGR","iata":"GRY","local":"","name":"Grímsey Airport","category":"small_airport","iso_country":"IS","iso_region":"IS-6","municipality":"Grímsey","elevation_ft":66,"latitude":66.5458,"longitude":-18.0173,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3379,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA02","iata":"","local":"","name":"Patterson Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Patterson","elevation_ft":168,"latitude":37.468488,"longitude":-121.16927,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA08","iata":"","local":"CA08","name":"SCE Energy Control Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Alhambra","elevation_ft":475,"latitude":34.083494,"longitude":-118.144148,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA10","iata":"","local":"","name":"Coonrod Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Montague","elevation_ft":3010,"latitude":41.6171,"longitude":-122.319,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA12","iata":"","local":"CA12","name":"IPP Adelanto Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Adelanto","elevation_ft":2980,"latitude":34.54846,"longitude":-117.436321,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA14","iata":"","local":"","name":"U of C - Richmond Field Station Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Richmond","elevation_ft":17,"latitude":37.913799,"longitude":-122.332002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA13","iata":"","local":"CA13","name":"Reedley College Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Reedley","elevation_ft":350,"latitude":36.606871,"longitude":-119.463526,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA07","iata":"","local":"CA07","name":"Scheidel Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pleasant Grove","elevation_ft":28,"latitude":38.8401985168457,"longitude":-121.56199645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2100,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA09","iata":"","local":"CA09","name":"Round Mountain Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Klamath River","elevation_ft":3500,"latitude":41.885277,"longitude":-122.843256,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA11","iata":"","local":"CA11","name":"Mc Cloud Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mc Cloud","elevation_ft":3540,"latitude":41.2732009888,"longitude":-122.122001648,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1032,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA03","iata":"","local":"CA03","name":"Flying M Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Planada","elevation_ft":280,"latitude":37.36167,"longitude":-120.284479,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA05","iata":"","local":"CA05","name":"Machado Dusters Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stratford","elevation_ft":192,"latitude":36.16019821166992,"longitude":-119.81300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA15","iata":"","local":"CA15","name":"Sierra Nevada Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Grass Valley","elevation_ft":2450,"latitude":39.227474,"longitude":-121.04763,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA17","iata":"","local":"","name":"Peterson Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Riverbank","elevation_ft":158,"latitude":37.723499,"longitude":-120.889999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA23","iata":"","local":"CA23","name":"Maguire-California Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":376,"latitude":34.034999,"longitude":-118.266202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA24","iata":"","local":"CA24","name":"Scripps Memorial Hospital La Jolla Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"La Jolla","elevation_ft":340,"latitude":32.886279,"longitude":-117.225502,"has_tower":false,"has_beacon":true,"runways":[{"id":"H2","length_ft":98,"width_ft":98,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA25","iata":"","local":"CA25","name":"Mark Twain St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Andreas","elevation_ft":1033,"latitude":38.19071,"longitude":-120.669215,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA26","iata":"","local":"CA26","name":"Hall of Justice Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Francisco","elevation_ft":118,"latitude":37.774898529052734,"longitude":-122.40499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA27","iata":"","local":"CA27","name":"Alcatraz Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Francisco","elevation_ft":135,"latitude":37.825912,"longitude":-122.421448,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA28","iata":"","local":"CA28","name":"University Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Moreno Valley","elevation_ft":1563,"latitude":33.913023,"longitude":-117.196526,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA29","iata":"","local":"CA29","name":"Fontana Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fontana","elevation_ft":1314,"latitude":34.101716,"longitude":-117.433729,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA20","iata":"","local":"CA20","name":"Eagle's Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ione","elevation_ft":220,"latitude":38.43258,"longitude":-121.016507,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA30","iata":"","local":"","name":"Commodore Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"San Francisco","elevation_ft":10,"latitude":37.810799,"longitude":-122.415001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA31","iata":"","local":"CA31","name":"Sanger Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sanger","elevation_ft":374,"latitude":36.732200622558594,"longitude":-119.55500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA33","iata":"","local":"CA33","name":"Santa Clara Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Jose","elevation_ft":148,"latitude":37.313264,"longitude":-121.934354,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA34","iata":"","local":"","name":"Flea Port Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"San Jose","elevation_ft":76,"latitude":37.3736,"longitude":-121.879997,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2588,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA37","iata":"","local":"CA37","name":"Dominican Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Cruz","elevation_ft":115,"latitude":36.990655,"longitude":-121.982508,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA43","iata":"","local":"CA43","name":"Barton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"South Lake Tahoe","elevation_ft":6298,"latitude":38.91130065917969,"longitude":-119.99700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA35","iata":"","local":"CA35","name":"San Rafael Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Rafael","elevation_ft":5,"latitude":38.01689910888672,"longitude":-122.52100372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2700,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA40","iata":"","local":"CA40","name":"Central Valley Aviation Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Selma","elevation_ft":276,"latitude":36.52130126953125,"longitude":-119.66999816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":150,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA42","iata":"","local":"CA42","name":"McConville Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lake Elsinore","elevation_ft":2600,"latitude":33.644146,"longitude":-117.429457,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA32","iata":"","local":"CA32","name":"San Joaquin Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Joaquin","elevation_ft":165,"latitude":36.606525,"longitude":-120.219499,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":30,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA41","iata":"","local":"CA41","name":"Quinn Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Selma","elevation_ft":310,"latitude":36.58330154418945,"longitude":-119.63999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA46","iata":"","local":"CA46","name":"Cedars-Sinai Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":334,"latitude":34.07640075683594,"longitude":-118.38200378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"C"},{"id":"H2","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA47","iata":"","local":"CA47","name":"San Diego Police Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":162,"latitude":32.715301513671875,"longitude":-117.1510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA48","iata":"","local":"","name":"Jones Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":35,"latitude":37.979353,"longitude":-121.229689,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA50","iata":"","local":"CA50","name":"Hughes/Malibu Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Malibu","elevation_ft":455,"latitude":34.045201,"longitude":-118.695034,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":140,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA52","iata":"","local":"","name":"Ports O'Call Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"San Pedro","elevation_ft":2,"latitude":33.731657,"longitude":-118.275837,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA55","iata":"","local":"CA55","name":"Mission Hospital Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Mission Viejo","elevation_ft":460,"latitude":33.560797,"longitude":-117.666192,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":96,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA56","iata":"","local":"CA56","name":"Correctional Training Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Soledad","elevation_ft":180,"latitude":36.468216,"longitude":-121.380087,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA58","iata":"","local":"CA58","name":"Emanuel Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Turlock","elevation_ft":174,"latitude":37.51259,"longitude":-120.839244,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA51","iata":"","local":"CA51","name":"The Sea Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"The Sea Ranch","elevation_ft":360,"latitude":38.7046012878418,"longitude":-123.43299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA49","iata":"","local":"CA49","name":"Jones Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stratford","elevation_ft":199,"latitude":36.2041015625,"longitude":-119.84100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA44","iata":"","local":"CA44","name":"Sequoia Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Springville","elevation_ft":1153,"latitude":36.149898529052734,"longitude":-118.802001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA61","iata":"","local":"CA61","name":"SCE High Desert District Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Victorville","elevation_ft":2974,"latitude":34.476549,"longitude":-117.288432,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA63","iata":"","local":"CA63","name":"John Muir Walnut Creek Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Walnut Creek","elevation_ft":292,"latitude":37.912845,"longitude":-122.041449,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA64","iata":"","local":"CA64","name":"Olive View Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sylmar","elevation_ft":1460,"latitude":34.3268013,"longitude":-118.4449997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA65","iata":"","local":"CA65","name":"Alta Vista Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Watsonville","elevation_ft":480,"latitude":36.97050094604492,"longitude":-121.86199951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA68","iata":"","local":"CA68","name":"Saddleback Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Laguna Hills","elevation_ft":398,"latitude":33.608584,"longitude":-117.709225,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA72","iata":"","local":"CA72","name":"Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Ventura","elevation_ft":175,"latitude":34.274682,"longitude":-119.259236,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":96,"width_ft":77,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA74","iata":"","local":"","name":"Hemet Valley Hospital Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Hemet","elevation_ft":1250,"latitude":33.751828,"longitude":-116.960794,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2063,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA75","iata":"","local":"","name":"Reider Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Potrero","elevation_ft":2655,"latitude":32.638646,"longitude":-116.640866,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA62","iata":"","local":"CA62","name":"McMillan Assault Strip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Camp Roberts","elevation_ft":920,"latitude":35.719101,"longitude":-120.767998,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3500,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA66","iata":"","local":"CA66","name":"Monterey Bay Academy Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Watsonville","elevation_ft":70,"latitude":36.90610122680664,"longitude":-121.84300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA70","iata":"","local":"CA70","name":"Sun Hill Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Helendale","elevation_ft":2984,"latitude":34.757999420166016,"longitude":-117.49700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5300,"width_ft":90,"surface":"D"},{"id":"12/30","length_ft":3800,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA77","iata":"","local":"CA77","name":"Ridgecrest Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Ridgecrest","elevation_ft":2290,"latitude":35.640365,"longitude":-117.672034,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":77,"width_ft":77,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA78","iata":"","local":"CA78","name":"City Hall Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Riverside","elevation_ft":977,"latitude":33.980641,"longitude":-117.375628,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":86,"width_ft":86,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA79","iata":"","local":"CA79","name":"Ritz-Carlton Marina del Rey Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Marina del Rey","elevation_ft":149,"latitude":33.984297,"longitude":-118.450175,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA80","iata":"","local":"","name":"San Bernardino County Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"San Bernardino","elevation_ft":1124,"latitude":34.1278,"longitude":-117.267997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA81","iata":"","local":"CA81","name":"Riverside Metro Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Riverside","elevation_ft":950,"latitude":33.982958,"longitude":-117.375982,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA82","iata":"","local":"","name":"Corona Regional Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Corona","elevation_ft":695,"latitude":33.8731,"longitude":-117.568001,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA83","iata":"","local":"CA83","name":"Gilbert Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Visalia","elevation_ft":310,"latitude":36.44269943237305,"longitude":-119.31600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA85","iata":"","local":"CA85","name":"Opus Center Irvine Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Irvine","elevation_ft":36,"latitude":33.683601,"longitude":-117.852997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA86","iata":"","local":"CA86","name":"Northridge Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Northridge","elevation_ft":864,"latitude":34.220016,"longitude":-118.532554,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA87","iata":"","local":"CA87","name":"SCE Songs Mesa Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Clemente","elevation_ft":100,"latitude":33.379517,"longitude":-117.559821,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":105,"width_ft":105,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA76","iata":"","local":"CA76","name":"Flying T Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ramona","elevation_ft":2500,"latitude":33.0703010559082,"longitude":-116.7519989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA91","iata":"","local":"CA91","name":"Quinn Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Riverside","elevation_ft":904,"latitude":34.008073,"longitude":-117.343801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA95","iata":"","local":"CA95","name":"St Joseph Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Burbank","elevation_ft":568,"latitude":34.155314,"longitude":-118.327759,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA96","iata":"","local":"","name":"Goleta Valley Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Santa Barbara","elevation_ft":45,"latitude":34.433399,"longitude":-119.810289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA98","iata":"","local":"CA98","name":"Platform Ocs P-0188 Hondo Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Barbara","elevation_ft":142,"latitude":34.39070129394531,"longitude":-120.12200164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA99","iata":"","local":"CA99","name":"Aero Long Beach 8 Helipad","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Long Beach","elevation_ft":121,"latitude":33.807162,"longitude":-118.144573,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CBQ8","iata":"","local":"CBQ8","name":"Woodcock Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Woodcock","elevation_ft":537,"latitude":55.06669998168945,"longitude":-128.23300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3350,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD00","iata":"","local":"CD00","name":"Emancipation Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Boulder","elevation_ft":7152,"latitude":40.0536003112793,"longitude":-105.36000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CA90","iata":"","local":"CA90","name":"Cadiz Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Cadiz","elevation_ft":780,"latitude":34.514054,"longitude":-115.518343,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5280,"width_ft":49,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CBS4","iata":"","local":"CBS4","name":"Mule Creek Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Mule Creek","elevation_ft":2900,"latitude":59.773819,"longitude":-136.596161,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2460,"width_ft":65,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CAJ4","iata":"YAA","local":"CAJ4","name":"Anahim Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Anahim Lake","elevation_ft":3635,"latitude":52.451501,"longitude":-125.303776,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3936,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD03","iata":"","local":"CD03","name":"Tinnes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Lamar","elevation_ft":3850,"latitude":38.198226,"longitude":-102.5669,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4500,"width_ft":30,"surface":"D"},{"id":"17/35","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD04","iata":"","local":"CD04","name":"S F Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Westminster","elevation_ft":5500,"latitude":39.82080078125,"longitude":-105.0540008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD06","iata":"","local":"CD06","name":"Centennial Healthcare Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Englewood","elevation_ft":5680,"latitude":39.59439849853516,"longitude":-104.822998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD07","iata":"","local":"CD07","name":"Poudre Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":4960,"latitude":40.571393,"longitude":-105.054376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD11","iata":"","local":"CD11","name":"Mountain Bell/Durango Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Durango","elevation_ft":6534,"latitude":37.24169921875,"longitude":-107.8759994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD12","iata":"","local":"CD12","name":"Gunnison Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Gunnison","elevation_ft":7715,"latitude":38.551700592041016,"longitude":-106.9250030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD14","iata":"","local":"CD14","name":"J & S Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bennett","elevation_ft":5320,"latitude":39.82889938354492,"longitude":-104.43699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD10","iata":"","local":"CD10","name":"Chapman Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"South Fork","elevation_ft":8100,"latitude":37.67499923706055,"longitude":-106.55599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":80,"surface":"T"},{"id":"08/26","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD09","iata":"","local":"CD09","name":"Yoder Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bennett","elevation_ft":5345,"latitude":39.81969833374024,"longitude":-104.40899658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD13","iata":"","local":"CD13","name":"Morris Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Deer Trail","elevation_ft":4750,"latitude":39.83509826660156,"longitude":-103.73600006103516,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD16","iata":"","local":"CD16","name":"Branson Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Branson","elevation_ft":6262,"latitude":37.01919937133789,"longitude":-103.88600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD18","iata":"","local":"CD18","name":"Amax Mill Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Dillon/Silverthorne","elevation_ft":9176,"latitude":39.83330154418945,"longitude":-106.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD19","iata":"","local":"CD19","name":"Arapahoe Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Idaho Springs","elevation_ft":10672,"latitude":39.690799713134766,"longitude":-105.50499725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD21","iata":"","local":"CD21","name":"Badger Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Tarryall","elevation_ft":11294,"latitude":39.04940032958984,"longitude":-105.51300048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD22","iata":"","local":"CD22","name":"North Suburban Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Thornton","elevation_ft":5333,"latitude":39.863318,"longitude":-104.98651,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD24","iata":"","local":"CD24","name":"Red Canyon Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Castle Rock","elevation_ft":6450,"latitude":39.352500915527344,"longitude":-105.00700378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":22,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD25","iata":"","local":"CD25","name":"Henderson Mine Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Berthoud Falls","elevation_ft":10340,"latitude":39.76940155029297,"longitude":-105.85099792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD26","iata":"","local":"CD26","name":"Peyton Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Calhan","elevation_ft":6821,"latitude":39.04249954223633,"longitude":-104.36499786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD27","iata":"","local":"CD27","name":"Page Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Luray","elevation_ft":900,"latitude":38.66249847412109,"longitude":-78.4677963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD29","iata":"","local":"CD29","name":"Cerro Summit Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Cimarron","elevation_ft":8208,"latitude":38.45000076293945,"longitude":-107.6510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD28","iata":"","local":"CD28","name":"Tall Timber Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Indian Hills","elevation_ft":7360,"latitude":39.64390182495117,"longitude":-105.26799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD30","iata":"","local":"CD30","name":"Fitzpatrick Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Cimarron","elevation_ft":9316,"latitude":38.38330078125,"longitude":-107.41699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD31","iata":"","local":"CD31","name":"Parker Adventist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Parker","elevation_ft":5766,"latitude":39.547547,"longitude":-104.76993,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD33","iata":"","local":"CD33","name":"Mesa Verde Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Cortez","elevation_ft":8074,"latitude":37.25,"longitude":-108.5009994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD34","iata":"","local":"CD34","name":"Point Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":6200,"latitude":38.79999923706055,"longitude":-108.16699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD35","iata":"","local":"CD35","name":"Pleasant View Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Dove Creek","elevation_ft":7723,"latitude":37.59999847412109,"longitude":-108.63400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD36","iata":"","local":"CD36","name":"Egnar Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Egnar","elevation_ft":8063,"latitude":37.88330078125,"longitude":-108.83399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD37","iata":"","local":"CD37","name":"Berthoud Pass Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Empire","elevation_ft":12442,"latitude":39.79389953613281,"longitude":-105.76399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD38","iata":"","local":"CD38","name":"Sacramento Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Fairplay","elevation_ft":11104,"latitude":39.216400146484375,"longitude":-106.08699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD40","iata":"","local":"CD40","name":"Hilltop Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Franktown","elevation_ft":6737,"latitude":39.42940139770508,"longitude":-104.65899658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD41","iata":"","local":"CD41","name":"Sunlite Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Glenwood Springs","elevation_ft":10603,"latitude":39.43330001831055,"longitude":-107.38400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD42","iata":"","local":"CD42","name":"Lookout Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Glenwood Springs","elevation_ft":7985,"latitude":39.53329849243164,"longitude":-107.28399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD39","iata":"","local":"CD39","name":"Pond's Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Berthoud","elevation_ft":5050,"latitude":40.26499938964844,"longitude":-105.13700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD43","iata":"","local":"CD43","name":"Granite Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Granite","elevation_ft":10093,"latitude":39.08610153198242,"longitude":-106.26799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD44","iata":"","local":"CD44","name":"Madden Peak Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Hesperus","elevation_ft":10039,"latitude":37.34999847412109,"longitude":-108.1510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD46","iata":"","local":"CD46","name":"North Arrow Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":4935,"latitude":40.59109878540039,"longitude":-105.0479965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD47","iata":"","local":"CD47","name":"Montrose Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Montrose","elevation_ft":5888,"latitude":38.480098724365234,"longitude":-107.86900329589844,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD49","iata":"","local":"CD49","name":"Matheson Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Matheson","elevation_ft":5976,"latitude":39.17689895629883,"longitude":-103.87999725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD50","iata":"","local":"CD50","name":"Teepee Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Meeker","elevation_ft":8646,"latitude":40.150001525878906,"longitude":-107.86699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD52","iata":"","local":"CD52","name":"Mount Princeton Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Mount Princeton","elevation_ft":10858,"latitude":38.74530029296875,"longitude":-106.1999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD53","iata":"","local":"CD53","name":"Sky Ridge Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Lone Tree","elevation_ft":6025,"latitude":39.528056,"longitude":-104.869722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD54","iata":"","local":"CD54","name":"Raspberry Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Norwood","elevation_ft":9943,"latitude":38.29999923706055,"longitude":-108.18399810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD55","iata":"","local":"CD55","name":"Norwood Junction Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Norwood","elevation_ft":7262,"latitude":38.09999847412109,"longitude":-106.28399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD56","iata":"","local":"CD56","name":"Grand Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Parachute","elevation_ft":6095,"latitude":39.417486,"longitude":-108.1001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD48","iata":"","local":"CD48","name":"Cuchara Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Walsenburg","elevation_ft":5827,"latitude":37.786399841308594,"longitude":-104.59400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD57","iata":"","local":"CD57","name":"Grouse Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Parshall","elevation_ft":9855,"latitude":40.13330078125,"longitude":-106.16699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD59","iata":"","local":"CD59","name":"Placerville Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Placerville","elevation_ft":7304,"latitude":38.016700744628906,"longitude":-108.0510025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD62","iata":"","local":"CD62","name":"Baxter Pass Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rangely","elevation_ft":8718,"latitude":39.58330154418945,"longitude":-108.95099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD63","iata":"","local":"CD63","name":"Raven Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rangely","elevation_ft":6084,"latitude":40.116427,"longitude":-108.950633,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD65","iata":"","local":"CD65","name":"Rico Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rico","elevation_ft":8807,"latitude":37.68330001831055,"longitude":-108.01699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD66","iata":"","local":"CD66","name":"Rio Blanco Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rio Blanco","elevation_ft":8416,"latitude":39.70000076293945,"longitude":-107.95099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD68","iata":"","local":"CD68","name":"Silverton Junction Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Silverton","elevation_ft":9272,"latitude":37.79999923706055,"longitude":-107.66699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD70","iata":"","local":"CD70","name":"Mount Werner Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Steamboat Springs","elevation_ft":10554,"latitude":40.45000076293945,"longitude":-106.73400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD71","iata":"","local":"CD71","name":"Hecox Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Guffey","elevation_ft":8250,"latitude":38.624567,"longitude":-105.516017,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD72","iata":"","local":"CD72","name":"Missionary Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Trimble","elevation_ft":9873,"latitude":37.34999847412109,"longitude":-107.76699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD74","iata":"","local":"CD74","name":"Vail Junction Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Vail","elevation_ft":10116,"latitude":39.61669921875,"longitude":-106.38400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD75","iata":"","local":"CD75","name":"Whitewater Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Whitewater","elevation_ft":6208,"latitude":38.900001525878906,"longitude":-108.48400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD77","iata":"","local":"CD77","name":"Castle Peak Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Wolcott","elevation_ft":9212,"latitude":39.70000076293945,"longitude":-106.76699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD78","iata":"","local":"CD78","name":"Coal Bank Pass Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Wolf Creek","elevation_ft":10634,"latitude":37.68330001831055,"longitude":-107.76699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD79","iata":"","local":"CD79","name":"Northfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Woodland Park","elevation_ft":9200,"latitude":38.98529815673828,"longitude":-104.91699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD80","iata":"","local":"CD80","name":"Phippsburg Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Oak Creek","elevation_ft":8347,"latitude":40.23329925537109,"longitude":-106.9010009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CD81","iata":"","local":"CD81","name":"Owl Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Walden","elevation_ft":8796,"latitude":40.45000076293945,"longitude":-106.20099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL00","iata":"","local":"CL00","name":"USC University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":476,"latitude":34.061623,"longitude":-118.201585,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL02","iata":"","local":"CL02","name":"Kilroy Airport Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Segundo","elevation_ft":255,"latitude":33.929875,"longitude":-118.384799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL03","iata":"","local":"CL03","name":"Airport Towers Number 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Segundo","elevation_ft":404,"latitude":33.916916,"longitude":-118.395211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL01","iata":"","local":"CL01","name":"Eagle Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Dos Palos","elevation_ft":153,"latitude":36.899898529052734,"longitude":-120.66799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL05","iata":"","local":"CL05","name":"Wells Fargo Bank Operations Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fremont","elevation_ft":112,"latitude":37.547959,"longitude":-121.979581,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL06","iata":"","local":"CL06","name":"Glendale Adventist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":717,"latitude":34.151708,"longitude":-118.230561,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL07","iata":"","local":"CL07","name":"Queen Mary Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Long Beach","elevation_ft":14,"latitude":33.749094,"longitude":-118.19014,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL08","iata":"","local":"CL08","name":"Biltmore Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":443,"latitude":34.049326,"longitude":-118.253676,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL10","iata":"","local":"CL10","name":"Anacapa View Estates Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Malibu","elevation_ft":625,"latitude":34.04169845581055,"longitude":-118.85299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL12","iata":"","local":"CL12","name":"Saint Vincent Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":464,"latitude":34.063769,"longitude":-118.272503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL14","iata":"","local":"CL14","name":"Huntington Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Pasadena","elevation_ft":854,"latitude":34.134335,"longitude":-118.152124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL15","iata":"","local":"CL15","name":"SCE Ridgecrest Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Ridgecrest","elevation_ft":2288,"latitude":35.614653,"longitude":-117.668257,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL16","iata":"","local":"CL16","name":"Turner Field/Amphibious Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Coronado","elevation_ft":12,"latitude":32.6784498367,"longitude":-117.155585289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL17","iata":"","local":"CL17","name":"Barstow Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Barstow","elevation_ft":2255,"latitude":34.894051,"longitude":-117.018276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL18","iata":"","local":"","name":"Danby Airstrip","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Danby","elevation_ft":1400,"latitude":34.555,"longitude":-115.356003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL19","iata":"","local":"CL19","name":"Bank of America Glendale Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":560,"latitude":34.155373,"longitude":-118.257008,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL21","iata":"","local":"CL21","name":"Sutter Amador Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Jackson","elevation_ft":1246,"latitude":38.34999847412109,"longitude":-120.76300048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL22","iata":"","local":"CL22","name":"Sheriff's Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Valencia","elevation_ft":1200,"latitude":34.41573,"longitude":-118.551377,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL26","iata":"","local":"CL26","name":"Great Western Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Chatsworth","elevation_ft":1018,"latitude":34.2387476702,"longitude":-118.565926999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL27","iata":"","local":"CL27","name":"Wells Fargo-El Monte Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Monte","elevation_ft":261,"latitude":34.07021,"longitude":-118.071873,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL28","iata":"","local":"CL28","name":"Morongo Basin CHP Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Joshua Tree","elevation_ft":2485,"latitude":34.134168,"longitude":-116.273929,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL31","iata":"","local":"CL31","name":"Caltrans District 7 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":484,"latitude":34.05149841308594,"longitude":-118.24299621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL32","iata":"","local":"CL32","name":"Garland Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":430,"latitude":34.050972,"longitude":-118.265542,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL37","iata":"","local":"CL37","name":"Enloe Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Chico","elevation_ft":253,"latitude":39.741952,"longitude":-121.850191,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":75,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL38","iata":"","local":"CL38","name":"Swepi Beta Platform Eureka Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":123,"latitude":33.563899993896484,"longitude":-118.11799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":57,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL36","iata":"","local":"CL36","name":"Allan Ranch Flight Park Ultralightport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Windsor","elevation_ft":160,"latitude":38.569400787354,"longitude":-122.80400085449,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL29","iata":"","local":"CL29","name":"Camino Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Goffs","elevation_ft":2079,"latitude":34.834999084472656,"longitude":-114.95700073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL33","iata":"","local":"CL33","name":"Pauma Valley Air Park","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pauma Valley","elevation_ft":756,"latitude":33.31060028076172,"longitude":-116.9980010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL25","iata":"","local":"CL25","name":"7R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"New Cuyama","elevation_ft":3176,"latitude":34.935552,"longitude":-119.451901,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2350,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL39","iata":"","local":"CL39","name":"St. Helena Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"St Helena","elevation_ft":308,"latitude":38.54850006103516,"longitude":-122.51100158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL40","iata":"","local":"CL40","name":"SCE Antelope Valley Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lancaster","elevation_ft":2522,"latitude":34.647984,"longitude":-118.145229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL45","iata":"","local":"CL45","name":"North Net Training Authority Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Anaheim","elevation_ft":145,"latitude":33.795054,"longitude":-117.881025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL47","iata":"","local":"CL47","name":"Hoag Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Valley Center","elevation_ft":1650,"latitude":33.233993,"longitude":-116.968628,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL49","iata":"","local":"CL49","name":"International Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":542,"latitude":34.046641,"longitude":-118.261814,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL50","iata":"","local":"CL50","name":"Westwood Gateway I Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":321,"latitude":34.04785,"longitude":-118.444923,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL51","iata":"","local":"CL51","name":"Santa Rosa Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Rosa","elevation_ft":208,"latitude":38.44380187988281,"longitude":-122.70099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL52","iata":"","local":"CL52","name":"San Joaquin General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":15,"latitude":37.887832,"longitude":-121.282716,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":95,"width_ft":95,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL53","iata":"","local":"CL53","name":"Redbud Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Clearlake","elevation_ft":1407,"latitude":38.93457,"longitude":-122.61933,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL54","iata":"","local":"CL54","name":"Westside Towers Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":325,"latitude":34.033279,"longitude":-118.451849,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL55","iata":"","local":"CL55","name":"SCE Serrano Substation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Orange","elevation_ft":697,"latitude":33.828505,"longitude":-117.790578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL46","iata":"","local":"CL46","name":"Quail Lake Sky Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Gorman/Lancaster","elevation_ft":3370,"latitude":34.767799377441406,"longitude":-118.73200225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL58","iata":"","local":"CL58","name":"SCE Southeastern Division Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ana","elevation_ft":97,"latitude":33.73072,"longitude":-117.847333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL59","iata":"","local":"CL59","name":"Camp 11 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Acton","elevation_ft":2220,"latitude":34.438147,"longitude":-118.287697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL60","iata":"","local":"CL60","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":500,"latitude":35.3911018371582,"longitude":-119.00599670410156,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL61","iata":"","local":"CL61","name":"Kern Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":505,"latitude":35.382484,"longitude":-118.969656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL62","iata":"","local":"CL62","name":"Station 125 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Calabasas","elevation_ft":850,"latitude":34.151554,"longitude":-118.697763,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL63","iata":"","local":"CL63","name":"Castaic Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Castaic","elevation_ft":1520,"latitude":34.5172004699707,"longitude":-118.5989990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL64","iata":"","local":"CL64","name":"Washington Hospital Parking Structure Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fremont","elevation_ft":57,"latitude":37.557473,"longitude":-121.978139,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL65","iata":"","local":"CL65","name":"H.B.P.D. Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":56,"latitude":33.69499969482422,"longitude":-118.0009994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL66","iata":"","local":"CL66","name":"Camp 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"La Cañada Flintridge","elevation_ft":1120,"latitude":34.197201,"longitude":-118.174004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL67","iata":"","local":"CL67","name":"Platform Hidalgo Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lompoc","elevation_ft":162,"latitude":34.494998931884766,"longitude":-120.7030029296875,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":66,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL68","iata":"","local":"CL68","name":"Platform Harvest Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lompoc","elevation_ft":178,"latitude":34.469200134277344,"longitude":-120.68199920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL69","iata":"","local":"CL69","name":"Sutter Lakeside Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lakeport","elevation_ft":1401,"latitude":39.105098724365234,"longitude":-122.90699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL70","iata":"","local":"","name":"Hollywood Presbyterian Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":524,"latitude":34.096428,"longitude":-118.290323,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL71","iata":"","local":"CL71","name":"Hughes/Corporate Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":75,"latitude":33.96609878540039,"longitude":-118.42400360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL72","iata":"","local":"CL72","name":"Camp 8 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Malibu","elevation_ft":1525,"latitude":34.0620002746582,"longitude":-118.64700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL75","iata":"","local":"CL75","name":"Robert D Cloud Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Rosemead","elevation_ft":312,"latitude":34.052168,"longitude":-118.080602,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL76","iata":"","local":"CL76","name":"U S Naval Medical Center San Diego Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":200,"latitude":32.725019,"longitude":-117.144291,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL78","iata":"","local":"CL78","name":"Camp 14 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Saugus","elevation_ft":1870,"latitude":34.56610107421875,"longitude":-118.47699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL79","iata":"","local":"CL79","name":"SCE Tiffany Pines Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Shaver Lake","elevation_ft":5548,"latitude":37.11723,"longitude":-119.313374,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL80","iata":"","local":"CL80","name":"Sherman Oaks Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sherman Oaks","elevation_ft":697,"latitude":34.159927,"longitude":-118.449457,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL81","iata":"","local":"CL81","name":"Camp 15 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sunland","elevation_ft":1520,"latitude":34.289398193359375,"longitude":-118.28800201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL82","iata":"","local":"CL82","name":"Los Robles Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Thousand Oaks","elevation_ft":760,"latitude":34.206842,"longitude":-118.88311,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL83","iata":"","local":"CL83","name":"Joe Heidrick Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Woodland","elevation_ft":120,"latitude":38.66550064086914,"longitude":-121.82599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL74","iata":"","local":"CL74","name":"Skyotee Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Rosamond","elevation_ft":2600,"latitude":34.83190155029297,"longitude":-118.4010009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL85","iata":"","local":"CL85","name":"Sonoma Raceway Heliport Pad 1","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sonoma","elevation_ft":115,"latitude":38.158228,"longitude":-122.456344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":83,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL86","iata":"","local":"CL86","name":"McCandless Towers Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Clara","elevation_ft":201,"latitude":37.385503,"longitude":-121.972414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL87","iata":"","local":"CL87","name":"Haddicks Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"City of Industry","elevation_ft":306,"latitude":34.027424,"longitude":-117.966734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":107,"width_ft":105,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL88","iata":"","local":"","name":"Wesinger Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Alturas","elevation_ft":4300,"latitude":41.447102,"longitude":-120.584,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL89","iata":"","local":"","name":"Los Angeles Times - Northridge Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Chatsworth","elevation_ft":859,"latitude":34.238821,"longitude":-118.56949,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL90","iata":"","local":"","name":"Butte Creek Hog Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Chico","elevation_ft":200,"latitude":39.688801,"longitude":-121.783997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL91","iata":"","local":"CL91","name":"Auberry Hydro Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Auberry","elevation_ft":2000,"latitude":37.06489944458008,"longitude":-119.48400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL92","iata":"","local":"CL92","name":"SCE Saddleback Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Irvine","elevation_ft":391,"latitude":33.655253,"longitude":-117.705844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL93","iata":"","local":"CL93","name":"SCE Shaver Summit Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Shaver Lake","elevation_ft":5755,"latitude":37.163799,"longitude":-119.292,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL94","iata":"","local":"CL94","name":"Plumas District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Quincy","elevation_ft":3425,"latitude":39.9402530925,"longitude":-120.962026119,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL95","iata":"","local":"CL95","name":"County Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Bernardino","elevation_ft":1040,"latitude":34.10329818725586,"longitude":-117.27200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL96","iata":"","local":"CL96","name":"Vaca Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Vacaville","elevation_ft":110,"latitude":38.3557014465332,"longitude":-121.95099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL97","iata":"","local":"CL97","name":"Mercy Hospital & Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":330,"latitude":32.751285,"longitude":-117.160628,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CL99","iata":"","local":"CL99","name":"Watsonville Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Watsonville","elevation_ft":111,"latitude":36.93999862670898,"longitude":-121.7760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN01","iata":"","local":"CN01","name":"Mendocino Coast District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fort Bragg","elevation_ft":108,"latitude":39.431876,"longitude":-123.799621,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN02","iata":"","local":"CN02","name":"San Francisco VA Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Francisco","elevation_ft":350,"latitude":37.783331,"longitude":-122.506389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN06","iata":"","local":"CN06","name":"Sonoma Raceway Heliport Pad 2","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sonoma","elevation_ft":110,"latitude":38.155081,"longitude":-122.450692,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN14","iata":"","local":"CN14","name":"Queen of the Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Napa","elevation_ft":49,"latitude":38.32386,"longitude":-122.297165,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN16","iata":"","local":"CN16","name":"Mercy Hospital of Folsom Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Folsom","elevation_ft":335,"latitude":38.670861,"longitude":-121.142839,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN17","iata":"","local":"CN17","name":"Rady Childrens Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":445,"latitude":32.798675,"longitude":-117.151868,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN18","iata":"","local":"CN18","name":"San Bernardino Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Bernardino","elevation_ft":1213,"latitude":34.130694,"longitude":-117.321667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN22","iata":"","local":"","name":"Northrop Anaheim Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Anaheim","elevation_ft":160,"latitude":33.865002,"longitude":-117.917,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2082,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN13","iata":"","local":"CN13","name":"Borges - Clarksburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Clarksburg","elevation_ft":16,"latitude":38.443199,"longitude":-121.509003,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2260,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN15","iata":"","local":"CN15","name":"Vineyard Oaks Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lemore","elevation_ft":210,"latitude":36.36920166015625,"longitude":-119.78600311279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2180,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN25","iata":"","local":"CN25","name":"The Westin Bonaventure Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":679,"latitude":34.052762,"longitude":-118.255854,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN26","iata":"","local":"CN26","name":"Rodgers Flat Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Oroville","elevation_ft":1560,"latitude":39.96206,"longitude":-121.277534,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN27","iata":"","local":"CN27","name":"Hughes/Canoga Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Canoga Park","elevation_ft":845,"latitude":34.221479,"longitude":-118.627091,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN28","iata":"","local":"CN28","name":"Big Creek Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Big Creek","elevation_ft":5017,"latitude":37.20089,"longitude":-119.25289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN30","iata":"","local":"CN30","name":"Oceanside Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Oceanside","elevation_ft":30,"latitude":33.211584,"longitude":-117.3541661,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN33","iata":"","local":"CN33","name":"Airport Imperial Bldg Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Segundo","elevation_ft":238,"latitude":33.9303016663,"longitude":-118.397003174,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN35","iata":"","local":"","name":"Hughes/Space & Comm. Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"El Segundo","elevation_ft":183,"latitude":33.930306,"longitude":-118.397909,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN39","iata":"","local":"CN39","name":"Operating Engineers Pension Trust Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":441,"latitude":34.06217,"longitude":-118.288073,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN37","iata":"","local":"CN37","name":"Kelso Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mojave","elevation_ft":4047,"latitude":35.38130188,"longitude":-118.2310028,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2673,"width_ft":100,"surface":"D"},{"id":"16/34","length_ft":3436,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN40","iata":"","local":"CN40","name":"Roosevelt Ranch Heliport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Woodland","elevation_ft":38,"latitude":38.812506,"longitude":-121.81185,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN29","iata":"","local":"CN29","name":"J-B Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Farmington","elevation_ft":103,"latitude":37.93519973754883,"longitude":-121.01499938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN43","iata":"","local":"CN43","name":"Boeing Anaheim B/250 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Anaheim","elevation_ft":342,"latitude":33.85969924926758,"longitude":-117.8499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN45","iata":"","local":"CN45","name":"Bear Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Big Bear Lake","elevation_ft":6800,"latitude":34.246700286865234,"longitude":-116.88800048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN46","iata":"","local":"CN46","name":"The McConnell Foundation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Redding","elevation_ft":643,"latitude":40.59820175170898,"longitude":-122.33200073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN47","iata":"","local":"CN47","name":"Pacoima Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sylmar","elevation_ft":2039,"latitude":34.334004,"longitude":-118.397252,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN48","iata":"","local":"CN48","name":"St Joseph's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":47,"latitude":37.970197,"longitude":-121.28786,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN49","iata":"","local":"CN49","name":"Sutter Roseville Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Roseville","elevation_ft":286,"latitude":38.766623,"longitude":-121.248044,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN51","iata":"","local":"CN51","name":"Community Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Fresno","elevation_ft":415,"latitude":36.743698,"longitude":-119.785004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":53,"surface":"C"},{"id":"H2","length_ft":54,"width_ft":53,"surface":"C"},{"id":"H3","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN52","iata":"","local":"CN52","name":"Oroville Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Oroville","elevation_ft":255,"latitude":39.50743,"longitude":-121.541572,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN53","iata":"","local":"CN53","name":"Kings County Houston Ave. Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Hanford","elevation_ft":239,"latitude":36.299861,"longitude":-119.594861,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"},{"id":"H2","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN55","iata":"","local":"CN55","name":"Mercy Hospital Southwest Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":375,"latitude":35.35,"longitude":-119.112222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN62","iata":"","local":"CN62","name":"CS Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Colusa","elevation_ft":59,"latitude":39.241597,"longitude":-121.909516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN88","iata":"","local":"CN88","name":"Kaiser Permanente Vacaville Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Vacaville","elevation_ft":100,"latitude":38.3887,"longitude":-121.9405,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN90","iata":"","local":"CN90","name":"API Gateway Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Calexico","elevation_ft":34,"latitude":32.675883,"longitude":-115.372028,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":78,"width_ft":78,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN93","iata":"","local":"CN93","name":"Sierra Vista Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Luis Obispo","elevation_ft":235,"latitude":35.293729,"longitude":-120.665988,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO00","iata":"","local":"CO00","name":"Flagler Aerial Spraying Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Flagler","elevation_ft":4945,"latitude":39.27999877929688,"longitude":-103.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":75,"surface":"T"},{"id":"14/32","length_ft":3900,"width_ft":90,"surface":"T"},{"id":"17/35","length_ft":2620,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO01","iata":"","local":"CO01","name":"General Mail Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5223,"latitude":39.792621,"longitude":-104.899104,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":67,"width_ft":61,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO05","iata":"","local":"CO05","name":"Aurora Presbyterian Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Aurora","elevation_ft":5415,"latitude":39.72639846801758,"longitude":-104.8270034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CN95","iata":"","local":"CN95","name":"Heritage Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":-24,"latitude":37.9933056,"longitude":-121.4922903,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2837,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO03","iata":"","local":"CO03","name":"Aspen Gliderport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Aspen","elevation_ft":8440,"latitude":39.2599983215332,"longitude":-106.91200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO02","iata":"","local":"CO02","name":"Harrington Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bennet","elevation_ft":5975,"latitude":39.62969970703125,"longitude":-104.5189971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO06","iata":"","local":"CO06","name":"Wirth Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"New Raymer","elevation_ft":4881,"latitude":40.51359939575195,"longitude":-103.91200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4420,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN98","iata":"","local":"CN98","name":"Walters Camp Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Palo Verde","elevation_ft":309,"latitude":33.245556,"longitude":-114.710278,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO08","iata":"","local":"","name":"Public Service of Colorado Arvada Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Arvada","elevation_ft":5290,"latitude":39.8092,"longitude":-105.047997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO13","iata":"","local":"","name":"Heckendorf Ranches Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Brighton","elevation_ft":5060,"latitude":39.963299,"longitude":-104.749003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO14","iata":"","local":"","name":"Reasoner Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Brighton","elevation_ft":5100,"latitude":39.916698,"longitude":-104.805,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2600,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO16","iata":"","local":"CO16","name":"Arapahoe Medical Park/Littleton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Littleton","elevation_ft":5581,"latitude":39.57640075683594,"longitude":-104.98699951171876,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO21","iata":"","local":"CO21","name":"Craig Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Craig","elevation_ft":6500,"latitude":40.524200439453125,"longitude":-107.55599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO17","iata":"","local":"CO17","name":"Sky Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Byers","elevation_ft":5215,"latitude":39.713600158691406,"longitude":-104.19400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO15","iata":"","local":"CO15","name":"Kelly Air Park","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elbert","elevation_ft":7040,"latitude":39.2247009277,"longitude":-104.63999939,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":50,"surface":"G"},{"id":"17/35","length_ft":3800,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO07","iata":"","local":"CO07","name":"Athanasiou Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Blackhawk","elevation_ft":8900,"latitude":39.85419845581055,"longitude":-105.47100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO10","iata":"","local":"CO10","name":"Lemons Private Strip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Boulder","elevation_ft":5230,"latitude":39.99470138549805,"longitude":-105.2239990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO12","iata":"","local":"CO12","name":"Brighton Van-Aire Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Brighton","elevation_ft":5055,"latitude":39.98352,"longitude":-104.70464,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3700,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO23","iata":"","local":"CO23","name":"St Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6061,"latitude":38.848899841309,"longitude":-104.80799865723,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":580,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO24","iata":"","local":"CO24","name":"Penrose Saint Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6132,"latitude":38.86599,"longitude":-104.822182,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":84,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO26","iata":"","local":"","name":"Cirino Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Broomfield","elevation_ft":5380,"latitude":39.890301,"longitude":-105.087997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO29","iata":"","local":"","name":"University Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5418,"latitude":39.731899,"longitude":-104.938004,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO30","iata":"","local":"CO30","name":"Gates Rubber County Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5289,"latitude":39.698001861572266,"longitude":-104.98699951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO31","iata":"","local":"CO31","name":"Rose Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5383,"latitude":39.732734,"longitude":-104.932901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO32","iata":"","local":"CO32","name":"Capri Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5255,"latitude":39.85279846191406,"longitude":-104.97699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO33","iata":"","local":"","name":"Cheyenne Mountain Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":9440,"latitude":38.74166,"longitude":-104.840106,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO34","iata":"","local":"CO34","name":"St Lukes Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5330,"latitude":39.74720001220703,"longitude":-104.9810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO35","iata":"","local":"CO35","name":"Denver Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5212,"latitude":39.728223,"longitude":-104.990523,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO25","iata":"","local":"CO25","name":"Metrogro Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Agate","elevation_ft":5240,"latitude":39.494857,"longitude":-103.727361,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3700,"width_ft":48,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO36","iata":"","local":"CO36","name":"Elbert County Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Kiowa","elevation_ft":6380,"latitude":39.34389877319336,"longitude":-104.46499633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO37","iata":"","local":"CO37","name":"St Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5463,"latitude":39.746181,"longitude":-104.970543,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO39","iata":"","local":"CO39","name":"Denver Federal Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5550,"latitude":39.723300933838,"longitude":-105.11100006104,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO40","iata":"","local":"CO40","name":"Vtol Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5354,"latitude":39.742801666259766,"longitude":-104.99400329589844,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO41","iata":"","local":"CO41","name":"Denver Police Department-District 3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5340,"latitude":39.6875,"longitude":-104.95999908447,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2573,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO44","iata":"","local":"CO44","name":"Yankee Port Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Greenwood Village","elevation_ft":5854,"latitude":39.57500076293945,"longitude":-104.8759994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO45","iata":"","local":"CO45","name":"Avista Adventist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Louisville","elevation_ft":5510,"latitude":39.952439,"longitude":-105.151289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO46","iata":"","local":"CO46","name":"Mercy Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Durango","elevation_ft":6585,"latitude":37.2832984924,"longitude":-107.874000549,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO42","iata":"","local":"CO42","name":"Circle 8 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6650,"latitude":39.33470153808594,"longitude":-104.5459976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3700,"width_ft":80,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO38","iata":"","local":"CO38","name":"Comanche Airfield Llc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Strasburg","elevation_ft":5350,"latitude":39.74720001220703,"longitude":-104.31300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO49","iata":"","local":"","name":"Flying Lazy D Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Elbert","elevation_ft":6910,"latitude":39.162498,"longitude":-104.535004,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2726,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO50","iata":"","local":"CO50","name":"Aspen Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Aspen","elevation_ft":8140,"latitude":39.190006808300005,"longitude":-106.839004755,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO51","iata":"","local":"CO51","name":"Henderson Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Empire","elevation_ft":10400,"latitude":39.7682991027832,"longitude":-105.8479995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO57","iata":"","local":"CO57","name":"Rhoads Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Firestone","elevation_ft":5000,"latitude":40.112701416015625,"longitude":-104.9520034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO62","iata":"","local":"CO62","name":"Cherry Creek Townhouse Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Glendale","elevation_ft":5340,"latitude":39.70550155639648,"longitude":-104.93900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO60","iata":"","local":"CO60","name":"Horseshoe Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Keenesburg","elevation_ft":4800,"latitude":40.105344,"longitude":-104.429712,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO53","iata":"","local":"CO53","name":"Yankee Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":5050,"latitude":40.63470077514648,"longitude":-104.99099731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO55","iata":"","local":"CO55","name":"Christman Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":5160,"latitude":40.597198486328125,"longitude":-105.1439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO56","iata":"","local":"CO56","name":"Jjs Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Keenesburg","elevation_ft":5075,"latitude":39.9640998840332,"longitude":-104.46299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4280,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO59","iata":"","local":"CO59","name":"Hay Fever Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Galeton","elevation_ft":4840,"latitude":40.54579925537109,"longitude":-104.56400299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO63","iata":"","local":"CO63","name":"Brown's Fort Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Canon City","elevation_ft":6300,"latitude":38.49639892578125,"longitude":-105.31099700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO64","iata":"","local":"CO64","name":"Mount San Rafael Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Trinidad","elevation_ft":6100,"latitude":37.1875,"longitude":-104.48799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO66","iata":"","local":"","name":"Morton Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Golden","elevation_ft":7360,"latitude":39.7103,"longitude":-105.245003,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2554,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO67","iata":"","local":"","name":"Schwartzwalder Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Golden","elevation_ft":6580,"latitude":39.847197,"longitude":-105.281998,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2225,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO68","iata":"","local":"CO68","name":"Frederick-Firestone F.S. #2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Frederick","elevation_ft":4974,"latitude":40.121944,"longitude":-104.980833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO69","iata":"","local":"","name":"Dan Riggs Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Westcliffe","elevation_ft":7880,"latitude":38.1478,"longitude":-105.467003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO70","iata":"","local":"","name":"Uhrich Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Greeley","elevation_ft":4715,"latitude":40.460499,"longitude":-104.646003,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1998,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO71","iata":"","local":"CO71","name":"Parkview Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":4766,"latitude":38.280799865722656,"longitude":-104.61399841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":57,"width_ft":57,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO72","iata":"","local":"CO72","name":"Helitrax / Telluride Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Telluride","elevation_ft":9430,"latitude":37.939999,"longitude":-107.848998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":18,"width_ft":18,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO74","iata":"","local":"CO74","name":"Mc Elroy Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Kremmling","elevation_ft":9209,"latitude":40.0027999878,"longitude":-106.452003479,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO75","iata":"","local":"CO75","name":"Overlook Athletic Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Breckenridge","elevation_ft":10085,"latitude":39.47299957275391,"longitude":-106.03299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO65","iata":"","local":"CO65","name":"Geary Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Westcliffe","elevation_ft":8300,"latitude":38.04579925537109,"longitude":-105.47100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4200,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO77","iata":"","local":"","name":"Horth Strip","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Hudson","elevation_ft":5128,"latitude":39.9786,"longitude":-104.594002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO78","iata":"","local":"CO78","name":"Lincoln Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Hugo","elevation_ft":5034,"latitude":39.138832,"longitude":-103.474474,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO79","iata":"","local":"CO79","name":"Falcon Air Force Base Helipad","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6288,"latitude":38.70330047607422,"longitude":-104.52300262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO83","iata":"","local":"","name":"Bulk Mail Center Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Commerce City","elevation_ft":5290,"latitude":39.800301,"longitude":-104.901001,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1293,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO84","iata":"","local":"CO84","name":"Idlers Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Kirk","elevation_ft":4159,"latitude":39.60829925537109,"longitude":-102.54100036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4250,"width_ft":65,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO85","iata":"","local":"CO85","name":"Rifle Junction Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rifle","elevation_ft":5609,"latitude":39.53390121459961,"longitude":-107.77200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO86","iata":"","local":"","name":"Granby Sports Park Ultralightport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Granby","elevation_ft":8110,"latitude":40.048599,"longitude":-105.938004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO87","iata":"","local":"CO87","name":"Dbs Air Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rifle","elevation_ft":5548,"latitude":39.52780151367188,"longitude":-107.71900177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":17,"width_ft":17,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO88","iata":"","local":"CO88","name":"Kusa Helistop","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5260,"latitude":39.721099853515625,"longitude":-104.98300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":74,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO90","iata":"","local":"CO90","name":"Usaf Academy Bullseye Aux Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Ellicott","elevation_ft":6036,"latitude":38.75830078125,"longitude":-104.30699920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3487,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO80","iata":"","local":"CO80","name":"Fowler Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Fowler","elevation_ft":4428,"latitude":38.0724983215332,"longitude":-104.0459976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3240,"width_ft":40,"surface":"A"},{"id":"12/30","length_ft":2850,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO82","iata":"","local":"CO82","name":"Land Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Keenesburg","elevation_ft":5000,"latitude":40.09579849243164,"longitude":-104.58899688720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":20,"surface":"C"},{"id":"17/35","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO91","iata":"","local":"","name":"Heli-Support Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":4935,"latitude":40.583604,"longitude":-105.035182,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO94","iata":"","local":"","name":"Decker Farms Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Lindon","elevation_ft":5050,"latitude":39.706902,"longitude":-103.351997,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1540,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO98","iata":"","local":"","name":"Bowen Farms Number 1 Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Littleton","elevation_ft":5450,"latitude":39.549999,"longitude":-105.033997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO99","iata":"","local":"","name":"Denver ARTCC Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Longmont","elevation_ft":5057,"latitude":40.1882,"longitude":-105.12652,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CPF2","iata":"YEB","local":"CPF2","name":"Bar River Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Bar River","elevation_ft":591,"latitude":46.42029953,"longitude":-84.0922012329,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2850,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CPZ3","iata":"","local":"CPZ3","name":"Trenton / Mountain View Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Prince Edward County","elevation_ft":362,"latitude":44.0694007874,"longitude":-77.3380966187,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT00","iata":"","local":"CT00","name":"Electro-Methods Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"South Windsor","elevation_ft":104,"latitude":41.83200073242188,"longitude":-72.60089874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO96","iata":"","local":"CO96","name":"Reed Hollow Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Franktown","elevation_ft":6200,"latitude":39.371700286865234,"longitude":-104.74299621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO95","iata":"","local":"CO95","name":"True Grit South Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Telluride","elevation_ft":9580,"latitude":38.052378,"longitude":-107.984871,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":4000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO93","iata":"","local":"CO93","name":"Perry Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Larkspur","elevation_ft":6700,"latitude":39.25,"longitude":-104.89099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5700,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO97","iata":"","local":"CO97","name":"Comanche Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Strasburg","elevation_ft":5435,"latitude":39.72079849243164,"longitude":-104.322998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2837,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT02","iata":"","local":"CT02","name":"Clark Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Glastonbury","elevation_ft":720,"latitude":41.642608,"longitude":-72.562777,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT03","iata":"","local":"CT03","name":"Bristol Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Bristol","elevation_ft":406,"latitude":41.675899505615234,"longitude":-72.93620300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT04","iata":"","local":"","name":"Grass Land Air Field","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"North Canaan","elevation_ft":705,"latitude":42.039002,"longitude":-73.287103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT05","iata":"","local":"CT05","name":"Kaman Aerospace Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Bloomfield","elevation_ft":164,"latitude":41.86199951171875,"longitude":-72.69979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT06","iata":"","local":"CT06","name":"Delta One Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Hartford","elevation_ft":21,"latitude":41.78900146484375,"longitude":-72.66059875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT10","iata":"","local":"CT10","name":"Flat Rock Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Sterling","elevation_ft":650,"latitude":41.742631,"longitude":-71.8125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT12","iata":"","local":"CT12","name":"St. Vincent's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Bridgeport","elevation_ft":148,"latitude":41.201251,"longitude":-73.201543,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT15","iata":"","local":"CT15","name":"Wysocki Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Ellington","elevation_ft":390,"latitude":41.94540023803711,"longitude":-72.47760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT07","iata":"","local":"CT07","name":"Skis Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Colchester","elevation_ft":510,"latitude":41.573393,"longitude":-72.301318,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT13","iata":"","local":"CT13","name":"Yankee Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"East Killingly","elevation_ft":720,"latitude":41.874482,"longitude":-71.819472,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT09","iata":"","local":"CT09","name":"Heckler Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Coventry","elevation_ft":793,"latitude":41.802898,"longitude":-72.391701,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1360,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT16","iata":"","local":"CT16","name":"Fetske Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-CT","municipality":"Essex","elevation_ft":0,"latitude":41.375099182128906,"longitude":-72.37449645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT23","iata":"","local":"CT23","name":"Della Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Enfield","elevation_ft":115,"latitude":41.94010162353516,"longitude":-72.60590362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT25","iata":"","local":"CT25","name":"Miry Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Middlebury","elevation_ft":728,"latitude":41.556934,"longitude":-73.124328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT27","iata":"","local":"CT27","name":"Tennessee F Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Enfield","elevation_ft":177,"latitude":42.00400161743164,"longitude":-72.54010009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT28","iata":"","local":"CT28","name":"Veterans Home & Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Rocky Hill","elevation_ft":150,"latitude":41.65840148925781,"longitude":-72.64759826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT35","iata":"","local":"CT35","name":"Hamilton Standard Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Windsor Locks","elevation_ft":173,"latitude":41.93339920043945,"longitude":-72.69950103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT37","iata":"","local":"CT37","name":"Sikorsky Bridgeport Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Bridgeport","elevation_ft":7,"latitude":41.161016,"longitude":-73.204916,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":750,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT38","iata":"","local":"CT38","name":"Corporate Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Glastonbury","elevation_ft":104,"latitude":41.71229934692383,"longitude":-72.58789825439453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT39","iata":"","local":"CT39","name":"Maplewood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Durham","elevation_ft":280,"latitude":41.468575,"longitude":-72.708857,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT36","iata":"","local":"CT36","name":"Gager Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Bozrah","elevation_ft":465,"latitude":41.564499,"longitude":-72.197304,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT20","iata":"","local":"CT20","name":"Rankl Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Marlborough","elevation_ft":350,"latitude":41.599591,"longitude":-72.434278,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT40","iata":"","local":"CT40","name":"Bob Thomas Ford Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Hamden","elevation_ft":80,"latitude":41.36980056762695,"longitude":-72.91729736328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT41","iata":"","local":"CT41","name":"General Electric Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Fairfield","elevation_ft":122,"latitude":41.216757,"longitude":-73.255618,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT46","iata":"","local":"CT46","name":"Milford-Alexander Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Milford","elevation_ft":20,"latitude":41.234500885009766,"longitude":-73.03179931640625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT50","iata":"","local":"CT50","name":"Marks Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"East Granby","elevation_ft":150,"latitude":41.942901611328125,"longitude":-72.7061996459961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT53","iata":"","local":"CT53","name":"Mountain View Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Somers","elevation_ft":290,"latitude":42.0192985534668,"longitude":-72.48370361328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT56","iata":"","local":"","name":"50 Washington Street Heliport","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"Norwalk","elevation_ft":143,"latitude":41.099472,"longitude":-73.419483,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT60","iata":"","local":"CT60","name":"Ultimate Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Bristol","elevation_ft":253,"latitude":41.675201416015625,"longitude":-72.89109802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT62","iata":"","local":"CT62","name":"Twin Manufacturing Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"South Windsor","elevation_ft":60,"latitude":41.809722,"longitude":-72.609722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT52","iata":"","local":"CT52","name":"Flying Ridge Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Newtown","elevation_ft":610,"latitude":41.36819839477539,"longitude":-73.29119873046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT69","iata":"","local":"CT69","name":"Nasin Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Willimantic","elevation_ft":242,"latitude":41.725399017333984,"longitude":-72.19170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT71","iata":"","local":"CT71","name":"RTX Farmington Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Farmington","elevation_ft":362,"latitude":41.708928,"longitude":-72.8021,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":87,"width_ft":87,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT73","iata":"","local":"CT73","name":"South Meadows Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Hartford","elevation_ft":200,"latitude":41.72320175170898,"longitude":-72.86009979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT75","iata":"","local":"CT75","name":"UConn Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Farmington","elevation_ft":340,"latitude":41.733284,"longitude":-72.793125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT76","iata":"","local":"CT76","name":"Chase Manhattan Bank of Ct Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Trumbull","elevation_ft":200,"latitude":41.2422981262207,"longitude":-73.15039825439453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":325,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT78","iata":"","local":"CT78","name":"Lord Creek Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-CT","municipality":"Lyme","elevation_ft":0,"latitude":41.35150146484375,"longitude":-72.3551025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":2900,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT86","iata":"","local":"CT86","name":"Sanford Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"East Haddam","elevation_ft":300,"latitude":41.43399810791016,"longitude":-72.39399719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":600,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT87","iata":"","local":"CT87","name":"Bootlegger's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-CT","municipality":"Enfield","elevation_ft":35,"latitude":41.9984016418457,"longitude":-72.60590362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT88","iata":"","local":"","name":"Rentschler Heliport","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"East Hartford","elevation_ft":30,"latitude":41.7517,"longitude":-72.6253,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT85","iata":"","local":"CT85","name":"Roberts Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"East Windsor","elevation_ft":37,"latitude":41.88980102539063,"longitude":-72.61509704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT74","iata":"","local":"CT74","name":"Westford Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Ashford","elevation_ft":900,"latitude":41.951405,"longitude":-72.181578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT89","iata":"","local":"CT89","name":"Itt Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Shelton","elevation_ft":327,"latitude":41.27510070800781,"longitude":-73.13289642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT91","iata":"","local":"","name":"USSC Heliport","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"Norwalk","elevation_ft":165,"latitude":41.152318,"longitude":-73.427343,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT92","iata":"","local":"CT92","name":"Bemer Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Portland","elevation_ft":160,"latitude":41.62289810180664,"longitude":-72.60060119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":18,"width_ft":18,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT93","iata":"","local":"CT93","name":"Backus Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Norwich","elevation_ft":109,"latitude":41.54209899902344,"longitude":-72.09230041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT95","iata":"","local":"CT95","name":"Meriden-Wallingford Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Meriden","elevation_ft":145,"latitude":41.53340148925781,"longitude":-72.80979919433594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT97","iata":"","local":"CT97","name":"Shoreline Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Essex","elevation_ft":59,"latitude":41.32899856567383,"longitude":-72.4281005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CT98","iata":"","local":"CT98","name":"Middlesex Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Middletown","elevation_ft":57,"latitude":41.554841,"longitude":-72.64614,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAB","iata":"YAB","local":"","name":"Arctic Bay Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Arctic Bay","elevation_ft":72,"latitude":73.006101,"longitude":-85.04616,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3935,"width_ft":98,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAD","iata":"YAR","local":"YAD","name":"La Grande-3 Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"La Grande-3","elevation_ft":775,"latitude":53.5717010498,"longitude":-76.19640350339999,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5009,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAH","iata":"YAH","local":"","name":"La Grande-4 Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"La Grande-4","elevation_ft":1005,"latitude":53.754699707,"longitude":-73.6753005981,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5009,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAM","iata":"YAM","local":"","name":"Sault Ste Marie Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Sault Ste Marie","elevation_ft":630,"latitude":46.483216,"longitude":-84.508467,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6000,"width_ft":200,"surface":"A"},{"id":"12/30","length_ft":6000,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAS","iata":"YKG","local":"","name":"Kangirsuk Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Kangirsuk","elevation_ft":403,"latitude":60.02719879150391,"longitude":-69.99919891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3521,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYAY","iata":"YAY","local":"","name":"St. Anthony Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"St. Anthony","elevation_ft":108,"latitude":51.391909,"longitude":-56.08321,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBC","iata":"YBC","local":"YBC","name":"Baie-Comeau Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Baie-Comeau","elevation_ft":71,"latitude":49.1325,"longitude":-68.204399,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBE","iata":"YBE","local":"","name":"Uranium City Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Uranium City","elevation_ft":1044,"latitude":59.5614013671875,"longitude":-108.4810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3935,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBG","iata":"YBG","local":"","name":"CFB Bagotville / Saguenay-Bagotville Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"La Baie","elevation_ft":522,"latitude":48.331908,"longitude":-70.992909,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":10000,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":6029,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBR","iata":"YBR","local":"","name":"Brandon Municipal Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Brandon","elevation_ft":1343,"latitude":49.91,"longitude":-99.951897,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6510,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBU","iata":"","local":"","name":"Nipawin Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Nipawin","elevation_ft":1220,"latitude":53.33250045776367,"longitude":-104.00800323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2933,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":2900,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBX","iata":"YBX","local":"","name":"Lourdes-de-Blanc-Sablon Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-QC","municipality":"Blanc-Sablon","elevation_ft":121,"latitude":51.4436,"longitude":-57.185299,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYCA","iata":"YRF","local":"","name":"Cartwright Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Cartwright","elevation_ft":40,"latitude":53.682501,"longitude":-57.042303,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3937,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYCB","iata":"YCB","local":"","name":"Cambridge Bay Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Cambridge Bay","elevation_ft":90,"latitude":69.1081008911,"longitude":-105.138000488,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5076,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYCO","iata":"YCO","local":"","name":"Kugluktuk Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NU","municipality":"Kugluktuk","elevation_ft":74,"latitude":67.816704,"longitude":-115.143997,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5502,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYCQ","iata":"YCQ","local":"","name":"Chetwynd Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Chetwynd","elevation_ft":2000,"latitude":55.687198638916016,"longitude":-121.6269989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4481,"width_ft":100,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYBV","iata":"YBV","local":"","name":"Berens River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Berens River","elevation_ft":728,"latitude":52.358898,"longitude":-97.018303,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2888,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYCP","iata":"","local":"","name":"Blue River Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Blue River","elevation_ft":2240,"latitude":52.11669921875,"longitude":-119.28299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5066,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYCT","iata":"YCT","local":"","name":"Coronation Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-AB","municipality":"Coronation","elevation_ft":2595,"latitude":52.0750007629,"longitude":-111.444999695,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYDA","iata":"YDA","local":"","name":"Dawson City Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Dawson City","elevation_ft":1215,"latitude":64.04309844970703,"longitude":-139.1280059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5006,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDF","iata":"YDF","local":"","name":"Deer Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NL","municipality":"Deer Lake","elevation_ft":72,"latitude":49.21080017089844,"longitude":-57.39139938354492,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8005,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYDL","iata":"YDL","local":"","name":"Dease Lake Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Dease Lake","elevation_ft":2600,"latitude":58.4221992493,"longitude":-130.031997681,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6003,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TX0","iata":"","local":"4TX0","name":"Slack Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mont Belvieu","elevation_ft":35,"latitude":29.86359977722168,"longitude":-94.83439636230467,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYDN","iata":"YDN","local":"","name":"Dauphin Barker Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-MB","municipality":"Dauphin","elevation_ft":999,"latitude":51.10079956054688,"longitude":-100.052001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5002,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":2703,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4VA2","iata":"","local":"","name":"Potomac Hospital Helistop","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Woodbridge","elevation_ft":190,"latitude":38.6362,"longitude":-77.286102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WA3","iata":"","local":"4WA3","name":"PeaceHealth Saint John's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Longview","elevation_ft":52,"latitude":46.130362,"longitude":-122.940205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WA6","iata":"","local":"","name":"Hille-Kimp Airstrip","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Pasco","elevation_ft":1500,"latitude":46.6185,"longitude":-118.595001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4VA5","iata":"","local":"4VA5","name":"Starr Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Arrington","elevation_ft":640,"latitude":37.65959930419922,"longitude":-78.92220306396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4VG2","iata":"","local":"4VG2","name":"Cool Water Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Ashland","elevation_ft":250,"latitude":37.858104,"longitude":-77.545511,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4VA8","iata":"","local":"4VA8","name":"Christian's Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":125,"latitude":37.613800048828125,"longitude":-77.2957992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4VA3","iata":"","local":"4VA3","name":"Flying W Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":101,"latitude":37.42990112304688,"longitude":-77.39440155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WA0","iata":"","local":"4WA0","name":"B & G Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Royal City","elevation_ft":1120,"latitude":46.928056,"longitude":-119.739166,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3700,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WA2","iata":"","local":"4WA2","name":"Cricket Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Little Rock","elevation_ft":184,"latitude":46.92720031738281,"longitude":-122.96800231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WA4","iata":"","local":"4WA4","name":"Windsock Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Lopez","elevation_ft":30,"latitude":48.541500091552734,"longitude":-122.88700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WA1","iata":"","local":"4WA1","name":"Brown's Cape Horn Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Washougal","elevation_ft":920,"latitude":45.607191,"longitude":-122.197815,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WI2","iata":"","local":"","name":"Island View Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Crandon","elevation_ft":1640,"latitude":45.606098,"longitude":-89.0215,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":900,"width_ft":70,"surface":"T"},{"id":"18/36","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WI3","iata":"","local":"","name":"Neveln Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Crivitz","elevation_ft":900,"latitude":45.325199,"longitude":-88.137299,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":2500,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WI6","iata":"","local":"","name":"Feldmann Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Sheboygan Falls","elevation_ft":750,"latitude":43.803268,"longitude":-87.896183,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WI7","iata":"","local":"4WI7","name":"Aurora Medical Center Sheboygan County Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Kohler","elevation_ft":686,"latitude":43.734121,"longitude":-87.755002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4WI9","iata":"","local":"","name":"Mar-O-Dae Farm Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Glenwood City","elevation_ft":1164,"latitude":45.006901,"longitude":-92.191803,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2420,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00AA","iata":"","local":"00AA","name":"Aero B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Leoti","elevation_ft":3435,"latitude":38.704022,"longitude":-101.473911,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3435,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00AR","iata":"","local":"","name":"Newport Hospital & Clinic Heliport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Newport","elevation_ft":237,"latitude":35.6087,"longitude":-91.254898,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1380,"width_ft":30,"surface":"T"},{"id":"12/30","length_ft":1200,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":225,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95TS","iata":"","local":"95TS","name":"Rob Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Loving","elevation_ft":1310,"latitude":33.23080062866211,"longitude":-98.4897003173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OK2","iata":"","local":"6OK2","name":"Redhills Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chickasha","elevation_ft":1175,"latitude":35.062801361083984,"longitude":-97.89530181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1986,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00CN","iata":"","local":"00CN","name":"Kitchen Creek Helibase Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Pine Valley","elevation_ft":3350,"latitude":32.7273736,"longitude":-116.4597417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"C"},{"id":"H2","length_ft":110,"width_ft":110,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00FA","iata":"","local":"00FA","name":"Grass Patch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bushnell","elevation_ft":53,"latitude":28.64550018310547,"longitude":-82.21900177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00FL","iata":"","local":"00FL","name":"River Oak Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":35,"latitude":27.230899810791016,"longitude":-80.96920013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00GE","iata":"","local":"00GE","name":"Caffrey Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Hiram","elevation_ft":957,"latitude":33.887982,"longitude":-84.736983,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":95,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00AK","iata":"","local":"00AK","name":"Lowell Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anchor Point","elevation_ft":450,"latitude":59.947733,"longitude":-151.692524,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00AN","iata":"","local":"00AN","name":"Katmai Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"King Salmon","elevation_ft":80,"latitude":59.093287,"longitude":-156.456699,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4517,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00GA","iata":"","local":"00GA","name":"Lt World Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lithonia","elevation_ft":700,"latitude":33.76750183105469,"longitude":-84.06829833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00AL","iata":"","local":"00AL","name":"Epps Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Harvest","elevation_ft":820,"latitude":34.86479949951172,"longitude":-86.77030181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00ID","iata":"","local":"00ID","name":"Delta Shores Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Clark Fork","elevation_ft":2064,"latitude":48.145301818847656,"longitude":-116.21399688720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3500,"width_ft":40,"surface":"T"},{"id":"11/29","length_ft":2900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00IG","iata":"","local":"00IG","name":"Goltl Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"McDonald","elevation_ft":3359,"latitude":39.724028,"longitude":-101.395994,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2450,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00IN","iata":"","local":"00IN","name":"St Mary Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Hobart","elevation_ft":634,"latitude":41.51139831542969,"longitude":-87.2605972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00IS","iata":"","local":"00IS","name":"Hayenga's Cant Find Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kings","elevation_ft":820,"latitude":40.02560043334961,"longitude":-89.1229019165039,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00KY","iata":"","local":"00KY","name":"Robbins Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Stanford","elevation_ft":1265,"latitude":37.409400939941406,"longitude":-84.61969757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00LA","iata":"","local":"00LA","name":"Shell Chemical East Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Gonzales","elevation_ft":15,"latitude":30.191944,"longitude":-90.980833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT40","iata":"","local":"TT40","name":"Burkett Ranch/Jackson Pasture Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Graham","elevation_ft":1214,"latitude":33.075693,"longitude":-98.799351,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2540,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00MI","iata":"","local":"00MI","name":"Dow Chemical Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ludington","elevation_ft":588,"latitude":43.94940185546875,"longitude":-86.41670227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00MN","iata":"","local":"00MN","name":"Battle Lake Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Battle Lake","elevation_ft":1365,"latitude":46.29999923706055,"longitude":-95.70030212402344,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":2949,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00MT","iata":"","local":"00MT","name":"Livingston Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Livingston","elevation_ft":4465,"latitude":45.675,"longitude":-110.52515,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00KS","iata":"","local":"00KS","name":"Hayden Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Gardner","elevation_ft":1100,"latitude":38.72779846191406,"longitude":-94.93049621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00LS","iata":"","local":"00LS","name":"Lejeune Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Crowley","elevation_ft":12,"latitude":30.136299,"longitude":-92.429398,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00NJ","iata":"","local":"00NJ","name":"Colgate-Piscataway Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":78,"latitude":40.52090072631836,"longitude":-74.47460174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00NK","iata":"","local":"00NK","name":"Cliche Cove Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Beekmantown","elevation_ft":96,"latitude":44.8118612,"longitude":-73.3698057,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00NR","iata":"","local":"00NR","name":"Rodanthe Dare County Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Rodanthe","elevation_ft":8,"latitude":35.594729,"longitude":-75.470002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00OH","iata":"","local":"","name":"Exit 3 Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Wauseon","elevation_ft":785,"latitude":41.590476,"longitude":-84.141583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00OI","iata":"","local":"00OI","name":"Miami Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":905,"latitude":39.745091,"longitude":-84.187278,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00TA","iata":"","local":"","name":"SW Region FAA Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":598,"latitude":32.8269,"longitude":-97.305801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":107,"width_ft":107,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00TE","iata":"","local":"00TE","name":"Tcjc-Northeast Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":600,"latitude":32.847599029541016,"longitude":-97.1894989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00PN","iata":"","local":"00PN","name":"Ferrell Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Mercer","elevation_ft":1301,"latitude":41.2995,"longitude":-80.211111,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00SC","iata":"","local":"00SC","name":"Flying O Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Sumter","elevation_ft":150,"latitude":34.0093994140625,"longitude":-80.26719665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00NC","iata":"","local":"00NC","name":"North Raleigh Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Louisburg","elevation_ft":348,"latitude":36.08520126342773,"longitude":-78.37139892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2650,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00OK","iata":"","local":"00OK","name":"Gull Bay Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sandsprings","elevation_ft":960,"latitude":36.198598,"longitude":-96.217693,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00SD","iata":"","local":"00SD","name":"Homan Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Gary","elevation_ft":1590,"latitude":44.809158,"longitude":-96.498897,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00TX","iata":"","local":"","name":"San Jacinto Methodist Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":19,"latitude":29.7377,"longitude":-94.980201,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3891,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"71OK","iata":"","local":"71OK","name":"Neuwirth Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lawton","elevation_ft":1185,"latitude":34.57619857788086,"longitude":-98.48300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1940,"width_ft":165,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00WY","iata":"","local":"00WY","name":"Mountain View Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Casper","elevation_ft":5210,"latitude":42.840361,"longitude":-106.224443,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00XS","iata":"","local":"","name":"L P Askew Farms Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"O'Donnell","elevation_ft":3110,"latitude":33.033401,"longitude":-101.933998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01AK","iata":"","local":"01AK","name":"Providence Seward Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Seward","elevation_ft":120,"latitude":60.1058739754,"longitude":-149.446249008,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00WI","iata":"","local":"00WI","name":"Northern Lite Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Waupaca","elevation_ft":860,"latitude":44.304298400878906,"longitude":-89.05010223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00VI","iata":"","local":"00VI","name":"Groundhog Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hillsville","elevation_ft":2680,"latitude":36.66329956054688,"longitude":-80.49949645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01AL","iata":"","local":"01AL","name":"Ware Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Clanton","elevation_ft":344,"latitude":32.94599914550781,"longitude":-86.51390075683594,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00WN","iata":"","local":"00WN","name":"Hawks Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Asotin","elevation_ft":2900,"latitude":46.25,"longitude":-117.2490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1440,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00WA","iata":"","local":"00WA","name":"Howell Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Longbranch","elevation_ft":150,"latitude":47.17839813232422,"longitude":-122.77200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01AN","iata":"","local":"01AN","name":"McHone Heights Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":610,"latitude":61.649095,"longitude":-149.339025,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1886,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00TS","iata":"","local":"00TS","name":"Alpine Range Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Everman","elevation_ft":670,"latitude":32.607601165771484,"longitude":-97.24199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01AR","iata":"","local":"01AR","name":"DeQueen Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"DeQueen","elevation_ft":440,"latitude":34.047456,"longitude":-94.354023,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01AZ","iata":"","local":"01AZ","name":"Yat Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Camp Verde","elevation_ft":3300,"latitude":34.607406,"longitude":-111.8609,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":210,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01CA","iata":"","local":"01CA","name":"SCE Lugo Substation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Hesperia","elevation_ft":3733,"latitude":34.368241,"longitude":-117.370059,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01CN","iata":"","local":"","name":"Los Angeles County Sheriff's Department Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":300,"latitude":34.0378,"longitude":-118.153999,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01CO","iata":"","local":"01CO","name":"St Vincent General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Leadville","elevation_ft":10175,"latitude":39.24530029296875,"longitude":-106.24600219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01CT","iata":"","local":"01CT","name":"Berlin Fairgrounds Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Berlin","elevation_ft":60,"latitude":41.62730026245117,"longitude":-72.72750091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01FD","iata":"","local":"01FD","name":"Advent Health Altamonte Springs Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Altamonte Springs","elevation_ft":86,"latitude":28.666639,"longitude":-81.3697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK08","iata":"","local":"OK08","name":"Hill Top Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lawton","elevation_ft":1100,"latitude":34.527021,"longitude":-98.348464,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01GA","iata":"","local":"01GA","name":"Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Columbus","elevation_ft":319,"latitude":32.47930145263672,"longitude":-84.9791030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01FA","iata":"","local":"01FA","name":"Rybolt Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":55,"latitude":28.589399337768555,"longitude":-81.14420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01GE","iata":"","local":"01GE","name":"The Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Wrightsville","elevation_ft":375,"latitude":32.675106,"longitude":-82.771055,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2560,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01CL","iata":"","local":"01CL","name":"Swansboro Country Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Placerville","elevation_ft":2594,"latitude":38.79990005493164,"longitude":-120.73400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3100,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01IL","iata":"","local":"01IL","name":"Hoopeston Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Hoopeston","elevation_ft":583,"latitude":40.45859909057617,"longitude":-87.65950012207031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01IN","iata":"","local":"01IN","name":"Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Anderson","elevation_ft":890,"latitude":40.13090133666992,"longitude":-85.69580078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01KY","iata":"","local":"01KY","name":"Lourdes Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Paducah","elevation_ft":419,"latitude":37.051700592041016,"longitude":-88.64689636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01LA","iata":"","local":"01LA","name":"Barham Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Oak Ridge","elevation_ft":90,"latitude":32.638999938964844,"longitude":-91.77369689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01MA","iata":"","local":"01MA","name":"Compaq Andover Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Andover","elevation_ft":140,"latitude":42.625099182128906,"longitude":-71.18009948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01MD","iata":"","local":"01MD","name":"Annapolis Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MD","municipality":"Annapolis","elevation_ft":0,"latitude":38.999199,"longitude":-76.456001,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":3500,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01ME","iata":"","local":"01ME","name":"Saint Peter's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Portage Lake","elevation_ft":608,"latitude":46.778900146484375,"longitude":-68.50029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"15W/33W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01MI","iata":"","local":"01MI","name":"Flow Through Terminal Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Flint","elevation_ft":736,"latitude":43.04949951171875,"longitude":-83.67970275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01MN","iata":"","local":"01MN","name":"Barnes Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Cook","elevation_ft":1358,"latitude":47.899600982666016,"longitude":-92.55740356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":10000,"width_ft":600,"surface":"W"},{"id":"NW/SE","length_ft":10000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01MO","iata":"","local":"01MO","name":"Highway Patrol Troop C Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Town and Country","elevation_ft":615,"latitude":38.641700744628906,"longitude":-90.48429870605467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CYWA","iata":"YWA","local":"","name":"Petawawa Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Petawawa","elevation_ft":427,"latitude":45.95220184326172,"longitude":-77.31919860839844,"has_tower":false,"has_beacon":false,"runways":[],"frequencies":[],"has_metar":true,"public":true},{"icao":"01LS","iata":"","local":"01LS","name":"Country Breeze Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Slaughter","elevation_ft":125,"latitude":30.722478,"longitude":-91.077372,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK47","iata":"","local":"OK47","name":"Miller Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Manchester","elevation_ft":1250,"latitude":36.96002,"longitude":-98.03039,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01MT","iata":"","local":"01MT","name":"Crystal Lakes Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Fortine","elevation_ft":3141,"latitude":48.789100646972656,"longitude":-114.87999725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5000,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01MU","iata":"","local":"01MU","name":"NWMC - Houghton Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tucson","elevation_ft":2873,"latitude":32.196747,"longitude":-110.775142,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK77","iata":"","local":"OK77","name":"Mound Valley Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hydro","elevation_ft":1628,"latitude":35.415877,"longitude":-98.542486,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01NJ","iata":"","local":"01NJ","name":"Albert Guido Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newark","elevation_ft":10,"latitude":40.739956,"longitude":-74.136128,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01NR","iata":"","local":"01NR","name":"McGee 01 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Wilmington","elevation_ft":40,"latitude":34.196264,"longitude":-77.919917,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01NY","iata":"","local":"01NY","name":"Vassar Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Poughkeepsie","elevation_ft":100,"latitude":41.692415,"longitude":-73.93683,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01OH","iata":"","local":"01OH","name":"Atrium Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Middletown","elevation_ft":775,"latitude":39.497455,"longitude":-84.313851,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01OI","iata":"","local":"01OI","name":"Avita Health System Galion Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Galion","elevation_ft":1140,"latitude":40.730267,"longitude":-82.802022,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01NC","iata":"","local":"01NC","name":"Topsail Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Holly Ridge","elevation_ft":65,"latitude":34.47529983520508,"longitude":-77.5813980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3200,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01OL","iata":"","local":"01OL","name":"Spring Creek Ranch East Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Tishomingo","elevation_ft":1060,"latitude":34.391667,"longitude":-96.690833,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1600,"width_ft":75,"surface":"T"},{"id":"15/33","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01NM","iata":"","local":"01NM","name":"Champion Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Lake Arthur","elevation_ft":3630,"latitude":33.008611,"longitude":-104.540278,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":70,"surface":"D"},{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01OR","iata":"","local":"","name":"Red & White Flying Service Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Silver Lake","elevation_ft":4346,"latitude":43.119301,"longitude":-121.044997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":49,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01PA","iata":"","local":"","name":"Pine Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Mars","elevation_ft":1215,"latitude":40.655602,"longitude":-80.050903,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01TA","iata":"","local":"01TA","name":"Thirty Thirty Matlock Office Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Arlington","elevation_ft":630,"latitude":32.69419860839844,"longitude":-97.11579895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01TS","iata":"","local":"","name":"St Joseph Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":675,"latitude":32.7285,"longitude":-97.324501,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01TT","iata":"","local":"01TT","name":"Clute Fire & EMS Station #1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Clute","elevation_ft":7,"latitude":29.012067,"longitude":-95.402119,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"00AS","iata":"","local":"00AS","name":"Fulton Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alex","elevation_ft":1100,"latitude":34.9428028,"longitude":-97.8180194,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01WA","iata":"","local":"01WA","name":"Willapa Harbor Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"South Bend","elevation_ft":154,"latitude":46.66320037841797,"longitude":-123.81199645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01WN","iata":"","local":"01WN","name":"Whidbey General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Coupeville","elevation_ft":103,"latitude":48.2134017944336,"longitude":-122.68499755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01WT","iata":"","local":"01WT","name":"Odyssey Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Renton","elevation_ft":20,"latitude":47.518178,"longitude":-122.210908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":28,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01PS","iata":"","local":"01PS","name":"Nort's Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Meshoppen","elevation_ft":1040,"latitude":41.59590148925781,"longitude":-76.02960205078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1200,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01SC","iata":"","local":"01SC","name":"York Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"York","elevation_ft":779,"latitude":35.032100677490234,"longitude":-81.25279998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2580,"width_ft":118,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01TN","iata":"","local":"01TN","name":"Colonial Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Collierville","elevation_ft":370,"latitude":34.99589920043945,"longitude":-89.73059844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01TE","iata":"","local":"01TE","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Forney","elevation_ft":505,"latitude":32.737598,"longitude":-96.428001,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2433,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01XA","iata":"","local":"01XA","name":"Ascension Seton Hays Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kyle","elevation_ft":715,"latitude":30.007222,"longitude":-97.853333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01XS","iata":"","local":"01XS","name":"Meadowood Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":500,"latitude":32.020198822021484,"longitude":-95.74549865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02AA","iata":"","local":"02AA","name":"Barefoot Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":160,"latitude":61.506147,"longitude":-149.912825,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":675,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"8OK0","iata":"","local":"8OK0","name":"Lamle Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Okeene","elevation_ft":1212,"latitude":36.06829833984375,"longitude":-98.28919982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02AR","iata":"","local":"","name":"Three Rivers Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":264,"latitude":34.822445,"longitude":-92.44442,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02AZ","iata":"","local":"","name":"Winchester Farm Airstrip","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Willcox","elevation_ft":4200,"latitude":32.376401,"longitude":-109.936996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"A"},{"id":"H3","length_ft":100,"width_ft":100,"surface":"A"},{"id":"H4","length_ft":165,"width_ft":165,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02CA","iata":"","local":"02CA","name":"Swepi Beta Platform Ellen Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":122,"latitude":33.58250045776367,"longitude":-118.12899780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02CT","iata":"","local":"02CT","name":"Strangers Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Ellington","elevation_ft":540,"latitude":41.91960144042969,"longitude":-72.44450378417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04SC","iata":"","local":"04SC","name":"Emergency Helipad","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Easley","elevation_ft":994,"latitude":34.842188,"longitude":-82.60714,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02CO","iata":"","local":"02CO","name":"Mc Cullough Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Monte Vista","elevation_ft":7615,"latitude":37.64329910279999,"longitude":-106.04699707,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2670,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02AK","iata":"","local":"02AK","name":"Rustic Wilderness Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":190,"latitude":61.876907,"longitude":-150.097626,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":45,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02FL","iata":"","local":"","name":"Cuchens Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Defuniak Springs","elevation_ft":215,"latitude":30.642527,"longitude":-86.118779,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL10","iata":"","local":"OL10","name":"Waters Boone Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hydro","elevation_ft":1676,"latitude":35.654524,"longitude":-98.605793,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":975,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02HI","iata":"","local":"02HI","name":"K3 Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Honolulu","elevation_ft":9,"latitude":21.35839,"longitude":-157.94789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02IA","iata":"","local":"02IA","name":"Boone County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Boone","elevation_ft":1160,"latitude":42.05609893798828,"longitude":-93.87799835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02IN","iata":"","local":"02IN","name":"Diamond P. Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Muncie","elevation_ft":904,"latitude":40.20890045166016,"longitude":-85.54080200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1020,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02IS","iata":"","local":"02IS","name":"Condell Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Libertyville","elevation_ft":762,"latitude":42.274600982666016,"longitude":-87.9572982788086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02KT","iata":"","local":"02KT","name":"St Claire Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Morehead","elevation_ft":781,"latitude":38.181441,"longitude":-83.443319,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02KY","iata":"","local":"02KY","name":"Boone National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Frankfort","elevation_ft":760,"latitude":38.190282,"longitude":-84.906442,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02FA","iata":"","local":"02FA","name":"Osborn Airfield","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Groveland","elevation_ft":121,"latitude":28.52669906616211,"longitude":-81.87480163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3585,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02GE","iata":"","local":"02GE","name":"Etowah Fields Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Euharlee","elevation_ft":710,"latitude":34.17530059814453,"longitude":-84.92440032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02KS","iata":"","local":"02KS","name":"Jmj Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"St Marys","elevation_ft":1170,"latitude":39.222198486328125,"longitude":-96.0552978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1650,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1950,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02ID","iata":"","local":"02ID","name":"Morgan Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cascade","elevation_ft":5634,"latitude":44.55550003051758,"longitude":-115.30500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02FD","iata":"","local":"02FD","name":"Triple R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Baker","elevation_ft":209,"latitude":30.950976,"longitude":-86.635555,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3443,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02LA","iata":"","local":"02LA","name":"Louisiana State Police Troop G Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Bossier City","elevation_ft":168,"latitude":32.531491,"longitude":-93.659939,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02LS","iata":"","local":"02LS","name":"Windy Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Broussard","elevation_ft":25,"latitude":30.14830017089844,"longitude":-91.91899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02MA","iata":"","local":"02MA","name":"Cuttyhunk Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Cuttyhunk","elevation_ft":9,"latitude":41.419601,"longitude":-70.927002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL18","iata":"","local":"OL18","name":"Flying D Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Watonga","elevation_ft":1689,"latitude":35.788998,"longitude":-98.597,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3337,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02MN","iata":"","local":"","name":"Greenbush Municipal Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Greenbush","elevation_ft":1070,"latitude":48.686527,"longitude":-96.191976,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2145,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02MT","iata":"","local":"","name":"Barrett Field","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Cascade","elevation_ft":3350,"latitude":47.2374,"longitude":-111.74304,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2700,"width_ft":110,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02NH","iata":"","local":"02NH","name":"Iroquois Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Dummer","elevation_ft":1180,"latitude":44.65710067749024,"longitude":-71.21910095214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":3000,"width_ft":300,"surface":"W"},{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02NJ","iata":"","local":"02NJ","name":"Penske Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Piscataway","elevation_ft":78,"latitude":40.55730056762695,"longitude":-74.46710205078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02NR","iata":"","local":"02NR","name":"McGee 02 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Greenville","elevation_ft":25,"latitude":35.592197,"longitude":-77.377372,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02ME","iata":"","local":"02ME","name":"Nadeau's Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Acton","elevation_ft":700,"latitude":43.537467,"longitude":-70.930685,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02MS","iata":"","local":"02MS","name":"Watts Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Rochdale","elevation_ft":153,"latitude":34.095701,"longitude":-90.846131,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2150,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02MO","iata":"","local":"02MO","name":"Troy Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Troy","elevation_ft":650,"latitude":39.04999923706055,"longitude":-91.03350067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02MI","iata":"","local":"02MI","name":"Fairplains Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Greenville","elevation_ft":850,"latitude":43.15710067749024,"longitude":-85.14849853515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02NY","iata":"","local":"02NY","name":"Hansen Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Durhamville","elevation_ft":435,"latitude":43.132598876953125,"longitude":-75.65550231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02OK","iata":"","local":"","name":"Canon Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1191,"latitude":35.458401,"longitude":-97.525297,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2396,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02OL","iata":"","local":"02OL","name":"War Veterans Colony Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Wilburton","elevation_ft":807,"latitude":34.811412,"longitude":-95.307727,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02PA","iata":"","local":"02PA","name":"Lag III Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Monroeville","elevation_ft":1070,"latitude":40.438301,"longitude":-79.769997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02PN","iata":"","local":"02PN","name":"Peco Berwyn Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Berwyn","elevation_ft":390,"latitude":40.06959915161133,"longitude":-75.4552001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK71","iata":"","local":"OK71","name":"TLC Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Carrier","elevation_ft":1367,"latitude":36.503744,"longitude":-98.008838,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2530,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN10","iata":"","local":"SN10","name":"Belle Plaine Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Belle Plaine","elevation_ft":1190,"latitude":37.39580154418945,"longitude":-97.20999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02TA","iata":"","local":"02TA","name":"Matagorda Shore Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Matagorda","elevation_ft":5,"latitude":28.722177,"longitude":-95.875813,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02TE","iata":"","local":"02TE","name":"Baylor Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Waxahachie","elevation_ft":560,"latitude":32.39540100097656,"longitude":-96.86419677734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02TS","iata":"","local":"","name":"FWOMC Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":684,"latitude":32.747601,"longitude":-97.370003,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02TX","iata":"","local":"","name":"The Palms At Kitty Hawk Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"New Home","elevation_ft":3235,"latitude":33.370403,"longitude":-101.922882,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"02TN","iata":"","local":"02TN","name":"Ellis Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Rockvale","elevation_ft":840,"latitude":35.780355,"longitude":-86.585521,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02NV","iata":"","local":"02NV","name":"Paiute Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Winnemucca","elevation_ft":4443,"latitude":41.299551,"longitude":-118.926709,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02XS","iata":"","local":"","name":"Seidel Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":510,"latitude":30.100941,"longitude":-97.672607,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":40,"surface":"T"},{"id":"11/29","length_ft":1320,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03AA","iata":"","local":"03AA","name":"Trapper T Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":159,"latitude":61.556055,"longitude":-149.284527,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03AK","iata":"","local":"03AK","name":"Joe Clouds Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":150,"latitude":60.72722244262695,"longitude":-151.13278198242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1000,"width_ft":70,"surface":"D"},{"id":"N/S","length_ft":6000,"width_ft":500,"surface":"W"},{"id":"NE/SW","length_ft":2600,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03AL","iata":"","local":"03AL","name":"Highland Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Scottsboro","elevation_ft":628,"latitude":34.662604,"longitude":-86.046774,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03AR","iata":"","local":"03AR","name":"Hscmh Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Malvern","elevation_ft":350,"latitude":34.357601165771484,"longitude":-92.78849792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":117,"width_ft":117,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN65","iata":"","local":"SN65","name":"Lake Waltanna Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Goddard","elevation_ft":1440,"latitude":37.5939,"longitude":-97.615457,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02WI","iata":"","local":"02WI","name":"Beer Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hudson","elevation_ft":920,"latitude":45.03189849853516,"longitude":-92.65579986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02WA","iata":"","local":"02WA","name":"Cawleys South Prairie Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"South Prairie","elevation_ft":690,"latitude":47.15230178833008,"longitude":-122.09400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2650,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02UT","iata":"","local":"02UT","name":"Lucin Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Lucin","elevation_ft":4412,"latitude":41.369336,"longitude":-113.841019,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":50,"surface":"D"},{"id":"16/34","length_ft":4000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02XA","iata":"","local":"02XA","name":"JLS Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Honey Grove","elevation_ft":675,"latitude":33.591319,"longitude":-95.882864,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1950,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03AZ","iata":"","local":"03AZ","name":"Thompson International Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Hereford","elevation_ft":4275,"latitude":31.430971,"longitude":-110.088087,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3600,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03CA","iata":"","local":"03CA","name":"Grossmont Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"La Mesa","elevation_ft":634,"latitude":32.779484,"longitude":-117.006952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03IA","iata":"","local":"","name":"East Field","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Montezuma","elevation_ft":954,"latitude":41.581902,"longitude":-92.461304,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03IS","iata":"","local":"03IS","name":"OSF St Anthony's Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Alton","elevation_ft":580,"latitude":38.904999,"longitude":-90.173401,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03KS","iata":"","local":"03KS","name":"Valley Grain Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Highland","elevation_ft":1160,"latitude":39.86470031738281,"longitude":-95.26409912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03LA","iata":"","local":"03LA","name":"Damien Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Carville","elevation_ft":25,"latitude":30.19960021972656,"longitude":-91.12789916992188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03LS","iata":"","local":"03LS","name":"Fmc Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Winnsboro","elevation_ft":79,"latitude":32.15900039672852,"longitude":-91.70800018310548,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03MD","iata":"","local":"03MD","name":"Upper Chesapeake Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Bel Air","elevation_ft":302,"latitude":39.518427,"longitude":-76.346022,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03GA","iata":"","local":"03GA","name":"HIA Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Statesboro","elevation_ft":238,"latitude":32.561626,"longitude":-81.85509,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1990,"width_ft":65,"surface":"T"},{"id":"11/29","length_ft":1955,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03FA","iata":"","local":"03FA","name":"Lake Persimmon Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":70,"latitude":27.353099822998047,"longitude":-81.40809631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03KY","iata":"","local":"03KY","name":"Flying H Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Henderson","elevation_ft":385,"latitude":37.796085,"longitude":-87.53859,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03ID","iata":"","local":"03ID","name":"Flying Y Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Council","elevation_ft":3180,"latitude":44.793965,"longitude":-116.531543,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03IL","iata":"","local":"03IL","name":"Wix Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Monee","elevation_ft":750,"latitude":41.40230178833008,"longitude":-87.81670379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03MI","iata":"","local":"03MI","name":"Harold Miller Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Bay City","elevation_ft":585,"latitude":43.550899505615234,"longitude":-83.86219787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03MO","iata":"","local":"","name":"Cahoochie Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Urbana","elevation_ft":1010,"latitude":37.884499,"longitude":-93.131599,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03NH","iata":"","local":"03NH","name":"Lorden Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Milford","elevation_ft":400,"latitude":42.81539916992188,"longitude":-71.12439727783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03NJ","iata":"","local":"","name":"AT&T Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Berkeley Heights","elevation_ft":360,"latitude":40.668713,"longitude":-74.410152,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03NM","iata":"","local":"03NM","name":"Miner's Colfax Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Raton","elevation_ft":6600,"latitude":36.862377,"longitude":-104.442853,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03NR","iata":"","local":"03NR","name":"Johnston Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Clayton","elevation_ft":320,"latitude":35.63027,"longitude":-78.50392,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03NC","iata":"","local":"03NC","name":"Pilots Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Carolina Beach","elevation_ft":35,"latitude":34.10430145263672,"longitude":-77.9041976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03MU","iata":"","local":"03MU","name":"McDonnell Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Archie","elevation_ft":874,"latitude":38.4925,"longitude":-94.412498,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03MN","iata":"","local":"03MN","name":"Nauerth Land Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lakefield","elevation_ft":1435,"latitude":43.62519836425781,"longitude":-95.22470092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1940,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03MT","iata":"","local":"3MT7","name":"Cascade Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Cascade","elevation_ft":3580,"latitude":47.267327,"longitude":-111.71748,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":300,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03NV","iata":"","local":"03NV","name":"Llama Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Ruby Valley","elevation_ft":6120,"latitude":40.58440017700195,"longitude":-115.2979965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03ND","iata":"","local":"03ND","name":"Olafson Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Edinburg","elevation_ft":1045,"latitude":48.62639999389648,"longitude":-97.8290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN32","iata":"","local":"SN32","name":"Rands Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Belle Plaine","elevation_ft":1210,"latitude":37.425701,"longitude":-97.270052,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03OI","iata":"","local":"03OI","name":"Cleveland Clinic, Marymount Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Garfield Heights","elevation_ft":890,"latitude":41.420312,"longitude":-81.599552,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03PA","iata":"","local":"03PA","name":"Collegeville Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Collegeville","elevation_ft":197,"latitude":40.162899017333984,"longitude":-75.4656982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03PN","iata":"","local":"03PN","name":"M.P. Metals Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Berwick","elevation_ft":479,"latitude":41.066861,"longitude":-76.180806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03SC","iata":"","local":"03SC","name":"Seacoast Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Little River","elevation_ft":73,"latitude":33.8650016784668,"longitude":-78.66190338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03TA","iata":"","local":"","name":"Gay Hill Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Gay Hill","elevation_ft":505,"latitude":30.262699,"longitude":-96.500198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03TN","iata":"","local":"03TN","name":"Eagles Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Sevierville","elevation_ft":1000,"latitude":35.92250061035156,"longitude":-83.57939910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03OH","iata":"","local":"03OH","name":"Gibbs Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Fremont","elevation_ft":580,"latitude":41.416933,"longitude":-83.018339,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":60,"surface":"T"},{"id":"NE/SW","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03PR","iata":"","local":"03PR","name":"Sun View Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bonner Springs","elevation_ft":980,"latitude":39.065931,"longitude":-94.938417,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2926,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03OR","iata":"","local":"03OR","name":"Powwatka Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Troy","elevation_ft":3340,"latitude":45.85540008544922,"longitude":-117.48400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2950,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03OL","iata":"","local":"03OL","name":"Bluebird Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alex","elevation_ft":1232,"latitude":35.012334,"longitude":-97.702735,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03TE","iata":"","local":"03TE","name":"Barronena Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hebbronville","elevation_ft":600,"latitude":27.490812,"longitude":-98.669615,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03OK","iata":"","local":"03OK","name":"Sahoma Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sapulpa","elevation_ft":890,"latitude":36.041259,"longitude":-96.161517,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03TS","iata":"","local":"03TS","name":"Shannon Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Angelo","elevation_ft":1825,"latitude":31.4658,"longitude":-100.43397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03TX","iata":"","local":"03TX","name":"M D K Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pearland","elevation_ft":50,"latitude":29.580929,"longitude":-95.30508,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03VA","iata":"","local":"","name":"Whipoorwill Springs Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Nokesville","elevation_ft":250,"latitude":38.66460037231445,"longitude":-77.57969665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN18","iata":"","local":"SN18","name":"Sills Air Park","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Augusta","elevation_ft":1295,"latitude":37.66669845581055,"longitude":-97.01699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":965,"width_ft":30,"surface":"T"},{"id":"17/35","length_ft":2100,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03WI","iata":"","local":"","name":"Zink Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Berlin","elevation_ft":880,"latitude":44.028873,"longitude":-88.883945,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03WT","iata":"","local":"03WT","name":"Lopez Medical Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Lopez Island","elevation_ft":38,"latitude":48.524894,"longitude":-122.912394,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03XA","iata":"","local":"03XA","name":"Del Sol Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3881,"latitude":31.7574,"longitude":-106.346895,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"03WN","iata":"","local":"03WN","name":"Aerostone Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Goldendale","elevation_ft":2320,"latitude":45.875,"longitude":-120.66999816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1805,"width_ft":100,"surface":"T"},{"id":"07/25","length_ft":2200,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03UT","iata":"","local":"03UT","name":"AZ Minerals Corporation Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Mexican Hat","elevation_ft":5315,"latitude":37.114384,"longitude":-109.99014,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":5000,"width_ft":35,"surface":"G"},{"id":"NW/SE","length_ft":3250,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03TT","iata":"","local":"03TT","name":"Brazos Polo Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Orchard","elevation_ft":117,"latitude":29.632117,"longitude":-95.932481,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04AA","iata":"","local":"04AA","name":"Flying W Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":250,"latitude":60.535833,"longitude":-150.811387,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":825,"width_ft":68,"surface":"T"},{"id":"16/34","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03XS","iata":"","local":"03XS","name":"Creekside Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mertzon","elevation_ft":2100,"latitude":31.318099975585938,"longitude":-100.75399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3200,"width_ft":50,"surface":"T"},{"id":"15/33","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04AL","iata":"","local":"04AL","name":"Anniston AHP (Anniston Army Depot)","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Anniston","elevation_ft":686,"latitude":33.62639999,"longitude":-85.96720123,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04AR","iata":"","local":"04AR","name":"Saline Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Benton","elevation_ft":430,"latitude":34.574319,"longitude":-92.586047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04AZ","iata":"","local":"","name":"Chinle Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Chinle","elevation_ft":5515,"latitude":36.147197,"longitude":-109.560771,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8968,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04CT","iata":"","local":"04CT","name":"Shingle Mill Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Harwinton","elevation_ft":880,"latitude":41.75510025024414,"longitude":-73.05239868164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04FD","iata":"","local":"04FD","name":"Tampa General Hospital Brandon Healthplex Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Brandon","elevation_ft":37,"latitude":27.929372,"longitude":-82.336981,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN40","iata":"","local":"SN40","name":"Olson Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Derby","elevation_ft":1325,"latitude":37.523537,"longitude":-97.202096,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04FA","iata":"","local":"04FA","name":"Richards Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":9,"latitude":25.55870056152344,"longitude":-80.51509857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2620,"width_ft":212,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04IL","iata":"","local":"04IL","name":"Schertz Aerial Service - Hudson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hudson","elevation_ft":755,"latitude":40.6375007629,"longitude":-89.0070037842,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04IA","iata":"","local":"04IA","name":"Middlekoop Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Packwood","elevation_ft":801,"latitude":41.08829879760742,"longitude":-92.05460357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2310,"width_ft":84,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04CL","iata":"","local":"04CL","name":"Hunt's Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Julian","elevation_ft":2310,"latitude":33.08169937133789,"longitude":-116.44100189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1900,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04CA","iata":"","local":"04CA","name":"Gray Butte Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Palmdale","elevation_ft":3020,"latitude":34.5639,"longitude":-117.675003,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04AN","iata":"","local":"04AN","name":"North 40 Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sutton","elevation_ft":943,"latitude":61.737511,"longitude":-148.700724,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2010,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04IN","iata":"","local":"04IN","name":"Lake Gage Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-IN","municipality":"Angola","elevation_ft":954,"latitude":41.701389,"longitude":-85.113056,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":4000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04KS","iata":"","local":"","name":"Robinson Industries Heliport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Lawrence","elevation_ft":835,"latitude":38.978901,"longitude":-95.219704,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":60,"surface":"T"},{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04LA","iata":"","local":"04LA","name":"Saint James Parish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lutcher","elevation_ft":10,"latitude":30.051001,"longitude":-90.703848,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04LS","iata":"","local":"04LS","name":"La National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":52,"latitude":30.44610023498535,"longitude":-91.10530090332033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN70","iata":"","local":"SN70","name":"Kaypod Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Harper","elevation_ft":1379,"latitude":37.25139999389648,"longitude":-97.95449829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1565,"width_ft":40,"surface":"T"},{"id":"N/S","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04MD","iata":"","local":"04MD","name":"Chesapeake City Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Chesapeake City","elevation_ft":40,"latitude":39.51810073852539,"longitude":-75.82140350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04MO","iata":"","local":"","name":"Airpark Private Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Vandalia","elevation_ft":767,"latitude":39.301201,"longitude":-91.4515,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04MS","iata":"","local":"04MS","name":"Nick's Flying Service Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Rolling Fork","elevation_ft":100,"latitude":32.940537,"longitude":-90.836683,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04IS","iata":"","local":"04IS","name":"Van Gorder Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mansfield","elevation_ft":728,"latitude":40.1786003112793,"longitude":-88.56900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04MN","iata":"","local":"04MN","name":"Helblad Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Kelliher","elevation_ft":1195,"latitude":47.985801696777344,"longitude":-94.68689727783205,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04MI","iata":"","local":"04MI","name":"Rapids Airway Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Eaton Rapids","elevation_ft":880,"latitude":42.53450012207031,"longitude":-84.62830352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04KY","iata":"","local":"04KY","name":"Natchez Trace Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Hiseville","elevation_ft":710,"latitude":37.135101318359375,"longitude":-85.78939819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1700,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04NC","iata":"","local":"04NC","name":"Western Wake Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Cary","elevation_ft":445,"latitude":35.739200592,"longitude":-78.7822036743,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":91,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN62","iata":"","local":"SN62","name":"Roberts Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bentley","elevation_ft":1384,"latitude":37.874632,"longitude":-97.513711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04NR","iata":"","local":"04NR","name":"McGee 04 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Jacksonville","elevation_ft":40,"latitude":34.775671,"longitude":-77.392244,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":78,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04OG","iata":"","local":"04OG","name":"Teufel Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Forest Grove","elevation_ft":185,"latitude":45.530833,"longitude":-123.085556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04OH","iata":"","local":"","name":"Bossow Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Garrettsville","elevation_ft":1080,"latitude":41.2477,"longitude":-81.100701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04OK","iata":"","local":"04OK","name":"Stillwater Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Stillwater","elevation_ft":984,"latitude":36.1152992249,"longitude":-97.079498291,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04PA","iata":"","local":"04PA","name":"S & C Distribution Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":50,"latitude":39.87929916379999,"longitude":-75.2287979126,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04PN","iata":"","local":"04PN","name":"Strawbridge & Clothier Exton Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Exton","elevation_ft":320,"latitude":40.0306619,"longitude":-75.63021,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"85KS","iata":"","local":"85KS","name":"Sanders Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Winchester","elevation_ft":1070,"latitude":39.300648,"longitude":-95.215094,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04MT","iata":"","local":"04MT","name":"Pluhar Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Cohagen","elevation_ft":2715,"latitude":47.13749777779999,"longitude":-106.488095,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2100,"width_ft":100,"surface":"T"},{"id":"N/S","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04NV","iata":"","local":"04NV","name":"Kingston Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Sandy Valley","elevation_ft":2620,"latitude":35.7555007935,"longitude":-115.665000916,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3240,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04NE","iata":"","local":"04NE","name":"Mc Connell Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Sarben","elevation_ft":3035,"latitude":41.1599998474,"longitude":-101.299003601,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04SD","iata":"","local":"04SD","name":"Cheyenne River Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Eagle Butte","elevation_ft":2437,"latitude":44.993124,"longitude":-101.243011,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04TA","iata":"","local":"","name":"Capitol National Bank Building Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":540,"latitude":30.270262,"longitude":-97.745275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04TE","iata":"","local":"04TE","name":"Veterans Affairs Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":49,"latitude":29.699687,"longitude":-95.39069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04TS","iata":"","local":"04TS","name":"Hummingbird Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Round Rock","elevation_ft":690,"latitude":30.553284,"longitude":-97.605358,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"04VA","iata":"","local":"04VA","name":"Russell County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Lebanon","elevation_ft":2004,"latitude":36.898,"longitude":-82.078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN72","iata":"","local":"SN72","name":"Graham Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Harris","elevation_ft":985,"latitude":38.299031,"longitude":-95.440807,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2310,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04WA","iata":"","local":"04WA","name":"Ox Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2345,"latitude":47.581795,"longitude":-117.437131,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04WI","iata":"","local":"04WI","name":"Dutch Gap Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bristol","elevation_ft":760,"latitude":42.523399353,"longitude":-88.0167007446,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04TN","iata":"","local":"04TN","name":"Hensley Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Chuckey","elevation_ft":1430,"latitude":36.1833000183,"longitude":-82.67890167239999,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04WN","iata":"","local":"04WN","name":"Stillwater Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Royal City","elevation_ft":1510,"latitude":46.95835,"longitude":-119.63864,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04UT","iata":"","local":"04UT","name":"Navajo Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Navajo Mountain","elevation_ft":6160,"latitude":37.006689,"longitude":-110.794701,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3700,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04TX","iata":"","local":"04TX","name":"Pocock Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"China Spring","elevation_ft":565,"latitude":31.732779,"longitude":-97.369326,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04TT","iata":"","local":"04TT","name":"4D Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Utopia","elevation_ft":1550,"latitude":29.713072,"longitude":-99.545642,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4645,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69KS","iata":"","local":"69KS","name":"Chiles Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Chiles","elevation_ft":1050,"latitude":38.669700622558594,"longitude":-94.74250030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05AL","iata":"","local":"05AL","name":"Allen Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Wicksburg","elevation_ft":365,"latitude":31.2311992645,"longitude":-85.64969635010002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H6","length_ft":1600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05AZ","iata":"","local":"05AZ","name":"Yuma Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Yuma","elevation_ft":200,"latitude":32.683452,"longitude":-114.634346,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05CA","iata":"","local":"05CA","name":"Lost Hills Sheriff's Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Calabasas","elevation_ft":888,"latitude":34.136516,"longitude":-118.714685,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":78,"width_ft":78,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05CT","iata":"","local":"05CT","name":"O And G Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Torrington","elevation_ft":600,"latitude":41.7737007141,"longitude":-73.1162033081,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL52","iata":"","local":"IL52","name":"Williams Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Carthage","elevation_ft":679,"latitude":40.43920135498047,"longitude":-91.1439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2150,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05FD","iata":"","local":"05FD","name":"Aventura Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"North Miami Beach","elevation_ft":6,"latitude":25.960899353027344,"longitude":-80.13919830322266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":95,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05FL","iata":"","local":"05FL","name":"Charlton Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":36,"latitude":26.52018,"longitude":-81.41031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2900,"width_ft":60,"surface":"T"},{"id":"15/33","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05AR","iata":"","local":"05AR","name":"Ozark Skies Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Kingston","elevation_ft":1900,"latitude":36.000633,"longitude":-93.57025,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04XA","iata":"","local":"04XA","name":"Pecan Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jermyn","elevation_ft":1130,"latitude":33.283933,"longitude":-98.402861,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2167,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05CL","iata":"","local":"05CL","name":"Pope Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pope Valley","elevation_ft":618,"latitude":38.6106987,"longitude":-122.39099884,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3700,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KS1","iata":"","local":"8KS1","name":"Neu Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Basehor","elevation_ft":920,"latitude":39.17190170288086,"longitude":-94.98079681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05LA","iata":"","local":"05LA","name":"Greg's Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Winnsboro","elevation_ft":76,"latitude":32.265301,"longitude":-91.6978,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05LL","iata":"","local":"05LL","name":"Midwest Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Willowbrook","elevation_ft":710,"latitude":41.749228,"longitude":-87.935783,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05MA","iata":"","local":"05MA","name":"Bentley Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Ipswich","elevation_ft":80,"latitude":42.691200256347656,"longitude":-70.91230010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"87MO","iata":"","local":"87MO","name":"Richters Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"East Lynne","elevation_ft":915,"latitude":38.69609832763672,"longitude":-94.25800323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05GA","iata":"","local":"05GA","name":"Raju Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Richland","elevation_ft":625,"latitude":32.0713996887207,"longitude":-84.71440124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05KY","iata":"","local":"05KY","name":"Cartersville Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paint Lick","elevation_ft":1070,"latitude":37.53575,"longitude":-84.407303,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1270,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05IN","iata":"","local":"05IN","name":"Cooper Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Belleville","elevation_ft":860,"latitude":39.641998291015625,"longitude":-86.50420379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05KS","iata":"","local":"05KS","name":"Darbro Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Elk City","elevation_ft":945,"latitude":37.26620101928711,"longitude":-95.95919799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05ID","iata":"","local":"05ID","name":"Running Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Elk City","elevation_ft":2969,"latitude":45.914101,"longitude":-114.835999,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05KT","iata":"","local":"05KT","name":"High Point Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Frankfort","elevation_ft":880,"latitude":38.187091,"longitude":-84.93011,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05IA","iata":"","local":"05IA","name":"Spotts Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Nora Springs","elevation_ft":1155,"latitude":43.13750076293945,"longitude":-93.06829833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2450,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05LS","iata":"","local":"05LS","name":"Grass Roots Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Alexandria","elevation_ft":83,"latitude":31.252148,"longitude":-92.47569,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05MI","iata":"","local":"05MI","name":"Beaumont Hospital Taylor Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Taylor","elevation_ft":621,"latitude":42.236433,"longitude":-83.276421,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05MN","iata":"","local":"05MN","name":"Northern Pines Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Aurora","elevation_ft":1446,"latitude":47.5175001,"longitude":-92.2302778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05MO","iata":"","local":"","name":"Portageville Community Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Portageville","elevation_ft":272,"latitude":36.429798,"longitude":-89.680099,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05NC","iata":"","local":"","name":"Brunswick Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Supply","elevation_ft":63,"latitude":34.008099,"longitude":-78.2911,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05NH","iata":"","local":"05NH","name":"Stumpfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Kensington","elevation_ft":200,"latitude":42.92390060424805,"longitude":-70.95140075683594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05NJ","iata":"","local":"05NJ","name":"Paulus Hook Pier Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Jersey City","elevation_ft":7,"latitude":40.713385,"longitude":-74.03203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05NY","iata":"","local":"05NY","name":"Oswego County At Pulaski Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Pulaski","elevation_ft":445,"latitude":43.55199813842773,"longitude":-76.09020233154297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05OG","iata":"","local":"05OG","name":"Drill Field Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Eugene","elevation_ft":415,"latitude":44.059531,"longitude":-123.118951,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"95KS","iata":"","local":"95KS","name":"Fuller Airfield","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Maple Hill","elevation_ft":1058,"latitude":39.026161,"longitude":-96.015042,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05ME","iata":"","local":"05ME","name":"Drisko Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Jonesboro","elevation_ft":70,"latitude":44.65700149536133,"longitude":-67.55919647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05NV","iata":"","local":"05NV","name":"Baker Ranches Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Baker","elevation_ft":5180,"latitude":39.0311,"longitude":-114.088219,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4750,"width_ft":75,"surface":"D"},{"id":"14/32","length_ft":4200,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05NE","iata":"","local":"05NE","name":"Mc Kay Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Spalding","elevation_ft":2010,"latitude":41.7221984863,"longitude":-98.3089981079,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3210,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05MT","iata":"","local":"05MT","name":"Jones Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Belgrade","elevation_ft":4364,"latitude":45.815368,"longitude":-111.152163,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1303,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05OK","iata":"","local":"","name":"Hawk Haven Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Crescent","elevation_ft":1075,"latitude":35.8534,"longitude":-97.567497,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1250,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05PA","iata":"","local":"05PA","name":"PECO Mob. Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":110,"latitude":39.9548,"longitude":-75.178201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05PN","iata":"","local":"05PN","name":"State Police Area Iii Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":485,"latitude":40.30009841918945,"longitude":-76.85800170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05PS","iata":"","local":"05PS","name":"Mills Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Neelyton","elevation_ft":1210,"latitude":40.143075,"longitude":-77.86221,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2219,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05TN","iata":"","local":"","name":"Thurmond Glenn Field","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Covington","elevation_ft":285,"latitude":35.556998,"longitude":-89.552903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05VT","iata":"","local":"05VT","name":"Port of Highgate Springs Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Highgate Springs","elevation_ft":68,"latitude":45.013301849365234,"longitude":-73.08670043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05WA","iata":"","local":"05WA","name":"Sacred Heart Medical Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2220,"latitude":47.64820098876953,"longitude":-117.41400146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05TS","iata":"","local":"05TS","name":"Dew Drop Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":750,"latitude":33.12929916381836,"longitude":-97.3585968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05TX","iata":"","local":"05TX","name":"Circle A Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Blum","elevation_ft":608,"latitude":32.128974,"longitude":-97.404582,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2075,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05OR","iata":"","local":"05OR","name":"Peacock Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Enterprise","elevation_ft":3500,"latitude":45.44428,"longitude":-117.34722,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":50,"surface":"T"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05TA","iata":"","local":"05TA","name":"Brandes Air Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sealy","elevation_ft":276,"latitude":29.80909919738769,"longitude":-96.26509857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05TE","iata":"","local":"05TE","name":"Hilde-Griff Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":950,"latitude":30.72209930419922,"longitude":-97.79139709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO37","iata":"","local":"MO37","name":"Ridgeview Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Harrisonville","elevation_ft":1000,"latitude":38.721346,"longitude":-94.381056,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05XA","iata":"","local":"05XA","name":"Moore County Hospital District Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dumas","elevation_ft":3664,"latitude":35.863631,"longitude":-101.970944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06AL","iata":"","local":"06AL","name":"Brown Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/New Brockton","elevation_ft":415,"latitude":31.388399124145508,"longitude":-85.97239685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H6","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H7","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06AZ","iata":"","local":"06AZ","name":"Mercy Gilbert Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Gilbert","elevation_ft":1280,"latitude":33.287759,"longitude":-111.751454,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06CA","iata":"","local":"06CA","name":"SCE Solar I Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Daggett","elevation_ft":1942,"latitude":34.868942,"longitude":-116.832024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06CL","iata":"","local":"06CL","name":"Abc7-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":520,"latitude":35.15719985961914,"longitude":-118.28900146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05XS","iata":"","local":"05XS","name":"Johnson Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Wilmot","elevation_ft":105,"latitude":33.07929992675781,"longitude":-91.54319763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06CO","iata":"","local":"06CO","name":"Jecan Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Branson","elevation_ft":5100,"latitude":37.385754,"longitude":-103.691482,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06AR","iata":"","local":"06AR","name":"Bondair Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Higden","elevation_ft":499,"latitude":35.54449844360352,"longitude":-92.18489837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2900,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05WN","iata":"","local":"05WN","name":"Flat Creek Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kettle Falls","elevation_ft":1570,"latitude":48.702222,"longitude":-118.0475,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06AA","iata":"","local":"06AA","name":"Twisted Sisters Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":260,"latitude":60.540256,"longitude":-150.813827,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1504,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93KS","iata":"","local":"93KS","name":"Ronnebaum Airfield","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Seneca","elevation_ft":1280,"latitude":39.78,"longitude":-96.084722,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06FL","iata":"","local":"06FL","name":"Morton Plant Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Clearwater","elevation_ft":3,"latitude":27.953527,"longitude":-82.806222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06GA","iata":"","local":"06GA","name":"Smith Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Redan","elevation_ft":1065,"latitude":33.75339889526367,"longitude":-84.16210174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06KS","iata":"","local":"06KS","name":"Riverside Hospital Airlift Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1332,"latitude":37.69580078125,"longitude":-97.37249755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06KY","iata":"","local":"","name":"Falcon Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Jackson","elevation_ft":751,"latitude":37.525902,"longitude":-83.344901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06LA","iata":"","local":"06LA","name":"Panther Helicopters Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Belle Chasse","elevation_ft":0,"latitude":29.84606,"longitude":-90.03216,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":39,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06LS","iata":"","local":"06LS","name":"Tembec Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":85,"latitude":30.70789909362793,"longitude":-91.32019805908205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06MA","iata":"","local":"06MA","name":"The Barn Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Pepperell","elevation_ft":210,"latitude":42.69060134887695,"longitude":-71.60900115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06FA","iata":"","local":"06FA","name":"William P Gwinn Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jupiter","elevation_ft":28,"latitude":26.90839958190918,"longitude":-80.32890319824219,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7003,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.4}],"has_metar":false,"public":true},{"icao":"06IS","iata":"","local":"06IS","name":"Sinele Strip","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Nauvoo","elevation_ft":695,"latitude":40.5463981628418,"longitude":-91.27429962158205,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06IL","iata":"","local":"06IL","name":"Humm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Earlville","elevation_ft":708,"latitude":41.5994987487793,"longitude":-88.86990356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2580,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06IA","iata":"","local":"06IA","name":"Rich Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Walford","elevation_ft":880,"latitude":41.841400146484375,"longitude":-91.83429718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06MD","iata":"","local":"06MD","name":"Johns Hopkins Bayview Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":132,"latitude":39.291401,"longitude":-76.546303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06ME","iata":"","local":"06ME","name":"Barker Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Bethel","elevation_ft":649,"latitude":44.415247,"longitude":-70.844275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06MI","iata":"","local":"06MI","name":"Henry Ford Jackson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Jackson","elevation_ft":978,"latitude":42.251025,"longitude":-84.391319,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06NJ","iata":"","local":"","name":"Chemical Bank - New Jersey Na Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Moorestown","elevation_ft":25,"latitude":39.950102,"longitude":-74.999603,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06O1","iata":"","local":"06O1","name":"Saint Elizabeth Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Youngstown","elevation_ft":1020,"latitude":41.11479949951172,"longitude":-80.65699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06NY","iata":"","local":"06NY","name":"Murphy Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Auburn","elevation_ft":1100,"latitude":42.836797,"longitude":-76.437614,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06OH","iata":"","local":"06OH","name":"Hal Joy Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Williamsfield","elevation_ft":1160,"latitude":41.50979995727539,"longitude":-80.59120178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06NC","iata":"","local":"06NC","name":"Tailwinds Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"St. Pauls","elevation_ft":163,"latitude":34.82749938964844,"longitude":-78.9302978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06MO","iata":"","local":"06MO","name":"Noahs Ark Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Waldron","elevation_ft":755,"latitude":39.23059844970703,"longitude":-94.8043975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06MT","iata":"","local":"06MT","name":"Torgerson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ethridge","elevation_ft":3541,"latitude":48.558696,"longitude":-112.117095,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06NV","iata":"","local":"06NV","name":"Silver Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Baker","elevation_ft":5556,"latitude":39.098333,"longitude":-114.150277,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06OI","iata":"","local":"06OI","name":"Green Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"New Lebanon","elevation_ft":915,"latitude":39.73479843139648,"longitude":-84.3822021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2550,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06OK","iata":"","local":"06OK","name":"Albert Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Grove","elevation_ft":900,"latitude":36.54169845581055,"longitude":-94.83360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06PN","iata":"","local":"06PN","name":"Schiavoni Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":727,"latitude":40.382733,"longitude":-76.772533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"},{"id":"H2","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06TS","iata":"","local":"","name":"Roscoe Mc Connico Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Kerens","elevation_ft":350,"latitude":32.120701,"longitude":-96.179101,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO24","iata":"","local":"MO24","name":"Lonesome Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Craig","elevation_ft":868,"latitude":40.142799377441406,"longitude":-95.38829803466795,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06WA","iata":"","local":"06WA","name":"N A Degerstrom Yard Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2013,"latitude":47.68629837036133,"longitude":-117.197998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06WI","iata":"","local":"","name":"Young Private Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Frederic","elevation_ft":1075,"latitude":45.662701,"longitude":-92.450203,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"06TT","iata":"","local":"06TT","name":"6 Mile Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort McKavett","elevation_ft":2165,"latitude":30.860024,"longitude":-100.201996,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3129,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06PA","iata":"","local":"06PA","name":"Freefall Oz Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Ceres","elevation_ft":1440,"latitude":41.995792,"longitude":-78.288152,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2965,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06TN","iata":"","local":"06TN","name":"Hunter STOLport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Columbia","elevation_ft":640,"latitude":35.69729995727539,"longitude":-86.95690155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06WN","iata":"","local":"06WN","name":"Western Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Yelm","elevation_ft":394,"latitude":46.92499923706055,"longitude":-122.5530014038086,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":2845,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06TA","iata":"","local":"06TA","name":"Glaser Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Buckholts","elevation_ft":480,"latitude":30.90850067138672,"longitude":-97.1168975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1900,"width_ft":15,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06TX","iata":"","local":"06TX","name":"Diamond N Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hockley","elevation_ft":215,"latitude":30.057919,"longitude":-95.812489,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1680,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06TE","iata":"","local":"06TE","name":"Ainsworth Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cleveland","elevation_ft":129,"latitude":30.312700271606445,"longitude":-95.0269012451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3275,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MO4","iata":"","local":"9MO4","name":"Worth Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Savannah","elevation_ft":1130,"latitude":39.97837,"longitude":-94.875183,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1960,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07AL","iata":"","local":"07AL","name":"Tac X Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Samson","elevation_ft":132,"latitude":31.125200271606445,"longitude":-85.9791030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":6000,"width_ft":1200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07AZ","iata":"","local":"","name":"John C Lincoln Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1255,"latitude":33.5667,"longitude":-112.069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07CT","iata":"","local":"","name":"TNT Heliport","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"Salem","elevation_ft":430,"latitude":41.4529,"longitude":-72.249603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07FD","iata":"","local":"","name":"Flying G Ranch STOLport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Lee","elevation_ft":90,"latitude":30.417999,"longitude":-83.283796,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07FL","iata":"","local":"","name":"Southwest Florida Regional Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":18,"latitude":26.6054,"longitude":-81.859497,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":22,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07FA","iata":"OCA","local":"07FA","name":"Ocean Reef Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Key Largo","elevation_ft":8,"latitude":25.325399398804,"longitude":-80.274803161621,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4451,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06XA","iata":"","local":"06XA","name":"J & W Windy Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Van Alstyne","elevation_ft":784,"latitude":33.445914,"longitude":-96.57079,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07CO","iata":"","local":"07CO","name":"Comanche Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Kiowa","elevation_ft":6620,"latitude":39.26359939575195,"longitude":-104.427001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06XS","iata":"","local":"06XS","name":"Campbell Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Aubrey","elevation_ft":546,"latitude":33.322933,"longitude":-97.045019,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07CL","iata":"","local":"07CL","name":"Richvale Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Richvale","elevation_ft":100,"latitude":39.49769973754883,"longitude":-121.77100372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2220,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07AR","iata":"","local":"07AR","name":"Morrilton Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Morrilton","elevation_ft":300,"latitude":35.194339,"longitude":-92.802473,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07ID","iata":"","local":"","name":"Interstate Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Malta","elevation_ft":4580,"latitude":42.274991,"longitude":-113.301229,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1955,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07II","iata":"","local":"07II","name":"St Vincent Jennings Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"North Vernon","elevation_ft":740,"latitude":39.01060104370117,"longitude":-85.64080047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07LA","iata":"","local":"","name":"Air Oil Inc Nr 1 Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Harahan","elevation_ft":0,"latitude":29.937099,"longitude":-90.183701,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2339,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07LS","iata":"","local":"07LS","name":"Louisiana State Police Troop F Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Monroe","elevation_ft":80,"latitude":32.51825,"longitude":-91.989093,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07MA","iata":"","local":"07MA","name":"West Pond Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Plymouth","elevation_ft":149,"latitude":41.91699981689453,"longitude":-70.70950317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE20","iata":"","local":"NE20","name":"Bernadt Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Steinauer","elevation_ft":1290,"latitude":40.18610000610352,"longitude":-96.2114028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07ME","iata":"","local":"07ME","name":"Westbrook Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Westbrook","elevation_ft":250,"latitude":43.73830032348633,"longitude":-70.33920288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":900,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU38","iata":"","local":"MU38","name":"Bogard-Cowgill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Milan","elevation_ft":953,"latitude":40.1788804,"longitude":-93.131678,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3050,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07IA","iata":"","local":"07IA","name":"Hoskins Landing","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Shambaugh","elevation_ft":971,"latitude":40.647888,"longitude":-95.02135,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07MO","iata":"","local":"07MO","name":"Lake Sexton Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Warrensburg","elevation_ft":880,"latitude":38.655553,"longitude":-93.624458,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07KS","iata":"","local":"07KS","name":"Heape Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Augusta","elevation_ft":1321,"latitude":37.73419952392578,"longitude":-96.93669891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07IN","iata":"","local":"07IN","name":"Gray Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Boggstown","elevation_ft":750,"latitude":39.57369995117188,"longitude":-85.91390228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1860,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07KY","iata":"","local":"07KY","name":"Blue Lick Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":532,"latitude":38.08060073852539,"longitude":-85.69329833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07NH","iata":"","local":"07NH","name":"Diving Rock Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Washington","elevation_ft":1404,"latitude":43.17559814453125,"longitude":-72.06390380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":2500,"width_ft":200,"surface":"W"},{"id":"17W/35W","length_ft":2500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07NJ","iata":"","local":"07NJ","name":"Hackensack UMC Palisades Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"North Bergen","elevation_ft":10,"latitude":40.793666,"longitude":-73.994863,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07NY","iata":"","local":"07NY","name":"Mmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Monticello","elevation_ft":1320,"latitude":42.66640090942383,"longitude":-74.76499938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07PR","iata":"","local":"07PR","name":"Advanced Public Health of Isabela Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Isabela","elevation_ft":289,"latitude":18.489403,"longitude":-67.026333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07TX","iata":"","local":"07TX","name":"Pecks Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Princeton","elevation_ft":660,"latitude":33.18399810791016,"longitude":-96.447998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"IL65","iata":"","local":"IL65","name":"M.A.M Trail Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Little York","elevation_ft":605,"latitude":40.999001,"longitude":-90.718001,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1940,"width_ft":145,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07NC","iata":"","local":"07NC","name":"Hawks Meadow Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Waxhaw","elevation_ft":625,"latitude":34.83319854736328,"longitude":-80.7511978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07MT","iata":"","local":"07MT","name":"Glasgow Industrial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Glasgow","elevation_ft":2762,"latitude":48.42110061645508,"longitude":-106.52799987792967,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":13500,"width_ft":300,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07NV","iata":"","local":"07NV","name":"Border Line Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Baker","elevation_ft":5120,"latitude":39.102239,"longitude":-114.053472,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4750,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07UT","iata":"","local":"07UT","name":"E Northrop Grumman Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Howell","elevation_ft":4480,"latitude":41.716667,"longitude":-112.447222,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07OK","iata":"","local":"07OK","name":"Pleasant Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Snyder","elevation_ft":1322,"latitude":34.633399963378906,"longitude":-99.03369903564452,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07TS","iata":"","local":"07TS","name":"Cross-Country Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hutto","elevation_ft":690,"latitude":30.625381,"longitude":-97.571425,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL01","iata":"","local":"IL01","name":"Wolford's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Abingdon","elevation_ft":720,"latitude":40.7925,"longitude":-90.438202,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":100,"surface":"T"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07WA","iata":"","local":"07WA","name":"Multicare Deaconess Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2110,"latitude":47.651637,"longitude":-117.424477,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07WI","iata":"","local":"","name":"Bartell Strip","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Genessee Depot","elevation_ft":990,"latitude":42.965302,"longitude":-88.391502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07XA","iata":"","local":"07XA","name":"Luecke Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Smithville","elevation_ft":451,"latitude":29.906488,"longitude":-97.214397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07XS","iata":"","local":"07XS","name":"Allen Ponderosa Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Crowley","elevation_ft":840,"latitude":32.542198181152344,"longitude":-97.3917007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL54","iata":"","local":"LL54","name":"Dunn Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Paw Paw","elevation_ft":850,"latitude":41.71939849853516,"longitude":-89.02999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1650,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08AL","iata":"","local":"08AL","name":"Little Lagoon Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AL","municipality":"Gulf Shores","elevation_ft":8,"latitude":30.243717,"longitude":-87.754678,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08AR","iata":"","local":"","name":"Crittenden Regional Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"West Memphis","elevation_ft":206,"latitude":35.142046,"longitude":-90.190212,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08AZ","iata":"","local":"08AZ","name":"Mesa Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Mesa","elevation_ft":1240,"latitude":33.417669,"longitude":-111.838835,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08CA","iata":"","local":"08CA","name":"PG&E Placerville Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Placerville","elevation_ft":1810,"latitude":38.695211,"longitude":-120.826086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"07VA","iata":"","local":"07VA","name":"Alpha Hotel Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Clover","elevation_ft":350,"latitude":36.81959915161133,"longitude":-78.78309631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08CO","iata":"","local":"08CO","name":"Terra Firma Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rush","elevation_ft":5600,"latitude":38.73249816894531,"longitude":-104.04100036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08CL","iata":"","local":"08CL","name":"Kistler Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Jamestown","elevation_ft":1025,"latitude":37.85960006713867,"longitude":-120.5540008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08CT","iata":"","local":"08CT","name":"Seavair's Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-CT","municipality":"Winsted","elevation_ft":881,"latitude":41.89599990844727,"longitude":-73.09310150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":4700,"width_ft":1400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08GA","iata":"","local":"08GA","name":"Sapelo Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Darien","elevation_ft":12,"latitude":31.425800323486328,"longitude":-81.28589630126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08II","iata":"","local":"08II","name":"Parkview Lagrange Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Lagrange","elevation_ft":943,"latitude":41.645085,"longitude":-85.426386,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08IL","iata":"","local":"","name":"Harms Airstrip","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Tampico","elevation_ft":643,"latitude":41.577,"longitude":-89.793999,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08KT","iata":"","local":"08KT","name":"Deaconess Union County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Morganfield","elevation_ft":435,"latitude":37.628414,"longitude":-87.946994,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08LA","iata":"","local":"08LA","name":"Air Oil Inc Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Harahan","elevation_ft":4,"latitude":29.95299911499023,"longitude":-90.18260192871094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08FA","iata":"","local":"08FA","name":"Duda Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":35,"latitude":26.57979965209961,"longitude":-81.48370361328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3165,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE67","iata":"","local":"NE67","name":"Falk Air Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hoskins","elevation_ft":1710,"latitude":42.107655,"longitude":-97.341313,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1795,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08FD","iata":"","local":"08FD","name":"Sunniland Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":65,"latitude":27.363100051879883,"longitude":-80.77279663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4138,"width_ft":104,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08KY","iata":"","local":"08KY","name":"Boss Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Burnside","elevation_ft":820,"latitude":36.972599029541016,"longitude":-84.6260986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08KS","iata":"","local":"08KS","name":"Alderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bennington","elevation_ft":1250,"latitude":39.034698486328125,"longitude":-97.58000183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08LL","iata":"","local":"08LL","name":"Sauer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Dwight","elevation_ft":665,"latitude":41.07529830932617,"longitude":-88.48919677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2190,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08MD","iata":"","local":"08MD","name":"UM Saint Joseph Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Towson","elevation_ft":470,"latitude":39.388411,"longitude":-76.610815,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL52","iata":"","local":"LL52","name":"Wilts Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Streator","elevation_ft":650,"latitude":41.16109848022461,"longitude":-88.93910217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08MI","iata":"","local":"08MI","name":"Sparrow Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Lansing","elevation_ft":1019,"latitude":42.734474,"longitude":-84.536046,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08MN","iata":"","local":"08MN","name":"Christenson Point Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Chisholm/Hibbing","elevation_ft":1372,"latitude":47.66939926147461,"longitude":-93.0543975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":11088,"width_ft":6000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08NH","iata":"","local":"08NH","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"North Conway","elevation_ft":574,"latitude":44.0612983704,"longitude":-71.1358032227,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08NJ","iata":"","local":"08NJ","name":"St Barnabas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Livingston","elevation_ft":429,"latitude":40.76259994506836,"longitude":-74.30400085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08NR","iata":"","local":"08NR","name":"Bell Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Zirconia","elevation_ft":2150,"latitude":35.217541,"longitude":-82.426,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08NC","iata":"","local":"08NC","name":"Whiteheart Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lewisville","elevation_ft":750,"latitude":36.06760025024414,"longitude":-80.4655990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08MS","iata":"","local":"08MS","name":"Williams Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Coldwater","elevation_ft":345,"latitude":34.66220093,"longitude":-89.86830139,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3725,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08MO","iata":"","local":"08MO","name":"Twin Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jasper","elevation_ft":955,"latitude":37.395599,"longitude":-94.283798,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2640,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":2140,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08LS","iata":"","local":"08LS","name":"Aeleron Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Sunset","elevation_ft":51,"latitude":30.40829,"longitude":-92.033444,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08ND","iata":"","local":"08ND","name":"Brecht Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Golden Valley","elevation_ft":1990,"latitude":47.32310104370117,"longitude":-102.0979995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24NE","iata":"","local":"24NE","name":"Orr Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lakeside","elevation_ft":3827,"latitude":42.3838996887207,"longitude":-102.43900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":50,"surface":"T"},{"id":"15/33","length_ft":2300,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08PA","iata":"","local":"08PA","name":"Pocono Raceway Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Long Pond","elevation_ft":1812,"latitude":41.055358,"longitude":-75.512039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08SD","iata":"","local":"08SD","name":"Douglas County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Armour","elevation_ft":1523,"latitude":43.325923,"longitude":-98.345152,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08TA","iata":"","local":"08TA","name":"Rancho Del Lago Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fischer","elevation_ft":1208,"latitude":29.97842,"longitude":-98.258418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08TE","iata":"","local":"","name":"B J McCombs Sisterdale Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Comfort","elevation_ft":1447,"latitude":29.975331,"longitude":-98.742451,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":17,"width_ft":17,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08TS","iata":"","local":"","name":"Puesta Del Sol Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"La Gloria","elevation_ft":420,"latitude":26.881331,"longitude":-98.504885,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08OH","iata":"","local":"08OH","name":"Kenley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hartford","elevation_ft":1230,"latitude":41.29169845581055,"longitude":-80.5636978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08TN","iata":"","local":"08TN","name":"PTC Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Fayetteville","elevation_ft":820,"latitude":35.298914,"longitude":-86.474357,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2716,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08OK","iata":"","local":"08OK","name":"Parks Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Wilburton","elevation_ft":635,"latitude":34.93149948120117,"longitude":-95.25830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08OR","iata":"","local":"08OR","name":"Saxon Sycan Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Summer Lake","elevation_ft":4990,"latitude":42.838,"longitude":-121.11509,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08OL","iata":"","local":"08OL","name":"Broken B Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hydro","elevation_ft":1518,"latitude":35.408087,"longitude":-98.605477,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1029,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08TX","iata":"","local":"08TX","name":"Cross Wind Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":1040,"latitude":32.85789,"longitude":-97.744303,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08TT","iata":"","local":"08TT","name":"LZ Tango Charlie Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":2054,"latitude":30.308803,"longitude":-99.022228,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2015,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08WA","iata":"","local":"","name":"Manchester Laboratory Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Manchester","elevation_ft":2,"latitude":47.574299,"longitude":-122.547997,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1255,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08WI","iata":"","local":"","name":"Pierick Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Highland","elevation_ft":1225,"latitude":43.04359817504883,"longitude":-90.3551025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1021,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL53","iata":"","local":"LL53","name":"Olson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Elgin","elevation_ft":955,"latitude":42.008617,"longitude":-88.457773,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2400,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00IL","iata":"","local":"00IL","name":"Hammer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Polo","elevation_ft":840,"latitude":41.978401,"longitude":-89.560402,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09AA","iata":"","local":"09AA","name":"Sheldon Chalet Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":5742,"latitude":62.969888,"longitude":-150.75375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":24,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL10","iata":"","local":"LL10","name":"Naper Aero Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Naperville","elevation_ft":708,"latitude":41.73479843139648,"longitude":-88.20339965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1750,"width_ft":70,"surface":"T"},{"id":"18/36","length_ft":2537,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09AL","iata":"","local":"09AL","name":"Greene County Hospital & Nursing Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Eutaw","elevation_ft":218,"latitude":32.842385,"longitude":-87.890523,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09AR","iata":"","local":"09AR","name":"Magnolia Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Magnolia","elevation_ft":310,"latitude":33.27320098876953,"longitude":-93.23989868164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09CA","iata":"","local":"09CA","name":"Mee Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"King City","elevation_ft":320,"latitude":36.205514,"longitude":-121.132541,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL09","iata":"","local":"LL09","name":"Air Estates Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mundelein","elevation_ft":800,"latitude":42.28060150146485,"longitude":-88.09449768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09AZ","iata":"","local":"09AZ","name":"Stronghold Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"St David","elevation_ft":4970,"latitude":31.924848,"longitude":-110.040007,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2350,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09CL","iata":"","local":"09CL","name":"Alta Sierra Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Grass Valley","elevation_ft":2275,"latitude":39.113800048828125,"longitude":-121.05699920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2834,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09IL","iata":"","local":"","name":"Silver Cross Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Joliet","elevation_ft":610,"latitude":41.536183,"longitude":-88.052279,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"LL22","iata":"","local":"LL22","name":"Brookeridge Air Park","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Downers Grove","elevation_ft":750,"latitude":41.73270034790039,"longitude":-87.99929809570312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2813,"width_ft":40,"surface":"A"},{"id":"18/36","length_ft":1940,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09IS","iata":"","local":"09IS","name":"Swedish American Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":874,"latitude":42.26499938964844,"longitude":-89.07430267333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":31,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09KY","iata":"","local":"09KY","name":"Baptist Hospital East Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":531,"latitude":38.23899841308594,"longitude":-85.63939666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09LA","iata":"","local":"09LA","name":"Era Helicopters Fourchon Helibase Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Golden Meadow","elevation_ft":2,"latitude":29.126972,"longitude":-90.206659,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09LS","iata":"","local":"09LS","name":"West Feliciana Sheriff's Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":181,"latitude":30.82439994812012,"longitude":-91.38459777832033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"96NE","iata":"","local":"96NE","name":"Riverbend Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Arcadia","elevation_ft":2144,"latitude":41.400586,"longitude":-99.097527,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09LL","iata":"","local":"09LL","name":"Pine Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Capron","elevation_ft":1000,"latitude":42.46810150146485,"longitude":-88.74320220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09FD","iata":"","local":"09FD","name":"Cheryl-Lane Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bushnell","elevation_ft":71,"latitude":28.67110061645508,"longitude":-82.0873031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2649,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09GA","iata":"","local":"09GA","name":"Sunbelt Strip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Moultrie","elevation_ft":230,"latitude":31.120995,"longitude":-83.67063,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09KS","iata":"","local":"09KS","name":"Coffman Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wellsville","elevation_ft":970,"latitude":38.70700073242188,"longitude":-95.13829803466795,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09ID","iata":"","local":"09ID","name":"Taylor Ranch Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Moscow","elevation_ft":3835,"latitude":45.10390090942383,"longitude":-114.8550033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09IA","iata":"","local":"09IA","name":"Skydive Iowa Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Brooklyn","elevation_ft":820,"latitude":41.745441,"longitude":-92.411547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09MI","iata":"","local":"09MI","name":"Michigan National Guard Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Lansing","elevation_ft":842,"latitude":42.708099365234375,"longitude":-84.56079864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09MN","iata":"","local":"","name":"W Johnson Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Hazel Run","elevation_ft":1060,"latitude":44.779999,"longitude":-95.663109,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5064,"width_ft":250,"surface":"W"},{"id":"12W/30W","length_ft":5047,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09NJ","iata":"","local":"09NJ","name":"Stonebridge Farm Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Somerville","elevation_ft":100,"latitude":40.65370178222656,"longitude":-74.6865005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09NY","iata":"","local":"09NY","name":"Spring Lake Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Kingston","elevation_ft":254,"latitude":41.92890167236328,"longitude":-74.04889678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09OR","iata":"","local":"09OR","name":"Mid-Columbia Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"The Dalles","elevation_ft":487,"latitude":45.587235,"longitude":-121.163827,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI70","iata":"","local":"WI70","name":"Swan Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Elkhorn","elevation_ft":930,"latitude":42.705524,"longitude":-88.640227,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":50,"surface":"G"},{"id":"18/36","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09NR","iata":"","local":"09NR","name":"Dakota Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Ramseur","elevation_ft":561,"latitude":35.650122,"longitude":-79.650311,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":35,"surface":"T"},{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"},{"id":"H2","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09NC","iata":"","local":"09NC","name":"William Irving Lewis Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Broadway","elevation_ft":310,"latitude":35.32929992675781,"longitude":-79.02999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09OK","iata":"","local":"09OK","name":"Ragtime Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Collinsville","elevation_ft":700,"latitude":36.35449981689453,"longitude":-95.86389923095705,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09MO","iata":"","local":"09MO","name":"Hogue Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Willard","elevation_ft":1210,"latitude":37.37839889526367,"longitude":-93.36329650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1320,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09TA","iata":"","local":"09T","name":"Lazy G Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":923,"latitude":33.282101,"longitude":-97.497002,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09NE","iata":"","local":"09NE","name":"Summer Hill Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Bennington","elevation_ft":1250,"latitude":41.33330154418945,"longitude":-96.193603515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1230,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09TN","iata":"","local":"09TN","name":"Univ of Tennessee Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":924,"latitude":35.94169998168945,"longitude":-83.94400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE75","iata":"","local":"NE75","name":"Kristijanto Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Dakota City","elevation_ft":1096,"latitude":42.400342,"longitude":-96.431304,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09VG","iata":"","local":"09VG","name":"Augusta Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Fishersville","elevation_ft":1390,"latitude":38.09080123901367,"longitude":-78.98500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09WA","iata":"","local":"09WA","name":"Holy Family Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2081,"latitude":47.71039962768555,"longitude":-117.40699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09XS","iata":"","local":"09XS","name":"Baptist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":710,"latitude":29.433000564575195,"longitude":-98.49220275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AA6","iata":"","local":"0AA6","name":"Big Salmon Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Haines","elevation_ft":292,"latitude":59.403055,"longitude":-136.013611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NE2","iata":"","local":"3NE2","name":"Phillips Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hemingford","elevation_ft":4370,"latitude":42.326349,"longitude":-103.194795,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":900,"width_ft":150,"surface":"T"},{"id":"N/S","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY25","iata":"","local":"WY25","name":"Snell - North Laramie River Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Wheatland","elevation_ft":4490,"latitude":42.14207,"longitude":-104.9402,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":38,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09WI","iata":"","local":"09WI","name":"Parkway Farm Strip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Holmen","elevation_ft":705,"latitude":44.00360107421875,"longitude":-91.30760192871094,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09TS","iata":"","local":"09TS","name":"Pitcock Rosillos Mountain Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":3100,"latitude":29.48240089416504,"longitude":-103.16500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4083,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK3","iata":"","local":"0AK3","name":"Parker Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Montana Creek","elevation_ft":250,"latitude":62.0359001159668,"longitude":-150.49400329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1000,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AA7","iata":"","local":"0AA7","name":"Kalifornsky Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":65,"latitude":60.491537,"longitude":-151.235253,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2539,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK0","iata":"","local":"0AK0","name":"Scotts Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Salcha","elevation_ft":800,"latitude":64.39214,"longitude":-146.861823,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1050,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK8","iata":"","local":"","name":"Pollux Heliport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"North Pole","elevation_ft":515,"latitude":64.895835,"longitude":-147.497501,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AL2","iata":"","local":"0AL2","name":"Clay County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Ashland","elevation_ft":1040,"latitude":33.275001525878906,"longitude":-85.83329772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":21,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AL3","iata":"","local":"0AL3","name":"Hospital Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Evergreen","elevation_ft":295,"latitude":31.430599212646484,"longitude":-86.94029998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AL4","iata":"","local":"0AL4","name":"Dekalb Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Payne","elevation_ft":870,"latitude":34.442141,"longitude":-85.755793,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AL6","iata":"","local":"0AL6","name":"D.W. Mcmillian Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Brewton","elevation_ft":155,"latitude":31.127199172973636,"longitude":-87.07330322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AL7","iata":"","local":"0AL7","name":"Gadsden Regl Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Gadsden","elevation_ft":621,"latitude":34.00830078125,"longitude":-85.96530151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AL8","iata":"","local":"0AL8","name":"Brookwood Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":763,"latitude":33.46390151977539,"longitude":-86.77310180664062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD71","iata":"","local":"SD71","name":"Bogner Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Oelrichs","elevation_ft":3660,"latitude":43.11660003662109,"longitude":-103.36699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1200,"width_ft":100,"surface":"T"},{"id":"NW/SE","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AL1","iata":"","local":"0AL1","name":"Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Foley","elevation_ft":97,"latitude":30.44389915466309,"longitude":-87.65689849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK5","iata":"","local":"0AK5","name":"Young Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"May Creek","elevation_ft":1580,"latitude":61.355352,"longitude":-142.731832,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1550,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY11","iata":"","local":"WY11","name":"A Bar A Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Encampment","elevation_ft":7880,"latitude":41.15557,"longitude":-106.555966,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":5704,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK7","iata":"","local":"0AK7","name":"Bradley Lake Hydroelectric Project Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":18,"latitude":59.776005,"longitude":-150.963285,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK9","iata":"","local":"0AK9","name":"Falcon Lake Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":110,"latitude":61.33259963989258,"longitude":-150.0590057373047,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NE9","iata":"","local":"8NE9","name":"C A M P Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Fullerton","elevation_ft":1675,"latitude":41.39030075073242,"longitude":-97.9645004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3350,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AR0","iata":"","local":"0AR0","name":"Northwest Medical Center Springdale Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Springdale","elevation_ft":1352,"latitude":36.181509,"longitude":-94.137252,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR3","iata":"","local":"","name":"Taylor's Air Strip","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Deer","elevation_ft":2160,"latitude":35.898998,"longitude":-93.261001,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1565,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR4","iata":"","local":"0AR4","name":"Ozarks Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Gravette","elevation_ft":1251,"latitude":36.40929,"longitude":-94.46005,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":12,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR5","iata":"","local":"0AR5","name":"Rgnl Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":382,"latitude":35.83620071411133,"longitude":-90.70179748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR6","iata":"","local":"0AR6","name":"Ami National Park Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Hot Springs","elevation_ft":547,"latitude":34.48149871826172,"longitude":-93.03099822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR8","iata":"","local":"0AR8","name":"Howard Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Nashville","elevation_ft":437,"latitude":33.94884,"longitude":-93.88024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR9","iata":"","local":"0AR9","name":"Eureka Springs Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Eureka Springs","elevation_ft":1540,"latitude":36.40010070800781,"longitude":-93.74349975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AZ0","iata":"","local":"0AZ0","name":"Arizona Heart Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1161,"latitude":33.481187,"longitude":-112.03976,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AR2","iata":"","local":"0AR2","name":"Mission Field-Marotti Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Crawfordsville","elevation_ft":217,"latitude":35.18853,"longitude":-90.30359,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AZ5","iata":"","local":"0AZ5","name":"Castle Well Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Morristown","elevation_ft":2080,"latitude":33.865944,"longitude":-112.603265,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AZ4","iata":"","local":"0AZ4","name":"Flying Bucket Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1505,"latitude":32.9823,"longitude":-112.287003,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2900,"width_ft":130,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AZ2","iata":"","local":"0AZ2","name":"Western Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Salome","elevation_ft":1930,"latitude":33.778166,"longitude":-113.640625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3500,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AZ6","iata":"","local":"0AZ6","name":"St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1213,"latitude":33.482963,"longitude":-112.079301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":45,"surface":"C"},{"id":"H3","length_ft":40,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0AZ7","iata":"","local":"","name":"Sunstate Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1180,"latitude":33.445318,"longitude":-111.964567,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CA0","iata":"","local":"","name":"Drew Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":180,"latitude":33.923302,"longitude":-118.241997,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CA1","iata":"","local":"","name":"Northside Airpark","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Santa Maria","elevation_ft":190,"latitude":34.9883003235,"longitude":-120.458000183,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CA2","iata":"","local":"0CA2","name":"VA Greater Los Angeles Health Care Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":294,"latitude":34.049778,"longitude":-118.456257,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE44","iata":"","local":"NE44","name":"Koinzan Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Elgin","elevation_ft":1919,"latitude":41.98329925537109,"longitude":-98.08370208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":100,"surface":"T"},{"id":"10/28","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CD0","iata":"","local":"0CD0","name":"Delta County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":5000,"latitude":38.745155,"longitude":-108.047973,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CD1","iata":"","local":"0CD1","name":"Colorado Plains Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Morgan","elevation_ft":4356,"latitude":40.2610917,"longitude":-103.7963389,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CD4","iata":"","local":"0CD4","name":"Kauffman Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5120,"latitude":40.1463012695,"longitude":-104.887001038,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CA6","iata":"","local":"0CA6","name":"Emory Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ocotillo","elevation_ft":480,"latitude":32.7494444,"longitude":-116.0161111,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2400,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CA9","iata":"","local":"0CA9","name":"Blech Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Shandon","elevation_ft":1140,"latitude":35.592797,"longitude":-120.338058,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CA5","iata":"","local":"0CA5","name":"Hoffman Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ysabel","elevation_ft":3100,"latitude":33.14310073852539,"longitude":-116.74500274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CD6","iata":"","local":"0CD6","name":"Exempla Good Samaritan Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Lafayette","elevation_ft":5204,"latitude":39.970843,"longitude":-105.08741,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CD8","iata":"","local":"0CD8","name":"Prowers Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Lamar","elevation_ft":3575,"latitude":38.0710983276,"longitude":-102.60900116,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CD9","iata":"","local":"0CD9","name":"Swedish S.W. Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Littleton","elevation_ft":5563,"latitude":39.603099823,"longitude":-105.091003418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY16","iata":"","local":"WY16","name":"Robbins Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Medicine Bow","elevation_ft":7240,"latitude":42.2599983215332,"longitude":-105.85900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3400,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CL4","iata":"","local":"0CL4","name":"Glen Fed Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":770,"latitude":34.157179,"longitude":-118.254637,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CL5","iata":"","local":"0CL5","name":"The Atrium Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Irvine","elevation_ft":46,"latitude":33.6706008911,"longitude":-117.858001709,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CL7","iata":"","local":"0CL7","name":"Good Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":473,"latitude":34.054901,"longitude":-118.264967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CL9","iata":"","local":"0CL9","name":"Sce San Jacinto Valley Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Romoland","elevation_ft":1482,"latitude":33.741100311299995,"longitude":-117.151000977,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14ID","iata":"","local":"14ID","name":"Peaceful Cove Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Boise","elevation_ft":2920,"latitude":43.680999755859375,"longitude":-116.2030029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1900,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04OR","iata":"","local":"04OR","name":"Collins Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Mitchell","elevation_ft":1500,"latitude":44.7499008179,"longitude":-120.200996399,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":18,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CL1","iata":"","local":"0CL1","name":"Krey Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Adelanto","elevation_ft":3042,"latitude":34.5694007874,"longitude":-117.555999756,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3360,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":2040,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CD5","iata":"","local":"0CD5","name":"Piñon Canyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Model","elevation_ft":5686,"latitude":37.490501,"longitude":-104.143997,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4500,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CO0","iata":"","local":"0CO0","name":"Longmont United Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Longmont","elevation_ft":5047,"latitude":40.181606,"longitude":-105.124774,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CO5","iata":"","local":"","name":"Chenoweth Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Last Chance","elevation_ft":4697,"latitude":39.830995,"longitude":-103.592463,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY46","iata":"","local":"WY46","name":"Radio Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cheyenne","elevation_ft":6115,"latitude":41.072778,"longitude":-104.825653,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1855,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CO7","iata":"","local":"0CO7","name":"Century Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":4935,"latitude":40.5854988098,"longitude":-105.040000916,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":152,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT0","iata":"","local":"0CT0","name":"Sharon Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Sharon","elevation_ft":640,"latitude":41.881232,"longitude":-73.480699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT1","iata":"","local":"0CT1","name":"Bristol-Myers Squibb Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Wallingford","elevation_ft":350,"latitude":41.48479843139648,"longitude":-72.7562026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT2","iata":"","local":"0CT2","name":"Windham Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Willimantic","elevation_ft":330,"latitude":41.71699905395508,"longitude":-72.22589874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT3","iata":"","local":"0CT3","name":"N B G H Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"New Britain","elevation_ft":431,"latitude":41.661598205566406,"longitude":-72.78790283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT5","iata":"","local":"0CT5","name":"St Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Hartford","elevation_ft":184,"latitude":41.77450180053711,"longitude":-72.6989974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CN2","iata":"","local":"0CN2","name":"Sutter Butte Dusters Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Live Oak","elevation_ft":67,"latitude":39.228622,"longitude":-121.688265,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2493,"width_ft":31,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CO9","iata":"","local":"0CO9","name":"Van Treese Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Monte Vista","elevation_ft":7613,"latitude":37.6582984924,"longitude":-106.033996582,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CT6","iata":"","local":"0CT6","name":"Middletown Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Middletown","elevation_ft":113,"latitude":41.5968017578125,"longitude":-72.70449829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT7","iata":"","local":"0CT7","name":"Bridgeport Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Bridgeport","elevation_ft":80,"latitude":41.188408,"longitude":-73.1667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT8","iata":"","local":"0CT8","name":"Danbury Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Danbury","elevation_ft":510,"latitude":41.405297,"longitude":-73.445165,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CT9","iata":"","local":"0CT9","name":"Hartford Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Hartford","elevation_ft":211,"latitude":41.75450134277344,"longitude":-72.67870330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FA0","iata":"","local":"0FA0","name":"Doral Resort & Country Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":6,"latitude":25.81734,"longitude":-80.340416,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FA2","iata":"","local":"0FA2","name":"Doctors Memorial Hospital #2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Perry","elevation_ft":57,"latitude":30.119753,"longitude":-83.592732,"has_tower":false,"has_beacon":false,"runways":[{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FA3","iata":"","local":"0FA3","name":"Brighton Helipad","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Brighton","elevation_ft":24,"latitude":27.075744,"longitude":-81.071125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FA5","iata":"","local":"0FA5","name":"Briley Farm Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Oakland","elevation_ft":66,"latitude":28.5727778,"longitude":-81.6286111,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":5000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FA6","iata":"","local":"0FA6","name":"Immokalee Helipad","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Immokalee","elevation_ft":72,"latitude":26.39841,"longitude":-81.414667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FD1","iata":"","local":"0FD1","name":"Panhandle Helicopter LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City Beach","elevation_ft":20,"latitude":30.213844,"longitude":-85.871916,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FD2","iata":"","local":"0FD2","name":"Dolphin Stadium Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":8,"latitude":25.960055,"longitude":-80.240248,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"T"},{"id":"H3","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45WY","iata":"","local":"45WY","name":"American Falconry Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Casper","elevation_ft":5722,"latitude":42.889733,"longitude":-106.674866,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FA1","iata":"","local":"0FA1","name":"Ott's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Arcadia","elevation_ft":65,"latitude":27.3039,"longitude":-81.880403,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FD4","iata":"","local":"","name":"Cloverleaf Farms II Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Reddick","elevation_ft":100,"latitude":29.360774,"longitude":-82.204803,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2338,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FD6","iata":"","local":"0FD6","name":"Fulton Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Sebastian","elevation_ft":0,"latitude":27.90749931335449,"longitude":-80.48639678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":3000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FL2","iata":"","local":"0FL2","name":"Alligator Drink Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Geneva","elevation_ft":19,"latitude":28.78779983520508,"longitude":-81.16419982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":2000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FL3","iata":"","local":"0FL3","name":"Old Town Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Old Town","elevation_ft":25,"latitude":29.60280036926269,"longitude":-82.98169708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FL4","iata":"","local":"0FL4","name":"Jackson Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Alford","elevation_ft":110,"latitude":30.70499992370605,"longitude":-85.37830352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FL5","iata":"","local":"0FL5","name":"Lake Conway South Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Belle Isle","elevation_ft":80,"latitude":28.45859909057617,"longitude":-81.34970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":2000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FL7","iata":"","local":"0FL7","name":"Wcpx Tv-6 Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":114,"latitude":28.61030006408692,"longitude":-81.41940307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FL8","iata":"","local":"0FL8","name":"Gary Gale Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":0,"latitude":30.19389915466309,"longitude":-81.68190002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":2000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0FD3","iata":"","local":"0FD3","name":"Dugger Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Freeport","elevation_ft":70,"latitude":30.496400833129883,"longitude":-86.09380340576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":4000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FL6","iata":"","local":"27FA","name":"Stanchester Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lithia","elevation_ft":96,"latitude":27.806199,"longitude":-82.141365,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FL0","iata":"","local":"0FL0","name":"Harper's Fly-In Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clewiston","elevation_ft":30,"latitude":26.707834,"longitude":-81.175549,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA6","iata":"","local":"0GA6","name":"Sunset Strip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Jersey","elevation_ft":780,"latitude":33.7333984375,"longitude":-83.81880187988281,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GE4","iata":"","local":"0GE4","name":"Pecan Patch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sunnyside","elevation_ft":860,"latitude":33.33140182495117,"longitude":-84.2667007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1045,"width_ft":80,"surface":"T"},{"id":"18/36","length_ft":1000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GE3","iata":"","local":"0GE3","name":"Lookout Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Trenton","elevation_ft":563,"latitude":34.90470123291016,"longitude":-85.45970153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA2","iata":"","local":"0GA2","name":"Airnautique, Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hartwell","elevation_ft":720,"latitude":34.377899169921875,"longitude":-82.9457015991211,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FL9","iata":"","local":"0FL9","name":"Mc Daniel Ranch Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clewiston","elevation_ft":18,"latitude":26.393051,"longitude":-81.02874,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":116,"surface":"T"},{"id":"17/35","length_ft":2750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GE1","iata":"","local":"0GE1","name":"Crystal Lake Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Irwinville","elevation_ft":327,"latitude":31.66550064086914,"longitude":-83.44709777832031,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA8","iata":"","local":"0GA8","name":"Paso Fino Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Valdosta","elevation_ft":200,"latitude":30.88031,"longitude":-83.414443,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA9","iata":"","local":"0GA9","name":"Roberta Industrial Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Roberta","elevation_ft":505,"latitude":32.71390151977539,"longitude":-84.02749633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3500,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA0","iata":"","local":"0GA0","name":"Halls Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hampton","elevation_ft":800,"latitude":33.356201171875,"longitude":-84.36710357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA1","iata":"","local":"0GA1","name":"Mustang Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hartwell","elevation_ft":693,"latitude":34.477901458740234,"longitude":-82.89710235595703,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IA0","iata":"","local":"0IA0","name":"Knoxville Area Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Knoxville","elevation_ft":927,"latitude":41.31689834594727,"longitude":-93.09600067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IA1","iata":"","local":"0IA1","name":"St Anthony Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Carroll","elevation_ft":1300,"latitude":42.05830001831055,"longitude":-94.86830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IA2","iata":"","local":"0IA2","name":"Audubon County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Audubon","elevation_ft":1320,"latitude":41.71549987792969,"longitude":-94.9385986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IA6","iata":"","local":"","name":"Rinehart Airport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Victor","elevation_ft":920,"latitude":41.659698,"longitude":-92.289902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IA9","iata":"","local":"0IA9","name":"Army Reserve Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Middleton","elevation_ft":725,"latitude":40.83340072631836,"longitude":-91.30010223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0GE9","iata":"","local":"0GE9","name":"Pegasus Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Rocky Ford","elevation_ft":230,"latitude":32.69390106201172,"longitude":-81.79859924316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IA8","iata":"","local":"0IA8","name":"Hannen Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Center Point","elevation_ft":925,"latitude":42.22800064086914,"longitude":-91.7509994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1280,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID1","iata":"","local":"0ID1","name":"Ziggy's Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Filer","elevation_ft":3225,"latitude":42.64120101928711,"longitude":-114.6050033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IA5","iata":"","local":"0IA5","name":"Moore Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Millerton","elevation_ft":1060,"latitude":40.87220001220703,"longitude":-93.26270294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID0","iata":"","local":"0ID0","name":"South Fork Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Featherville","elevation_ft":4861,"latitude":43.60639953613281,"longitude":-115.10700225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IL0","iata":"","local":"0IL0","name":"Hamilton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Mc Leansboro","elevation_ft":440,"latitude":38.086700439453125,"longitude":-88.53890228271484,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IL1","iata":"","local":"0IL1","name":"Loyola University Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Broadview","elevation_ft":623,"latitude":41.86090087890625,"longitude":-87.8364028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IL3","iata":"","local":"","name":"Flying B Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Danville","elevation_ft":696,"latitude":40.157001,"longitude":-87.6745,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0II0","iata":"","local":"0II0","name":"Chuck's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Albany","elevation_ft":955,"latitude":40.258381,"longitude":-85.253348,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID3","iata":"","local":"0ID3","name":"Coyote Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Mountain Home","elevation_ft":3150,"latitude":43.075801849365234,"longitude":-115.6729965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2640,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0II7","iata":"","local":"0II7","name":"Frost Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greenfield","elevation_ft":900,"latitude":39.79560089111328,"longitude":-85.78610229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IL2","iata":"","local":"0IL2","name":"Griffin Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Alma","elevation_ft":541,"latitude":38.803056,"longitude":-88.997778,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID9","iata":"","local":"0ID9","name":"Corral Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Helmer","elevation_ft":2895,"latitude":46.785278,"longitude":-116.471131,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2308,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID8","iata":"","local":"0ID8","name":"Pinnacle Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Grangeville","elevation_ft":3800,"latitude":45.775705,"longitude":-116.180463,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0II9","iata":"","local":"0II9","name":"Winters Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Martinsville","elevation_ft":755,"latitude":39.532612,"longitude":-86.576729,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID4","iata":"","local":"0ID4","name":"Black Butte Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Shoshone","elevation_ft":4020,"latitude":43.047698974609375,"longitude":-114.47000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3150,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IL4","iata":"","local":"0IL4","name":"Advocate Good Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Downers Grove","elevation_ft":772,"latitude":41.818743,"longitude":-88.007677,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IL5","iata":"","local":"0IL5","name":"OSF St Luke Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Kewanee","elevation_ft":849,"latitude":41.221865,"longitude":-89.947788,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IL6","iata":"","local":"0IL6","name":"Northwestern Memorial Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"DeKalb","elevation_ft":852,"latitude":41.960636,"longitude":-88.721781,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IS0","iata":"","local":"0IS0","name":"Trinity Medical Center West Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rock Island","elevation_ft":664,"latitude":41.48109817504883,"longitude":-90.57140350341795,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IS2","iata":"","local":"0IS2","name":"Evanston/Glenbrook Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Glenview","elevation_ft":678,"latitude":42.09310150146485,"longitude":-87.85260009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IS6","iata":"","local":"0IS6","name":"Dongola Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Dongola","elevation_ft":383,"latitude":37.3656005859375,"longitude":-89.1635971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IL7","iata":"","local":"0IL7","name":"Davis Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hammond","elevation_ft":682,"latitude":39.782917,"longitude":-88.546708,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2024,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IL9","iata":"","local":"0IL9","name":"Jack W Watson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"DeKalb","elevation_ft":880,"latitude":41.853699,"longitude":-88.786513,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IN9","iata":"","local":"0IN9","name":"Parrish Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Mount Vernon","elevation_ft":390,"latitude":37.99322,"longitude":-87.94855,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IN5","iata":"","local":"0IN5","name":"Byrne Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Byrneville","elevation_ft":800,"latitude":38.329378,"longitude":-86.033431,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IN1","iata":"","local":"0IN1","name":"Snider Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Decker","elevation_ft":400,"latitude":38.5,"longitude":-87.59590148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IN4","iata":"","local":"0IN4","name":"Air Park Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Haven","elevation_ft":750,"latitude":41.127405,"longitude":-84.953306,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2274,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IS8","iata":"","local":"0IS8","name":"Blessing Hospital At 11th St Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Quincy","elevation_ft":650,"latitude":39.936012,"longitude":-91.398659,"has_tower":false,"has_beacon":false,"runways":[{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0IS9","iata":"","local":"0IS9","name":"Bernardin Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"West Brooklyn","elevation_ft":830,"latitude":41.70840072631836,"longitude":-89.2029037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0JY9","iata":"","local":"0JY9","name":"Fleming County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Flemingsburg","elevation_ft":943,"latitude":38.422373,"longitude":-83.752604,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0KS2","iata":"","local":"","name":"Kellie Mann Airfield","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Ottawa","elevation_ft":1045,"latitude":38.560001,"longitude":-95.309097,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0KS3","iata":"","local":"","name":"Camp Chippewa Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Ottawa","elevation_ft":1120,"latitude":38.5667,"longitude":-95.366898,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0KS6","iata":"","local":"","name":"Kendrigan Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Peck","elevation_ft":1240,"latitude":37.452202,"longitude":-97.317802,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0KS7","iata":"","local":"0KS7","name":"Mono Aircraft Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Cheney","elevation_ft":1450,"latitude":37.69279861450195,"longitude":-97.88639831542967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KS8","iata":"","local":"0KS8","name":"Pearce Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Parsons","elevation_ft":950,"latitude":37.38249969482422,"longitude":-95.37470245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1550,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KS4","iata":"","local":"0KS4","name":"Norris Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Lawrence","elevation_ft":1065,"latitude":38.807239,"longitude":-95.370056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2150,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KS5","iata":"","local":"0KS5","name":"Oasis Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Great Bend","elevation_ft":1914,"latitude":38.450666,"longitude":-98.797646,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1700,"width_ft":70,"surface":"T"},{"id":"09/27","length_ft":2550,"width_ft":70,"surface":"T"},{"id":"17/35","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KS0","iata":"","local":"0KS0","name":"J V Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Osage City","elevation_ft":1180,"latitude":38.63330078125,"longitude":-95.92530059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KY0","iata":"","local":"0KY0","name":"Owen Air Park","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Owenton","elevation_ft":890,"latitude":38.62279891967773,"longitude":-84.77890014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KY6","iata":"","local":"","name":"Tennessee Gas Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Burnaugh","elevation_ft":560,"latitude":38.268299,"longitude":-82.577499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0KY9","iata":"","local":"","name":"Pine Mountain Aero Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Whitesburg","elevation_ft":1300,"latitude":37.113602,"longitude":-82.803596,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LA0","iata":"","local":"0LA0","name":"West Hackberry Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Hackberry","elevation_ft":10,"latitude":30.003515,"longitude":-93.401005,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LA4","iata":"","local":"0LA4","name":"North Caddo Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Vivian","elevation_ft":200,"latitude":32.86410140991211,"longitude":-93.98899841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LA5","iata":"","local":"0LA5","name":"Conoco Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Grand Isle","elevation_ft":3,"latitude":29.258868,"longitude":-89.964541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LA6","iata":"","local":"","name":"Freeport Sulphur Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Grand Isle","elevation_ft":3,"latitude":29.2586,"longitude":-89.959198,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":2000,"width_ft":275,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LA7","iata":"","local":"0LA7","name":"Exxon Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Grand Isle","elevation_ft":6,"latitude":29.254738,"longitude":-89.96732,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0KY1","iata":"","local":"0KY1","name":"Arnemann Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Franklin","elevation_ft":504,"latitude":36.76559829711914,"longitude":-86.61830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KY7","iata":"","local":"0KY7","name":"Clinton-Hickman County Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Clinton","elevation_ft":360,"latitude":36.63610076904297,"longitude":-88.99859619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KY4","iata":"","local":"0KY4","name":"Cambron Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Owensboro","elevation_ft":427,"latitude":37.56439971923828,"longitude":-87.08190155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LA3","iata":"","local":"0LA3","name":"Belcher Airpatch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Belcher","elevation_ft":280,"latitude":32.749298095703125,"longitude":-93.87349700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LA1","iata":"","local":"0LA1","name":"Double H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Gonzales","elevation_ft":15,"latitude":30.229400634765625,"longitude":-90.97339630126952,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LA8","iata":"","local":"0LA8","name":"Jackson Parish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Jonesboro","elevation_ft":183,"latitude":32.252942,"longitude":-92.718795,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LL7","iata":"","local":"0LL7","name":"Northwestern Medicine Valley West Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Sandwich","elevation_ft":670,"latitude":41.657994,"longitude":-88.621297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MA1","iata":"","local":"0MA1","name":"Massachusetts General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":214,"latitude":42.363656,"longitude":-71.069142,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0LL4","iata":"","local":"0LL4","name":"Flaherty Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"La Salle","elevation_ft":664,"latitude":41.419592,"longitude":-89.121394,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2143,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LL0","iata":"","local":"0LL0","name":"Kaufield Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belvidere","elevation_ft":783,"latitude":42.265259,"longitude":-88.727754,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2030,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LL5","iata":"","local":"0LL5","name":"Busboom RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"St Joseph","elevation_ft":675,"latitude":40.1100006104,"longitude":-88.07839965820001,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2230,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LL1","iata":"","local":"0LL1","name":"Jerseyville Aviation Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Jerseyville","elevation_ft":604,"latitude":39.094200134277344,"longitude":-90.31340026855467,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LS7","iata":"","local":"0LS7","name":"Morgan Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"New Roads","elevation_ft":36,"latitude":30.61280059814453,"longitude":-91.48419952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LA9","iata":"","local":"0LA9","name":"Rebel Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Watson","elevation_ft":74,"latitude":30.58629989624023,"longitude":-90.86150360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LS0","iata":"","local":"0LS0","name":"Theriot Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Thibodaux","elevation_ft":13,"latitude":29.74970054626465,"longitude":-90.73580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":144,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LS5","iata":"","local":"0LS5","name":"Trahan Ultralightport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Carencro","elevation_ft":40,"latitude":30.303775,"longitude":-92.130547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MA2","iata":"","local":"0MA2","name":"Healthalliance Hospital-Leominster Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Leominster","elevation_ft":450,"latitude":42.54090118408203,"longitude":-71.76280212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MA3","iata":"","local":"0MA3","name":"Reh Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Rehoboth","elevation_ft":100,"latitude":41.786224,"longitude":-71.231437,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MA4","iata":"","local":"0MA4","name":"Boston Medical Center Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":19,"latitude":42.333804,"longitude":-71.071352,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MA5","iata":"","local":"0MA5","name":"Brockton Usar Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Brockton","elevation_ft":85,"latitude":42.05590057373047,"longitude":-71.05590057373047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MA6","iata":"","local":"0MA6","name":"Wbz Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":9,"latitude":42.3651008605957,"longitude":-71.13259887695312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MA9","iata":"","local":"0MA9","name":"Lleia Kyle O'Meara Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Westminster","elevation_ft":1230,"latitude":42.50310134887695,"longitude":-71.90840148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MD0","iata":"","local":"0MD0","name":"Baltimore Washington Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Glen Burnie","elevation_ft":77,"latitude":39.1375999451,"longitude":-76.623298645,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":79,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MD3","iata":"","local":"","name":"Johns Hopkins Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":260,"latitude":39.297725,"longitude":-76.592941,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MD5","iata":"","local":"0MD5","name":"UM Laurel Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Laurel","elevation_ft":285,"latitude":39.087886,"longitude":-76.882281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MD7","iata":"","local":"0MD7","name":"The Aspen Institute Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Queenstown","elevation_ft":20,"latitude":38.9093017578125,"longitude":-76.11969757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MD9","iata":"","local":"0MD9","name":"Calvert Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Prince Frederick","elevation_ft":143,"latitude":38.560846,"longitude":-76.595979,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0ME7","iata":"","local":"0ME7","name":"Sebago Lake Basin Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"North Windham","elevation_ft":266,"latitude":43.839716,"longitude":-70.462016,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":4000,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MI0","iata":"","local":"","name":"Sumner Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":657,"latitude":42.970001,"longitude":-85.6659,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MI7","iata":"","local":"0MI7","name":"Four Star Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Carleton","elevation_ft":603,"latitude":42.042987,"longitude":-83.35895,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MI9","iata":"","local":"0MI9","name":"Henry Ford Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":633,"latitude":42.36750030517578,"longitude":-83.08439636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN0","iata":"","local":"0MN0","name":"Winner's Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"St Paul Park","elevation_ft":690,"latitude":44.79690170288086,"longitude":-92.98410034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5500,"width_ft":700,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN1","iata":"","local":"","name":"Brinkman Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"St. Peter","elevation_ft":1020,"latitude":44.262501,"longitude":-94.069702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN2","iata":"","local":"0MN2","name":"Grindstone Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Sandstone","elevation_ft":1025,"latitude":46.13330078125,"longitude":-93.00299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":11000,"width_ft":3000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN3","iata":"","local":"0MN3","name":"Lower Hay Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Jenkins","elevation_ft":1230,"latitude":46.67779922485352,"longitude":-94.2925033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":5000,"width_ft":100,"surface":"W"},{"id":"15W/33W","length_ft":5000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MI1","iata":"","local":"5M6","name":"Sugar Springs Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Gladwin","elevation_ft":940,"latitude":44.140301,"longitude":-84.4375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MI4","iata":"","local":"0MI4","name":"Lesterson-Dempsey Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Gwinn","elevation_ft":1120,"latitude":46.270198,"longitude":-87.386496,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MN4","iata":"","local":"0MN4","name":"Paul's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Nisswa","elevation_ft":1200,"latitude":46.47719955444336,"longitude":-94.3031005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":5000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN5","iata":"","local":"","name":"Pankratz Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Springfield","elevation_ft":1033,"latitude":44.307201,"longitude":-94.916901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN7","iata":"","local":"0MN7","name":"Ely Bloomenson Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Ely","elevation_ft":1450,"latitude":47.89910125732422,"longitude":-91.8730010986328,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":120,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MN9","iata":"","local":"0MN9","name":"Triple H Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Big Lake","elevation_ft":980,"latitude":45.31330108642578,"longitude":-93.71759796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MO3","iata":"","local":"","name":"Arvin Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Drexel","elevation_ft":1000,"latitude":38.4403,"longitude":-94.5933,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2225,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MO4","iata":"","local":"0MO4","name":"Bert Walter Berkowitz Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":890,"latitude":39.08530044555664,"longitude":-94.57379913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":18,"width_ft":18,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MO6","iata":"","local":"","name":"Hall Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Hurdland","elevation_ft":850,"latitude":40.116686,"longitude":-92.266788,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MO7","iata":"","local":"0MO7","name":"St Joseph Hospital West Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Lake Saint Louis","elevation_ft":531,"latitude":38.80329895019531,"longitude":-90.77629852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MO9","iata":"","local":"","name":"Emerson Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Ferguson","elevation_ft":575,"latitude":38.729728,"longitude":-90.280725,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MO0","iata":"","local":"0MO0","name":"Ferros Ranch-Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Clinton","elevation_ft":775,"latitude":38.410301208496094,"longitude":-93.8501968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1685,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MS0","iata":"","local":"0MS0","name":"Topton Air Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Meridian","elevation_ft":453,"latitude":32.474998474121094,"longitude":-88.61669921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MS3","iata":"","local":"0MS3","name":"Baptist Memorial Hospital-North Ms Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Oxford","elevation_ft":430,"latitude":34.347801208496094,"longitude":-89.51899719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MS6","iata":"","local":"0MS6","name":"Levert Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pass Christian","elevation_ft":25,"latitude":30.301300048828125,"longitude":-89.2344970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":240,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MS7","iata":"","local":"","name":"Hale Field","category":"closed","iso_country":"US","iso_region":"US-MS","municipality":"Pontotoc","elevation_ft":346,"latitude":34.342602,"longitude":-89.143097,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MT2","iata":"","local":"0MT2","name":"Big Sandy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Big Sandy","elevation_ft":2750,"latitude":48.1796989440918,"longitude":-110.10900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MT3","iata":"","local":"0MT3","name":"Stock Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Hamilton","elevation_ft":3920,"latitude":46.25080108642578,"longitude":-114.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MT8","iata":"","local":"0MT8","name":"Glacier Heli Tours Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"West Glacier","elevation_ft":3300,"latitude":48.486698150634766,"longitude":-113.9980010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MS8","iata":"","local":"0MS8","name":"Catfish Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Benoit","elevation_ft":154,"latitude":33.695352,"longitude":-91.163484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MT7","iata":"","local":"0MT7","name":"Pinehurst Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Thompson Falls","elevation_ft":2460,"latitude":47.66080093383789,"longitude":-115.40399932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MT6","iata":"","local":"0MT6","name":"Hanson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Marion","elevation_ft":3900,"latitude":48.037607,"longitude":-114.674478,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MT4","iata":"","local":"0MT4","name":"Kimp Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Hamilton","elevation_ft":3510,"latitude":46.27859878540039,"longitude":-114.14099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MT5","iata":"","local":"0MT5","name":"Cottonwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Laurel","elevation_ft":3350,"latitude":45.633771,"longitude":-108.848248,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":750,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MS2","iata":"","local":"0MS2","name":"Morgan Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Seminary","elevation_ft":300,"latitude":31.54179954528809,"longitude":-89.3917007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MU2","iata":"","local":"0MU2","name":"Christian Hospital Northeast Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Saint Louis","elevation_ft":520,"latitude":38.77692,"longitude":-90.24151,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MU3","iata":"","local":"33MO","name":"Hannibal Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Hannibal","elevation_ft":744,"latitude":39.7111,"longitude":-91.451934,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MU5","iata":"","local":"0MU5","name":"Holden Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Holden","elevation_ft":865,"latitude":38.71969985961914,"longitude":-93.99440002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MU6","iata":"","local":"0MU6","name":"Bradbury-Rolf Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Higginsville","elevation_ft":815,"latitude":39.07329940795898,"longitude":-93.73590087890624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0ID2","iata":"","local":"0ID2","name":"Flying Joseph Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"May","elevation_ft":5600,"latitude":44.4429016113,"longitude":-113.773002625,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":7507,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MY1","iata":"","local":"0MY1","name":"Bozeman Deaconess Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":4925,"latitude":45.66999816894531,"longitude":-111.0189971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC0","iata":"","local":"0NC0","name":"Wayne Memorial Hospital Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Goldsboro","elevation_ft":106,"latitude":35.398799896240234,"longitude":-77.94969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC1","iata":"","local":"","name":"Bearwallow Farm Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Hendersonville","elevation_ft":3608,"latitude":35.4571,"longitude":-82.375397,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0MU7","iata":"","local":"0MU7","name":"Lambs Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lone Jack","elevation_ft":1070,"latitude":38.875,"longitude":-94.13970184326172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NA1","iata":"","local":"0NA1","name":"Goerger Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Barney","elevation_ft":1045,"latitude":46.24549865722656,"longitude":-97.03759765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NA9","iata":"","local":"0NA9","name":"Boyd's Turf Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Golva","elevation_ft":2750,"latitude":46.75,"longitude":-103.8010025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MT9","iata":"","local":"0MT9","name":"Lone Hawk Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"White Fish","elevation_ft":3284,"latitude":48.481172,"longitude":-114.481659,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1500,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NC2","iata":"","local":"0NC2","name":"Moore Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Pinehurst","elevation_ft":460,"latitude":35.204973,"longitude":-79.458234,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC3","iata":"","local":"0NC3","name":"Washington County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Plymouth","elevation_ft":19,"latitude":35.87519836425781,"longitude":-76.69969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC4","iata":"","local":"0NC4","name":"Wake Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Raleigh","elevation_ft":245,"latitude":35.786800384521484,"longitude":-78.58580017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC5","iata":"","local":"0NC5","name":"Nash General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Rocky Mount","elevation_ft":156,"latitude":35.91889953613281,"longitude":-77.78919982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC6","iata":"","local":"0NC6","name":"Our Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Scotland Neck","elevation_ft":113,"latitude":36.13130187988281,"longitude":-77.41889953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC9","iata":"","local":"0NC9","name":"Maria Parham Health DLP Affiliate Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Henderson","elevation_ft":465,"latitude":36.3307,"longitude":-78.449699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NE3","iata":"","local":"0NE3","name":"Syracuse Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Syracuse","elevation_ft":1120,"latitude":40.66719818115234,"longitude":-96.1864013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NC7","iata":"","local":"0NC7","name":"Lindsay Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Madison","elevation_ft":700,"latitude":36.36481,"longitude":-79.99614,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ND6","iata":"","local":"0ND6","name":"Schumacher Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hague","elevation_ft":2020,"latitude":46.05500030517578,"longitude":-99.91709899902344,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NE0","iata":"","local":"0NE0","name":"Merrihew Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ashby","elevation_ft":3815,"latitude":41.84999847412109,"longitude":-101.9499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2300,"width_ft":100,"surface":"T"},{"id":"NW/SE","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ND0","iata":"","local":"0ND0","name":"Gilbertson Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Flora","elevation_ft":1550,"latitude":47.92919921875,"longitude":-99.40039825439452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NE4","iata":"","local":"0NE4","name":"Franklin County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Franklin","elevation_ft":1950,"latitude":40.097198486328125,"longitude":-98.95040130615234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NH7","iata":"","local":"0NH7","name":"Leinsing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Dover","elevation_ft":10,"latitude":43.151831,"longitude":-70.846902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ0","iata":"","local":"0NJ0","name":"Atlantic City Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":82,"latitude":39.3589702498,"longitude":-74.4346717,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ1","iata":"","local":"0NJ1","name":"Berkeley Township Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bayville","elevation_ft":54,"latitude":39.90729904174805,"longitude":-74.23490142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ2","iata":"","local":"0NJ2","name":"Ballymere Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Morristown","elevation_ft":280,"latitude":40.75289916992188,"longitude":-74.43990325927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ3","iata":"","local":"0NJ3","name":"Mount Holly Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Mount Holly","elevation_ft":45,"latitude":39.96680068969727,"longitude":-74.79959869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":305,"width_ft":140,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ4","iata":"","local":"0NJ4","name":"Weichert Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Morris Plains","elevation_ft":103,"latitude":40.94070053100586,"longitude":-74.46150207519531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ8","iata":"","local":"0NJ8","name":"Port Newark Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newark","elevation_ft":10,"latitude":40.70230102539063,"longitude":-74.15070343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NJ9","iata":"","local":"0NJ9","name":"Jersey Tpke New Brunswick Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":70,"latitude":40.477298736572266,"longitude":-74.40789794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NK2","iata":"","local":"0NK2","name":"Westwind Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Charlton","elevation_ft":800,"latitude":42.9833984375,"longitude":-74.01619720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NK0","iata":"","local":"0NK0","name":"Berdick Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Cattaraugus","elevation_ft":1690,"latitude":42.33399963378906,"longitude":-78.79090118408203,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NK4","iata":"","local":"0NK4","name":"Nassau University Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Hempstead","elevation_ft":80,"latitude":40.726482,"longitude":-73.552773,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NK7","iata":"","local":"0NK7","name":"King Street Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Armonk","elevation_ft":470,"latitude":41.10279,"longitude":-73.725087,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NV1","iata":"","local":"0NV1","name":"Summerlin Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2745,"latitude":36.18192,"longitude":-115.31647,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NY2","iata":"","local":"0NY2","name":"Amar Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Stony Point","elevation_ft":507,"latitude":41.231009,"longitude":-74.047353,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NY4","iata":"","local":"0NY4","name":"Bridgeview Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Kingston","elevation_ft":133,"latitude":41.982698,"longitude":-73.963206,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NY6","iata":"","local":"0NY6","name":"New York State Police Troop E Zone 2 Auburn Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Auburn","elevation_ft":600,"latitude":42.928843,"longitude":-76.615734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0NY0","iata":"","local":"0NY0","name":"Bennetts Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"North Creek","elevation_ft":1040,"latitude":43.692973,"longitude":-73.978013,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NY1","iata":"","local":"0NY1","name":"Russell Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Northumberland","elevation_ft":260,"latitude":43.139198303222656,"longitude":-73.6531982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1360,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NY3","iata":"","local":"0NY3","name":"Kermizian Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ohio","elevation_ft":1440,"latitude":43.31399917602539,"longitude":-74.93209838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1600,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NK3","iata":"","local":"0NK3","name":"Seven Gullies Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Groveland","elevation_ft":600,"latitude":42.695653,"longitude":-77.792451,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NM0","iata":"","local":"0NM0","name":"Columbus Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Columbus","elevation_ft":4024,"latitude":31.823898,"longitude":-107.629924,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4210,"width_ft":250,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NM7","iata":"","local":"0NM7","name":"Negrito Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Reserve","elevation_ft":8143,"latitude":33.527901,"longitude":-108.541001,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4000,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":7500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OA2","iata":"","local":"0OA2","name":"Cleveland Clinic, Medina Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Medina","elevation_ft":983,"latitude":41.137029,"longitude":-81.836745,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OH1","iata":"","local":"0OH1","name":"Cirino Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Chagrin Falls","elevation_ft":1250,"latitude":41.44390106201172,"longitude":-81.32759857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OH2","iata":"","local":"","name":"Jenkins Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"North Hampton","elevation_ft":1080,"latitude":39.970604,"longitude":-83.911598,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OH3","iata":"","local":"0OH3","name":"Hamilton County Sheriff's Patrol Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Forest Park","elevation_ft":865,"latitude":39.27920150756836,"longitude":-84.564697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OH4","iata":"","local":"0OH4","name":"Upper Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Troy","elevation_ft":867,"latitude":40.085621,"longitude":-84.228562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OI0","iata":"","local":"0OI0","name":"Foltz Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"East Canton","elevation_ft":1012,"latitude":40.73590087890625,"longitude":-81.2468032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OK2","iata":"","local":"","name":"Parkview Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"El Reno","elevation_ft":1349,"latitude":35.5298,"longitude":-97.983902,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OI6","iata":"","local":"0OI6","name":"Victor's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Kingsville","elevation_ft":860,"latitude":41.83810043334961,"longitude":-80.6436996459961,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OH8","iata":"","local":"0OH8","name":"Fry Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Piqua","elevation_ft":900,"latitude":40.18840026855469,"longitude":-84.256103515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OK1","iata":"","local":"0OK1","name":"Mckey Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Elmore City","elevation_ft":1056,"latitude":34.65700149536133,"longitude":-97.40170288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OK3","iata":"","local":"0OK3","name":"McKinley Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Geary","elevation_ft":1420,"latitude":35.614465,"longitude":-98.534403,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OI9","iata":"","local":"0OI9","name":"Hidden Quarry Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lucasville","elevation_ft":830,"latitude":38.89450073242188,"longitude":-83.1135025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OK7","iata":"","local":"0OK7","name":"Shattuck Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Shattuck","elevation_ft":2200,"latitude":36.25,"longitude":-99.87539672851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OK8","iata":"","local":"","name":"Cade's Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Covington","elevation_ft":1140,"latitude":36.2925,"longitude":-97.593102,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OR0","iata":"","local":"0OR0","name":"Providence Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Medford","elevation_ft":1350,"latitude":42.3386993408,"longitude":-122.861999512,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OR2","iata":"","local":"0OR2","name":"Hendershots Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Merlin","elevation_ft":1200,"latitude":42.13320159912109,"longitude":-123.45099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OR4","iata":"","local":"0OR4","name":"Round Butte Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Metolius","elevation_ft":2125,"latitude":44.61650085449219,"longitude":-121.26799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0OK4","iata":"","local":"0OK4","name":"Rock Creek Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Coal Gate","elevation_ft":730,"latitude":34.66059875488281,"longitude":-96.25360107421876,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2350,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OK5","iata":"","local":"0OK5","name":"Chappell Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guthrie","elevation_ft":1070,"latitude":35.88890075683594,"longitude":-97.40029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OR8","iata":"","local":"0OR8","name":"Sutton on Rogue Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"White City","elevation_ft":1260,"latitude":42.48479843139648,"longitude":-122.86599731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OR6","iata":"","local":"0OR6","name":"Rome Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jordan Valley","elevation_ft":3387,"latitude":42.834,"longitude":-117.628998,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2900,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OR7","iata":"","local":"0OR7","name":"Marr Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Monmouth","elevation_ft":275,"latitude":44.854000091552734,"longitude":-123.26399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PA1","iata":"","local":"0PA1","name":"Phoenix Technologies Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Norristown","elevation_ft":252,"latitude":40.11819839477539,"longitude":-75.40129852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PA8","iata":"","local":"0PA8","name":"Geisinger Community Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Scranton","elevation_ft":508,"latitude":41.399909,"longitude":-75.646682,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PA9","iata":"","local":"0PA9","name":"Carson Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Perkasie","elevation_ft":415,"latitude":40.33340072631836,"longitude":-75.21630096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PN1","iata":"","local":"0PN1","name":"Pete's Water Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-PA","municipality":"Freeport","elevation_ft":757,"latitude":40.69940185546875,"longitude":-79.618896484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":7500,"width_ft":800,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PN3","iata":"","local":"0PN3","name":"Wyeth-Ayerst Nr Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Collegeville","elevation_ft":186,"latitude":40.15869903564453,"longitude":-75.4634017944336,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PA2","iata":"","local":"0PA2","name":"Haunstein Ultralightport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Shermans Dale","elevation_ft":600,"latitude":40.31679916379999,"longitude":-77.1247024536,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PN4","iata":"","local":"0PN4","name":"Kitner Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Bloomfield","elevation_ft":960,"latitude":40.4128990173,"longitude":-77.24140167239999,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PA6","iata":"","local":"0PA6","name":"Hostetler Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Huntingdon","elevation_ft":760,"latitude":40.63090133666992,"longitude":-77.85030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PA3","iata":"","local":"0PA3","name":"Robbins Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Troy","elevation_ft":1207,"latitude":41.747319,"longitude":-76.760624,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1977,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PN5","iata":"","local":"0PN5","name":"Nichols Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Spartansburg","elevation_ft":1761,"latitude":41.77920150756836,"longitude":-79.59839630126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PN0","iata":"","local":"0PN0","name":"Fletcher Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Hadley","elevation_ft":1335,"latitude":41.441875,"longitude":-80.15537,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PA5","iata":"","local":"0PA5","name":"Fisher Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Franklin","elevation_ft":1500,"latitude":41.49449920654297,"longitude":-79.83090209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2550,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PS0","iata":"","local":"0PS0","name":"Frederick Airpark","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tylersburg","elevation_ft":1560,"latitude":41.37089920043945,"longitude":-79.3416976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PS5","iata":"","local":"0PS5","name":"Used Parts Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"East Bangor","elevation_ft":660,"latitude":40.87929916381836,"longitude":-75.19270324707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PS6","iata":"","local":"0PS6","name":"Herbst Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"East Prospect","elevation_ft":485,"latitude":39.949501037597656,"longitude":-76.55329895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PS8","iata":"","local":"0PS8","name":"Bayfront Garage Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Erie","elevation_ft":1130,"latitude":42.132598876953125,"longitude":-80.08619689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PS9","iata":"","local":"0PS9","name":"Jefferson Health Bucks County Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Fairless Hills","elevation_ft":141,"latitude":40.182734,"longitude":-74.868028,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0SD2","iata":"","local":"0SD2","name":"Prairie Lakes West Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Watertown","elevation_ft":1799,"latitude":44.91109848022461,"longitude":-97.11949920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0PS3","iata":"","local":"0PS3","name":"Carsonville Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Carsonville","elevation_ft":800,"latitude":40.49039840698242,"longitude":-76.7666015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PS4","iata":"","local":"0PS4","name":"Old Orchard Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Curwensville","elevation_ft":1980,"latitude":41.009746,"longitude":-78.561838,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PN8","iata":"","local":"0PN8","name":"Shriver Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Titusville","elevation_ft":1560,"latitude":41.606394,"longitude":-79.684181,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0SD0","iata":"","local":"0SD0","name":"Lenling Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Glencross","elevation_ft":2142,"latitude":45.42499923706055,"longitude":-100.89199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0SD1","iata":"","local":"0SD1","name":"Lodi Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Wakonda","elevation_ft":1200,"latitude":42.972198486328125,"longitude":-96.9802017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1726,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0SD4","iata":"","local":"0SD4","name":"Brookview Manor Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Brookings","elevation_ft":1670,"latitude":44.308101654052734,"longitude":-96.76470184326172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0SD5","iata":"","local":"0SD5","name":"The Fort Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Custer","elevation_ft":5800,"latitude":43.806400299072266,"longitude":-103.63700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0SD9","iata":"","local":"0SD9","name":"Crazy Horse Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Custer","elevation_ft":5900,"latitude":43.82500076293945,"longitude":-103.63600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA0","iata":"","local":"0TA0","name":"HCA Houston Healthcare Mainland Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Texas City","elevation_ft":16,"latitude":29.39501,"longitude":-94.986355,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA1","iata":"","local":"","name":"Buddy Harmel Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Halfway","elevation_ft":3552,"latitude":34.219501,"longitude":-101.980003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA3","iata":"","local":"","name":"Tate Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Dryden","elevation_ft":2650,"latitude":30.303817,"longitude":-102.137403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA5","iata":"","local":"0TA5","name":"Metro Heli-Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":57,"latitude":29.61470031738281,"longitude":-95.35489654541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA8","iata":"","local":"","name":"Womack Plantation Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Paris","elevation_ft":410,"latitude":33.848701,"longitude":-95.407204,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1270,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA9","iata":"","local":"0TA9","name":"Houston Oil & Minerals Port Bolivar Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Bolivar","elevation_ft":8,"latitude":29.39109992980957,"longitude":-94.76409912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TA2","iata":"","local":"0TA2","name":"Smith Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Halfway","elevation_ft":3487,"latitude":34.213702,"longitude":-101.923342,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":60,"surface":"T"},{"id":"N/S","length_ft":4000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0SD7","iata":"","local":"0SD7","name":"Porch Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Wanblee","elevation_ft":2775,"latitude":43.52439880371094,"longitude":-101.73400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TE1","iata":"","local":"0TE1","name":"Christus Spohn Hospital Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":38,"latitude":27.780069,"longitude":-97.414811,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TE2","iata":"","local":"0TE2","name":"Bell Helicopter Hurst Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Hurst","elevation_ft":524,"latitude":32.80009841918945,"longitude":-97.16699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TE3","iata":"","local":"","name":"Buzz Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Roaring Springs","elevation_ft":2614,"latitude":33.931752,"longitude":-100.845681,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TE8","iata":"","local":"","name":"Texas World Speedway Helistop Number 1","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"College Station","elevation_ft":270,"latitude":30.540501,"longitude":-96.222504,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TE9","iata":"","local":"","name":"Texas World Speedway Helistop Number 2","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"College Station","elevation_ft":270,"latitude":30.5396,"longitude":-96.226097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TN1","iata":"","local":"0TN1","name":"Tims Ford Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-TN","municipality":"Tullahoma","elevation_ft":785,"latitude":35.2223014831543,"longitude":-86.22000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":8000,"width_ft":800,"surface":"W"},{"id":"09W/27W","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"13W/31W","length_ft":7000,"width_ft":700,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TE0","iata":"","local":"0TE0","name":"Robertson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Comstock","elevation_ft":1663,"latitude":29.69300079345703,"longitude":-101.16200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2650,"width_ft":50,"surface":"G"},{"id":"13/31","length_ft":3250,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TE5","iata":"","local":"0TE5","name":"Santa Maria Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Laredo","elevation_ft":516,"latitude":27.433799743652344,"longitude":-99.18589782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5992,"width_ft":77,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TE7","iata":"JCY","local":"0TE7","name":"LBJ Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stonewall","elevation_ft":1515,"latitude":30.251801,"longitude":-98.622498,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6291,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TE4","iata":"","local":"0TE4","name":"Hilltop Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hilltop Lakes","elevation_ft":501,"latitude":31.08099937438965,"longitude":-96.21520233154295,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3018,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TN3","iata":"","local":"0TN3","name":"Park West Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":1000,"latitude":35.917598724365234,"longitude":-84.1001968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TN4","iata":"","local":"0TN4","name":"Physicians Medical Regional Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":790,"latitude":35.991209,"longitude":-83.927278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TN7","iata":"","local":"0TN7","name":"Horne Properties Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":975,"latitude":35.92359924316406,"longitude":-84.09110260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TN8","iata":"","local":"0TN8","name":"Erlanger Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Chattanooga","elevation_ft":745,"latitude":35.049198150634766,"longitude":-85.29049682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TN9","iata":"","local":"0TN9","name":"East Tennessee Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":1003,"latitude":35.956199645996094,"longitude":-83.93820190429688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TS0","iata":"","local":"","name":"Flower Mound Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Flower Mound","elevation_ft":625,"latitude":33.0229,"longitude":-97.122498,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TS3","iata":"","local":"","name":"Houston Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":100,"latitude":29.819259,"longitude":-95.663143,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TN6","iata":"","local":"0TN6","name":"Riner Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Norris","elevation_ft":1125,"latitude":36.18339920043945,"longitude":-84.0990982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1050,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TS1","iata":"","local":"0TS1","name":"Dooley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":650,"latitude":33.098732,"longitude":-97.272517,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1750,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TS7","iata":"","local":"0TS7","name":"Flying U Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineral Wells","elevation_ft":978,"latitude":32.834578,"longitude":-98.125677,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TS4","iata":"","local":"0TS4","name":"Ullrich Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ledbetter","elevation_ft":410,"latitude":30.091673,"longitude":-96.794078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY38","iata":"","local":"WY38","name":"Orchard Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Ten Sleep","elevation_ft":5277,"latitude":43.62360000610352,"longitude":-107.40799713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TS9","iata":"","local":"","name":"Jim Roach Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Niederwald","elevation_ft":600,"latitude":30.015499,"longitude":-97.737197,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1407,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TT8","iata":"","local":"0TT8","name":"Dynasty Heliport","category":"heliport","iso_country":"MP","iso_region":"MP-U-A","municipality":"San Jose, Tinian","elevation_ft":150,"latitude":14.960012,"longitude":145.631075,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":127,"width_ft":127,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TX2","iata":"","local":"0TX2","name":"Heliport-Facility 5a Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":546,"latitude":32.76259994506836,"longitude":-97.05860137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TX3","iata":"","local":"0TX3","name":"UT Health East Texas Carthage Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Carthage","elevation_ft":296,"latitude":32.166429,"longitude":-94.346098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TX4","iata":"","local":"0TX4","name":"Aerospatiale Helicopter Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":535,"latitude":32.711700439453125,"longitude":-97.0271987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TX5","iata":"","local":"0TX5","name":"Shiloh Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Flower Mound","elevation_ft":635,"latitude":33.023382,"longitude":-97.120589,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TX7","iata":"","local":"","name":"Lazy K Acres Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Grapevine","elevation_ft":700,"latitude":32.950102,"longitude":-97.150297,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1264,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0VA0","iata":"","local":"","name":"Mostly Harmless Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Bumpass","elevation_ft":330,"latitude":37.965401,"longitude":-77.777496,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2300,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0TX6","iata":"","local":"0TX6","name":"Elm Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seguin","elevation_ft":550,"latitude":29.505199432373047,"longitude":-97.99690246582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1925,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TX1","iata":"","local":"0TX1","name":"Pecan Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":710,"latitude":32.353325,"longitude":-97.676225,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3616,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TX0","iata":"","local":"0TX0","name":"Nassau Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":714,"latitude":32.41960144042969,"longitude":-97.71279907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY66","iata":"","local":"WY66","name":"Chamberlain Brothers Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":5237,"latitude":42.752201080322266,"longitude":-105.62000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VA6","iata":"","local":"0VA6","name":"Mc Guire Va Medical Center Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":178,"latitude":37.49599838259999,"longitude":-77.46219635010002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY01","iata":"","local":"WY01","name":"Dilts Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":4800,"latitude":43.394779,"longitude":-105.550088,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY12","iata":"","local":"WY12","name":"Ohman Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Gillette","elevation_ft":4905,"latitude":43.92639923095703,"longitude":-105.65299987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"03L/21R","length_ft":1300,"width_ft":75,"surface":"T"},{"id":"03R/21L","length_ft":2980,"width_ft":75,"surface":"T"},{"id":"10/28","length_ft":2470,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WA0","iata":"","local":"0WA0","name":"Streamline Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Machias","elevation_ft":116,"latitude":47.982898712158,"longitude":-122.03800201416,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA3","iata":"","local":"","name":"Air Columbia Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Stevenson","elevation_ft":149,"latitude":45.682599,"longitude":-121.900002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA4","iata":"","local":"0WA4","name":"Macon Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"East Wenatchee","elevation_ft":1250,"latitude":47.436238,"longitude":-120.279515,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA5","iata":"","local":"0WA5","name":"Ware Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Mount Vernon","elevation_ft":750,"latitude":48.37929916381836,"longitude":-122.28800201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":12,"surface":"C"},{"id":"H2","length_ft":24,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA6","iata":"","local":"0WA6","name":"Stevens Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Edmonds","elevation_ft":370,"latitude":47.8036994934082,"longitude":-122.33399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA7","iata":"","local":"0WA7","name":"Shamrock Port Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Newman Lake","elevation_ft":2172,"latitude":47.77690124511719,"longitude":-117.08399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA2","iata":"","local":"0WA2","name":"Curtis Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Curtis","elevation_ft":254,"latitude":46.59040069580078,"longitude":-123.1050033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2135,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WA1","iata":"","local":"0WA1","name":"Dwight Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Chehalis","elevation_ft":350,"latitude":46.61709976196289,"longitude":-122.82599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WA8","iata":"","local":"0WA8","name":"Childrens Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":125,"latitude":47.66400146484375,"longitude":-122.28099822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WA9","iata":"","local":"0WA9","name":"Naval Station Everett Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":5,"latitude":47.986460601,"longitude":-122.224295139,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WI0","iata":"","local":"0WI0","name":"Aurora St Luke's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Milwaukee","elevation_ft":761,"latitude":42.98889923095703,"longitude":-87.95149993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WI3","iata":"","local":"0WI3","name":"Aurora Lakeland Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Elkhorn","elevation_ft":1040,"latitude":42.661291,"longitude":-88.497861,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WI8","iata":"","local":"0WI8","name":"Oconomowoc Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oconomowoc","elevation_ft":885,"latitude":43.13890075683594,"longitude":-88.47229766845703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WI1","iata":"","local":"0WI1","name":"Mort's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Comstock","elevation_ft":1255,"latitude":45.5071983337,"longitude":-92.1418991089,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":10000,"width_ft":4000,"surface":"W"},{"id":"04/22","length_ft":2300,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WI2","iata":"","local":"0WI2","name":"Doering Farms Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Monches","elevation_ft":910,"latitude":43.20140075683594,"longitude":-88.3333969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WN1","iata":"","local":"0WN1","name":"Shangri-La Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Selah","elevation_ft":1500,"latitude":46.75189971923828,"longitude":-120.60199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WN0","iata":"","local":"0WN0","name":"Rucilla's Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sequim","elevation_ft":15,"latitude":48.137298583984375,"longitude":-123.11299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1050,"width_ft":28,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY18","iata":"","local":"WY18","name":"Iberlin Ranch Number 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Linch","elevation_ft":5020,"latitude":43.560055,"longitude":-106.00987,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":5000,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WI4","iata":"","local":"0WI4","name":"Snow Crest Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Montello","elevation_ft":810,"latitude":43.82939910888672,"longitude":-89.35260009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WN4","iata":"","local":"0WN4","name":"Olympia Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":200,"latitude":46.9640007019043,"longitude":-122.89199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WN6","iata":"","local":"0WN6","name":"L-Z Blue Thunder Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Blaine","elevation_ft":75,"latitude":48.952522,"longitude":-122.818136,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WN8","iata":"","local":"0WN8","name":"Sheldon Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2129,"latitude":47.2510986328125,"longitude":-116.85199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":10,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XA0","iata":"","local":"","name":"Parkland Hospital Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":548,"latitude":32.811537,"longitude":-96.838976,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":900,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XA1","iata":"","local":"0XA1","name":"Kothmann Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort McKavett","elevation_ft":2347,"latitude":30.678963,"longitude":-100.130183,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XA2","iata":"","local":"0XA2","name":"Fort Duncan Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Pass","elevation_ft":884,"latitude":28.713889,"longitude":-100.454728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XA3","iata":"","local":"0XA3","name":"Midstream Freeport Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Freeport","elevation_ft":6,"latitude":28.97170066833496,"longitude":-95.28309631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":27,"width_ft":27,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":27,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0WN2","iata":"","local":"0WN2","name":"Coopers Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kennewick","elevation_ft":435,"latitude":46.127573,"longitude":-119.014273,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XA4","iata":"","local":"0XA4","name":"Seven Cs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Encinal","elevation_ft":331,"latitude":27.996901,"longitude":-98.882202,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5005,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WY1","iata":"","local":"0WY1","name":"Dorsey Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Basin","elevation_ft":4017,"latitude":44.411111,"longitude":-108.163333,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3400,"width_ft":70,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WY0","iata":"","local":"0WY0","name":"Freedom Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Freedom","elevation_ft":5698,"latitude":43.039722,"longitude":-111.038056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XA5","iata":"","local":"0XA5","name":"74 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Campbellton","elevation_ft":320,"latitude":28.68490028381348,"longitude":-98.38279724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3887,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XA6","iata":"","local":"0XA6","name":"Jaxon Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3270,"latitude":33.45000076293945,"longitude":-101.93900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XA9","iata":"","local":"0XA9","name":"Methodist Mansfield Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mansfield","elevation_ft":633,"latitude":32.567223,"longitude":-97.095596,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XS3","iata":"","local":"0XS3","name":"South Texas Project East Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sargent","elevation_ft":32,"latitude":28.792291,"longitude":-96.041895,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XS4","iata":"","local":"0XS4","name":"Eds Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Allen","elevation_ft":602,"latitude":33.09170150756836,"longitude":-96.68609619140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XS5","iata":"","local":"","name":"Southeastern Helicopters Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"South Padre Island","elevation_ft":5,"latitude":26.145731,"longitude":-97.171369,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY13","iata":"","local":"WY13","name":"Little Buffalo Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Gillette","elevation_ft":4919,"latitude":43.78609848022461,"longitude":-105.66400146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2250,"width_ft":60,"surface":"T"},{"id":"NEL/SWR","length_ft":4700,"width_ft":60,"surface":"T"},{"id":"NER/SWL","length_ft":1800,"width_ft":60,"surface":"T"},{"id":"NW/SE","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10AL","iata":"","local":"10AL","name":"North Jackson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Bridgeport","elevation_ft":650,"latitude":34.91400146484375,"longitude":-85.7708969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0XA7","iata":"","local":"0XA7","name":"Bar 3 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":744,"latitude":30.662345,"longitude":-97.62276,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":100,"surface":"T"},{"id":"H1","length_ft":150,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XS6","iata":"","local":"0XS6","name":"Lakeside Beach Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Spicewood","elevation_ft":800,"latitude":30.500841,"longitude":-98.147448,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XS8","iata":"","local":"0XS8","name":"Dunbar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":958,"latitude":29.07695,"longitude":-100.371609,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3200,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XS7","iata":"","local":"0XS7","name":"Anacacho Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1067,"latitude":29.193679,"longitude":-100.280027,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10AR","iata":"","local":"","name":"Huntsville Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Huntsville","elevation_ft":1495,"latitude":36.094002,"longitude":-93.742401,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10CL","iata":"","local":"","name":"Joe Gottlieb Field","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":347,"latitude":35.368,"longitude":-119.195,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10CN","iata":"","local":"10CN","name":"Adventist Health St Helena Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"St Helena","elevation_ft":581,"latitude":38.543333,"longitude":-122.475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10CO","iata":"","local":"","name":"Silkman Farms Inc. Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Burlington","elevation_ft":4000,"latitude":39.4547,"longitude":-102.212997,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10FL","iata":"","local":"10FL","name":"Fishermen's Hospital Emergency Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Marathon","elevation_ft":5,"latitude":24.710399627685547,"longitude":-81.09449768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10II","iata":"","local":"10II","name":"Franciscan Health Rensselaer Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Rensselaer","elevation_ft":660,"latitude":40.934997,"longitude":-87.138159,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10IL","iata":"","local":"10IL","name":"Riverside Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Kankakee","elevation_ft":620,"latitude":41.12360000610352,"longitude":-87.88529968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":57,"width_ft":57,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10FD","iata":"","local":"10FD","name":"Seven Feathers Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Dunnellon","elevation_ft":68,"latitude":29.00659942626953,"longitude":-82.40460205078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10FA","iata":"","local":"10FA","name":"Flying Baron Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Leesburg","elevation_ft":75,"latitude":28.79750061035156,"longitude":-81.93589782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2575,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10AZ","iata":"","local":"10AZ","name":"Pierce Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Buckeye","elevation_ft":860,"latitude":33.36640167236328,"longitude":-112.61799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3407,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10IA","iata":"","local":"10IA","name":"Flyers Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Waterloo","elevation_ft":830,"latitude":42.41669845581055,"longitude":-92.2501983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2405,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10ID","iata":"","local":"10ID","name":"Flat Top Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Muldoon","elevation_ft":5841,"latitude":43.49440002441406,"longitude":-113.9219970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3000,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10IN","iata":"","local":"","name":"Squires Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Connersville","elevation_ft":1000,"latitude":39.718399,"longitude":-85.048897,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1300,"width_ft":50,"surface":"T"},{"id":"09/27","length_ft":960,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10KS","iata":"","local":"10KS","name":"University of Kansas Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Kansas City","elevation_ft":958,"latitude":39.056277,"longitude":-94.608892,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":56,"width_ft":56,"surface":"C"},{"id":"H3","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10KY","iata":"","local":"10KY","name":"Southwest Government Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":480,"latitude":38.148399353027344,"longitude":-85.83689880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10LS","iata":"","local":"","name":"G & J Fly A Way Ultralightport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Youngsville","elevation_ft":20,"latitude":30.046301,"longitude":-91.994598,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2779,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10MA","iata":"","local":"10MA","name":"Beaver Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Ware","elevation_ft":384,"latitude":42.26259994506836,"longitude":-72.30699920654297,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":4000,"width_ft":800,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10ME","iata":"","local":"10ME","name":"Penobscot Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Lincoln","elevation_ft":368,"latitude":45.348713,"longitude":-68.516636,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10MI","iata":"","local":"10MI","name":"Ascension St Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Saginaw","elevation_ft":595,"latitude":43.425969,"longitude":-83.939356,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10MO","iata":"","local":"","name":"Eckerts Airstrip","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Williamsburg","elevation_ft":839,"latitude":38.914501,"longitude":-91.704301,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1425,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10MU","iata":"","local":"10MU","name":"Freeman Neosho Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Neosho","elevation_ft":1110,"latitude":36.865843,"longitude":-94.369848,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10ND","iata":"","local":"10ND","name":"Smith Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Halliday","elevation_ft":2200,"latitude":47.1875,"longitude":-102.36199951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10LA","iata":"","local":"10LA","name":"Industrial Helicopters Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Scott","elevation_ft":35,"latitude":30.250725,"longitude":-92.095728,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2144,"width_ft":150,"surface":"T"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10NH","iata":"","local":"10NH","name":"Clark Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hampstead","elevation_ft":320,"latitude":42.87409973144531,"longitude":-71.17970275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10NJ","iata":"","local":"","name":"St Francis Medical Center Helistop","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Trenton","elevation_ft":55,"latitude":40.216906,"longitude":-74.742576,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10NK","iata":"","local":"10NK","name":"Glens Falls Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Glens Falls","elevation_ft":328,"latitude":43.307336,"longitude":-73.646211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10NR","iata":"","local":"10NR","name":"Atrium Health Union Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Monroe","elevation_ft":581,"latitude":34.976678,"longitude":-80.522055,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10NY","iata":"","local":"","name":"Beaver Meadow Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Remsen","elevation_ft":1195,"latitude":43.368999,"longitude":-75.159599,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10PA","iata":"","local":"10PA","name":"Piac Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Essington","elevation_ft":8,"latitude":39.86259841918945,"longitude":-75.31050109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10PN","iata":"","local":"10PN","name":"One Meridian Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":560,"latitude":39.93069839477539,"longitude":-75.24410247802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10SC","iata":"","local":"10SC","name":"Hartness Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":890,"latitude":34.840013,"longitude":-82.252927,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10SD","iata":"","local":"10SD","name":"Wanblee Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Wanblee","elevation_ft":2654,"latitude":43.563836,"longitude":-101.660223,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10TA","iata":"","local":"10TA","name":"Bear Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":100,"latitude":29.792200088500977,"longitude":-95.63490295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10TE","iata":"","local":"","name":"Gottwald Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Harwood","elevation_ft":440,"latitude":29.647738,"longitude":-97.505635,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1975,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10OK","iata":"","local":"10OK","name":"Hickory Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Norman","elevation_ft":1175,"latitude":35.16669845581055,"longitude":-97.21700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10TS","iata":"","local":"","name":"Saint's Strip Ultralightport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Marion","elevation_ft":980,"latitude":29.5525,"longitude":-98.103104,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10TX","iata":"","local":"10TX","name":"SMC Aerospace Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Ingleside","elevation_ft":15,"latitude":27.8447,"longitude":-97.2239,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10UT","iata":"","local":"10UT","name":"Gilbert Development Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Hurricane","elevation_ft":3300,"latitude":37.172778,"longitude":-113.434444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10VG","iata":"","local":"10VG","name":"WAVY TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Portsmouth","elevation_ft":20,"latitude":36.829702,"longitude":-76.298344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11AL","iata":"","local":"11AL","name":"Ech Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Ozark","elevation_ft":268,"latitude":31.393699645996097,"longitude":-85.75150299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1482,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1238,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1000,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"10WI","iata":"","local":"10WI","name":"Buds Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Pound","elevation_ft":850,"latitude":45.11579895019531,"longitude":-88.18949890136719,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10XA","iata":"","local":"10XA","name":"Sterling Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Port Lavaca","elevation_ft":30,"latitude":28.680794,"longitude":-96.661647,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2300,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11AK","iata":"","local":"11AK","name":"Rocking T Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1190,"latitude":64.001932,"longitude":-145.501585,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":30,"surface":"G"},{"id":"15/33","length_ft":1000,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10WY","iata":"","local":"10WY","name":"Willow Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Kaycee","elevation_ft":5521,"latitude":43.423333,"longitude":-106.823611,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4500,"width_ft":100,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10XS","iata":"","local":"10XS","name":"Flying S Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownwood","elevation_ft":1447,"latitude":31.77949905395508,"longitude":-98.9093017578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WY6","iata":"","local":"8WY6","name":"Lazy T Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Ten Sleep","elevation_ft":4857,"latitude":43.925417,"longitude":-107.294583,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11AR","iata":"","local":"11AR","name":"CHI St. Vincent Hospital Hot Springs Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Hot Springs","elevation_ft":558,"latitude":34.468846,"longitude":-93.065766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11CN","iata":"","local":"11CN","name":"Shasta Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Redding","elevation_ft":622,"latitude":40.585095,"longitude":-122.387899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"},{"id":"H2","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11FD","iata":"","local":"11FD","name":"North Okaloosa Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Crestview","elevation_ft":230,"latitude":30.734808,"longitude":-86.562293,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11GE","iata":"","local":"11GE","name":"Apple 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1273,"latitude":34.26029968261719,"longitude":-84.06639862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11ID","iata":"","local":"","name":"Riddle Airport","category":"closed","iso_country":"US","iso_region":"US-ID","municipality":"Riddle","elevation_ft":5356,"latitude":42.185504,"longitude":-116.112999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11IL","iata":"","local":"11IL","name":"Presence St Mary's Hospital - Kankakee Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Kankakee","elevation_ft":610,"latitude":41.120718,"longitude":-87.873075,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11IS","iata":"","local":"11IS","name":"St Anthony Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Effingham","elevation_ft":593,"latitude":39.125,"longitude":-88.55059814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11FA","iata":"","local":"11FA","name":"B & L Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":9,"latitude":25.582892,"longitude":-80.498993,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2465,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11IN","iata":"","local":"11IN","name":"JR's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Danville","elevation_ft":950,"latitude":39.819183,"longitude":-86.538234,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2700,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11IA","iata":"","local":"11IA","name":"Koch Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Hudson","elevation_ft":988,"latitude":42.349636,"longitude":-92.513316,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1320,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11CL","iata":"","local":"11CL","name":"Hansen Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Adelanto","elevation_ft":2885,"latitude":34.630001068115234,"longitude":-117.65299987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5875,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11KS","iata":"","local":"","name":"Sheller's Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Tonganoxie","elevation_ft":1090,"latitude":39.116695,"longitude":-95.148904,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2020,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11KY","iata":"","local":"11KY","name":"Southwest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":500,"latitude":38.11589813232422,"longitude":-85.83609771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11LA","iata":"","local":"11LA","name":"Tiger Pass Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":0,"latitude":29.2588005065918,"longitude":-89.35299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":2000,"width_ft":100,"surface":"W"},{"id":"18W/36W","length_ft":2000,"width_ft":100,"surface":"W"},{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11MN","iata":"","local":"","name":"Sixberry's Landing Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Chisholm","elevation_ft":1372,"latitude":47.6777,"longitude":-93.048203,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11NC","iata":"","local":"11NC","name":"Sprint/Midatlantic Telecom Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Youngsville","elevation_ft":427,"latitude":36.02149963378906,"longitude":-78.5188980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11LL","iata":"","local":"11LL","name":"Thacker Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chenoa","elevation_ft":720,"latitude":40.722514,"longitude":-88.769108,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11MA","iata":"","local":"11MA","name":"Bulljump Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Wareham","elevation_ft":60,"latitude":41.80730056762695,"longitude":-70.7583999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1200,"width_ft":42,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11MU","iata":"","local":"11MU","name":"Rocky Top Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gainesville","elevation_ft":1273,"latitude":36.657916,"longitude":-92.465578,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":950,"width_ft":40,"surface":"T"},{"id":"18/36","length_ft":800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11MT","iata":"","local":"11MT","name":"Lammers Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Shawmut","elevation_ft":4098,"latitude":46.462777,"longitude":-109.490555,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1257,"width_ft":30,"surface":"G"},{"id":"18/36","length_ft":1769,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11LS","iata":"","local":"11LS","name":"Jasmine Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Glenmora","elevation_ft":120,"latitude":30.976321,"longitude":-92.56888,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":80,"surface":"T"},{"id":"09/27","length_ft":2500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY07","iata":"","local":"WY07","name":"Hardy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":5077,"latitude":43.32519912719727,"longitude":-105.6760025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3665,"width_ft":60,"surface":"T"},{"id":"07/25","length_ft":2770,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":4000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11NJ","iata":"","local":"11NJ","name":"Southdown Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Pluckemin","elevation_ft":128,"latitude":40.64070129394531,"longitude":-74.66419982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11NR","iata":"","local":"11NR","name":"Dosher Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Southport","elevation_ft":19,"latitude":33.9280833,"longitude":-78.0203889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11NY","iata":"","local":"","name":"Saikkonen Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Spencer","elevation_ft":969,"latitude":42.209162,"longitude":-76.448979,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4021,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11OH","iata":"","local":"11OH","name":"Fayette County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Washington Court House","elevation_ft":977,"latitude":39.547753,"longitude":-83.427914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11OK","iata":"","local":"","name":"Beefor Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Purcell","elevation_ft":1150,"latitude":35.06909,"longitude":-97.38465,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11PA","iata":"","local":"","name":"Sherrie John Manor Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Mechanicsburg","elevation_ft":400,"latitude":40.2626,"longitude":-77.045799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11TA","iata":"","local":"","name":"Conoco Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":91,"latitude":29.7894,"longitude":-95.611099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11TN","iata":"","local":"","name":"Salem Field","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":425,"latitude":36.474998,"longitude":-87.366699,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11PN","iata":"","local":"11PN","name":"Eakin Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Cranberry","elevation_ft":1489,"latitude":41.3525,"longitude":-79.732778,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11TE","iata":"","local":"11TE","name":"Flying M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Grandview","elevation_ft":700,"latitude":32.30009841918945,"longitude":-97.20449829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11TS","iata":"","local":"11TS","name":"PT Enterprise D&W Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mexia","elevation_ft":526,"latitude":31.6579,"longitude":-96.4114,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2370,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY27","iata":"","local":"WY27","name":"Wagonhound Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":5470,"latitude":42.586700439453125,"longitude":-105.53800201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11VA","iata":"","local":"11VA","name":"Chesapeake General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Chesapeake","elevation_ft":21,"latitude":36.741798400878906,"longitude":-76.24410247802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11WI","iata":"","local":"","name":"Victory Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Stanley","elevation_ft":1140,"latitude":44.963299,"longitude":-90.933801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11WN","iata":"","local":"11WN","name":"Diedrich Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Lodi","elevation_ft":774,"latitude":43.35419845581055,"longitude":-89.57119750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":3000,"width_ft":350,"surface":"W"},{"id":"17W/35W","length_ft":1800,"width_ft":350,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"11XS","iata":"","local":"11XS","name":"Speed Shore Company Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pearland","elevation_ft":64,"latitude":29.597045,"longitude":-95.369421,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12AL","iata":"","local":"12AL","name":"Goldberg Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Midland City","elevation_ft":362,"latitude":31.416064,"longitude":-85.463591,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12AZ","iata":"","local":"12AZ","name":"Ranta Strip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Morristown","elevation_ft":1840,"latitude":33.853901,"longitude":-112.653001,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12AR","iata":"","local":"12AR","name":"Gibbons Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Marvell","elevation_ft":178,"latitude":34.515444,"longitude":-90.973722,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11WA","iata":"","local":"11WA","name":"Homeport Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Cheney","elevation_ft":2320,"latitude":47.523693,"longitude":-117.469554,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY34","iata":"","local":"WY34","name":"Bridger Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Lysite","elevation_ft":5350,"latitude":43.34049987792969,"longitude":-107.68699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12CL","iata":"","local":"12CL","name":"Newton Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stratford","elevation_ft":194,"latitude":36.15689849853516,"longitude":-119.8499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2790,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11UT","iata":"","local":"11UT","name":"Flying R Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Huntsville","elevation_ft":5060,"latitude":41.2538528,"longitude":-111.7110611,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2700,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12CN","iata":"","local":"12CN","name":"Richter Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Maxwell","elevation_ft":57,"latitude":39.268306,"longitude":-122.116689,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2856,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12FA","iata":"","local":"","name":"Hi-Acres Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Clermont","elevation_ft":105,"latitude":28.4786,"longitude":-81.7145,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":32,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12FD","iata":"","local":"12FD","name":"Osceola Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":59,"latitude":28.298854,"longitude":-81.409872,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":39,"width_ft":39,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12FL","iata":"","local":"12FL","name":"Timberlachen Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":89,"latitude":28.59280014038086,"longitude":-81.40390014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":2463,"width_ft":200,"surface":"W"},{"id":"08W/26W","length_ft":2721,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12GA","iata":"","local":"12GA","name":"Eastside Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Snellville","elevation_ft":1065,"latitude":33.877261,"longitude":-84.019827,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12GE","iata":"","local":"12GE","name":"Harvest Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-GA","municipality":"Riceboro","elevation_ft":4,"latitude":31.73080062866211,"longitude":-81.35970306396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":2100,"width_ft":75,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12IS","iata":"","local":"12IS","name":"Mercer County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Aledo","elevation_ft":729,"latitude":41.206084,"longitude":-90.759419,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12KY","iata":"","local":"12KY","name":"John M. Foree Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"New Castle","elevation_ft":853,"latitude":38.46030044555664,"longitude":-85.1686019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12IN","iata":"","local":"12IN","name":"J & S Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Darmstadt","elevation_ft":465,"latitude":38.11859893798828,"longitude":-87.64749908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12KS","iata":"","local":"12KS","name":"Sooter Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Sedgwick","elevation_ft":1420,"latitude":37.93529891967773,"longitude":-97.48780059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12ID","iata":"","local":"12ID","name":"Flying B Ranch Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Salmon","elevation_ft":3647,"latitude":44.96799850463867,"longitude":-114.73300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12CO","iata":"","local":"12CO","name":"Omega 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6409,"latitude":38.835499,"longitude":-107.815184,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12IA","iata":"","local":"12IA","name":"Plueger Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Lemars","elevation_ft":1245,"latitude":42.80049896240234,"longitude":-96.13780212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1350,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12MA","iata":"","local":"12MA","name":"Mellen Street Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Holliston","elevation_ft":275,"latitude":42.20709991455078,"longitude":-71.44270324707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12MD","iata":"","local":"12MD","name":"Ascension Saint Agnes Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":141,"latitude":39.270546,"longitude":-76.673863,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12MN","iata":"","local":"","name":"Eastman Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Lake Hubert","elevation_ft":1200,"latitude":46.480499,"longitude":-94.281097,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":1500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12MS","iata":"","local":"","name":"Green Acres Airport","category":"closed","iso_country":"US","iso_region":"US-MS","municipality":"Woodville","elevation_ft":300,"latitude":31.088757,"longitude":-91.318059,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12MI","iata":"","local":"12MI","name":"John's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Davison","elevation_ft":820,"latitude":43.052551,"longitude":-83.48977,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1852,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12NC","iata":"","local":"12NC","name":"Atlantic Field Marine Corps Outlying Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Atlantic","elevation_ft":20,"latitude":34.892099,"longitude":-76.349029,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3575,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":3678,"width_ft":150,"surface":"A"},{"id":"10/28","length_ft":3500,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12ND","iata":"","local":"12ND","name":"Pietschtree Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Burlington","elevation_ft":1566,"latitude":48.2952995300293,"longitude":-101.427001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1385,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12MT","iata":"","local":"12MT","name":"Lincolns Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Hingham","elevation_ft":2931,"latitude":48.774200439453125,"longitude":-110.44200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1780,"width_ft":55,"surface":"T"},{"id":"16/34","length_ft":1640,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12NE","iata":"","local":"12NE","name":"Reisig Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Scottsbluff","elevation_ft":3985,"latitude":41.90660095214844,"longitude":-103.6999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12LS","iata":"","local":"12LS","name":"Hains Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Rayne","elevation_ft":20,"latitude":30.178600311279297,"longitude":-92.28500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12LA","iata":"","local":"12LA","name":"Kml Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Sulphur","elevation_ft":20,"latitude":30.27589988708496,"longitude":-93.3573989868164,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12NJ","iata":"","local":"","name":"Penske 2 Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Lodi","elevation_ft":62,"latitude":40.883999,"longitude":-74.067919,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12NR","iata":"","local":"12NR","name":"Brunswick Novant Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Supply","elevation_ft":38,"latitude":34.029945,"longitude":-78.260572,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12NY","iata":"","local":"","name":"TGP-245 Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"West Winfield","elevation_ft":1440,"latitude":42.873402,"longitude":-75.170998,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12OA","iata":"","local":"12OA","name":"ProMedica Defiance Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Defiance","elevation_ft":709,"latitude":41.298199,"longitude":-84.377387,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12OK","iata":"","local":"","name":"Expressway Airpark","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1070,"latitude":35.541302,"longitude":-97.453102,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12PA","iata":"","local":"12PA","name":"Helicopter Applicators Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":612,"latitude":39.8495,"longitude":-77.184167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":180,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12PN","iata":"","local":"12PN","name":"WCAU Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":230,"latitude":40.007112,"longitude":-75.216197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12PR","iata":"","local":"12PR","name":"Villamil-304 Ponce De Leon Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":148,"latitude":18.42259979248047,"longitude":-66.05699920654297,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12PS","iata":"","local":"12PS","name":"Siple Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lewisville","elevation_ft":419,"latitude":39.72380065917969,"longitude":-75.88140106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12OH","iata":"","local":"12OH","name":"McGregor Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Brookville","elevation_ft":940,"latitude":39.834773,"longitude":-84.333486,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1030,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12SC","iata":"","local":"12SC","name":"Over the Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Elgin","elevation_ft":250,"latitude":34.14139938354492,"longitude":-80.74669647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12OR","iata":"","local":"12OR","name":"Skinner Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jordan Valley","elevation_ft":4273,"latitude":42.951302,"longitude":-117.281998,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12TA","iata":"","local":"12TA","name":"Channel Two Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":72,"latitude":29.690200805664062,"longitude":-95.52770233154295,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12WI","iata":"","local":"12WI","name":"Memorial Hospital of Taylor County Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Medford","elevation_ft":1435,"latitude":45.13589859008789,"longitude":-90.3563003540039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":76,"width_ft":76,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"12TT","iata":"","local":"12TT","name":"D An P Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gainesville","elevation_ft":771,"latitude":33.593768,"longitude":-97.100816,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2480,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12VA","iata":"","local":"12VA","name":"Hop-Along Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Clifton Forge","elevation_ft":1060,"latitude":37.78810119628906,"longitude":-79.7677993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12TN","iata":"","local":"12TN","name":"Riley Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Kingston","elevation_ft":750,"latitude":35.823699951171875,"longitude":-84.53880310058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12XS","iata":"","local":"12XS","name":"Mc Croskey Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Butlerville","elevation_ft":253,"latitude":34.954448,"longitude":-91.837991,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2450,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12WA","iata":"","local":"12WA","name":"Fowlers Northwest 40 Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2313,"latitude":47.520577,"longitude":-117.462827,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1550,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12TS","iata":"","local":"12TS","name":"Blo Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineral Wells","elevation_ft":1050,"latitude":32.908501,"longitude":-97.977303,"has_tower":false,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"17R/35L","length_ft":1600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12XA","iata":"","local":"12XA","name":"Wood Farm Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gardendale","elevation_ft":2950,"latitude":32.0393333,"longitude":-102.3485833,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12WY","iata":"","local":"12WY","name":"Black Diamond Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Burlington","elevation_ft":4400,"latitude":44.45,"longitude":-108.384667,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12TX","iata":"","local":"12TX","name":"Griffin Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bertram","elevation_ft":1235,"latitude":30.821253,"longitude":-98.081024,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13AL","iata":"","local":"13AL","name":"Hatch Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Ozark","elevation_ft":225,"latitude":31.358999252319336,"longitude":-85.62049865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":100,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":50,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":100,"surface":"A"},{"id":"H6","length_ft":1600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13AR","iata":"","local":"13AR","name":"Jrmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Pine Bluff","elevation_ft":227,"latitude":34.187599182128906,"longitude":-92.01789855957033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13CA","iata":"","local":"13CA","name":"MH15 Heaps Peak US Forest Service Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lake Arrowhead","elevation_ft":6266,"latitude":34.235211,"longitude":-117.154799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"A"},{"id":"H3","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13CO","iata":"","local":"13CO","name":"Mann Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Steamboat Springs","elevation_ft":7500,"latitude":40.55559921264648,"longitude":-106.84400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13FD","iata":"","local":"","name":"Yelvington Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":110,"latitude":28.5186,"longitude":-81.383102,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":17302,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13FL","iata":"","local":"13FL","name":"Gator Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Wesley Chapel","elevation_ft":110,"latitude":28.277826,"longitude":-82.32045,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13II","iata":"","local":"13II","name":"St Joseph Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":845,"latitude":41.07870101928711,"longitude":-85.14969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13IL","iata":"","local":"13IL","name":"Midwest Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Galena","elevation_ft":865,"latitude":42.449757,"longitude":-90.456925,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13GA","iata":"","local":"13GA","name":"Oak Ridge Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sumner","elevation_ft":350,"latitude":31.3666,"longitude":-83.754898,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13FA","iata":"","local":"13FA","name":"Earle Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hastings","elevation_ft":25,"latitude":29.68928,"longitude":-81.50689,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13IN","iata":"","local":"13IN","name":"Gage Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Decatur","elevation_ft":814,"latitude":40.814484,"longitude":-84.927803,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13LA","iata":"","local":"13LA","name":"Evergreen Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":10,"latitude":29.783599853515625,"longitude":-93.20850372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":20,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":20,"surface":"C"},{"id":"H4","length_ft":50,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13LL","iata":"","local":"13LL","name":"Henry Valve Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Melrose Park","elevation_ft":640,"latitude":41.9088890358,"longitude":-87.87408247590001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13MI","iata":"","local":"13MI","name":"Lee Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Dowagiac","elevation_ft":748,"latitude":41.983699798583984,"longitude":-86.11579895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13MN","iata":"","local":"","name":"Melby Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Ashby","elevation_ft":1250,"latitude":46.1008,"longitude":-95.831398,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13MT","iata":"","local":"13MT","name":"Sorenson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kremlin","elevation_ft":2873,"latitude":48.52080154418945,"longitude":-110.11299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13NC","iata":"","local":"13NC","name":"Oak Grove Marine Corps Outlying Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Pollocksville","elevation_ft":27,"latitude":35.025006,"longitude":-77.255945,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":4200,"width_ft":150,"surface":"A"},{"id":"09/27","length_ft":4100,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13MS","iata":"","local":"13MS","name":"Greener Pastures Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Carriere","elevation_ft":180,"latitude":30.63330078125,"longitude":-89.66390228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13KY","iata":"","local":"13KY","name":"Miles Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Owensboro","elevation_ft":407,"latitude":37.704812,"longitude":-87.158586,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13MO","iata":"","local":"13MO","name":"Domeyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lenox","elevation_ft":1260,"latitude":37.67639923095703,"longitude":-91.7064971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13NE","iata":"","local":"13NE","name":"Hock Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Culbertson","elevation_ft":2777,"latitude":40.31669998168945,"longitude":-100.80899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01ID","iata":"","local":"01ID","name":"Lava Hot Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Lava Hot Springs","elevation_ft":5268,"latitude":42.6082,"longitude":-112.031998,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2894,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13NH","iata":"","local":"13NH","name":"Coffin Brook Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Alton","elevation_ft":705,"latitude":43.423889,"longitude":-71.248722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13NJ","iata":"","local":"13NJ","name":"Wyeth-Ayerst Research Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Princeton","elevation_ft":117,"latitude":40.3651008605957,"longitude":-74.58290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13NK","iata":"","local":"13NK","name":"Quaker Valley Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Pawling","elevation_ft":1100,"latitude":41.59749984741211,"longitude":-73.53150177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13NY","iata":"","local":"13NY","name":"Stony Brook University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Stony Brook","elevation_ft":190,"latitude":40.909885,"longitude":-73.11465,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13OH","iata":"","local":"","name":"Rose Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Jewell","elevation_ft":728,"latitude":41.330299,"longitude":-84.298301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13OI","iata":"","local":"13OI","name":"Cleveland Clinic, Union Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Dover","elevation_ft":926,"latitude":40.515549,"longitude":-81.456901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13OK","iata":"","local":"13OK","name":"McAlester Regional Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"McAlester","elevation_ft":705,"latitude":34.936199,"longitude":-95.748901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13TA","iata":"","local":"","name":"KBMT-TV Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont","elevation_ft":32,"latitude":30.073298,"longitude":-94.133797,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13NR","iata":"","local":"13NR","name":"Dusenbury Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Walnut Cove","elevation_ft":646,"latitude":36.297634,"longitude":-80.16207,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13OR","iata":"","local":"13OR","name":"Aubrey Mountain Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oakridge","elevation_ft":1680,"latitude":43.740699768066406,"longitude":-122.4260025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1950,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13TE","iata":"","local":"13TE","name":"Varisco Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bryan","elevation_ft":240,"latitude":30.6560001373291,"longitude":-96.53829956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2330,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13NM","iata":"","local":"13NM","name":"Beaverhead Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Magdalena","elevation_ft":7378,"latitude":33.419437,"longitude":-108.142216,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3840,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13TN","iata":"","local":"13TN","name":"Bear Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Vonore","elevation_ft":930,"latitude":35.59830093383789,"longitude":-84.26750183105469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13TX","iata":"","local":"","name":"Allison Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sonora","elevation_ft":2350,"latitude":30.533561,"longitude":-100.451882,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13VA","iata":"","local":"13VA","name":"State Police Area 48 Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Fairfax","elevation_ft":395,"latitude":38.823853,"longitude":-77.283073,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13VG","iata":"","local":"13VG","name":"May Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Salem","elevation_ft":1430,"latitude":37.307899475097656,"longitude":-80.10009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13WA","iata":"","local":"","name":"Fsa - Everett Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":500,"latitude":47.9365,"longitude":-122.25,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2722,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"84WY","iata":"","local":"84WY","name":"Moore Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":5027,"latitude":43.446111,"longitude":-105.743055,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2300,"width_ft":40,"surface":"T"},{"id":"12/30","length_ft":1770,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13XS","iata":"","local":"13XS","name":"Presbyterian Hospital Of Rockwall Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Rockwall","elevation_ft":532,"latitude":32.884444,"longitude":-96.464444,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01WY","iata":"","local":"01WY","name":"Keyhole Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Pine Haven","elevation_ft":4250,"latitude":44.348312,"longitude":-104.8106,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4360,"width_ft":75,"surface":"D"},{"id":"16/34","length_ft":2600,"width_ft":65,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14AL","iata":"","local":"14AL","name":"Highbluff Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Hartford (Fort Rucker)","elevation_ft":270,"latitude":31.15024,"longitude":-85.736318,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14AN","iata":"","local":"14AN","name":"For Buddies Only Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchor Point","elevation_ft":120,"latitude":59.782694,"longitude":-151.851369,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"13XA","iata":"","local":"13XA","name":"Flying 5B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Iredell","elevation_ft":1010,"latitude":31.951789,"longitude":-97.834888,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13TS","iata":"","local":"13TS","name":"Van Es Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Oilton","elevation_ft":830,"latitude":27.455299377441406,"longitude":-98.92639923095705,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14CA","iata":"","local":"14CA","name":"Hoag Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Newport Beach","elevation_ft":94,"latitude":33.625182,"longitude":-117.930799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14CL","iata":"","local":"14CL","name":"Foothill Presbyterian Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendora","elevation_ft":730,"latitude":34.133487,"longitude":-117.870677,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14CT","iata":"","local":"14CT","name":"Mashantucket Pequot Tribal Nation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Mashantucket","elevation_ft":124,"latitude":41.484699,"longitude":-71.9729,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14FA","iata":"","local":"","name":"Burrs Strip","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":10,"latitude":25.568621,"longitude":-80.398822,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14FD","iata":"","local":"","name":"Sunshine Farms Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"St Augustine","elevation_ft":23,"latitude":29.9491,"longitude":-81.490402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14FL","iata":"","local":"","name":"Wells Flying Service Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Jay","elevation_ft":240,"latitude":30.873458,"longitude":-87.170296,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14GA","iata":"","local":"14GA","name":"Latham Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Gainesville","elevation_ft":1120,"latitude":34.33649826049805,"longitude":-83.94349670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14GE","iata":"","local":"14GE","name":"Stakely Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Trenton","elevation_ft":1940,"latitude":34.785499572753906,"longitude":-85.45369720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY30","iata":"","local":"WY30","name":"Kinky Creek Divide Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Dubois","elevation_ft":8803,"latitude":43.3754997253418,"longitude":-110.11000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14IL","iata":"","local":"","name":"Kewanee Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Kewanee","elevation_ft":838,"latitude":41.235298,"longitude":-89.9309,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14IN","iata":"","local":"","name":"De Motte Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"De Motte","elevation_ft":655,"latitude":41.207,"longitude":-87.212502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14AZ","iata":"","local":"14AZ","name":"Ruby Star Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Sahuarita","elevation_ft":4025,"latitude":31.909494,"longitude":-111.120293,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4300,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14IS","iata":"","local":"14IS","name":"Marshall Browning Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Du Quoin","elevation_ft":454,"latitude":38.025239,"longitude":-89.237025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14LA","iata":"","local":"","name":"Killarny Farm Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":53,"latitude":30.841,"longitude":-91.508202,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14LL","iata":"","local":"14LL","name":"Gottlieb Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Melrose Park","elevation_ft":688,"latitude":41.91138164349999,"longitude":-87.843619287,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14LS","iata":"","local":"14LS","name":"Go Gulf Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":50,"latitude":30.47330093383789,"longitude":-91.04769897460938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14MA","iata":"","local":"","name":"Vergnani Heliport","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Agawam","elevation_ft":180,"latitude":42.049801,"longitude":-72.6493,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":5287,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14MN","iata":"","local":"14MN","name":"Riverwood Healthcare Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Aitkin","elevation_ft":1224,"latitude":46.52920150756836,"longitude":-93.69920349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14MO","iata":"","local":"","name":"Stevinson Farm Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Blue Springs","elevation_ft":900,"latitude":39.049999,"longitude":-94.316902,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14MS","iata":"","local":"14MS","name":"Rose Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Hickory","elevation_ft":400,"latitude":32.345298767089844,"longitude":-89.0342025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":75,"surface":"T"},{"id":"08/26","length_ft":3500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14KS","iata":"","local":"14KS","name":"G & S Space Port Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Parker","elevation_ft":940,"latitude":38.26919937133789,"longitude":-94.90480041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14KY","iata":"","local":"14KY","name":"Blue Haven Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paris","elevation_ft":985,"latitude":38.17369842529297,"longitude":-84.36830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2240,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14ND","iata":"","local":"14ND","name":"Hagen Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Reeder","elevation_ft":2810,"latitude":46.207801818847656,"longitude":-102.90799713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2120,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14NH","iata":"","local":"14NH","name":"Cheshire Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Keene","elevation_ft":481,"latitude":42.94889831542969,"longitude":-72.28970336914062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14NJ","iata":"","local":"14NJ","name":"Wuerkers New Acres Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Rio Grande","elevation_ft":22,"latitude":39.0092469445,"longitude":-74.8879516125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14NY","iata":"","local":"14NY","name":"Windy's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Melville","elevation_ft":222,"latitude":40.7975502014,"longitude":-73.4179000854,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14OK","iata":"","local":"","name":"Reherman Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Kingfisher","elevation_ft":1105,"latitude":35.804199,"longitude":-97.933701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14PR","iata":"","local":"14PR","name":"Emp. Coco Beach Golf Club LLC Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Rio Grande","elevation_ft":11,"latitude":18.407301,"longitude":-65.798751,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14SN","iata":"","local":"14SN","name":"Colmery-O'Neil Vamc Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":950,"latitude":39.02640151977539,"longitude":-95.72250366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14TN","iata":"","local":"14TN","name":"News Channel 3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":300,"latitude":35.126399993896484,"longitude":-90.07140350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14NK","iata":"","local":"14NK","name":"Mountain View Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Kingsbury","elevation_ft":243,"latitude":43.34000015258789,"longitude":-73.47899627685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14OH","iata":"","local":"14OH","name":"Heilman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Kenton","elevation_ft":930,"latitude":40.66889953613281,"longitude":-83.44349670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14TT","iata":"","local":"14TT","name":"Mathers Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canadian","elevation_ft":2688,"latitude":36.047147,"longitude":-100.520803,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14TX","iata":"","local":"14TX","name":"Keyes Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dripping Springs","elevation_ft":1150,"latitude":30.2894,"longitude":-98.173897,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14TS","iata":"","local":"14TS","name":"O S Wyatt Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Realitos","elevation_ft":532,"latitude":27.42169952392578,"longitude":-98.60449981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6010,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14WI","iata":"","local":"14WI","name":"Cylon Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"New Richmond","elevation_ft":1071,"latitude":45.136944,"longitude":-92.376667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"14WV","iata":"","local":"14WV","name":"Snowshoe Resort/Topof the World Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Linwood","elevation_ft":4792,"latitude":38.4006004333,"longitude":-79.99579620360001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15AL","iata":"","local":"15AL","name":"Highfalls Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Hartford","elevation_ft":220,"latitude":31.093599319458008,"longitude":-85.78790283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":100,"surface":"A"},{"id":"H2","length_ft":500,"width_ft":100,"surface":"A"},{"id":"H3","length_ft":700,"width_ft":100,"surface":"T"},{"id":"H4","length_ft":650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15CA","iata":"","local":"15CA","name":"Stanford Health Care East Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Palo Alto","elevation_ft":84,"latitude":37.435195,"longitude":-122.174588,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15CL","iata":"","local":"","name":"Hunt Farms Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Merced","elevation_ft":223,"latitude":37.342701,"longitude":-120.403999,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15LS","iata":"","local":"15LS","name":"Port of Iberia Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":7,"latitude":29.944700241088867,"longitude":-91.83709716796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15AR","iata":"","local":"15AR","name":"Taylor Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Brickeys","elevation_ft":220,"latitude":34.827378,"longitude":-90.545297,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14WA","iata":"","local":"14WA","name":"Lz Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":240,"latitude":46.970699310302734,"longitude":-122.73699951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14XA","iata":"","local":"14XA","name":"Frog Pond Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman","elevation_ft":686,"latitude":33.657888,"longitude":-96.788285,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14XS","iata":"","local":"14XS","name":"Isbell Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Davilla","elevation_ft":430,"latitude":30.808500289916992,"longitude":-97.2739028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15CO","iata":"","local":"15CO","name":"Swedish Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Englewood","elevation_ft":5374,"latitude":39.65470123291016,"longitude":-104.97100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15FA","iata":"","local":"15FA","name":"Amistad Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":37,"latitude":27.215842,"longitude":-80.684881,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":71,"width_ft":71,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15FD","iata":"","local":"","name":"Orange Hill Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Wausau","elevation_ft":260,"latitude":30.658501,"longitude":-85.527878,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15II","iata":"","local":"15II","name":"Findlay Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Lafayette","elevation_ft":670,"latitude":40.33890151977539,"longitude":-86.94080352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15IN","iata":"","local":"15IN","name":"Bugtown Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Harmony","elevation_ft":464,"latitude":38.15060043334961,"longitude":-87.84030151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15KT","iata":"","local":"15KT","name":"Air Evac 109 Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Manchester","elevation_ft":884,"latitude":37.133803,"longitude":-83.758258,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15LA","iata":"","local":"","name":"Creole Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Oak Grove","elevation_ft":11,"latitude":29.790199,"longitude":-93.184097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15LL","iata":"","local":"15LL","name":"Cloverleaf Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Tiskilwa","elevation_ft":807,"latitude":41.23749923706055,"longitude":-89.53669738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15FL","iata":"","local":"15FL","name":"Cannon Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":125,"latitude":30.150584,"longitude":-82.66785,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":3500,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15ID","iata":"","local":"15ID","name":"Scanlon Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D Alene","elevation_ft":2000,"latitude":47.68560028076172,"longitude":-117.03800201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1750,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15KY","iata":"","local":"15KY","name":"Brennan Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paris","elevation_ft":910,"latitude":38.15700149536133,"longitude":-84.30159759521484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15MI","iata":"","local":"15MI","name":"Grant Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Fraser","elevation_ft":638,"latitude":42.543411,"longitude":-82.93342,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15MN","iata":"","local":"15MN","name":"Tyler Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Watkins","elevation_ft":1185,"latitude":45.26219940185547,"longitude":-94.5106964111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2500,"width_ft":120,"surface":"T"},{"id":"14/32","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15NH","iata":"","local":"15NH","name":"Nashua Technology Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Nashua","elevation_ft":235,"latitude":42.708333,"longitude":-71.458333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15NJ","iata":"","local":"15NJ","name":"Werner Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Belford","elevation_ft":7,"latitude":40.42509841918945,"longitude":-74.09960174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15NR","iata":"","local":"15NR","name":"Atrium Health Anson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Wadesboro","elevation_ft":331,"latitude":34.977056,"longitude":-80.110229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15NY","iata":"","local":"15NY","name":"Peninsula Hospital Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Far Rockaway","elevation_ft":0,"latitude":40.59180068969727,"longitude":-73.78009796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15OH","iata":"","local":"15OH","name":"Twin City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Dennison","elevation_ft":940,"latitude":40.40230178833008,"longitude":-81.33709716796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15ME","iata":"","local":"15ME","name":"Eagle Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"North Yarmouth","elevation_ft":150,"latitude":43.81529998779297,"longitude":-70.22920227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15NC","iata":"","local":"15NC","name":"Dragonfly Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Ahoskie","elevation_ft":49,"latitude":36.23970031738281,"longitude":-76.9738998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15MT","iata":"","local":"15MT","name":"Saubak Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lustre","elevation_ft":2701,"latitude":48.50040054321289,"longitude":-105.91000366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15NE","iata":"","local":"15NE","name":"Sindt Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Upland","elevation_ft":1990,"latitude":40.29109954833984,"longitude":-98.82340240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15MO","iata":"","local":"5MO","name":"Applegate Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Queen City","elevation_ft":999,"latitude":40.391576,"longitude":-92.564718,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1640,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15OK","iata":"","local":"","name":"Bluebird Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Muskogee","elevation_ft":531,"latitude":35.703889,"longitude":-95.310833,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":3700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15OR","iata":"","local":"15OR","name":"Camp Rilea Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Warrenton","elevation_ft":32,"latitude":46.1159964394,"longitude":-123.931392431,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15PN","iata":"","local":"15PN","name":"Metropolitan Edison Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Reading","elevation_ft":280,"latitude":40.375099182128906,"longitude":-75.9384994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15PS","iata":"","local":"15PS","name":"Jennersville Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"West Grove","elevation_ft":500,"latitude":39.822576,"longitude":-75.888127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":47,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15SD","iata":"","local":"","name":"Watertown / Brownlee Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"UNKNOWN","elevation_ft":1720,"latitude":44.8832648782,"longitude":-97.1080899239,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15TE","iata":"","local":"15TE","name":"Arco High Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"High Island","elevation_ft":5,"latitude":29.625454,"longitude":-94.198422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15TN","iata":"","local":"15TN","name":"Indian Path Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Kingsport","elevation_ft":1283,"latitude":36.55160140991211,"longitude":-82.51519775390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15TS","iata":"","local":"15TS","name":"Owens Country Sausage Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Richardson","elevation_ft":629,"latitude":32.98680114746094,"longitude":-96.69750213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15TX","iata":"","local":"","name":"Ed Shadle Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Stephenville","elevation_ft":1550,"latitude":32.299414,"longitude":-98.325601,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":790,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"15WI","iata":"","local":"15WI","name":"Peterson Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oregon","elevation_ft":978,"latitude":42.9275016784668,"longitude":-89.41819763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15WA","iata":"","local":"15WA","name":"Sunset Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Stanwood","elevation_ft":156,"latitude":48.27230072,"longitude":-122.3570023,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15TA","iata":"","local":"15TA","name":"J R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Briggs","elevation_ft":1125,"latitude":30.9367,"longitude":-97.89932,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16AL","iata":"","local":"16AL","name":"Hooper Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Ozark","elevation_ft":365,"latitude":31.40839958190918,"longitude":-85.68920135498047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H6","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16CA","iata":"","local":"16CA","name":"Police Pistol Range Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Francisco","elevation_ft":24,"latitude":37.71939849853516,"longitude":-122.4990005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16CL","iata":"","local":"16CL","name":"Mother Lode Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Angels Camp","elevation_ft":1560,"latitude":38.08466,"longitude":-120.537945,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16DE","iata":"","local":"16DE","name":"Nemours A I Dupont Children's Hospital Ground Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Wilmington","elevation_ft":356,"latitude":39.780906,"longitude":-75.555767,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16FD","iata":"","local":"16FD","name":"Skinners Wholesale Nursery Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crescent City","elevation_ft":20,"latitude":29.405000686645508,"longitude":-81.49590301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16FA","iata":"","local":"16FA","name":"Little Deer Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ochopee","elevation_ft":14,"latitude":26.033956,"longitude":-81.042345,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2680,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16AR","iata":"","local":"16AR","name":"Heifer Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Springfield","elevation_ft":730,"latitude":35.30110168457031,"longitude":-92.57330322265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16AZ","iata":"","local":"16AZ","name":"Yav'pe Ma'ta Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Skull Valley","elevation_ft":4366,"latitude":34.5088996887207,"longitude":-112.68000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2900,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16CO","iata":"","local":"16CO","name":"Dry Pen Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Parachute","elevation_ft":5331,"latitude":39.40227,"longitude":-108.07602,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15XS","iata":"","local":"15XS","name":"Toy Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Liverpool","elevation_ft":36,"latitude":29.33270072937012,"longitude":-95.33409881591795,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1915,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22ID","iata":"","local":"22ID","name":"Treasure Gulch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Placerville","elevation_ft":4350,"latitude":43.94469833374024,"longitude":-115.94100189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16GA","iata":"","local":"16GA","name":"Galleria Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Marietta","elevation_ft":998,"latitude":33.885101318359375,"longitude":-84.46269989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16ID","iata":"","local":"16ID","name":"Bear Lake Memorial Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Montpelier","elevation_ft":6000,"latitude":42.3163986206,"longitude":-111.299003601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16IN","iata":"","local":"16IN","name":"Deaconess Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Evansville","elevation_ft":390,"latitude":37.984119,"longitude":-87.572095,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16KY","iata":"","local":"","name":"Praise God Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Carter","elevation_ft":1070,"latitude":38.444,"longitude":-83.122704,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16LA","iata":"","local":"16LA","name":"Arrow Aviation Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cade","elevation_ft":25,"latitude":30.084999084472656,"longitude":-91.92389678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16LL","iata":"","local":"16LL","name":"Oak Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Bull Valley","elevation_ft":870,"latitude":42.29999923706055,"longitude":-88.38059997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16LS","iata":"","local":"","name":"Atchafalaya Flying Company Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Simmsport","elevation_ft":41,"latitude":30.944401,"longitude":-91.7939,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16MA","iata":"","local":"16MA","name":"Lawrence General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Lawrence","elevation_ft":60,"latitude":42.70980072021485,"longitude":-71.15059661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16IL","iata":"","local":"16IL","name":"Harold Bunger Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kirkland","elevation_ft":830,"latitude":42.067857,"longitude":-88.827176,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16IS","iata":"","local":"16IS","name":"Kellums Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Goreville","elevation_ft":720,"latitude":37.577608,"longitude":-89.008583,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16KS","iata":"","local":"16KS","name":"Harmony Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Independence","elevation_ft":780,"latitude":37.223471,"longitude":-95.598389,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16IA","iata":"","local":"16IA","name":"Stangl Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Coon Rapids","elevation_ft":1230,"latitude":41.881472,"longitude":-94.777199,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16ME","iata":"","local":"16ME","name":"Presque Isle Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Presque Isle","elevation_ft":631,"latitude":46.675919,"longitude":-67.998981,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16MN","iata":"","local":"","name":"Baudette Flying Service Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Baudette","elevation_ft":1060,"latitude":48.831902,"longitude":-94.704399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16MS","iata":"","local":"16MS","name":"Iuka Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Iuka","elevation_ft":610,"latitude":34.80670166015625,"longitude":-88.20999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16NH","iata":"","local":"16NH","name":"Bossey's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Meredith","elevation_ft":624,"latitude":43.60419845581055,"longitude":-71.51249694824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":3700,"width_ft":350,"surface":"W"},{"id":"18W/36W","length_ft":3300,"width_ft":350,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16NJ","iata":"","local":"16NJ","name":"Hummel Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NJ","municipality":"Island Heights","elevation_ft":0,"latitude":39.93730163574219,"longitude":-74.13569641113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":15000,"width_ft":4000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16NK","iata":"","local":"16NK","name":"Delaware Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Walton","elevation_ft":1220,"latitude":42.16239929199219,"longitude":-75.12799835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16NY","iata":"","local":"","name":"Station 241 Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Syracuse","elevation_ft":1380,"latitude":42.939804,"longitude":-76.114899,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1850,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16MO","iata":"","local":"16MO","name":"Findley Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Beaufort","elevation_ft":755,"latitude":38.40560150146485,"longitude":-91.15740203857422,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16ND","iata":"","local":"16ND","name":"Kalberer Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bismarck","elevation_ft":1828,"latitude":46.696775,"longitude":-100.596789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16NE","iata":"","local":"16NE","name":"Korver Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Panama","elevation_ft":1390,"latitude":40.560001373291016,"longitude":-96.49169921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4990,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16MI","iata":"","local":"16MI","name":"Barnstormers 5 Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Gaines","elevation_ft":823,"latitude":42.889198303222656,"longitude":-83.8666000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16MT","iata":"","local":"16MT","name":"Bangart Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Roberts","elevation_ft":4320,"latitude":45.40520095825195,"longitude":-109.12999725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3300,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16OK","iata":"","local":"","name":"Lower Forty Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Harrah","elevation_ft":1160,"latitude":35.466702,"longitude":-97.200302,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16PN","iata":"","local":"16PN","name":"Oakdale Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Oakdale","elevation_ft":1265,"latitude":40.3966825974,"longitude":-80.15811681750002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16SD","iata":"","local":"16SD","name":"Madison Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Madison","elevation_ft":1683,"latitude":43.990661,"longitude":-97.117349,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16TN","iata":"","local":"16TN","name":"HH Health System-Lincoln, Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Fayetteville","elevation_ft":738,"latitude":35.150308,"longitude":-86.555578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16TX","iata":"","local":"","name":"Ratliff Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Stephenville","elevation_ft":1300,"latitude":32.263002,"longitude":-98.110609,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16VA","iata":"","local":"","name":"Smith Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Winchester","elevation_ft":800,"latitude":39.150101,"longitude":-78.2164,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1650,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16WI","iata":"","local":"16WI","name":"Lac Vieux Desert Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Phelps","elevation_ft":1690,"latitude":46.12160110473633,"longitude":-89.12100219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":10000,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16XA","iata":"","local":"16XA","name":"Texoma Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Denison","elevation_ft":682,"latitude":33.709586,"longitude":-96.5838,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"16TA","iata":"","local":"16TA","name":"Seven Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Balmorhea","elevation_ft":3500,"latitude":30.919701,"longitude":-103.782997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6213,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16TE","iata":"","local":"16TE","name":"Holly Lake Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hawkins","elevation_ft":409,"latitude":32.697601318359375,"longitude":-95.20770263671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16TT","iata":"","local":"16TT","name":"16 L Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Normangee","elevation_ft":390,"latitude":31.093611,"longitude":-96.04375,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1540,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16OI","iata":"","local":"16OI","name":"Trump Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Greenville","elevation_ft":1038,"latitude":40.125301361083984,"longitude":-84.5824966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17AK","iata":"","local":"17AK","name":"Ketchikan /Temsco H/ Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Ketchikan","elevation_ft":20,"latitude":55.382999420166016,"longitude":-131.73500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17AL","iata":"","local":"17AL","name":"Hunt Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Newton","elevation_ft":263,"latitude":31.380199432373047,"longitude":-85.5802993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2000,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":2000,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":2000,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":2000,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17AZ","iata":"","local":"","name":"East Valley ER & Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Gilbert","elevation_ft":1350,"latitude":33.314114,"longitude":-111.687419,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17CA","iata":"","local":"","name":"Doctors Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"San Pablo","elevation_ft":85,"latitude":37.953698,"longitude":-122.337275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17FD","iata":"","local":"","name":"Sheriffs Helistop","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Bartow","elevation_ft":120,"latitude":27.90008,"longitude":-81.845167,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":4008,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17FL","iata":"","local":"17FL","name":"Jumbolair-Greystone Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":100,"latitude":29.277416,"longitude":-82.120709,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3457,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":7380,"width_ft":190,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17FA","iata":"","local":"17FA","name":"Cotton Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":18,"latitude":26.71339988708496,"longitude":-81.535400390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":400,"surface":"W"},{"id":"09W/27W","length_ft":6000,"width_ft":400,"surface":"W"},{"id":"18/36","length_ft":2500,"width_ft":94,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17AR","iata":"","local":"17AR","name":"Bredlow Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"England","elevation_ft":236,"latitude":34.5531005859375,"longitude":-92.09140014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17CO","iata":"","local":"17CO","name":"Skylane Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Berthoud","elevation_ft":5000,"latitude":40.272258,"longitude":-105.032625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16XS","iata":"","local":"16XS","name":"Outlaw Flyers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":270,"latitude":30.404367,"longitude":-95.35985,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17CL","iata":"","local":"17CL","name":"Las Trancas Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Davenport","elevation_ft":125,"latitude":37.088545,"longitude":-122.273691,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1300,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17GE","iata":"","local":"17GE","name":"Piedmont Fayette Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":884,"latitude":33.45305,"longitude":-84.50677,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17KS","iata":"","local":"","name":"Tevis Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Melvern","elevation_ft":1000,"latitude":38.5028,"longitude":-95.6772,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2550,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17LA","iata":"","local":"","name":"Shell Venice Terminal Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":5,"latitude":29.2708,"longitude":-89.3545,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17MA","iata":"","local":"17MA","name":"Long Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Leominster","elevation_ft":630,"latitude":42.50479888916016,"longitude":-71.77839660644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17MD","iata":"","local":"17MD","name":"Johns Hopkins Hospital Critical Care Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":293,"latitude":39.296011,"longitude":-76.592109,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17ME","iata":"","local":"17ME","name":"Bresett's Mountainside Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Van Buren","elevation_ft":590,"latitude":47.201377,"longitude":-67.992432,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17MI","iata":"","local":"17MI","name":"Grace Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":662,"latitude":42.41780090332031,"longitude":-83.18299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17MN","iata":"","local":"MN61","name":"Jackson Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Mc Gregor","elevation_ft":1224,"latitude":46.7169,"longitude":-93.210197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17KY","iata":"","local":"17KY","name":"Lester Airfield","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Sacramento","elevation_ft":440,"latitude":37.393902,"longitude":-87.258904,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17ID","iata":"","local":"17ID","name":"Coyote Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Midvale","elevation_ft":3365,"latitude":44.41421,"longitude":-116.599123,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2725,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17IN","iata":"","local":"17IN","name":"Pruss Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Dillsboro","elevation_ft":890,"latitude":38.978401,"longitude":-85.109703,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17LS","iata":"","local":"17LS","name":"Yankee Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Port Barre","elevation_ft":45,"latitude":30.611979,"longitude":-91.985704,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17MS","iata":"","local":"17MS","name":"River Region Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Vicksburg","elevation_ft":331,"latitude":32.37360000610352,"longitude":-90.82360076904295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17NE","iata":"","local":"17NE","name":"Jefferson County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Fairbury","elevation_ft":1433,"latitude":40.15719986,"longitude":-97.17639923,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17NH","iata":"","local":"17NH","name":"Pomroy Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Londonderry","elevation_ft":254,"latitude":42.82389831542969,"longitude":-71.36499786376953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17NJ","iata":"","local":"17NJ","name":"CMC Steel New Jersey Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Sayreville","elevation_ft":32,"latitude":40.486198,"longitude":-74.322098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17OG","iata":"","local":"17OG","name":"Eugene Fire Station #2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Eugene","elevation_ft":420,"latitude":44.058406,"longitude":-123.119032,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17MO","iata":"","local":"17MO","name":"Rgl Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Montgomery City","elevation_ft":825,"latitude":38.98500061035156,"longitude":-91.53489685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17OH","iata":"","local":"17OH","name":"Kosik Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Kipton","elevation_ft":855,"latitude":41.24259948730469,"longitude":-82.27020263671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17NC","iata":"","local":"17NC","name":"Mitchell Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabethtown","elevation_ft":23,"latitude":34.46630096435547,"longitude":-78.32859802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17MU","iata":"","local":"17MU","name":"B-B Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Osborn","elevation_ft":1045,"latitude":39.682791,"longitude":-94.372097,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17MT","iata":"","local":"17MT","name":"Abel Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2900,"latitude":48.10710144042969,"longitude":-114.177001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":60,"surface":"T"},{"id":"16/34","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17OI","iata":"","local":"17OI","name":"Haas Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bainbridge","elevation_ft":750,"latitude":39.22669982910156,"longitude":-83.31770324707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1920,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17OK","iata":"","local":"","name":"J-B Airstrip","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Kremlin","elevation_ft":1142,"latitude":36.525002,"longitude":-97.758698,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17PN","iata":"","local":"17PN","name":"Tobyhanna Army Depot Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Tobyhanna","elevation_ft":1990,"latitude":41.19834,"longitude":-75.43656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17PS","iata":"","local":"17PS","name":"Mountain Crest Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tidioute","elevation_ft":1641,"latitude":41.579200744628906,"longitude":-79.44170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2170,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17TS","iata":"","local":"17TS","name":"Big Bend Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Alpine","elevation_ft":4435,"latitude":30.384700775146484,"longitude":-103.66899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17TT","iata":"","local":"17TT","name":"Allen Condo/Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":546,"latitude":29.760111,"longitude":-95.382389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17VA","iata":"","local":"","name":"F.B. Fowler Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Grundy","elevation_ft":1150,"latitude":37.280899,"longitude":-82.102097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17WA","iata":"","local":"17WA","name":"Roesler Timber Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Startup","elevation_ft":141,"latitude":47.86819839477539,"longitude":-121.75299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17TX","iata":"","local":"17TX","name":"Kimzey Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stephenville","elevation_ft":1100,"latitude":32.443395,"longitude":-98.255024,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17TN","iata":"","local":"17TN","name":"Murphy Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Jonesborough","elevation_ft":1720,"latitude":36.29940032958984,"longitude":-82.60420227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1000,"width_ft":50,"surface":"T"},{"id":"08/26","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17OR","iata":"","local":"17OR","name":"Glide Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Glide","elevation_ft":980,"latitude":43.264198303222656,"longitude":-123.11000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17TE","iata":"","local":"17TE","name":"Comfort Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Comfort","elevation_ft":1470,"latitude":29.929100036621097,"longitude":-98.94029998779295,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1950,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18AK","iata":"","local":"18AK","name":"North Douglas Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Juneau","elevation_ft":25,"latitude":58.33219909667969,"longitude":-134.4969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18AL","iata":"","local":"18AL","name":"Louisville Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Louisville","elevation_ft":385,"latitude":31.816699981689453,"longitude":-85.65180206298828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1000,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1000,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18CA","iata":"","local":"18CA","name":"Twin Cities Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Templeton","elevation_ft":851,"latitude":35.55500030517578,"longitude":-120.71900177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18CO","iata":"","local":"18CO","name":"Rangely District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Rangely","elevation_ft":5224,"latitude":40.0807991027832,"longitude":-108.8040008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":84,"width_ft":84,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18FA","iata":"","local":"","name":"Tropical Plantation Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Palm City","elevation_ft":19,"latitude":27.099405,"longitude":-80.296005,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"17XA","iata":"","local":"17XA","name":"Jacksonville / Hunter Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jacksonville","elevation_ft":580,"latitude":32.017778,"longitude":-95.7969444445,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17XS","iata":"","local":"17XS","name":"Quahadi Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dublin","elevation_ft":1422,"latitude":32.17779922485352,"longitude":-98.43499755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6295,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18CL","iata":"","local":"18CL","name":"Bowles Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Live Oak","elevation_ft":75,"latitude":39.2859992980957,"longitude":-121.69400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18AZ","iata":"","local":"18AZ","name":"Sky Ranch At Carefree Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Carefree","elevation_ft":2568,"latitude":33.818536,"longitude":-111.898327,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4029,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18AA","iata":"","local":"18AA","name":"18 Meadows Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Haines","elevation_ft":89,"latitude":59.364956,"longitude":-135.804791,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1663,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18FL","iata":"","local":"","name":"Bahia Beach Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Ruskin","elevation_ft":6,"latitude":27.731072,"longitude":-82.475878,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18HI","iata":"","local":"18HI","name":"Brandt Field","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Port Saint Joe","elevation_ft":685,"latitude":21.137026,"longitude":-156.734498,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2755,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18ID","iata":"","local":"18ID","name":"Elmore Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Mountain Home","elevation_ft":3156,"latitude":43.13890075683594,"longitude":-115.69400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18IL","iata":"","local":"18IL","name":"AMITA Health Medical Center La Grange Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"La Grange","elevation_ft":700,"latitude":41.79699,"longitude":-87.887281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18IN","iata":"","local":"","name":"Kester Fly Inn Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Terre Haute","elevation_ft":575,"latitude":39.2784,"longitude":-87.413597,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1017,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18KY","iata":"","local":"18KY","name":"Marshall County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Benton","elevation_ft":395,"latitude":36.86259841918945,"longitude":-88.35279846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18LA","iata":"","local":"18LA","name":"Camp Beauregard Army National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Pineville","elevation_ft":125,"latitude":31.37507,"longitude":-92.391287,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18LS","iata":"","local":"18LS","name":"Omni Mouton Cove Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Abbeville","elevation_ft":10,"latitude":29.89189910888672,"longitude":-92.16829681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18MA","iata":"","local":"18MA","name":"Holy Family Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Methuen","elevation_ft":202,"latitude":42.72779846191406,"longitude":-71.16829681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18II","iata":"","local":"18II","name":"Mc Gill Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Cicero","elevation_ft":855,"latitude":40.1199989319,"longitude":-86.0682983398,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18KS","iata":"","local":"18KS","name":"Cherokee Strip","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Udall","elevation_ft":1270,"latitude":37.372435,"longitude":-97.108223,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18JY","iata":"","local":"18JY","name":"Skamokawa East Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Skamokawa","elevation_ft":19,"latitude":46.284698486328125,"longitude":-123.44300079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2283,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18MD","iata":"","local":"18MD","name":"MedStar Montgomery Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Olney","elevation_ft":472,"latitude":39.154705,"longitude":-77.055012,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18NH","iata":"","local":"18NH","name":"Catholic Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Manchester","elevation_ft":252,"latitude":42.99161,"longitude":-71.474234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18NJ","iata":"","local":"18NJ","name":"Manalapan Township-Village Green Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold","elevation_ft":100,"latitude":40.279598236083984,"longitude":-74.32929992675781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18OK","iata":"","local":"18OK","name":"Comanche County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Lawton","elevation_ft":1142,"latitude":34.608303,"longitude":-98.442081,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18OI","iata":"","local":"18OI","name":"Boggy Bottoms Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Vickery","elevation_ft":575,"latitude":41.419615,"longitude":-82.97133,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2400,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18MN","iata":"","local":"18MN","name":"Hines Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Motley","elevation_ft":1283,"latitude":46.23720169067383,"longitude":-94.59310150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18NC","iata":"","local":"18NC","name":"Lanni Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lenoir","elevation_ft":1160,"latitude":35.888999938964844,"longitude":-81.61370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18MO","iata":"","local":"18MO","name":"Gimlin Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ozark","elevation_ft":1380,"latitude":36.96260070800781,"longitude":-93.1707000732422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3005,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18MS","iata":"","local":"18MS","name":"Johns Landing","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":222,"latitude":32.453333,"longitude":-90.363889,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2688,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18ND","iata":"","local":"18ND","name":"Bearpaw Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Menoken","elevation_ft":1744,"latitude":46.779094,"longitude":-100.514856,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2150,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18MT","iata":"","local":"18MT","name":"Fish Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Jackson","elevation_ft":7200,"latitude":45.21599960327149,"longitude":-113.4990005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18SC","iata":"","local":"","name":"Connelly Field","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Silverstreet","elevation_ft":570,"latitude":34.271324,"longitude":-81.77285,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3411,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18TN","iata":"","local":"18TN","name":"North Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Dunlap","elevation_ft":784,"latitude":35.387956,"longitude":-85.380258,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18TS","iata":"","local":"","name":"Brackenridge Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":519,"latitude":30.27375,"longitude":-97.734772,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18UT","iata":"","local":"","name":"Airmed Tooele Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele City","elevation_ft":4800,"latitude":40.552259,"longitude":-112.293797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18VA","iata":"","local":"18VA","name":"English Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Hurt","elevation_ft":550,"latitude":37.10380172729492,"longitude":-79.30110168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18VT","iata":"","local":"18VT","name":"Springfield Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Springfield","elevation_ft":589,"latitude":43.298465,"longitude":-72.494588,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18WA","iata":"","local":"18WA","name":"Pasco Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Pasco","elevation_ft":700,"latitude":46.375,"longitude":-119.20600128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"18SD","iata":"","local":"18SD","name":"Lost Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Miller","elevation_ft":1550,"latitude":44.702429,"longitude":-99.070351,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1340,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18TE","iata":"","local":"18TE","name":"Alert Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Big Sandy","elevation_ft":390,"latitude":32.585201263427734,"longitude":-95.06390380859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5093,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18TX","iata":"","local":"18TX","name":"Flying 'T' Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Caddo Mills","elevation_ft":545,"latitude":32.95249938964844,"longitude":-96.22810363769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18OR","iata":"","local":"18OR","name":"Red's Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Amity","elevation_ft":190,"latitude":45.0918655396,"longitude":-123.182350159,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18WI","iata":"","local":"18WI","name":"Leach Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Poy Sippi","elevation_ft":750,"latitude":44.0880012512207,"longitude":-88.92539978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19AL","iata":"","local":"19AL","name":"Molinelli Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Ozark","elevation_ft":490,"latitude":31.48240089416504,"longitude":-85.78510284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1300,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":1300,"width_ft":50,"surface":"A"},{"id":"H3","length_ft":1350,"width_ft":50,"surface":"A"},{"id":"H4","length_ft":1270,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19CL","iata":"","local":"","name":"Palisades Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Helendale","elevation_ft":2510,"latitude":34.7122,"longitude":-117.350999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19CO","iata":"","local":"19CO","name":"UCH-MHS Memorial Central Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6155,"latitude":38.840375,"longitude":-104.799385,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19FD","iata":"","local":"19FD","name":"Osceola Sheriff's Office Bronson Highway Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":66,"latitude":28.275101,"longitude":-81.336502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":19,"width_ft":19,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19FL","iata":"","local":"19FL","name":"The Villages Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Belleview","elevation_ft":103,"latitude":28.980600357055664,"longitude":-81.9906005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19GA","iata":"","local":"19GA","name":"Willow Pond Aviation Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":868,"latitude":33.424039,"longitude":-84.498367,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19AR","iata":"","local":"19AR","name":"Naylor field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Naylor","elevation_ft":230,"latitude":35.15670013,"longitude":-92.22419739,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19AZ","iata":"","local":"19AZ","name":"Montezuma Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Camp Verde","elevation_ft":3370,"latitude":34.604493,"longitude":-111.864795,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18XA","iata":"","local":"18XA","name":"Lantana Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Goliad","elevation_ft":250,"latitude":28.6591,"longitude":-97.5987472,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19AK","iata":"ICY","local":"19AK","name":"Icy Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Icy Bay","elevation_ft":50,"latitude":59.966269,"longitude":-141.660118,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3430,"width_ft":55,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19ID","iata":"","local":"19ID","name":"Race Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Riggins","elevation_ft":3371,"latitude":45.4412222,"longitude":-116.3993778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19II","iata":"","local":"19II","name":"Henry County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"New Castle","elevation_ft":1052,"latitude":39.94309997558594,"longitude":-85.36470031738281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19IN","iata":"","local":"","name":"Clark Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Frankfort","elevation_ft":880,"latitude":40.1945,"longitude":-86.523102,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19KS","iata":"","local":"19KS","name":"Schultz Field","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Chanute","elevation_ft":940,"latitude":37.619998931884766,"longitude":-95.45860290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19KY","iata":"","local":"19KY","name":"Conrads Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Dry Ridge","elevation_ft":940,"latitude":38.70650100708008,"longitude":-84.59989929199219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19LA","iata":"","local":"","name":"Region 1 Headquarters-State Police Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":70,"latitude":30.447701,"longitude":-91.103104,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3574,"width_ft":92,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19LS","iata":"","local":"19LS","name":"Riverside Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Franklinton","elevation_ft":146,"latitude":30.834444,"longitude":-90.153611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19MA","iata":"","local":"19MA","name":"Waine Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Nantucket","elevation_ft":80,"latitude":41.285099029541016,"longitude":-70.14969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19MI","iata":"","local":"19MI","name":"Mecosta County General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Big Rapids","elevation_ft":911,"latitude":43.69490051269531,"longitude":-85.47380065917969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19MN","iata":"","local":"19MN","name":"Greseth Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Buffalo","elevation_ft":970,"latitude":45.174765,"longitude":-93.765091,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1177,"width_ft":53,"surface":"T"},{"id":"15W/33W","length_ft":1500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19MO","iata":"","local":"","name":"North Patrol Div Station Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":955,"latitude":39.245025,"longitude":-94.591486,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19IA","iata":"","local":"19IA","name":"Ancam Antique Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"West Burlington","elevation_ft":690,"latitude":40.8568000793457,"longitude":-91.20379638671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19NH","iata":"","local":"19NH","name":"Lorden II Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"New Boston","elevation_ft":700,"latitude":42.978194,"longitude":-71.693806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19NJ","iata":"","local":"","name":"American Cyanamid Helistop","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"West Windsor","elevation_ft":101,"latitude":40.292579,"longitude":-74.676304,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19OH","iata":"","local":"","name":"Harris Corn Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Litchfield","elevation_ft":915,"latitude":41.1731,"longitude":-82.059303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19OI","iata":"","local":"19OI","name":"Airc Helistop","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Wintersville","elevation_ft":1218,"latitude":40.38079833984375,"longitude":-80.70539855957031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19OK","iata":"","local":"","name":"Gerhart Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Okmulgee","elevation_ft":940,"latitude":35.728401,"longitude":-95.977203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19NK","iata":"","local":"19NK","name":"Riveredge Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Central Square","elevation_ft":378,"latitude":43.243900299072266,"longitude":-76.15280151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19NY","iata":"","local":"19NY","name":"Four Seasons Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Reading","elevation_ft":1650,"latitude":42.40620040893555,"longitude":-77.96080017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19ND","iata":"","local":"19ND","name":"Breckheimer Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Tolna","elevation_ft":1458,"latitude":47.73329925537109,"longitude":-98.48870086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19MT","iata":"","local":"19MT","name":"N Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Grass Range","elevation_ft":4446,"latitude":46.838111,"longitude":-108.936833,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19OR","iata":"","local":"19OR","name":"Nelson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Maupin","elevation_ft":2000,"latitude":45.10960006713867,"longitude":-121.2239990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19NE","iata":"","local":"19NE","name":"Hoyt Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Mc Cook/Culbertson","elevation_ft":2707,"latitude":40.10829925537109,"longitude":-100.80899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19PN","iata":"","local":"","name":"Spooky Nook Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Landisville","elevation_ft":370,"latitude":40.106389,"longitude":-76.423333,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19TE","iata":"","local":"","name":"Cut and Shoot Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":170,"latitude":30.31426,"longitude":-95.327039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19TS","iata":"","local":"","name":"KVUE-TV Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":780,"latitude":30.36528,"longitude":-97.737658,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3666,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19TX","iata":"","local":"","name":"Woody McClellan Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Temple","elevation_ft":690,"latitude":31.238883,"longitude":-97.514726,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19VT","iata":"","local":"19VT","name":"Monsalvat Farm Holdings LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Barnard","elevation_ft":1496,"latitude":43.756672,"longitude":-72.613083,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19XA","iata":"","local":"19XA","name":"Baylor Scott & White Medical Center Irving Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Irving","elevation_ft":560,"latitude":32.834352,"longitude":-96.96187,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"19WI","iata":"","local":"19WI","name":"Erickson Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Prairie Farm","elevation_ft":1180,"latitude":45.1952018737793,"longitude":-92.05709838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19XS","iata":"","local":"19XS","name":"Draggintail Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Maypearl","elevation_ft":585,"latitude":32.29719924926758,"longitude":-97.08689880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19TA","iata":"","local":"19TA","name":"Lagrone Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mc Clendon-Chisholm","elevation_ft":567,"latitude":32.82229995727539,"longitude":-96.41690063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19WA","iata":"","local":"19WA","name":"Key Way Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Stevenson","elevation_ft":972,"latitude":45.71960067749024,"longitude":-121.88600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19TN","iata":"","local":"19TN","name":"Ferraraccio Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":620,"latitude":36.493095,"longitude":-87.187357,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AK0","iata":"","local":"1AK0","name":"Craig Cg Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Craig","elevation_ft":20,"latitude":55.47520065307617,"longitude":-133.14599609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AK5","iata":"","local":"1AK5","name":"Offshore Systems-Kenai Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Nikiski","elevation_ft":150,"latitude":60.738876,"longitude":-151.311613,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AK7","iata":"","local":"1AK7","name":"Valdez Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Valdez","elevation_ft":96,"latitude":61.136600494384766,"longitude":-146.34500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AK9","iata":"","local":"","name":"Tundra Copter Heliport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":434,"latitude":64.815399,"longitude":-147.862145,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AL0","iata":"","local":"1AL0","name":"Marshall Medical Center South Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Boaz","elevation_ft":1000,"latitude":34.220412,"longitude":-86.160439,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AL1","iata":"","local":"1AL1","name":"Decatur Morgan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Decatur","elevation_ft":588,"latitude":34.59207,"longitude":-86.972149,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AL3","iata":"","local":"","name":"Russell Lands Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Our Town","elevation_ft":573,"latitude":32.795833,"longitude":-85.974998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AK1","iata":"","local":"1AK1","name":"Crevice Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Crevice Creek","elevation_ft":840,"latitude":67.3729019165039,"longitude":-152.01600646972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2250,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AL6","iata":"","local":"1AL6","name":"Monroe County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Monroeville","elevation_ft":425,"latitude":31.497800827026367,"longitude":-87.32109832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AL7","iata":"","local":"1AL7","name":"Business Center of Alabama Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Montgomery","elevation_ft":403,"latitude":32.377498626708984,"longitude":-86.29830169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AL9","iata":"","local":"","name":"Lake Tuscaloosa Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Northport","elevation_ft":224,"latitude":33.347801,"longitude":-87.601897,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AR3","iata":"","local":"","name":"Bob Norman Airstrip","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Des Arc","elevation_ft":208,"latitude":34.973202,"longitude":-91.526001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AR4","iata":"","local":"","name":"Foggy River Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Elkins","elevation_ft":1240,"latitude":36.017899,"longitude":-94.018402,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AR7","iata":"","local":"1AR7","name":"Wadley Regional Medical Center at Hope Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Hope","elevation_ft":375,"latitude":33.648448,"longitude":-93.585337,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AR5","iata":"","local":"1AR5","name":"Cherokee Strip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Gentry","elevation_ft":1194,"latitude":36.29940032958984,"longitude":-94.58470153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AL5","iata":"","local":"1AL5","name":"Berry Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Loxley","elevation_ft":170,"latitude":30.63640022277832,"longitude":-87.747802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AR1","iata":"","local":"1AR1","name":"Walls Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"England","elevation_ft":215,"latitude":34.527793,"longitude":-91.872427,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AR2","iata":"","local":"1AR2","name":"Taylor Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Des Arc","elevation_ft":208,"latitude":34.98680114746094,"longitude":-91.55030059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AR6","iata":"","local":"1AR6","name":"Diamond Bluff Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Greers Ferry","elevation_ft":1000,"latitude":35.503299713134766,"longitude":-92.19670104980467,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AR8","iata":"","local":"","name":"Flying W Air Park Inc Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Lavaca","elevation_ft":420,"latitude":35.325699,"longitude":-94.186798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AZ1","iata":"","local":"1AZ1","name":"Boulais Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tolleson","elevation_ft":1060,"latitude":33.515288,"longitude":-112.255694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AZ3","iata":"","local":"1AZ3","name":"Arizona State Prison Safford Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Safford","elevation_ft":3000,"latitude":32.830014,"longitude":-109.564335,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AZ7","iata":"","local":"1AZ7","name":"SRP Tolleson Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tolleson","elevation_ft":1140,"latitude":33.44791,"longitude":-112.226603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CA2","iata":"","local":"","name":"Sunrise One Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Rancho Cordova","elevation_ft":100,"latitude":38.603298,"longitude":-121.263,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CA3","iata":"","local":"1CA3","name":"GSA Laguna Niguel G/L Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Laguna Niguel","elevation_ft":188,"latitude":33.561392,"longitude":-117.715341,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CA7","iata":"","local":"1CA7","name":"L. A. Times Costa Mesa Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Costa Mesa","elevation_ft":35,"latitude":33.69390106201172,"longitude":-117.91699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":57,"width_ft":57,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CA9","iata":"","local":"1CA9","name":"Los Angeles County Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Malibu","elevation_ft":1360,"latitude":34.083302,"longitude":-118.867996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1AZ8","iata":"","local":"1AZ8","name":"Willow Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Bullhead City","elevation_ft":3750,"latitude":35.295799255371094,"longitude":-114.3730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CA6","iata":"","local":"1CA6","name":"On the Rocks Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Alpine","elevation_ft":2650,"latitude":32.765098571777344,"longitude":-116.7229995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2340,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AZ0","iata":"","local":"1AZ0","name":"Bishop Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Mobile","elevation_ft":1261,"latitude":33.1119,"longitude":-112.268997,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CD0","iata":"","local":"1CD0","name":"Murphy Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Longmont","elevation_ft":4870,"latitude":40.142799377441406,"longitude":-105.00299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":14,"width_ft":14,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CD5","iata":"","local":"1CD5","name":"Rio Grande Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Del Norte","elevation_ft":7190,"latitude":37.67499923706055,"longitude":-106.36299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CL0","iata":"","local":"1CL0","name":"William Archibald Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Dimas","elevation_ft":984,"latitude":34.10449981689453,"longitude":-117.8000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CL4","iata":"","local":"1CL4","name":"UCI Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Orange","elevation_ft":140,"latitude":33.788562,"longitude":-117.890416,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CL5","iata":"","local":"1CL5","name":"Palomar Medical Center Poway Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Poway","elevation_ft":650,"latitude":32.996067,"longitude":-117.055539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CL6","iata":"","local":"1CL6","name":"Lake Park Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":45,"latitude":38.547698974609375,"longitude":-121.37999725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CL8","iata":"","local":"1CL8","name":"Marian Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Maria","elevation_ft":256,"latitude":34.950507,"longitude":-120.411583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CN6","iata":"","local":"1CN6","name":"BTNW PPR Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Azusa","elevation_ft":2810,"latitude":34.281967,"longitude":-117.749786,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CL2","iata":"","local":"1CL2","name":"Pontious Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mojave","elevation_ft":2610,"latitude":34.942501068115234,"longitude":-118.16999816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1900,"width_ft":50,"surface":"D"},{"id":"07/25","length_ft":1300,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CD2","iata":"","local":"1CD2","name":"Tonga Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Platteville","elevation_ft":4925,"latitude":40.167377,"longitude":-104.798575,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CD1","iata":"","local":"1CD1","name":"Reed Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Nunn","elevation_ft":5350,"latitude":40.69029998779297,"longitude":-104.86699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CO0","iata":"","local":"1CO0","name":"Aurora Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Aurora","elevation_ft":5604,"latitude":39.68830108642578,"longitude":-104.83200073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":84,"width_ft":84,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CO1","iata":"","local":"1CO1","name":"Mount Morrison Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Morrison","elevation_ft":7881,"latitude":39.6692008972168,"longitude":-105.22000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CO6","iata":"","local":"1CO6","name":"Lands End Microwave Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Palisade","elevation_ft":9940,"latitude":39.09049987792969,"longitude":-108.22100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":350,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CO9","iata":"","local":"1CO9","name":"MCHD Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Cortez","elevation_ft":6153,"latitude":37.36299896240234,"longitude":-108.5749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":92,"width_ft":92,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CT2","iata":"","local":"1CT2","name":"Yale New Haven Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"New Haven","elevation_ft":219,"latitude":41.30379867553711,"longitude":-72.93579864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CT3","iata":"","local":"1CT3","name":"St Mary's Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Waterbury","elevation_ft":300,"latitude":41.55337,"longitude":-73.03763,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1DE4","iata":"","local":"1DE4","name":"Christina Care Health System Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Middletown","elevation_ft":65,"latitude":39.455692,"longitude":-75.683983,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1CO4","iata":"","local":"1CO4","name":"Clifford Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Olathe","elevation_ft":5560,"latitude":38.57500076293945,"longitude":-107.95899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3700,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CO2","iata":"","local":"1CO2","name":"Williams Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Norwood","elevation_ft":6842,"latitude":38.162498,"longitude":-108.339996,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CO3","iata":"","local":"1CO3","name":"Bellmore Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Nunn","elevation_ft":5225,"latitude":40.7041015625,"longitude":-104.7979965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":30,"surface":"G"},{"id":"18/36","length_ft":5000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CO5","iata":"","local":"1CO5","name":"Melon Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rocky Ford","elevation_ft":4260,"latitude":38.016229,"longitude":-103.69464,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3780,"width_ft":45,"surface":"A"},{"id":"18/36","length_ft":2500,"width_ft":44,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1FA5","iata":"","local":"1FA5","name":"Palmetto General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Hialeah","elevation_ft":10,"latitude":25.8865940245,"longitude":-80.32660312950001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FA6","iata":"","local":"1FA6","name":"Arrowhead Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tampa","elevation_ft":55,"latitude":28.10499,"longitude":-82.4826,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FA7","iata":"","local":"1FA7","name":"Bayfront Health Brooksville Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Brooksville","elevation_ft":93,"latitude":28.538778,"longitude":-82.441753,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD0","iata":"","local":"","name":"Lawrence Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Grand Ridge","elevation_ft":130,"latitude":30.7155,"longitude":-85.024399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD1","iata":"","local":"1FD1","name":"H1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Ellenton","elevation_ft":13,"latitude":27.526775,"longitude":-82.533978,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD2","iata":"","local":"","name":"Bass Limited Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Pinetta","elevation_ft":100,"latitude":30.6194,"longitude":-83.304001,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":2030,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD3","iata":"","local":"1FD3","name":"HCA Florida JFK Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Atlantis","elevation_ft":61,"latitude":26.597891,"longitude":-80.09222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD5","iata":"","local":"","name":"Miami Herald Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":102,"latitude":25.78816,"longitude":-80.185769,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD6","iata":"","local":"1FD6","name":"Paines Prairie Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Micanopy","elevation_ft":75,"latitude":29.54610061645508,"longitude":-82.28730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FA1","iata":"","local":"1FA1","name":"Post Oak Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crystal River","elevation_ft":25,"latitude":28.85580062866211,"longitude":-82.55259704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1FD4","iata":"","local":"1FD4","name":"Corkscrew Trace Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Estero","elevation_ft":29,"latitude":26.44540023803711,"longitude":-81.6072998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1FD7","iata":"","local":"1FD7","name":"Pga National Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palm Beach Gardens","elevation_ft":19,"latitude":26.832799911499023,"longitude":-80.14340209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD8","iata":"","local":"1FD8","name":"Memorial Hospital-Flagler Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bunnell","elevation_ft":23,"latitude":29.468599319458008,"longitude":-81.25309753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FD9","iata":"","local":"1FD9","name":"AH Winter Haven OSED Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Winter Haven","elevation_ft":154,"latitude":27.980197,"longitude":-81.664797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL0","iata":"","local":"1FL0","name":"Londono's Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Auburndale","elevation_ft":147,"latitude":28.1036,"longitude":-81.805901,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5250,"width_ft":100,"surface":"W"},{"id":"11W/29W","length_ft":5250,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL1","iata":"","local":"1FL1","name":"Orlando Helicenter","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":75,"latitude":28.312135,"longitude":-81.46594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL2","iata":"","local":"1FL2","name":"Lake City Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake City","elevation_ft":147,"latitude":30.184455,"longitude":-82.688302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL4","iata":"","local":"","name":"NBC 6 (WTVJ) Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Miramar","elevation_ft":8,"latitude":25.986401,"longitude":-80.353895,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL5","iata":"","local":"1FL5","name":"West Bay Creek Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"West Bay","elevation_ft":0,"latitude":30.302099227905277,"longitude":-85.8644027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":3000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL6","iata":"","local":"1FL6","name":"Sheriff's North Multi District Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":85,"latitude":29.27389907836914,"longitude":-82.15029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL7","iata":"","local":"1FL7","name":"Barton Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bartow","elevation_ft":107,"latitude":27.91899,"longitude":-81.844835,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL8","iata":"","local":"1FL8","name":"Cape Canaveral Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Cocoa Beach","elevation_ft":6,"latitude":28.361099243164062,"longitude":-80.62220001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1FL9","iata":"","local":"1FL9","name":"Hendry County Fire-Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":18,"latitude":26.746400833129883,"longitude":-81.42859649658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1GA1","iata":"","local":"1GA1","name":"Pratt and Whitney Aircraft Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Columbus","elevation_ft":430,"latitude":32.5432014465332,"longitude":-84.83190155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1GA3","iata":"","local":"1GA3","name":"Union General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Blairsville","elevation_ft":1911,"latitude":34.886199951171875,"longitude":-83.96240234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1GA6","iata":"","local":"","name":"De De Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Barnesville","elevation_ft":800,"latitude":33.008999,"longitude":-84.110703,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2210,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":4642,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1GA7","iata":"","local":"","name":"Adams Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1200,"latitude":34.293201,"longitude":-84.109596,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1GE1","iata":"","local":"1GE1","name":"Georgia Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Blue Ridge","elevation_ft":1600,"latitude":34.82809829711914,"longitude":-84.35469818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1GA8","iata":"","local":"1GA8","name":"South One Ten Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Nashville","elevation_ft":225,"latitude":31.178499,"longitude":-83.226501,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GA9","iata":"","local":"1GA9","name":"Aerie Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Monroe","elevation_ft":830,"latitude":33.761608,"longitude":-83.652704,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE5","iata":"","local":"1GE5","name":"Flying D Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":838,"latitude":33.101200103759766,"longitude":-84.39350128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE6","iata":"","local":"1GE6","name":"Daystar Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Patterson","elevation_ft":105,"latitude":31.373752,"longitude":-82.107524,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2885,"width_ft":53,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GA2","iata":"","local":"1GA2","name":"Flying N Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Luthersville","elevation_ft":870,"latitude":33.175358,"longitude":-84.747756,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3040,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE3","iata":"","local":"1GE3","name":"Answered Prayer Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Franklin","elevation_ft":890,"latitude":33.254232,"longitude":-85.170623,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE2","iata":"","local":"1GE2","name":"C & W Air Park","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Woodland","elevation_ft":1306,"latitude":32.84439849853516,"longitude":-84.54389953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE8","iata":"","local":"1GE8","name":"Grady Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":1227,"latitude":33.752476,"longitude":-84.382115,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":62,"width_ft":62,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IA2","iata":"","local":"1IA2","name":"Camp Tahigwa Landing Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Dorchester","elevation_ft":760,"latitude":43.43889999389648,"longitude":-91.56739807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IA3","iata":"","local":"1IA3","name":"Spencer Municipal Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Spencer","elevation_ft":1318,"latitude":43.1505012512207,"longitude":-95.14219665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IA5","iata":"","local":"1IA5","name":"Sch Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Nevada","elevation_ft":995,"latitude":42.01750183105469,"longitude":-93.4530029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IA7","iata":"","local":"1IA7","name":"University of Iowa Hospitals & Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Iowa City","elevation_ft":840,"latitude":41.65999984741211,"longitude":-91.54769897460938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1ID2","iata":"","local":"1ID2","name":"Horseshoe Bend Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Horseshoe Bend","elevation_ft":2300,"latitude":43.914398193359375,"longitude":-116.1969985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1ID5","iata":"","local":"1ID5","name":"St Luke's Wood River Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Ketchum","elevation_ft":5737,"latitude":43.648538,"longitude":-114.350085,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1ID6","iata":"","local":"1ID6","name":"Sligars Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Kimberly","elevation_ft":3800,"latitude":42.58580017089844,"longitude":-114.35700225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OH6","iata":"","local":"1OH6","name":"Odot Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Sidney","elevation_ft":1026,"latitude":40.29759979248047,"longitude":-84.16339874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1ID3","iata":"","local":"1ID3","name":"Beaux Ranch Field","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sandpoint","elevation_ft":2079,"latitude":48.167965,"longitude":-116.725331,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1ID7","iata":"","local":"1ID7","name":"Fairbanks Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Eden","elevation_ft":3830,"latitude":42.587909,"longitude":-114.33071,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1ID4","iata":"","local":"1ID4","name":"Red Baron Airpark","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Oasis","elevation_ft":3259,"latitude":43.3105555556,"longitude":-115.9025,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2940,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1ID8","iata":"","local":"1ID8","name":"North Canyon Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Gooding","elevation_ft":3579,"latitude":42.921675,"longitude":-114.709449,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1II6","iata":"","local":"1II6","name":"St Mary's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Evansville","elevation_ft":386,"latitude":37.96500015258789,"longitude":-87.50420379638672,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1II7","iata":"","local":"1II7","name":"Parkview Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Fort Wayne","elevation_ft":817,"latitude":41.09640121459961,"longitude":-85.11019897460938,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IL2","iata":"","local":"","name":"Hobby Hideaway RLA Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Delavan","elevation_ft":660,"latitude":40.347,"longitude":-89.470703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IL3","iata":"","local":"1IL3","name":"Alton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Alton","elevation_ft":525,"latitude":38.90219879150391,"longitude":-90.1613998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1II5","iata":"","local":"1II5","name":"Van De Mark Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Culver","elevation_ft":730,"latitude":41.246644,"longitude":-86.502614,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IL9","iata":"","local":"1IL9","name":"Holland Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mc Lean","elevation_ft":715,"latitude":40.30059814453125,"longitude":-89.12439727783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":70,"surface":"T"},{"id":"18/36","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IL1","iata":"","local":"1IL1","name":"Horsefeathers Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Irving","elevation_ft":653,"latitude":39.241595,"longitude":-89.426565,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":102,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1ID9","iata":"","local":"1ID9","name":"Skyline STOLport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Inkom","elevation_ft":6150,"latitude":42.78060150146485,"longitude":-112.1709976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":400,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IL0","iata":"","local":"1IL0","name":"Barnstorm Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"El Paso","elevation_ft":731,"latitude":40.775001525878906,"longitude":-89.0010986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2650,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN8","iata":"","local":"1IN8","name":"Adderly's Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Fort Wayne","elevation_ft":847,"latitude":41.107243,"longitude":-85.218056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":82,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1IS7","iata":"","local":"1IS7","name":"Ingersoll Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":745,"latitude":42.29949951171875,"longitude":-89.06929779052734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1JY4","iata":"","local":"1JY4","name":"New Jersey State Police Troop C Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hamilton Township","elevation_ft":81,"latitude":40.201379,"longitude":-74.648838,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1JY5","iata":"","local":"","name":"Morey's Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Wildwood","elevation_ft":12,"latitude":38.985921,"longitude":-74.810307,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1JY2","iata":"","local":"1JY2","name":"Mahogany Mtn. Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Silver Lake","elevation_ft":4620,"latitude":43.06710052490234,"longitude":-121.0530014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IS2","iata":"","local":"1IS2","name":"Triple Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bement","elevation_ft":666,"latitude":39.89640045166016,"longitude":-88.52230072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2375,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN6","iata":"","local":"1IN6","name":"Cottingham Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Pine Village","elevation_ft":685,"latitude":40.40169906616211,"longitude":-87.22029876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":66,"surface":"T"},{"id":"18/36","length_ft":1300,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN4","iata":"","local":"1IN4","name":"Robinson Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Elizabeth","elevation_ft":775,"latitude":38.143383,"longitude":-85.985141,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN3","iata":"","local":"1IN3","name":"Confer's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Arcola","elevation_ft":865,"latitude":41.098135,"longitude":-85.242008,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN9","iata":"","local":"1IN9","name":"Lee Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Marion","elevation_ft":856,"latitude":40.594916,"longitude":-85.424473,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2423,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS5","iata":"","local":"","name":"Keyser Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"St Marys","elevation_ft":950,"latitude":39.162498,"longitude":-96.096397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":39,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KT8","iata":"","local":"1KT8","name":"Ephraim McDowell Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Danville","elevation_ft":970,"latitude":37.643291,"longitude":-84.776267,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY0","iata":"","local":"1KY0","name":"Sof Maintenance Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Richmond","elevation_ft":1000,"latitude":37.676700592041016,"longitude":-84.23300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY1","iata":"","local":"1KY1","name":"Hardin Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Elizabethtown","elevation_ft":838,"latitude":37.71060180664063,"longitude":-85.87689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":31,"width_ft":31,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY2","iata":"","local":"1KY2","name":"Community Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Henderson","elevation_ft":460,"latitude":37.855899810791016,"longitude":-87.58390045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY3","iata":"","local":"1KY3","name":"Monroe County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Tompkinsville","elevation_ft":970,"latitude":36.69810104370117,"longitude":-85.67639923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KS1","iata":"","local":"1KS1","name":"Cochran Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Richmond","elevation_ft":1005,"latitude":38.458899,"longitude":-95.226531,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS2","iata":"","local":"1KS2","name":"Risky Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Easton","elevation_ft":1133,"latitude":39.31399917602539,"longitude":-95.07160186767578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS8","iata":"","local":"1KS8","name":"Buehler Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Scott City","elevation_ft":3038,"latitude":38.51530075073242,"longitude":-100.99500274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":80,"surface":"T"},{"id":"N/S","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS6","iata":"","local":"1KS6","name":"Silers Plane Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Salina","elevation_ft":1204,"latitude":38.86669921875,"longitude":-97.5363998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS4","iata":"","local":"1KS4","name":"Prichard Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Enterprise","elevation_ft":1164,"latitude":38.900001525878906,"longitude":-97.11699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KY4","iata":"","local":"1KY4","name":"Baptist Health Lexington Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":1076,"latitude":38.017631,"longitude":-84.511948,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY5","iata":"","local":"1KY5","name":"Rockcastle Hospital Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Mount Vernon","elevation_ft":1100,"latitude":37.358479,"longitude":-84.336285,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY6","iata":"","local":"1KY6","name":"Haggin Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Harrodsburg","elevation_ft":920,"latitude":37.75590133666992,"longitude":-84.84970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY7","iata":"","local":"1KY7","name":"Jordan Hill Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Richmond","elevation_ft":910,"latitude":37.83250045776367,"longitude":-84.18080139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY8","iata":"","local":"1KY8","name":"Norton Audubon Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":517,"latitude":38.214444,"longitude":-85.7225,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1KY9","iata":"","local":"1KY9","name":"ARH Tri City Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Cumberland","elevation_ft":1407,"latitude":36.965837,"longitude":-83.022136,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LA2","iata":"","local":"","name":"Phi Harahan Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Harahan","elevation_ft":0,"latitude":29.941299,"longitude":-90.180603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LA4","iata":"","local":"","name":"Bayou Fourchon Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Leeville","elevation_ft":0,"latitude":29.105801,"longitude":-90.190903,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LA6","iata":"","local":"LA85","name":"Christus Highland Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":160,"latitude":32.423673,"longitude":-93.715941,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LA0","iata":"","local":"1LA0","name":"Ken Guidry #2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Gueydan","elevation_ft":6,"latitude":30.012107,"longitude":-92.526941,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LA3","iata":"","local":"1LA3","name":"Goose Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hayes","elevation_ft":4,"latitude":30.030799865722656,"longitude":-92.83350372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LA5","iata":"","local":"1LA5","name":"Morrow Strip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Morrow","elevation_ft":40,"latitude":30.7992000579834,"longitude":-92.05970001220705,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LA7","iata":"","local":"1LA7","name":"Savoy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Mamou","elevation_ft":100,"latitude":30.64249992370605,"longitude":-92.41780090332033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LA8","iata":"","local":"1LA8","name":"S.Fresh Water Bayou Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Intracoastal City","elevation_ft":4,"latitude":29.60110092163086,"longitude":-92.26010131835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LL1","iata":"","local":"1LL1","name":"Lawrence Co Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Lawrenceville","elevation_ft":470,"latitude":38.728099823,"longitude":-87.69470214840001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LL9","iata":"","local":"1LL9","name":"Reyhan Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Loami","elevation_ft":600,"latitude":39.6776008605957,"longitude":-89.80509948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LS1","iata":"","local":"1LS1","name":"Cosmar Styrene Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":18,"latitude":30.22249984741211,"longitude":-91.0727996826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LS2","iata":"","local":"1LS2","name":"Innis Community Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Innis","elevation_ft":45,"latitude":30.876566,"longitude":-91.678408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LS8","iata":"","local":"1LS8","name":"Summerell Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Ferriday","elevation_ft":64,"latitude":31.684198,"longitude":-91.501001,"has_tower":false,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":2500,"width_ft":90,"surface":"A"},{"id":"13R/31L","length_ft":2500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA0","iata":"","local":"1MA0","name":"Beth Israel Deaconess Hospital Plymouth Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Plymouth","elevation_ft":122,"latitude":41.940135,"longitude":-70.6472,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1LL5","iata":"","local":"1LL5","name":"Justison Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hillsboro","elevation_ft":650,"latitude":39.24277,"longitude":-89.55083,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LL4","iata":"","local":"1LL4","name":"Sies Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Litchfield","elevation_ft":690,"latitude":39.183227,"longitude":-89.69726,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LL2","iata":"","local":"1LL2","name":"Spring Brook Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Seneca","elevation_ft":500,"latitude":41.30059814453125,"longitude":-88.6355972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LL8","iata":"","local":"1LL8","name":"Zoomer Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sheldon","elevation_ft":680,"latitude":40.788654,"longitude":-87.559361,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1961,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MA1","iata":"","local":"1MA1","name":"Deaconess Nashoba Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Ayer","elevation_ft":308,"latitude":42.57649993896485,"longitude":-71.5739974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA2","iata":"","local":"1MA2","name":"UMASS Memorial Medical Center-Univ Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Worcester","elevation_ft":417,"latitude":42.2750015259,"longitude":-71.7600021362,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA4","iata":"","local":"1MA4","name":"Wang Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Lowell","elevation_ft":104,"latitude":42.60929870605469,"longitude":-71.32170104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":132,"width_ft":132,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA6","iata":"","local":"1MA6","name":"Micron Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Southwick","elevation_ft":245,"latitude":42.067901611328125,"longitude":-72.74449920654297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA7","iata":"","local":"1MA7","name":"Long Hill Orchard Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"West Newbury","elevation_ft":120,"latitude":42.4734001159668,"longitude":-70.97889709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA8","iata":"","local":"1MA8","name":"Horizon Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Lincoln","elevation_ft":336,"latitude":42.419656,"longitude":-71.309323,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MA9","iata":"","local":"1MA9","name":"Morton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Taunton","elevation_ft":50,"latitude":41.90589904785156,"longitude":-71.09420013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MD4","iata":"","local":"1MD4","name":"Prince George's Hospital Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Cheverly","elevation_ft":297,"latitude":38.930301666259766,"longitude":-76.9207992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":67,"width_ft":67,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MD5","iata":"","local":"1MD5","name":"Federal Support Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Laytonsville","elevation_ft":510,"latitude":39.19210052490234,"longitude":-77.10659790039062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":66,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MD6","iata":"","local":"1MD6","name":"Metroplex Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"New Carrollton","elevation_ft":99,"latitude":38.94620132446289,"longitude":-76.86830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":4000,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MD7","iata":"","local":"1MD7","name":"Shady Grove Adventist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Rockville","elevation_ft":475,"latitude":39.098367,"longitude":-77.197608,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1ME1","iata":"","local":"1ME1","name":"Victor Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Belfast","elevation_ft":180,"latitude":44.41059875488281,"longitude":-69.00920104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1ME2","iata":"","local":"1ME2","name":"Maine General Medical Center-Waterville Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Waterville","elevation_ft":112,"latitude":44.566216,"longitude":-69.64785,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MI0","iata":"","local":"1MI0","name":"Ashman Island Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MI","municipality":"Drummond Island","elevation_ft":580,"latitude":46.06859970092773,"longitude":-83.72419738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":7500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MI1","iata":"","local":"","name":"Nikkila Farms Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Mass","elevation_ft":1100,"latitude":46.700672,"longitude":-88.99716,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":135,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MI2","iata":"","local":"1MI2","name":"Guardian Industries Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Auburn Hills","elevation_ft":1021,"latitude":42.699798583984375,"longitude":-83.24739837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MI6","iata":"","local":"","name":"Rosedale Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Sault Ste Marie","elevation_ft":675,"latitude":46.378483,"longitude":-84.311249,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MI7","iata":"","local":"","name":"Thompson Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Selkirk","elevation_ft":857,"latitude":44.3167,"longitude":-84.066704,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MN1","iata":"","local":"","name":"Beyer Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Tenney","elevation_ft":1000,"latitude":45.9733,"longitude":-96.564201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MI3","iata":"","local":"1MI3","name":"Black River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Onaway","elevation_ft":880,"latitude":45.19580078125,"longitude":-84.32170104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3900,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MN0","iata":"","local":"1MN0","name":"Wetherbee Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Tenney","elevation_ft":980,"latitude":46.04359817504883,"longitude":-96.54620361328124,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MI4","iata":"","local":"1MI4","name":"Ramsy Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Perronville","elevation_ft":880,"latitude":45.83890151977539,"longitude":-87.32240295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2060,"width_ft":148,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MN3","iata":"","local":"1MN3","name":"Northern Itasca Health Care Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Bigfork","elevation_ft":1320,"latitude":47.74720001220703,"longitude":-93.64630126953124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MN4","iata":"","local":"","name":"Krueger Loon Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Vergas","elevation_ft":1370,"latitude":46.622202,"longitude":-95.836404,"has_tower":false,"has_beacon":false,"runways":[{"id":"W/E","length_ft":4600,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MN6","iata":"","local":"1MN6","name":"Cook Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Cook","elevation_ft":1315,"latitude":47.85300064086914,"longitude":-92.6791000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MN7","iata":"","local":"1MN7","name":"Cuyuna Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Crosby","elevation_ft":1255,"latitude":46.482200622558594,"longitude":-93.943603515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MN8","iata":"","local":"1MN8","name":"Sky Harbor Residential Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Webster","elevation_ft":1111,"latitude":44.525671,"longitude":-93.327441,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2755,"width_ft":138,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MN9","iata":"","local":"1MN9","name":"Sanford Jackson Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Jackson","elevation_ft":1450,"latitude":43.624831,"longitude":-95.003987,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MO1","iata":"","local":"1MO1","name":"St Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kirkwood","elevation_ft":530,"latitude":38.56809997558594,"longitude":-90.43399810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MO2","iata":"","local":"","name":"Hart Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Drexel","elevation_ft":825,"latitude":38.549055,"longitude":-94.477487,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2400,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MO6","iata":"","local":"1MO6","name":"Double S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Grandin","elevation_ft":737,"latitude":36.830141,"longitude":-90.720677,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MO4","iata":"","local":"1MO4","name":"Landmark Manufacturing Corporation Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gallatin","elevation_ft":800,"latitude":39.891701,"longitude":-93.864098,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MO3","iata":"","local":"1MO3","name":"Lake Viking Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gallatin","elevation_ft":940,"latitude":39.93339920043945,"longitude":-94.07379913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MN5","iata":"","local":"1MN5","name":"Molnau Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Waconia","elevation_ft":1000,"latitude":44.843874,"longitude":-93.736076,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MS1","iata":"","local":"1MS1","name":"Neshoba General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Philadelphia","elevation_ft":388,"latitude":32.756061,"longitude":-89.106336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MS3","iata":"","local":"1MS3","name":"Baptist Medical Center Attala Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Kosciusko","elevation_ft":455,"latitude":33.066799,"longitude":-89.598501,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MS4","iata":"","local":"1MS4","name":"Methodist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":366,"latitude":32.287899017333984,"longitude":-90.2562026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MS7","iata":"","local":"1MS7","name":"Smith County General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Raleigh","elevation_ft":535,"latitude":31.99959945678711,"longitude":-89.51950073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":23,"width_ft":23,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MS9","iata":"","local":"","name":"Piker-Too Airport","category":"closed","iso_country":"US","iso_region":"US-MS","municipality":"Centreville","elevation_ft":300,"latitude":31.0118,"longitude":-90.968201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MT1","iata":"","local":"1MT1","name":"Krinitt Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Belgrade","elevation_ft":4474,"latitude":45.774200439453125,"longitude":-111.2030029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MT5","iata":"","local":"1MT5","name":"Holy Rosary Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Miles City","elevation_ft":2372,"latitude":46.39459991455078,"longitude":-105.8290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MT3","iata":"","local":"1MT3","name":"Wood Strip","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Elliston","elevation_ft":5100,"latitude":46.557668,"longitude":-112.414399,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MT0","iata":"","local":"1MT0","name":"Nine Quarter Circle Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Gallatin Gateway","elevation_ft":6974,"latitude":45.06740188598633,"longitude":-111.2969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MS2","iata":"","local":"1MS2","name":"Peterson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Goodman","elevation_ft":240,"latitude":32.94179916381836,"longitude":-89.93060302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MT6","iata":"","local":"1MT6","name":"Bobcat Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Philipsburg","elevation_ft":4824,"latitude":46.35689926147461,"longitude":-113.51000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1095,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MT8","iata":"","local":"1MT8","name":"St James Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Butte","elevation_ft":5733,"latitude":46.009027,"longitude":-112.544371,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23ID","iata":"","local":"23ID","name":"Southfork Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Feathervlle","elevation_ft":5612,"latitude":43.648265,"longitude":-114.9046972,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2154,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MU3","iata":"","local":"1MU3","name":"Putnam County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Unionville","elevation_ft":1060,"latitude":40.48270034790039,"longitude":-93.00589752197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1MU9","iata":"","local":"1MU9","name":"Nielsens Medical Evac Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Saint Charles","elevation_ft":425,"latitude":38.93529891967773,"longitude":-90.47650146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"79ID","iata":"","local":"","name":"Kooskia (Clear Creek Int) Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"UNKNOWN","elevation_ft":1800,"latitude":46.0488642914,"longitude":-115.869691372,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MU8","iata":"","local":"1MU8","name":"Church's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rushville","elevation_ft":826,"latitude":39.55419921875,"longitude":-94.99859619140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NC0","iata":"","local":"1NC0","name":"Delk's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Asheboro","elevation_ft":460,"latitude":35.722406,"longitude":-79.934889,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":46,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MY1","iata":"","local":"1MY1","name":"Carlson Agricultural Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wendell","elevation_ft":1033,"latitude":45.98529815673828,"longitude":-96.19439697265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MU0","iata":"","local":"1MU0","name":"Medcalf Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Republic","elevation_ft":1260,"latitude":37.164311,"longitude":-93.564878,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2636,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NA5","iata":"","local":"1NA5","name":"Gienger/Box Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Streeter","elevation_ft":1950,"latitude":46.625,"longitude":-99.45040130615234,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NA8","iata":"","local":"1NA8","name":"Preszler Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Braddock","elevation_ft":1795,"latitude":46.69049835205078,"longitude":-100.09500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MT7","iata":"","local":"1MT7","name":"Prill Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Sand Coulee","elevation_ft":3420,"latitude":47.42110061645508,"longitude":-111.15899658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MT9","iata":"","local":"1MT9","name":"Wilcox Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3390,"latitude":45.789217,"longitude":-108.689266,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":40,"surface":"T"},{"id":"18/36","length_ft":800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MT8","iata":"","local":"2MT8","name":"South Boulder Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Cardwell","elevation_ft":4560,"latitude":45.8151,"longitude":-111.9259,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MT1","iata":"","local":"4MT1","name":"Kreikemeier Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Belgrade","elevation_ft":4360,"latitude":45.82070159912109,"longitude":-111.1449966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NJ0","iata":"","local":"1NJ0","name":"Jersey Turnpike Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":102,"latitude":40.47679901123047,"longitude":-74.40879821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ1","iata":"","local":"1NJ1","name":"Rutger's Helistop Sec. A & B Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":116,"latitude":40.47930145263672,"longitude":-74.43460083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ2","iata":"","local":"1NJ2","name":"New Brunswick Gas Distn Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":114,"latitude":40.4739990234375,"longitude":-74.48400115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ3","iata":"","local":"","name":"Sea Air Atlantic City Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":0,"latitude":39.390499,"longitude":-74.429001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ4","iata":"","local":"1NJ4","name":"Rutgers Helistop Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Brunswick","elevation_ft":85,"latitude":40.51679992675781,"longitude":-74.46630096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NC4","iata":"","local":"1NC4","name":"Bell Strip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Pollocksville","elevation_ft":35,"latitude":34.995399475097656,"longitude":-77.25769805908203,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NC5","iata":"","local":"1NC5","name":"Riley Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Bunn","elevation_ft":360,"latitude":35.93320083618164,"longitude":-78.34860229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NC8","iata":"","local":"1NC8","name":"Lonesome Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Gold Hill","elevation_ft":665,"latitude":35.5158,"longitude":-80.258102,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2250,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NC6","iata":"","local":"1NC6","name":"Arant Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Wingate","elevation_ft":535,"latitude":35.055999755859375,"longitude":-80.45010375976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NE5","iata":"","local":"1NE5","name":"Sibbernsen Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Washington","elevation_ft":1280,"latitude":41.405511,"longitude":-96.286132,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NE2","iata":"","local":"1NE2","name":"Witthuhn Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Callaway","elevation_ft":2700,"latitude":41.32500076293945,"longitude":-99.91709899902344,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NJ5","iata":"","local":"1NJ5","name":"Milana Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Blairstown","elevation_ft":700,"latitude":40.95199966430664,"longitude":-75.91850280761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ6","iata":"","local":"1NJ6","name":"Idylease Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newfoundland","elevation_ft":525,"latitude":41.054483,"longitude":-74.431959,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ7","iata":"","local":"1NJ7","name":"Skytop Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Towaco","elevation_ft":850,"latitude":40.94729995727539,"longitude":-74.35430145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NJ9","iata":"","local":"1NJ9","name":"Air Tractor Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Sussex","elevation_ft":540,"latitude":41.29119873046875,"longitude":-74.5510025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NK1","iata":"","local":"1NK1","name":"Stone Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Stone Ridge","elevation_ft":285,"latitude":41.89059829711914,"longitude":-74.152099609375,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NK3","iata":"","local":"1NK3","name":"Troy Armory Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Troy","elevation_ft":188,"latitude":42.69060134887695,"longitude":-73.70369720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NK4","iata":"","local":"1NK4","name":"Wagstaff Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"West Islip","elevation_ft":11,"latitude":40.686798095703125,"longitude":-73.3042984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2ID6","iata":"","local":"2ID6","name":"Lemons Field","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Fruitland","elevation_ft":2280,"latitude":43.927336,"longitude":-116.946475,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NK8","iata":"","local":"1NK8","name":"Chenango Bridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Binghamton","elevation_ft":940,"latitude":42.19169998168945,"longitude":-75.84130096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":145,"surface":"T"},{"id":"18/36","length_ft":1700,"width_ft":145,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NK9","iata":"","local":"1NK9","name":"Huntington Emergency Helistop","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Huntington","elevation_ft":12,"latitude":40.88399887084961,"longitude":-73.42289733886719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NR1","iata":"","local":"1NR1","name":"Chowan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Edenton","elevation_ft":1636,"latitude":36.069093,"longitude":-76.611315,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NM0","iata":"","local":"1NM0","name":"Me-Own Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Silver City","elevation_ft":7554,"latitude":33.21200180053711,"longitude":-108.0260009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NK7","iata":"","local":"1NK7","name":"Boonville Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Boonville","elevation_ft":1200,"latitude":43.46670150756836,"longitude":-75.24960327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":90,"surface":"T"},{"id":"13/31","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NY1","iata":"","local":"1NY1","name":"Seatuck Cove Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Eastport","elevation_ft":8,"latitude":40.816772,"longitude":-72.730781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NY2","iata":"","local":"","name":"Kidder Field","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Pulaski","elevation_ft":360,"latitude":43.6167,"longitude":-76.162697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1NY3","iata":"","local":"1NY3","name":"Richland Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Richland","elevation_ft":560,"latitude":43.5667,"longitude":-76.032997,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MT6","iata":"","local":"3MT6","name":"Nistler Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":5035,"latitude":45.634272,"longitude":-111.11433,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77ID","iata":"","local":"77ID","name":"Ashley Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Meridian","elevation_ft":2713,"latitude":43.524278,"longitude":-116.406997,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OH0","iata":"","local":"1OH0","name":"Clinton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Wilmington","elevation_ft":1022,"latitude":39.44419860839844,"longitude":-83.84020233154297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99MT","iata":"","local":"99MT","name":"Fox Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Hamilton","elevation_ft":3750,"latitude":46.09749984741211,"longitude":-114.1780014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OH4","iata":"","local":"1OH4","name":"Richard E. Jacobs Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Avon","elevation_ft":632,"latitude":41.469964,"longitude":-81.9812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OH2","iata":"","local":"1OH2","name":"Dougherty Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bellevue","elevation_ft":807,"latitude":41.24399948120117,"longitude":-82.86630249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OA4","iata":"","local":"1OA4","name":"Kepes Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Springfield","elevation_ft":1080,"latitude":39.92359924316406,"longitude":-83.66169738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NR7","iata":"","local":"1NR7","name":"Boyd Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Henderson","elevation_ft":336,"latitude":36.274059,"longitude":-78.46862,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OH3","iata":"","local":"1OH3","name":"Mather Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Castalia","elevation_ft":640,"latitude":41.389198303222656,"longitude":-82.76270294189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NV1","iata":"","local":"1NV1","name":"Fallon Southwest Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Fallon","elevation_ft":3950,"latitude":39.41529846191406,"longitude":-118.83699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2650,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OH7","iata":"","local":"","name":"Derry Landing Strip","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Sonora","elevation_ft":905,"latitude":39.993999,"longitude":-81.863701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OI0","iata":"","local":"1OI0","name":"Manairco Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1265,"latitude":40.8047981262207,"longitude":-82.51129913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OI4","iata":"","local":"1OI4","name":"Som Jackson Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Moreland Hills","elevation_ft":1050,"latitude":41.44089889526367,"longitude":-81.44319915771484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OI7","iata":"","local":"","name":"Knight Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Norwalk","elevation_ft":925,"latitude":41.159077,"longitude":-82.569594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OK2","iata":"","local":"","name":"Wyatt Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Goldsby","elevation_ft":1163,"latitude":35.098701,"longitude":-97.469803,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OK4","iata":"","local":"1OK4","name":"McCurtain Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Idabel","elevation_ft":480,"latitude":33.883319,"longitude":-94.810602,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MT9","iata":"","local":"4MT9","name":"Boulanger Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Darby","elevation_ft":3891,"latitude":46.030276,"longitude":-114.184994,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2238,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK0","iata":"","local":"1OK0","name":"Neversweat Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bristow","elevation_ft":775,"latitude":35.894284,"longitude":-96.279826,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1968,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK1","iata":"","local":"1OK1","name":"Dave's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Kingfisher","elevation_ft":1160,"latitude":35.82500076293945,"longitude":-97.80590057373048,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK6","iata":"","local":"5OK9","name":"HSH Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Luther","elevation_ft":1020,"latitude":35.721944,"longitude":-97.204722,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK3","iata":"","local":"1OK3","name":"Wolfe Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bray","elevation_ft":1194,"latitude":34.5760993958,"longitude":-97.8141021729,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OH9","iata":"","local":"1OH9","name":"Lewis Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Peebles","elevation_ft":862,"latitude":38.93510055541992,"longitude":-83.39939880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OI6","iata":"","local":"1OI6","name":"Stone Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"New Lebanon","elevation_ft":978,"latitude":39.77009963989258,"longitude":-84.4166030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OR1","iata":"","local":"1OR1","name":"Chehalem Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Newberg","elevation_ft":900,"latitude":45.35540008544922,"longitude":-122.9459991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OR5","iata":"","local":"","name":"Reed Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Arlington","elevation_ft":1550,"latitude":45.4874,"longitude":-120.225998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2254,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1OR9","iata":"","local":"1OR9","name":"Willamette Falls Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon City","elevation_ft":275,"latitude":45.35760116577149,"longitude":-122.58599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"97OG","iata":"","local":"97OG","name":"Bybee Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Nyssa","elevation_ft":2150,"latitude":43.897934,"longitude":-116.990433,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PA1","iata":"","local":"1PA1","name":"401 City Avenue Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":234,"latitude":40.00960159301758,"longitude":-75.21379852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1PA2","iata":"","local":"1PA2","name":"St Christopher's Hospital For Children Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":163,"latitude":40.006884,"longitude":-75.12522,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":38,"surface":"-"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"99OR","iata":"","local":"99OR","name":"Lazy F Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Wallowa","elevation_ft":3710,"latitude":45.6506996155,"longitude":-117.669998169,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1885,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK9","iata":"","local":"1OK9","name":"Hankins Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Marietta","elevation_ft":843,"latitude":33.975101470947266,"longitude":-97.08920288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1100,"width_ft":50,"surface":"T"},{"id":"07/25","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OL2","iata":"","local":"1OL2","name":"Steciak Strip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Harrah","elevation_ft":1100,"latitude":35.48899841308594,"longitude":-97.19200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2375,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK8","iata":"","local":"1OK8","name":"5B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Edmond","elevation_ft":1085,"latitude":35.72980117797852,"longitude":-97.54139709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OR3","iata":"","local":"1OR3","name":"Sunset Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"North Plains","elevation_ft":207,"latitude":45.59149932861328,"longitude":-123.01000213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3050,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OR7","iata":"","local":"1OR7","name":"Skyhill Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon City","elevation_ft":735,"latitude":45.287899017333984,"longitude":-122.45600128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OR0","iata":"","local":"1OR0","name":"Sunnyhill Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"North Bend","elevation_ft":320,"latitude":43.48320007324219,"longitude":-124.2030029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PA7","iata":"","local":"1PA7","name":"Philmont Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Huntington Valley","elevation_ft":250,"latitude":40.124298095703125,"longitude":-75.03410339355469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1PN4","iata":"","local":"1PN4","name":"Fulton County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"McConnellsburg","elevation_ft":956,"latitude":39.938221,"longitude":-78.006937,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1PR3","iata":"","local":"1PR3","name":"San Patricio Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Guaynabo","elevation_ft":157,"latitude":18.406099319458008,"longitude":-66.10600280761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"9ID6","iata":"","local":"9ID6","name":"Mallard Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Elk City","elevation_ft":5200,"latitude":45.613302,"longitude":-115.324779,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PS1","iata":"","local":"1PS1","name":"Hermitage Central Fire Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hermitage","elevation_ft":1165,"latitude":41.2401008605957,"longitude":-80.46479797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1PS6","iata":"","local":"1PS6","name":"Frankford Hospital-Torresdale Division Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":99,"latitude":40.06959915161133,"longitude":-74.98210144042969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1PS8","iata":"","local":"1PS8","name":"Punxsutawney Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Punxsutawney","elevation_ft":1517,"latitude":40.96120071411133,"longitude":-79.00080108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID40","iata":"","local":"ID40","name":"Sunrise Skypark Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Marsing","elevation_ft":2240,"latitude":43.41780090332031,"longitude":-116.70600128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2892,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SC5","iata":"","local":"1SC5","name":"Bon Secours St Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":1182,"latitude":34.840079,"longitude":-82.422395,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1PA4","iata":"","local":"1PA4","name":"Wagner Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lewistown","elevation_ft":520,"latitude":40.55207,"longitude":-77.61139,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1885,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PN1","iata":"","local":"1PN1","name":"Napodano Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Transfer","elevation_ft":1060,"latitude":41.33420181274414,"longitude":-80.42060089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SC1","iata":"","local":"1SC1","name":"Lagniappe STOL Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Pelzer","elevation_ft":875,"latitude":34.653745,"longitude":-82.55498,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1329,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SC2","iata":"","local":"1SC2","name":"Gwinn Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Hopkins","elevation_ft":390,"latitude":33.933799743652344,"longitude":-80.79609680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9ID0","iata":"","local":"9ID0","name":"Jenkins Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Weiser","elevation_ft":2315,"latitude":44.300333,"longitude":-116.985722,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1358,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID74","iata":"","local":"ID74","name":"Sulphur Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cascade","elevation_ft":5835,"latitude":44.537881,"longitude":-115.367282,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3300,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID77","iata":"","local":"ID77","name":"Cuddy Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cambridge","elevation_ft":4580,"latitude":44.705299377441406,"longitude":-116.80699920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2450,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD7","iata":"","local":"1SD7","name":"Rosebud Comprehensive Health Care Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Rosebud","elevation_ft":2715,"latitude":43.25749969482422,"longitude":-100.8499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1SD9","iata":"","local":"1SD9","name":"Sanford Usd Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Sioux Falls","elevation_ft":1708,"latitude":43.5354995728,"longitude":-96.7442016602,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TA0","iata":"","local":"1TA0","name":"Fina Bayport Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Seabrook","elevation_ft":16,"latitude":29.611099243164062,"longitude":-95.010498046875,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TA1","iata":"","local":"","name":"TGP 32 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Jasper","elevation_ft":118,"latitude":30.9844,"longitude":-94.137703,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2556,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TA3","iata":"","local":"1TA3","name":"D W C Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Alvin","elevation_ft":39,"latitude":29.45359992980957,"longitude":-95.23629760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TA2","iata":"","local":"1TA2","name":"Vigo Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Tulia","elevation_ft":3383,"latitude":34.65010070800781,"longitude":-101.5,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TA4","iata":"","local":"1TA4","name":"Last Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":420,"latitude":31.4545,"longitude":-95.29652,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD4","iata":"","local":"1SD4","name":"Vig Limousin Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Faith","elevation_ft":2552,"latitude":44.86669921875,"longitude":-102.41699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD6","iata":"","local":"1SD6","name":"Bogner Number II Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Oelrichs","elevation_ft":3500,"latitude":43.110298,"longitude":-103.230003,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD0","iata":"","local":"1SD0","name":"Dorsey Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Glad Valley","elevation_ft":2350,"latitude":45.323001861572266,"longitude":-101.74199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TA9","iata":"","local":"1TA9","name":"Ktrk Tv Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":80,"latitude":29.725500106811523,"longitude":-95.42970275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TE2","iata":"","local":"","name":"Flying F Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Crosby","elevation_ft":65,"latitude":29.98647,"longitude":-95.016972,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TE6","iata":"","local":"","name":"Moore Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Wildorado","elevation_ft":3850,"latitude":35.118099,"longitude":-102.184998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID41","iata":"","local":"ID41","name":"Stibnite Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Yellow Pine","elevation_ft":6539,"latitude":44.899898529052734,"longitude":-115.33300018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2450,"width_ft":175,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID67","iata":"","local":"C53","name":"Lower Loon Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Challis","elevation_ft":4200,"latitude":44.808437,"longitude":-114.808824,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1024,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE8","iata":"","local":"1TE8","name":"Kahuna Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman","elevation_ft":702,"latitude":33.548876,"longitude":-96.55777,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1100,"width_ft":200,"surface":"T"},{"id":"17W/35W","length_ft":2500,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TA7","iata":"","local":"1TA7","name":"Thompson Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canton","elevation_ft":515,"latitude":32.61600112915039,"longitude":-95.86830139160156,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2500,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE0","iata":"","local":"1TE0","name":"Locker Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Muleshoe","elevation_ft":3802,"latitude":34.269500732421875,"longitude":-102.71700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TA8","iata":"","local":"1TA8","name":"Rio Pinto Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bracketville","elevation_ft":935,"latitude":29.237167,"longitude":-100.684083,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE4","iata":"","local":"1TE4","name":"Zuehl Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marion","elevation_ft":592,"latitude":29.495092,"longitude":-98.158787,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2963,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE5","iata":"","local":"1TE5","name":"Corpora Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hearne","elevation_ft":270,"latitude":30.81629943847656,"longitude":-96.6010971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE7","iata":"","local":"1TE7","name":"Ray Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":560,"latitude":29.116503,"longitude":-98.367035,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE1","iata":"","local":"1TE1","name":"Briscoes Catarina Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Catarina","elevation_ft":650,"latitude":28.25029945373535,"longitude":-99.81700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TN1","iata":"","local":"","name":"Clayton Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Louisville","elevation_ft":900,"latitude":35.864498,"longitude":-83.957397,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TN4","iata":"","local":"1TN4","name":"Methodist Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Dyersburg","elevation_ft":312,"latitude":36.049329,"longitude":-89.380215,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TN5","iata":"","local":"1TN5","name":"Maury Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Columbia","elevation_ft":651,"latitude":35.55619812011719,"longitude":-87.05390167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TN7","iata":"","local":"1TN7","name":"Brendle's Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Kingsport","elevation_ft":1210,"latitude":36.54790115356445,"longitude":-82.52239990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TN8","iata":"","local":"1TN8","name":"Ramada Helistop","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Kingsport","elevation_ft":1275,"latitude":36.56679916381836,"longitude":-82.5165023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID44","iata":"","local":"ID44","name":"Hidden Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cascade","elevation_ft":4845,"latitude":44.225297,"longitude":-116.179508,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TS4","iata":"","local":"1TS4","name":"Legacy Hangar Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":660,"latitude":33.068501,"longitude":-96.801399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TS5","iata":"","local":"1TS5","name":"Sugar Grove Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Stafford","elevation_ft":81,"latitude":29.643600463867188,"longitude":-95.5811004638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TN3","iata":"","local":"1TN3","name":"Wagner Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Belvidere","elevation_ft":975,"latitude":35.13970184326172,"longitude":-86.22219848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TS9","iata":"","local":"9S1","name":"Four Winds Airport / Cavanaugh Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Celina","elevation_ft":775,"latitude":33.368384,"longitude":-96.754639,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TS8","iata":"","local":"1TS8","name":"Landers Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Colorado City","elevation_ft":2275,"latitude":32.287982,"longitude":-100.717897,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TS1","iata":"","local":"1TS1","name":"Laas Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pattison","elevation_ft":165,"latitude":29.91270065307617,"longitude":-95.99410247802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TS6","iata":"","local":"1TS6","name":"Dentonio Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":825,"latitude":28.269399642944336,"longitude":-99.93450164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TT1","iata":"","local":"1TT1","name":"Washington County Air 1 Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Brenham","elevation_ft":280,"latitude":30.305419,"longitude":-96.205244,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TX0","iata":"","local":"","name":"Lytle Airpark","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lytle","elevation_ft":780,"latitude":29.253334,"longitude":-98.861115,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2040,"width_ft":186,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TX1","iata":"","local":"","name":"Yoakum Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Gustine","elevation_ft":1130,"latitude":31.8557,"longitude":-98.4142,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1TX4","iata":"","local":"","name":"Shoreline Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lago Vista","elevation_ft":900,"latitude":30.4286,"longitude":-97.970497,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID68","iata":"","local":"ID68","name":"Green Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Kuna","elevation_ft":2865,"latitude":43.48460006713867,"longitude":-116.45899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1VA2","iata":"","local":"1VA2","name":"Lewis Gale Clinic Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Salem","elevation_ft":1070,"latitude":37.263231,"longitude":-80.029439,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID79","iata":"","local":"ID79","name":"Sky Ranch South Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Nampa","elevation_ft":2750,"latitude":43.5083007812,"longitude":-116.667999268,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1VA4","iata":"","local":"1VA4","name":"Evergreen Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Marshall","elevation_ft":525,"latitude":38.93709945678711,"longitude":-77.81919860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1VA1","iata":"","local":"1VA1","name":"Micro Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Stuart","elevation_ft":2923,"latitude":36.735198974609375,"longitude":-80.44879913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5020,"width_ft":70,"surface":"A"},{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TX9","iata":"","local":"1TX9","name":"Hawk Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hawkins","elevation_ft":335,"latitude":32.63759994506836,"longitude":-95.16130065917967,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TX6","iata":"","local":"1TX6","name":"Muxworthy Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hamilton","elevation_ft":1210,"latitude":31.69849967956543,"longitude":-98.09639739990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":40,"surface":"A"},{"id":"12/30","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TX3","iata":"","local":"1TX3","name":"Beggs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Guthrie","elevation_ft":1870,"latitude":33.42509841918945,"longitude":-100.54199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TX5","iata":"","local":"1TX5","name":"Laney Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hale Center","elevation_ft":3483,"latitude":34.126017,"longitude":-101.908751,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID86","iata":"","local":"ID86","name":"Deadwood Dam Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cascade","elevation_ft":5489,"latitude":44.29779815673828,"longitude":-115.64099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WA0","iata":"","local":"1WA0","name":"Legacy Salmon Creek Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":195,"latitude":45.720119,"longitude":-122.649264,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WA1","iata":"","local":"1WA1","name":"Weber Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Redmond","elevation_ft":32,"latitude":47.64699935913086,"longitude":-122.08699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WA3","iata":"","local":"1WA3","name":"Calkins Equipment Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":10,"latitude":47.97949981689453,"longitude":-122.18599700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":130,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WA4","iata":"","local":"1WA4","name":"Providence Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":319,"latitude":47.975777,"longitude":-122.217264,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WA5","iata":"","local":"1WA5","name":"General Hospital of Everett Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":296,"latitude":47.999568,"longitude":-122.205965,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WA8","iata":"","local":"1WA8","name":"Madigan Army Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Joint Base Lewis-McChord","elevation_ft":300,"latitude":47.10981,"longitude":-122.55709,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WI2","iata":"","local":"","name":"Flying S Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Port Washington","elevation_ft":705,"latitude":43.365299,"longitude":-87.887001,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":8342,"width_ft":1500,"surface":"W"},{"id":"11W/29W","length_ft":7431,"width_ft":1500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1VT8","iata":"","local":"1VT8","name":"Mortimer Brown Landing","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Castleton","elevation_ft":900,"latitude":43.665221,"longitude":-73.166263,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1650,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WA6","iata":"","local":"1WA6","name":"Fall City Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Fall City","elevation_ft":140,"latitude":47.55950164794922,"longitude":-121.86399841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WA2","iata":"","local":"1WA2","name":"Pilot's Pastures Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Winlock","elevation_ft":450,"latitude":46.51919937133789,"longitude":-122.88999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":85,"surface":"T"},{"id":"16/34","length_ft":1800,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WI1","iata":"","local":"1WI1","name":"Williams Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Utica","elevation_ft":800,"latitude":43.935037,"longitude":-88.70433,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID76","iata":"","local":"C48","name":"Wilson Bar US Forest Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Dixie","elevation_ft":2250,"latitude":45.396994,"longitude":-115.485306,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2260,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WI4","iata":"","local":"1WI4","name":"Johnson Wax Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Racine","elevation_ft":640,"latitude":42.70840072631836,"longitude":-87.79170227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WI5","iata":"","local":"1WI5","name":"Beaver Dam Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Randolph","elevation_ft":871,"latitude":43.51499938964844,"longitude":-88.95259857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":10000,"width_ft":1000,"surface":"W"},{"id":"09W/27W","length_ft":5000,"width_ft":1000,"surface":"W"},{"id":"18W/36W","length_ft":5000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID88","iata":"","local":"ID88","name":"Tracy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Hill City","elevation_ft":5071,"latitude":43.286469,"longitude":-115.08073,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3300,"width_ft":110,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17SD","iata":"","local":"17SD","name":"Stone's Conservation Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Gary","elevation_ft":1687,"latitude":44.818642,"longitude":-96.564016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1115,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WN3","iata":"","local":"1WN3","name":"Danielson Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Star Prairie","elevation_ft":1000,"latitude":45.211399,"longitude":-92.534267,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WT6","iata":"","local":"1WT6","name":"Overlake Hospital EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bellevue","elevation_ft":165,"latitude":47.621667,"longitude":-122.187778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WV0","iata":"","local":"1WV0","name":"Potomac Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Keyser","elevation_ft":878,"latitude":39.4104,"longitude":-79.003233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1WI6","iata":"","local":"1WI6","name":"Aero Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Raymond Township","elevation_ft":825,"latitude":42.84030151367188,"longitude":-88.06400299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WI9","iata":"","local":"1WI9","name":"Blackhawk Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fort Atkinson","elevation_ft":800,"latitude":42.910672,"longitude":-88.8694,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1950,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WN0","iata":"","local":"1WN0","name":"Schmidt Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Northport","elevation_ft":1335,"latitude":48.933293,"longitude":-117.745845,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA3","iata":"","local":"1XA3","name":"Christus Spohn South Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":24,"latitude":27.684799194335938,"longitude":-97.377197265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID92","iata":"","local":"ID92","name":"Foster Field - Dzone Skydiving Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Star","elevation_ft":2550,"latitude":43.728802,"longitude":-116.523003,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OA5","iata":"","local":"8OA5","name":"Camp Crook Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Camp Crook","elevation_ft":3140,"latitude":45.55514,"longitude":-103.979931,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4000,"width_ft":36,"surface":"D"},{"id":"N/S","length_ft":3000,"width_ft":36,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD47","iata":"","local":"SD47","name":"Hunt Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Eagle Butte","elevation_ft":2440,"latitude":45.00279998779297,"longitude":-101.21299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA9","iata":"","local":"1XA9","name":"Life Flight North Fuel Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tomball","elevation_ft":122,"latitude":29.94389915466309,"longitude":-95.52940368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1XS0","iata":"","local":"","name":"Double U Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Spring Branch","elevation_ft":1170,"latitude":29.921638,"longitude":-98.481653,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1450,"width_ft":25,"surface":"T"},{"id":"17/35","length_ft":1800,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1XS3","iata":"","local":"1XS3","name":"John Peter Smith Health Network Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":756,"latitude":32.7275,"longitude":-97.326111,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1XA1","iata":"","local":"1XA1","name":"Sky Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bowie","elevation_ft":1070,"latitude":33.647701263427734,"longitude":-97.8290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XS2","iata":"","local":"1XS2","name":"Skye Dance Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Elgin","elevation_ft":532,"latitude":30.384228,"longitude":-97.426285,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2400,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA5","iata":"","local":"1XA5","name":"Flying Armadillo Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paige","elevation_ft":410,"latitude":30.135069,"longitude":-97.148581,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA7","iata":"","local":"1XA7","name":"Gloster Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sealy","elevation_ft":145,"latitude":29.733400344848636,"longitude":-96.05919647216795,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3292,"width_ft":70,"surface":"T"},{"id":"07/25","length_ft":3220,"width_ft":150,"surface":"T"},{"id":"09/27","length_ft":2152,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XS1","iata":"","local":"1XS1","name":"Dunham Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crosby","elevation_ft":60,"latitude":29.93829917907715,"longitude":-95.04660034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XS4","iata":"","local":"","name":"Barton Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Taylor","elevation_ft":530,"latitude":30.453501,"longitude":-97.255501,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2950,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1XS5","iata":"","local":"1XS5","name":"St. David's North Austin Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":720,"latitude":30.412915,"longitude":-97.704903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":95,"width_ft":95,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1XS6","iata":"","local":"1XS6","name":"Baylor Scott & White Medical Center Hillcrest Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":566,"latitude":31.489318,"longitude":-97.158455,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID93","iata":"","local":"I92","name":"Reed Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Yellow Pine","elevation_ft":4153,"latitude":44.894298553467,"longitude":-115.71299743652,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1272,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20AL","iata":"","local":"20AL","name":"Runkle Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Elba","elevation_ft":180,"latitude":31.33880043029785,"longitude":-86.0916976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20AZ","iata":"","local":"","name":"Ed's Field","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Picacho","elevation_ft":1644,"latitude":32.684378,"longitude":-111.50202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20CA","iata":"","local":"20CA","name":"Clayton Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Blythe","elevation_ft":261,"latitude":33.603665,"longitude":-114.644587,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":125,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20CO","iata":"","local":"20CO","name":"Lookout Center Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Golden","elevation_ft":5918,"latitude":39.73465,"longitude":-105.205024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20CT","iata":"","local":"","name":"Global Development Facility Heliport","category":"closed","iso_country":"US","iso_region":"US-CT","municipality":"New London","elevation_ft":17,"latitude":41.342318,"longitude":-72.093025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20FA","iata":"","local":"","name":"Golden Land Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":43,"latitude":27.3962,"longitude":-80.920601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"1XS8","iata":"","local":"1XS8","name":"Pinon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1640,"latitude":29.63383,"longitude":-100.375729,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20CL","iata":"","local":"20CL","name":"Mysterious Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pope Valley","elevation_ft":1410,"latitude":38.749298095703125,"longitude":-122.36699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3500,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20IL","iata":"","local":"20IL","name":"Palos Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Palos Heights","elevation_ft":717,"latitude":41.66913,"longitude":-87.812392,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20ID","iata":"","local":"20ID","name":"Harrington Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Idaho City","elevation_ft":4200,"latitude":43.720439,"longitude":-116.005667,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20KS","iata":"","local":"","name":"Airpark Estates Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Augusta","elevation_ft":1340,"latitude":37.675657,"longitude":-96.885781,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20LA","iata":"","local":"20LA","name":"Leonard J. Chabert Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Houma","elevation_ft":5,"latitude":29.569178,"longitude":-90.687503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20LL","iata":"","local":"20LL","name":"Abraham Lincoln Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Lincoln","elevation_ft":583,"latitude":40.153042,"longitude":-89.390726,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID95","iata":"","local":"ID95","name":"Summit Ridge Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Horseshoe Bend","elevation_ft":4180,"latitude":43.859219,"longitude":-116.239953,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20GA","iata":"","local":"20GA","name":"Earl L. Small Jr. Field/Stockmar Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Villa Rica","elevation_ft":1110,"latitude":33.7565002441,"longitude":-84.88469696039999,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":4500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20FD","iata":"","local":"20FD","name":"Pratt Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Greenville","elevation_ft":100,"latitude":30.425500869750977,"longitude":-83.57599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3070,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20FL","iata":"","local":"20FL","name":"Lake Suzy Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Port Charlotte","elevation_ft":25,"latitude":27.042600631713867,"longitude":-82.043701171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20KY","iata":"","local":"20KY","name":"Madi's Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Verona","elevation_ft":880,"latitude":38.815704,"longitude":-84.674006,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20IA","iata":"","local":"20IA","name":"Hobbes Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cumming","elevation_ft":850,"latitude":41.521576,"longitude":-93.801634,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1165,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":685,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20LS","iata":"","local":"LA15","name":"Clark Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Zachary","elevation_ft":62,"latitude":30.623949,"longitude":-91.032427,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20MA","iata":"","local":"20MA","name":"WCVB-TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Needham","elevation_ft":157,"latitude":42.304154,"longitude":-71.227058,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20MD","iata":"","local":"20MD","name":"Anne Arundel Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Annapolis","elevation_ft":170,"latitude":38.99052,"longitude":-76.534243,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20ME","iata":"","local":"20ME","name":"Jerry Douglass Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Lisbon","elevation_ft":252,"latitude":44.058333,"longitude":-70.098611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":22,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20MI","iata":"","local":"20MI","name":"Hawks Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Marine City","elevation_ft":613,"latitude":42.71206,"longitude":-82.588502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20NE","iata":"","local":"20NE","name":"Bryan Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Lincoln","elevation_ft":1186,"latitude":40.79610061645508,"longitude":-96.6521987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20NJ","iata":"","local":"20NJ","name":"Liberty National Golf Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Jersey City","elevation_ft":45,"latitude":40.698194,"longitude":-74.072417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20NR","iata":"","local":"20NR","name":"Atrium Health Waxhaw Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Waxhaw","elevation_ft":588,"latitude":34.963055,"longitude":-80.7635,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ID96","iata":"","local":"ID96","name":"Bear Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Donnelly","elevation_ft":4904,"latitude":44.78519821166992,"longitude":-116.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20OH","iata":"","local":"","name":"Kruggel Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Litchfield","elevation_ft":1055,"latitude":41.142984,"longitude":-82.02855,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1850,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20NC","iata":"","local":"20NC","name":"Mountain View Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Sherrills Ford","elevation_ft":1020,"latitude":35.59239959716797,"longitude":-81.05590057373047,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20MO","iata":"","local":"20MO","name":"Royal Wood Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kearney","elevation_ft":860,"latitude":39.35829925537109,"longitude":-94.31690216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20MT","iata":"","local":"20MT","name":"Prevost Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lambert","elevation_ft":2348,"latitude":47.691667,"longitude":-104.588056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2921,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20MS","iata":"","local":"20MS","name":"Dixon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Barlow","elevation_ft":280,"latitude":31.831118,"longitude":-90.654598,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20PA","iata":"","local":"","name":"Reichdrill Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Philipsburg","elevation_ft":1419,"latitude":40.903702,"longitude":-78.2295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20SC","iata":"","local":"","name":"O Neal Field","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Greer","elevation_ft":929,"latitude":35.006413,"longitude":-82.2682,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20TN","iata":"","local":"20TN","name":"Knox County Sheriffs Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":1100,"latitude":36.0886001587,"longitude":-83.84420013430001,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20TX","iata":"","local":"20TX","name":"Peterson Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrville","elevation_ft":1639,"latitude":30.043611,"longitude":-99.151111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20UT","iata":"","local":"20UT","name":"Mountain West Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele","elevation_ft":4729,"latitude":40.566001,"longitude":-112.296984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT42","iata":"","local":"MT42","name":"Hasskamp STOLport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Three Forks","elevation_ft":4052,"latitude":45.91049957275391,"longitude":-111.51399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1225,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD76","iata":"","local":"SD76","name":"Tennant Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Camp Crook","elevation_ft":3090,"latitude":45.82864,"longitude":-103.940593,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2100,"width_ft":30,"surface":"G"},{"id":"12/30","length_ft":1400,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20WA","iata":"","local":"","name":"Skatter Creek Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Rochester","elevation_ft":174,"latitude":46.824799,"longitude":-123.035004,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1135,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"20TA","iata":"","local":"20TA","name":"Mag Drop Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bells","elevation_ft":740,"latitude":33.559167,"longitude":-96.409444,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20OR","iata":"","local":"20OR","name":"Warner's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Redland","elevation_ft":325,"latitude":45.29725,"longitude":-122.47517,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20TS","iata":"","local":"20TS","name":"Bains Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bandera","elevation_ft":1420,"latitude":29.80990028381348,"longitude":-99.06809997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1900,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20SD","iata":"","local":"20SD","name":"Lutgen Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"White","elevation_ft":1764,"latitude":44.448888,"longitude":-96.505786,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1422,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20TT","iata":"","local":"20TT","name":"Gone With the Wind Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Liberty Hill","elevation_ft":1061,"latitude":30.753859,"longitude":-97.961767,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1340,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD33","iata":"","local":"SD33","name":"Sky Ranch for Boys Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Camp Crook","elevation_ft":3200,"latitude":45.479342,"longitude":-104.005512,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":50,"surface":"G"},{"id":"11/29","length_ft":4800,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20XA","iata":"","local":"20XA","name":"St Luke's Hospital at the Vintage Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":123,"latitude":29.990094,"longitude":-95.5681,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21AL","iata":"","local":"21AL","name":"Skelly Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Opp","elevation_ft":220,"latitude":31.28770065307617,"longitude":-86.13009643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2000,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":2000,"width_ft":50,"surface":"A"},{"id":"H3","length_ft":2000,"width_ft":50,"surface":"A"},{"id":"H4","length_ft":2000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21CA","iata":"","local":"21CA","name":"CRC-Huntington Beach Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":40,"latitude":33.683833,"longitude":-118.031778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21CL","iata":"","local":"21CL","name":"Sheriff's Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lancaster","elevation_ft":2367,"latitude":34.70000076293945,"longitude":-118.05899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":95,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21CN","iata":"","local":"21CN","name":"Vermont Corridor County Admin Emergency Helicopter Landing Facility","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":544,"latitude":34.064632,"longitude":-118.291104,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21CO","iata":"","local":"","name":"Lookout Center Parking Lot Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Golden","elevation_ft":5898,"latitude":39.734405,"longitude":-105.206001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21FA","iata":"","local":"","name":"Rockledge Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Rockledge","elevation_ft":27,"latitude":28.299086,"longitude":-80.720781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2010,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21AR","iata":"","local":"21AR","name":"Skarda/Tollville Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Hazen","elevation_ft":218,"latitude":34.71760177612305,"longitude":-91.53900146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21AZ","iata":"","local":"21AZ","name":"White Mountain Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Show Low","elevation_ft":6066,"latitude":34.350877,"longitude":-109.964046,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20XS","iata":"","local":"20XS","name":"Klutts Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Chisholm","elevation_ft":495,"latitude":32.83539962768555,"longitude":-96.37799835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21GA","iata":"","local":"21GA","name":"Piedmont Hospital-Newnan Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Newnan","elevation_ft":930,"latitude":33.3926010132,"longitude":-84.817199707,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21ID","iata":"","local":"","name":"Nordman / Phillabaum Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"UNKNOWN","elevation_ft":2440,"latitude":48.6314833787,"longitude":-116.871174574,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21IL","iata":"","local":"21IL","name":"Sarah Bush Lincoln Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Mattoon","elevation_ft":702,"latitude":39.48889923095703,"longitude":-88.27330017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21IN","iata":"","local":"","name":"Minneman Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Hartford City","elevation_ft":905,"latitude":40.4184,"longitude":-85.355499,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21JY","iata":"","local":"21JY","name":"Soaring Sun Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NJ","municipality":"Harvey Cedars","elevation_ft":0,"latitude":39.70000076293945,"longitude":-74.15280151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":4000,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21KS","iata":"","local":"21KS","name":"University of Kansas Health System St Francis Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":1114,"latitude":39.056592,"longitude":-95.695708,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21MI","iata":"","local":"21MI","name":"Adams Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Orchard Lake","elevation_ft":970,"latitude":42.571982,"longitude":-83.390558,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21MN","iata":"","local":"","name":"Amundson Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Orono/Lake Minnetonka","elevation_ft":935,"latitude":44.9291,"longitude":-93.617502,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":4970,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21MO","iata":"","local":"","name":"Martins Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Lawson","elevation_ft":995,"latitude":39.5014,"longitude":-94.177399,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21FL","iata":"","local":"21FL","name":"Kings Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clermont","elevation_ft":98,"latitude":28.50860023498535,"longitude":-81.80030059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2305,"width_ft":200,"surface":"T"},{"id":"15/33","length_ft":1828,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21LS","iata":"","local":"21LS","name":"Solitude Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":181,"latitude":30.870399475097656,"longitude":-91.43109893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21LA","iata":"","local":"21LA","name":"Southern Helicopters Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":28,"latitude":30.296899795532227,"longitude":-91.21499633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21NC","iata":"","local":"21NC","name":"Isbell Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Hertford","elevation_ft":12,"latitude":36.18669891357422,"longitude":-76.27940368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21NJ","iata":"","local":"","name":"Bergen County Police & Fire Academy Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Mahwah","elevation_ft":600,"latitude":41.056801,"longitude":-74.182602,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21NR","iata":"","local":"21NR","name":"Swan Beach Fire Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Corolla","elevation_ft":12,"latitude":36.435172,"longitude":-75.843211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21OH","iata":"","local":"21OH","name":"Lodi Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Lodi","elevation_ft":1130,"latitude":41.0359001159668,"longitude":-82.01429748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21PA","iata":"","local":"","name":"Ryon Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Pottsville","elevation_ft":1100,"latitude":40.6651,"longitude":-76.186095,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21OI","iata":"","local":"21OI","name":"Clearwater Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Batavia","elevation_ft":905,"latitude":39.128101,"longitude":-84.092697,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2650,"width_ft":30,"surface":"T"},{"id":"17/35","length_ft":1860,"width_ft":50,"surface":"T"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21MU","iata":"","local":"21MU","name":"The Peninsula Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Shell Knob","elevation_ft":1015,"latitude":36.56489944458008,"longitude":-93.50959777832033,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21MS","iata":"","local":"21MS","name":"Blythe Bayou Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Walls","elevation_ft":209,"latitude":34.912015,"longitude":-90.213564,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3230,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21ND","iata":"","local":"21ND","name":"Rosenau Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Upham","elevation_ft":1450,"latitude":48.58219909667969,"longitude":-100.8550033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21OG","iata":"","local":"21OG","name":"Ames Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jefferson","elevation_ft":720,"latitude":44.771806,"longitude":-122.970743,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21MT","iata":"","local":"21MT","name":"Harris Runway Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":4582,"latitude":45.747841,"longitude":-111.072664,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2050,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21PN","iata":"","local":"21PN","name":"Carlisle Regional Medical Center","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Carlisle","elevation_ft":1115,"latitude":40.183331,"longitude":-77.222808,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21TA","iata":"","local":"21TA","name":"Cypress Fairbanks Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":125,"latitude":29.928028,"longitude":-95.588944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21TS","iata":"","local":"21TS","name":"Baycoast Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":30,"latitude":29.747396,"longitude":-94.947011,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21TX","iata":"","local":"","name":"Shilling's Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Texarkana","elevation_ft":350,"latitude":33.499599,"longitude":-94.094398,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21WA","iata":"","local":"21WA","name":"St Joseph Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":313,"latitude":45.62480163574219,"longitude":-122.57599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21WI","iata":"","local":"21WI","name":"Hudson Hospital & Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Hudson","elevation_ft":858,"latitude":44.962399,"longitude":-92.717795,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":86,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22AK","iata":"","local":"","name":"Helmericks Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Deadhorse","elevation_ft":7,"latitude":70.428338,"longitude":-150.402896,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22AL","iata":"","local":"22AL","name":"Stinson Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/New Brockton","elevation_ft":379,"latitude":31.36079978942871,"longitude":-86.01370239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H6","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H7","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22AR","iata":"","local":"22AR","name":"Willow Creek Women's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Johnson","elevation_ft":1194,"latitude":36.1349983215332,"longitude":-94.185302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":70,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22AZ","iata":"","local":"22AZ","name":"Western Arizona Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Bullhead City","elevation_ft":925,"latitude":35.111356,"longitude":-114.554304,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":86,"width_ft":86,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"21XS","iata":"","local":"21XS","name":"Houston Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":48,"latitude":29.519727,"longitude":-95.27453,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22CA","iata":"","local":"22CA","name":"Commodore Center Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-CA","municipality":"Mill Valley","elevation_ft":0,"latitude":37.878893,"longitude":-122.512697,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":10000,"width_ft":2400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22CD","iata":"","local":"22CD","name":"Platte Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Brighton","elevation_ft":5115,"latitude":39.96603,"longitude":-104.76745,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22CN","iata":"","local":"22CN","name":"ABC-TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":422,"latitude":34.103466,"longitude":-118.279366,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22FD","iata":"","local":"22FD","name":"HCA Florida Northwest Rehabilitation Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Destin","elevation_ft":13,"latitude":30.393889,"longitude":-86.471389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22GE","iata":"","local":"22GE","name":"Hawks Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Ball Ground","elevation_ft":1121,"latitude":34.257778,"longitude":-84.274444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22HI","iata":"","local":"22HI","name":"Maui Memorial Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-HI","municipality":"Wailuku","elevation_ft":0,"latitude":20.885242,"longitude":-156.490352,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22IA","iata":"","local":"22IA","name":"Marengo Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Marengo","elevation_ft":739,"latitude":41.802079,"longitude":-92.072296,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22FA","iata":"","local":"22FA","name":"Hidden River Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":47,"latitude":27.3031005859375,"longitude":-82.27259826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2525,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22II","iata":"","local":"22II","name":"Lewis Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Mount Vernon","elevation_ft":370,"latitude":37.917185,"longitude":-87.761428,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22CO","iata":"","local":"22CO","name":"Flying E Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Brighton","elevation_ft":5100,"latitude":39.9580574036,"longitude":-104.485557556,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22CL","iata":"","local":"22CL","name":"Double Tree Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Marysville","elevation_ft":550,"latitude":39.29990005493164,"longitude":-121.35900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1600,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22IN","iata":"","local":"","name":"Mooney Field","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Auburn","elevation_ft":865,"latitude":41.3483,"longitude":-85.0075,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2477,"width_ft":77,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22KS","iata":"","local":"22KS","name":"St Francis Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1382,"latitude":37.70000076293945,"longitude":-97.33280181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22KY","iata":"","local":"22KY","name":"Churchill Downs Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":455,"latitude":38.20280075073242,"longitude":-85.76969909667969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":125,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22MA","iata":"","local":"22MA","name":"Poole's Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Rockport","elevation_ft":45,"latitude":42.63619995117188,"longitude":-70.61869812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA71","iata":"","local":"NA71","name":"M. Bodvig Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Tappen","elevation_ft":1750,"latitude":46.99580001831055,"longitude":-99.67120361328124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2640,"width_ft":40,"surface":"T"},{"id":"12/30","length_ft":2100,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22ME","iata":"","local":"22ME","name":"Bar Harbor Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Bar Harbor","elevation_ft":35,"latitude":44.381672,"longitude":-68.203942,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22MI","iata":"","local":"22MI","name":"Munson Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Traverse City","elevation_ft":629,"latitude":44.76060104370117,"longitude":-85.64399719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE81","iata":"","local":"NE81","name":"Huffy's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Spencer","elevation_ft":1690,"latitude":42.881487,"longitude":-98.655762,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2615,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22IL","iata":"","local":"22IL","name":"Heller Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Galena","elevation_ft":820,"latitude":42.412795,"longitude":-90.399606,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22MO","iata":"","local":"22MO","name":"Belly Acres Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mountain Grove","elevation_ft":1285,"latitude":37.26119995117188,"longitude":-92.3667984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22MT","iata":"","local":"22MT","name":"Wounded Buck Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2905,"latitude":48.128342,"longitude":-114.16975,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2596,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22LA","iata":"","local":"22LA","name":"WD Flyers Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Simmesport","elevation_ft":48,"latitude":30.997228,"longitude":-91.882277,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22LS","iata":"","local":"22LS","name":"Couvillion Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Arnaudville","elevation_ft":29,"latitude":30.39780044555664,"longitude":-91.9738998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22NA","iata":"","local":"22NA","name":"Davis Regional Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Statesville","elevation_ft":865,"latitude":35.818417,"longitude":-80.830417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22NE","iata":"","local":"","name":"Grone Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Davenport","elevation_ft":1643,"latitude":40.297001,"longitude":-97.798103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22NK","iata":"","local":"22NK","name":"Alstar North Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Dunkirk","elevation_ft":580,"latitude":42.4827995300293,"longitude":-79.3292007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22NR","iata":"","local":"","name":"Bully Field","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Burlington","elevation_ft":550,"latitude":36.153611,"longitude":-79.400556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22NV","iata":"","local":"22NV","name":"Humboldt General Hospital EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Winnemucca","elevation_ft":4336,"latitude":40.972073,"longitude":-117.728859,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22NY","iata":"","local":"22NY","name":"New York State Police Troop A Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Batavia","elevation_ft":903,"latitude":43.031349,"longitude":-78.186543,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22OH","iata":"","local":"22OH","name":"Galenstein Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Blue Ash","elevation_ft":825,"latitude":39.260101318359375,"longitude":-84.3644027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22PA","iata":"","local":"22PA","name":"Uniontown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Uniontown","elevation_ft":1115,"latitude":39.9009017944336,"longitude":-79.74479675292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22PN","iata":"","local":"22PN","name":"St. Joseph Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Reading","elevation_ft":326,"latitude":40.375833,"longitude":-75.979722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22OK","iata":"","local":"22OK","name":"Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Springer","elevation_ft":860,"latitude":34.315161,"longitude":-97.177492,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22OG","iata":"","local":"22OG","name":"Withrotor Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Lakeview","elevation_ft":4920,"latitude":42.27539825439453,"longitude":-120.3939971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1300,"width_ft":30,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22PS","iata":"","local":"22PS","name":"Montrose High School Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Montrose","elevation_ft":1740,"latitude":41.843419,"longitude":-75.842586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22SC","iata":"","local":"22SC","name":"Spartanburg Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Spartanburg","elevation_ft":800,"latitude":34.96780014038086,"longitude":-81.94110107421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22TA","iata":"","local":"","name":"Standard Industries Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":690,"latitude":29.341299,"longitude":-98.659697,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22TN","iata":"","local":"22TN","name":"Julkev Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Gallatin","elevation_ft":500,"latitude":36.38719940185547,"longitude":-86.56330108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22TS","iata":"","local":"22TS","name":"Gray Steel Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":100,"latitude":29.791041,"longitude":-95.438761,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22TX","iata":"","local":"22TX","name":"South Austin Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":687,"latitude":30.225399,"longitude":-97.774276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22VA","iata":"","local":"22VA","name":"Wythe County Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Wytheville","elevation_ft":2500,"latitude":36.95009994506836,"longitude":-81.08309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22VT","iata":"","local":"22VT","name":"Northeastern Vermont Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Johnsbury","elevation_ft":766,"latitude":44.446359,"longitude":-72.010503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22WI","iata":"","local":"22WI","name":"Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Oconto Falls","elevation_ft":720,"latitude":44.8650016784668,"longitude":-88.12840270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22WV","iata":"","local":"22WV","name":"Grafton City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Grafton","elevation_ft":1271,"latitude":39.34360122680664,"longitude":-80.0291976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD90","iata":"","local":"SD90","name":"Mitchell's Strip","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Spearfish","elevation_ft":3920,"latitude":44.467544,"longitude":-103.787042,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22WY","iata":"","local":"22WY","name":"Kissack/Reynolds Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Rozet","elevation_ft":4380,"latitude":44.338056,"longitude":-105.162117,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22XA","iata":"","local":"","name":"General Plumbing Contractors Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":80,"latitude":29.897,"longitude":-95.395167,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1922,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23AL","iata":"","local":"23AL","name":"Tabernacle Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Ozark","elevation_ft":470,"latitude":31.46500015258789,"longitude":-85.84629821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23CL","iata":"","local":"23CL","name":"Los Angeles County Men's Detention Center Main Jail Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":352,"latitude":34.06144,"longitude":-118.228068,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23CT","iata":"","local":"23CT","name":"Blanchette Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Burlington","elevation_ft":500,"latitude":41.7859001159668,"longitude":-72.9312973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD46","iata":"","local":"SD46","name":"Jensen Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Dell Rapids","elevation_ft":1520,"latitude":43.83330154418945,"longitude":-96.85030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23FA","iata":"","local":"23FA","name":"Doral Ocean Beach Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami Beach","elevation_ft":6,"latitude":25.82570075988769,"longitude":-80.12120056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23AR","iata":"","local":"23AR","name":"Classic Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":260,"latitude":35.82590103149414,"longitude":-90.54720306396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23AK","iata":"","local":"23AK","name":"Yuknis Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":340,"latitude":61.59410095214844,"longitude":-149.31100463867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23CO","iata":"","local":"23CO","name":"High Mesa Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rush","elevation_ft":6000,"latitude":38.84389877319336,"longitude":-103.98999786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23CD","iata":"","local":"23CD","name":"Aviation Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Burlington","elevation_ft":4210,"latitude":39.297425,"longitude":-102.321222,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22XS","iata":"","local":"22XS","name":"Longhorn Auxiliary Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Hood","elevation_ft":720,"latitude":31.373693,"longitude":-97.666654,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3488,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":138.55}],"has_metar":false,"public":true},{"icao":"23FD","iata":"","local":"","name":"Scott 2000 Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":27,"latitude":27.5473,"longitude":-80.662003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23GA","iata":"","local":"23GA","name":"Hartrampf Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Roswell","elevation_ft":1038,"latitude":33.989498138427734,"longitude":-84.33209991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23IA","iata":"","local":"23IA","name":"Shenandoah Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Shenandoah","elevation_ft":1039,"latitude":40.75279998779297,"longitude":-95.368896484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23IL","iata":"","local":"23IL","name":"Amita Health-Alexian Brothers Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Elk Grove Village","elevation_ft":707,"latitude":42.004744,"longitude":-88.017907,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23IN","iata":"","local":"23IN","name":"J W Riley Hospital For Children Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":787,"latitude":39.77690124511719,"longitude":-86.18060302734375,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23JY","iata":"","local":"23JY","name":"The Plant Place Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Clayton","elevation_ft":99,"latitude":39.657901763916,"longitude":-75.070098876953,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3250,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23FL","iata":"","local":"23FL","name":"Gyro Town Usa STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Wimauma","elevation_ft":65,"latitude":27.68440055847168,"longitude":-82.24420166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2188,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23KY","iata":"","local":"23KY","name":"Barnes Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Burna","elevation_ft":500,"latitude":37.23080062866211,"longitude":-88.318603515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23KS","iata":"","local":"5KS9","name":"Ney Ultralight Flightpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bonner Springs","elevation_ft":963,"latitude":39.070121,"longitude":-94.948987,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23IS","iata":"","local":"23IS","name":"Clark Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Plymouth","elevation_ft":570,"latitude":40.325682,"longitude":-90.827633,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23LA","iata":"","local":"23LA","name":"Warner-Thunder Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Covington","elevation_ft":185,"latitude":30.630199432373047,"longitude":-90.07949829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23LS","iata":"","local":"","name":"Midstream Cameron East Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":4,"latitude":29.808599,"longitude":-93.343597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23MA","iata":"","local":"23MA","name":"Westford Regency Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Westford","elevation_ft":255,"latitude":42.5630989074707,"longitude":-71.431396484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23MD","iata":"","local":"23MD","name":"Breezecroft Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MD","municipality":"Chestertown","elevation_ft":10,"latitude":39.25559997558594,"longitude":-76.20690155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":3000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23MI","iata":"","local":"","name":"Betsie River Airstrip","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Thompsonville","elevation_ft":825,"latitude":44.573601,"longitude":-85.889,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23MO","iata":"","local":"","name":"Oerke Enterprises Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Butler","elevation_ft":770,"latitude":38.218612,"longitude":-94.49645,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1350,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23NC","iata":"","local":"23NC","name":"Duplin General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Kenansville","elevation_ft":126,"latitude":34.964698791503906,"longitude":-77.96170043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23NE","iata":"","local":"","name":"Stromsburg Municipal Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Stromsburg","elevation_ft":1675,"latitude":41.124477,"longitude":-97.577512,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD44","iata":"","local":"SD44","name":"Cook Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Chamberlain","elevation_ft":1678,"latitude":43.783553,"longitude":-99.255295,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1300,"width_ft":90,"surface":"T"},{"id":"NW/SE","length_ft":2640,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23NH","iata":"","local":"23NH","name":"Windswept Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Windsor","elevation_ft":1289,"latitude":43.13029861,"longitude":-72.01499939,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23ND","iata":"","local":"23ND","name":"Minnkota Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Center","elevation_ft":2110,"latitude":47.08219909667969,"longitude":-101.26699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2417,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23MN","iata":"","local":"23MN","name":"High Grove Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Preston","elevation_ft":1240,"latitude":43.6411018371582,"longitude":-92.02210235595705,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23MS","iata":"","local":"23MS","name":"Smith Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Moss Point","elevation_ft":48,"latitude":30.677393,"longitude":-88.551247,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2575,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD03","iata":"","local":"SD03","name":"Calico Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Winfred","elevation_ft":1750,"latitude":44.05049896240234,"longitude":-97.33509826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23OH","iata":"","local":"","name":"Kettering-Samaritan Health Center Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Loudonville","elevation_ft":1100,"latitude":40.6445,"longitude":-82.228798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23OI","iata":"","local":"23OI","name":"Associated Enterprises Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Painesville","elevation_ft":664,"latitude":41.70669937133789,"longitude":-81.2748031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23OR","iata":"","local":"23OR","name":"Saxon's Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Springfield","elevation_ft":400,"latitude":44.04679870605469,"longitude":-122.9520034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD66","iata":"","local":"SD66","name":"Cooks Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Cottonwood","elevation_ft":2456,"latitude":43.97330093383789,"longitude":-101.9520034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4500,"width_ft":200,"surface":"T"},{"id":"NW/SE","length_ft":4500,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23PN","iata":"","local":"23PN","name":"Penn Highlands Clearfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Clearfield","elevation_ft":1160,"latitude":41.034006,"longitude":-78.450147,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23TE","iata":"","local":"23TE","name":"Texas Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sunnyvale","elevation_ft":492,"latitude":32.78,"longitude":-96.568056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23TN","iata":"","local":"23TN","name":"Copper Basin Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Copperhill","elevation_ft":1691,"latitude":35.027031,"longitude":-84.384986,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23NK","iata":"","local":"23NK","name":"Long Acre Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Macedon","elevation_ft":520,"latitude":43.11249923706055,"longitude":-77.3125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23NY","iata":"","local":"23NY","name":"Jolamtra Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Bath","elevation_ft":1700,"latitude":42.27980041503906,"longitude":-77.33999633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1900,"width_ft":100,"surface":"T"},{"id":"10/28","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23TA","iata":"","local":"23TA","name":"Rowland R Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Whitewright","elevation_ft":705,"latitude":33.487301,"longitude":-96.455803,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23TS","iata":"","local":"23TS","name":"Bertani Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1110,"latitude":29.422700881958008,"longitude":-100.73899841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3300,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23WA","iata":"","local":"23WA","name":"Bcag - Frederickson Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Puyallup","elevation_ft":416,"latitude":47.0825996399,"longitude":-122.347000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23WI","iata":"","local":"23WI","name":"Black River Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Black River Falls","elevation_ft":850,"latitude":44.30400085449219,"longitude":-90.85459899902344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD13","iata":"","local":"SD13","name":"Hofer Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Doland","elevation_ft":1368,"latitude":44.86660003662109,"longitude":-98.0719985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2528,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23WS","iata":"","local":"23WS","name":"Columbia St Mary's Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Milwaukee","elevation_ft":895,"latitude":43.06096,"longitude":-87.88053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23WY","iata":"","local":"23WY","name":"St John'S Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":6200,"latitude":43.48,"longitude":-110.761944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23XA","iata":"","local":"","name":"East Texas Medical Center Clarksville Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Clarksville","elevation_ft":413,"latitude":33.610983,"longitude":-95.099125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2417,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD27","iata":"","local":"SD27","name":"Black Hills Flyway Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hot Springs","elevation_ft":3997,"latitude":43.367481,"longitude":-103.551764,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2780,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24AL","iata":"","local":"24AL","name":"Toth Stagefield Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Dothan","elevation_ft":318,"latitude":31.228725,"longitude":-85.55917,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"23VG","iata":"","local":"23VG","name":"Murdock's Holly Bu Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Boydton","elevation_ft":465,"latitude":36.70970153808594,"longitude":-78.4281005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24AR","iata":"","local":"24AR","name":"Griffin Agricultural Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Lundell","elevation_ft":200,"latitude":34.201022,"longitude":-90.952267,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24AZ","iata":"","local":"24AZ","name":"Pleasant Valley Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Young","elevation_ft":5688,"latitude":34.15810012817383,"longitude":-110.93499755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3950,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23XS","iata":"","local":"23XS","name":"Shorthorn Auxiliary Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Hood","elevation_ft":720,"latitude":31.360727,"longitude":-97.672871,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24CA","iata":"","local":"24CA","name":"Mesa Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"La Cañada Flintridge","elevation_ft":1520,"latitude":34.2047,"longitude":-118.170998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24CD","iata":"","local":"24CD","name":"Michigan River Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Walden","elevation_ft":8620,"latitude":40.567914,"longitude":-106.060647,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24CO","iata":"","local":"24CO","name":"Ibm Building 910 Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Boulder","elevation_ft":5150,"latitude":40.06639862060547,"longitude":-105.20600128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD14","iata":"","local":"SD14","name":"Valburg Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Draper","elevation_ft":1688,"latitude":43.73329925537109,"longitude":-100.39800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24FA","iata":"","local":"","name":"Lake Weir Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Oklawaha","elevation_ft":56,"latitude":29.034401,"longitude":-81.9506,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24FD","iata":"","local":"","name":"Budd Darling Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Seville","elevation_ft":50,"latitude":29.3428,"longitude":-81.480902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24GA","iata":"","local":"24GA","name":"Caleb Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Snellville","elevation_ft":960,"latitude":33.78120040893555,"longitude":-84.01460266113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24II","iata":"","local":"24II","name":"Good Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Vincennes","elevation_ft":420,"latitude":38.67250061035156,"longitude":-87.54219818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24ID","iata":"","local":"24ID","name":"Flying Z Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Challis","elevation_ft":6223,"latitude":44.453611,"longitude":-113.661944,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2141,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24FL","iata":"","local":"24FL","name":"Garcon Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Milton","elevation_ft":16,"latitude":30.495574,"longitude":-87.086821,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24IN","iata":"","local":"24IN","name":"Kenstin Manor Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Helmsburg","elevation_ft":658,"latitude":39.262813,"longitude":-86.289003,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24CL","iata":"","local":"24CL","name":"Boswell Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Corcoran","elevation_ft":205,"latitude":36.088444,"longitude":-119.541392,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6815,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24IA","iata":"","local":"24IA","name":"Isley Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Falls","elevation_ft":982,"latitude":42.51580047607422,"longitude":-92.5197982788086,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24KS","iata":"","local":"","name":"Blocker Field","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Haven","elevation_ft":1523,"latitude":37.858299,"longitude":-97.817802,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1270,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24LS","iata":"","local":"24LS","name":"Midstream Cameron West Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":4,"latitude":29.799699783325195,"longitude":-93.34940338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24MA","iata":"","local":"24MA","name":"Barre-Bassett Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Barre","elevation_ft":900,"latitude":42.4359016418457,"longitude":-72.0967025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24MD","iata":"","local":"24MD","name":"Marriott Parking Garage Rooftop Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":100,"latitude":39.283199,"longitude":-76.601997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":112,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD30","iata":"","local":"SD30","name":"Selle Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Bonesteel","elevation_ft":1988,"latitude":43.071905,"longitude":-98.954982,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24MI","iata":"","local":"","name":"Johnson Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Alto","elevation_ft":810,"latitude":42.799999,"longitude":-85.370796,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24NH","iata":"","local":"24NH","name":"Wicks Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Westmoreland","elevation_ft":800,"latitude":42.943611,"longitude":-72.484444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24MT","iata":"","local":"24MT","name":"Haggerty Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":5170,"latitude":45.61940002441406,"longitude":-111.09200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24NC","iata":"","local":"24NC","name":"Mc Gee Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Monroe","elevation_ft":550,"latitude":35.1272010803,"longitude":-80.47499847410002,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24KY","iata":"","local":"24KY","name":"Williams Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Mortons Gap","elevation_ft":415,"latitude":37.21670150756836,"longitude":-87.43060302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24MO","iata":"","local":"24MO","name":"Mistwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Camdenton","elevation_ft":760,"latitude":38.132717,"longitude":-92.830718,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2830,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24LL","iata":"","local":"24LL","name":"Lambert Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pinckneyville","elevation_ft":510,"latitude":38.085932,"longitude":-89.460326,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD68","iata":"","local":"SD68","name":"Flying T Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hot Springs","elevation_ft":3675,"latitude":43.38470077514648,"longitude":-103.43099975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24NJ","iata":"","local":"24NJ","name":"Central Jersey Bank Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold","elevation_ft":100,"latitude":40.244598388672,"longitude":-74.284301757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1880,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24NY","iata":"","local":"","name":"Ely Air Park","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Bergen","elevation_ft":690,"latitude":43.0667,"longitude":-77.9589,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24OK","iata":"","local":"24OK","name":"SSM Health St Anthony Hospital-Shawnee Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Seminole","elevation_ft":964,"latitude":35.244862,"longitude":-96.697758,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24PN","iata":"","local":"24PN","name":"A.H. Butz Downtown Allentown Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":456,"latitude":40.601056,"longitude":-75.475083,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24TE","iata":"","local":"24TE","name":"Police Helicopter Patrol Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":63,"latitude":29.64859962463379,"longitude":-95.27410125732422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24TS","iata":"","local":"24TS","name":"Medical Center North Hills Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"North Richland Hills","elevation_ft":561,"latitude":32.826401,"longitude":-97.212797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD78","iata":"","local":"SD78","name":"Anderson Aerial Spraying Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Kennebec","elevation_ft":1750,"latitude":43.9015007019043,"longitude":-99.87889862060548,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24WA","iata":"","local":"24WA","name":"Othello Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Othello","elevation_ft":1038,"latitude":46.82609939575195,"longitude":-119.16899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"24OI","iata":"","local":"24OI","name":"Reeds Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"St Paris","elevation_ft":1200,"latitude":40.07780075073242,"longitude":-83.89720153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24SC","iata":"","local":"24SC","name":"The Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Summit","elevation_ft":580,"latitude":33.93579864501953,"longitude":-81.42970275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24TA","iata":"","local":"24TA","name":"Moore Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Centerville","elevation_ft":315,"latitude":31.21319961547852,"longitude":-95.82749938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25AA","iata":"","local":"25AA","name":"Skyflight Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":89,"latitude":64.928467,"longitude":-147.879778,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOKS","iata":"OKS","local":"OKS","name":"Garden County Airport/King Rhiley Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Oshkosh","elevation_ft":3394,"latitude":41.401001,"longitude":-102.355003,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":4699,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25AL","iata":"","local":"25AL","name":"Lucas Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Rucker/Goodman","elevation_ft":336,"latitude":31.269899368286133,"longitude":-86.04090118408203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H2","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H3","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H4","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H5","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H6","length_ft":1600,"width_ft":75,"surface":"A"},{"id":"H7","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25AR","iata":"","local":"","name":"Reeves Private Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Mount Pleasant","elevation_ft":600,"latitude":35.930599,"longitude":-91.746,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25FA","iata":"","local":"25FA","name":"Jackson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":53,"latitude":25.7929,"longitude":-80.204803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25FD","iata":"","local":"","name":"Sacred Heart Hospital of Pensacola Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Destin","elevation_ft":16,"latitude":30.384399,"longitude":-86.397697,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":2000,"width_ft":75,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CD7","iata":"","local":"0CD7","name":"Fox Hole Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Lafayette","elevation_ft":5135,"latitude":40.003917,"longitude":-105.07185,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":956,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25FL","iata":"","local":"25FL","name":"Connells Wahoo Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bushnell","elevation_ft":65,"latitude":28.631901,"longitude":-82.157799,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25CO","iata":"","local":"25CO","name":"Crystal Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Red Feather Lakes","elevation_ft":8440,"latitude":40.851600646972656,"longitude":-105.63300323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4225,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25CD","iata":"","local":"25CD","name":"Lux Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hartsel","elevation_ft":9300,"latitude":39.152333,"longitude":-105.720167,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2700,"width_ft":100,"surface":"D"},{"id":"12/30","length_ft":4700,"width_ft":100,"surface":"D"},{"id":"13/31","length_ft":1900,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25AZ","iata":"","local":"25AZ","name":"Mystery Well Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Portal","elevation_ft":4173,"latitude":31.809897,"longitude":-109.058619,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25CL","iata":"","local":"25CL","name":"Van Dyke Strip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pleasant Grove","elevation_ft":48,"latitude":38.867218,"longitude":-121.489429,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25GE","iata":"","local":"25GE","name":"Beaver Creek Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Carlton","elevation_ft":630,"latitude":33.9975,"longitude":-83.038889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25II","iata":"","local":"25II","name":"Gm Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Aboite","elevation_ft":837,"latitude":40.96620178222656,"longitude":-85.29080200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25IS","iata":"","local":"25IS","name":"Shag Bark Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chatham","elevation_ft":570,"latitude":39.70370101928711,"longitude":-89.7490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25JY","iata":"","local":"25JY","name":"Heli-Ray Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Waterford","elevation_ft":160,"latitude":39.72019958496094,"longitude":-74.84609985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"0CO1","iata":"","local":"0CO1","name":"Dave's Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Louisville","elevation_ft":5170,"latitude":40.0332984924,"longitude":-105.124000549,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25KY","iata":"","local":"25KY","name":"Western Baptist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Paducah","elevation_ft":341,"latitude":37.07509994506836,"longitude":-88.62560272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25LA","iata":"","local":"","name":"Era - Morgan City Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Amelia","elevation_ft":5,"latitude":29.6458,"longitude":-91.119301,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1099,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":1049,"width_ft":76,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25LL","iata":"","local":"","name":"Bradbury Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Piper City","elevation_ft":694,"latitude":40.752304,"longitude":-88.222802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25LS","iata":"","local":"25LS","name":"Rotorcraft Leasing Co Creole Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Creole","elevation_ft":8,"latitude":29.78529930114746,"longitude":-93.2144012451172,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25MA","iata":"","local":"25MA","name":"High School Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Holliston","elevation_ft":265,"latitude":42.20560073852539,"longitude":-71.44139862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25IL","iata":"","local":"25IL","name":"Holzwarth Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Virden","elevation_ft":680,"latitude":39.516421,"longitude":-89.869581,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25IA","iata":"","local":"25IA","name":"Virl B Deal Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"St. Ansgar","elevation_ft":1180,"latitude":43.395073,"longitude":-92.963744,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25IN","iata":"","local":"25IN","name":"Reid-Eash Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Howe","elevation_ft":879,"latitude":41.70280075073242,"longitude":-85.41940307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2635,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31CD","iata":"","local":"31CD","name":"Diamond Star Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Colorado City","elevation_ft":6010,"latitude":37.870856,"longitude":-104.789057,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25MI","iata":"","local":"","name":"Farver Field","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Caseville","elevation_ft":600,"latitude":43.927819,"longitude":-83.27453,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2480,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25MN","iata":"","local":"25MN","name":"Shirt Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Deerwood","elevation_ft":1272,"latitude":46.43059921264648,"longitude":-93.83309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":6200,"width_ft":570,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25MS","iata":"","local":"25MS","name":"Baptist Memorial Hospital-Golden Triangle Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Columbus","elevation_ft":179,"latitude":33.52450180053711,"longitude":-88.4281005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"09CO","iata":"","local":"09CO","name":"Cottonwood Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Rocky Ford","elevation_ft":4180,"latitude":38.055275,"longitude":-103.650769,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25NH","iata":"","local":"25NH","name":"Phantom Three Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Charlestown","elevation_ft":410,"latitude":43.317111,"longitude":-72.389722,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25NJ","iata":"","local":"","name":"Hercules Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Gibbstown","elevation_ft":16,"latitude":39.830399,"longitude":-75.276299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25NR","iata":"","local":"25NR","name":"New Hanover County Sheriff'S Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Castle Hayne","elevation_ft":35,"latitude":34.326346,"longitude":-77.896575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25NK","iata":"","local":"25NK","name":"Loucks Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Hammondsport","elevation_ft":1425,"latitude":42.43619918823242,"longitude":-77.1322021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25NC","iata":"","local":"25NC","name":"Smith Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Asheboro","elevation_ft":560,"latitude":35.632717,"longitude":-79.711768,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25MO","iata":"","local":"25MO","name":"Cook Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Carl Junction","elevation_ft":920,"latitude":37.18579864501953,"longitude":-94.55110168457033,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25ND","iata":"","local":"25ND","name":"Landeis Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mandan","elevation_ft":1853,"latitude":46.866254,"longitude":-100.986881,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1478,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25NM","iata":"","local":"25NM","name":"Dream Catcher Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Pie Town","elevation_ft":7253,"latitude":34.476944,"longitude":-108.031111,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4000,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25NY","iata":"","local":"25NY","name":"Carter's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Remsenburg","elevation_ft":5,"latitude":40.80009841918945,"longitude":-72.69950103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25OK","iata":"","local":"","name":"Fin & Feather Resort Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Gore","elevation_ft":900,"latitude":35.608398,"longitude":-95.050201,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3800,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25PA","iata":"","local":"25PA","name":"Jeannette Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Jeannette","elevation_ft":1200,"latitude":40.320301055908,"longitude":-79.611396789551,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25PN","iata":"","local":"25PN","name":"Nessmuk Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wellsboro","elevation_ft":3801,"latitude":41.723783,"longitude":-77.377636,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25PS","iata":"","local":"25PS","name":"Primrose Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Minersville","elevation_ft":953,"latitude":40.689242,"longitude":-76.279621,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25TE","iata":"","local":"","name":"Taylor's Air Park","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Joshua","elevation_ft":700,"latitude":32.45014,"longitude":-97.4002969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25TN","iata":"","local":"25TN","name":"Columbia River Park Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Mc Minnville","elevation_ft":957,"latitude":35.699108,"longitude":-85.742153,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25TT","iata":"","local":"25TT","name":"American Bio Source Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":899,"latitude":33.271024,"longitude":-97.617229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"25OH","iata":"","local":"25OH","name":"Hammond Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Louisville","elevation_ft":1050,"latitude":40.91310119628906,"longitude":-81.25980377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25SC","iata":"","local":"25SC","name":"Mountain Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Taylors","elevation_ft":980,"latitude":34.96095,"longitude":-82.337058,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1950,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25TA","iata":"","local":"25TA","name":"Ferris Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":35,"latitude":29.836599349975582,"longitude":-94.96739959716795,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3600,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25TS","iata":"","local":"25TS","name":"Miller Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dalhart","elevation_ft":3961,"latitude":36.094331,"longitude":-102.417469,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25WI","iata":"","local":"25WI","name":"Sacred Heart Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Eau Claire","elevation_ft":880,"latitude":44.794315,"longitude":-91.509467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26CL","iata":"","local":"","name":"Northrop Grumman Woodland Hills Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":875,"latitude":34.168598,"longitude":-118.595001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1784,"width_ft":22,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26CN","iata":"","local":"26CN","name":"SCE Vincent Substation Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Palmdale","elevation_ft":3244,"latitude":34.486768,"longitude":-118.115913,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26CO","iata":"","local":"","name":"Lockheed Martin Cmd & Cntrl Sys Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Colorado Springs","elevation_ft":6685,"latitude":38.983898,"longitude":-104.801003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26FA","iata":"","local":"","name":"Princeton Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":91,"latitude":28.5683,"longitude":-81.433998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26AR","iata":"","local":"26AR","name":"Fly \"N\" K Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Searcy","elevation_ft":400,"latitude":35.2154998779,"longitude":-91.807800293,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3009,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25WN","iata":"","local":"25WN","name":"Little Plum Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Pepin","elevation_ft":12,"latitude":44.528718,"longitude":-92.120341,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25WA","iata":"","local":"25WA","name":"Hart Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tonasket","elevation_ft":2608,"latitude":48.576394,"longitude":-119.064524,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26AZ","iata":"","local":"26AZ","name":"Flying Dare's Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Aguila","elevation_ft":2192,"latitude":34.012001037597656,"longitude":-113.2030029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25XS","iata":"","local":"25XS","name":"Moonbow Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waxahachie","elevation_ft":650,"latitude":32.4865,"longitude":-96.846397,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2035,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25XA","iata":"","local":"25XA","name":"Headwaters Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stonewall","elevation_ft":1974,"latitude":30.092863,"longitude":-98.701258,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4400,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26CA","iata":"","local":"26CA","name":"Boeckmann Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Wilton","elevation_ft":100,"latitude":38.42689895629883,"longitude":-121.1719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26FL","iata":"","local":"26FL","name":"HCA Florida Raulerson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":34,"latitude":27.259106,"longitude":-80.829104,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26IN","iata":"","local":"","name":"Willcox Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Knightstown","elevation_ft":990,"latitude":39.823399,"longitude":-85.591904,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2617,"width_ft":53,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26JY","iata":"","local":"26JY","name":"Binder Winslow Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Winslow","elevation_ft":150,"latitude":39.738444,"longitude":-74.910556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26KS","iata":"","local":"26KS","name":"St Lukes Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Wellington","elevation_ft":1236,"latitude":37.27840042114258,"longitude":-97.3936996459961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26KY","iata":"","local":"26KY","name":"University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":465,"latitude":38.24760055541992,"longitude":-85.74330139160156,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26LA","iata":"","local":"26LA","name":"Heli-Air Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Broussard","elevation_ft":40,"latitude":30.1466999054,"longitude":-91.9441986084,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO22","iata":"","local":"CO22","name":"Hildebrandt Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Bethune","elevation_ft":4300,"latitude":39.279623,"longitude":-102.47474,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":75,"surface":"G"},{"id":"10/28","length_ft":1800,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26MD","iata":"","local":"26MD","name":"CMTI Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":3,"latitude":39.259539,"longitude":-76.566258,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26FD","iata":"","local":"26FD","name":"Hennessy Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Arcadia","elevation_ft":50,"latitude":27.05120086669922,"longitude":-81.84809875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2029,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26IS","iata":"","local":"26IS","name":"Ficklin-Airtech Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Fairbury","elevation_ft":672,"latitude":40.766700744628906,"longitude":-88.50559997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26MN","iata":"","local":"26MN","name":"Christianson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Halstad","elevation_ft":874,"latitude":47.33000183105469,"longitude":-96.78369903564452,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26ID","iata":"","local":"26ID","name":"Moose Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sandpoint","elevation_ft":2081,"latitude":48.363889,"longitude":-116.403611,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":750,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26MI","iata":"","local":"26MI","name":"Van Strien Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lowell","elevation_ft":624,"latitude":42.923901,"longitude":-85.378098,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM10","iata":"","local":"NM10","name":"Tequesquite Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Albert","elevation_ft":4500,"latitude":35.87919998168945,"longitude":-103.81300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":30,"surface":"T"},{"id":"13/31","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26NH","iata":"","local":"26NH","name":"Phantom Two Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Lebanon","elevation_ft":1275,"latitude":43.667833,"longitude":-72.202722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26NJ","iata":"","local":"26NJ","name":"Cape Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Cape May Court House","elevation_ft":53,"latitude":39.087761,"longitude":-74.816701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26NY","iata":"","local":"26NY","name":"Vamc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Northport","elevation_ft":100,"latitude":40.92509841918945,"longitude":-73.30619812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26OH","iata":"","local":"","name":"Hitz Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Louisville","elevation_ft":1180,"latitude":40.875301,"longitude":-81.295097,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1880,"width_ft":72,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO52","iata":"","local":"CO52","name":"Marshdale STOLport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Evergreen","elevation_ft":7700,"latitude":39.58330154418945,"longitude":-105.3030014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":850,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26PA","iata":"","local":"","name":"Pennys Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Fleetwood","elevation_ft":710,"latitude":40.4398,"longitude":-75.837097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26SD","iata":"","local":"26SD","name":"Shooting Star Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Radip City","elevation_ft":3902,"latitude":44.02750015258789,"longitude":-103.28700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26TA","iata":"","local":"26TA","name":"Red Barn Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":35,"latitude":29.803300857543945,"longitude":-95.00379943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26TE","iata":"","local":"26TE","name":"Parkview Center Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":86,"latitude":29.86829948425293,"longitude":-95.40850067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26MT","iata":"","local":"26MT","name":"Hutchinson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Hingham","elevation_ft":2900,"latitude":48.83560180664063,"longitude":-110.44200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1980,"width_ft":40,"surface":"T"},{"id":"16/34","length_ft":3400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26OG","iata":"","local":"26OG","name":"Oakridge Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Eagle Point","elevation_ft":1560,"latitude":42.463021,"longitude":-122.734744,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1275,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26NV","iata":"","local":"26NV","name":"Darrow Field","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Fallon","elevation_ft":3965,"latitude":39.4534262223,"longitude":-118.866330385,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2483,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26TN","iata":"","local":"26TN","name":"Tennova Newport Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Newport","elevation_ft":1138,"latitude":35.965233,"longitude":-83.183878,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26TS","iata":"","local":"26TS","name":"Memorial Hermann The Woodlands Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Shenandoah","elevation_ft":150,"latitude":30.174536,"longitude":-95.453192,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26VA","iata":"","local":"26VA","name":"Fairfax County Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Fairfax","elevation_ft":450,"latitude":38.85319900512695,"longitude":-77.37300109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26VT","iata":"","local":"26VT","name":"Brattleboro Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Brattleboro","elevation_ft":416,"latitude":42.843897,"longitude":-72.567033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"26WA","iata":"","local":"26WA","name":"Olympic Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":96,"latitude":48.115491,"longitude":-123.41327,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO54","iata":"","local":"CO54","name":"G W Flanders Ranch Strip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Falcon","elevation_ft":7260,"latitude":38.98329925537109,"longitude":-104.63400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26XA","iata":"","local":"26XA","name":"Solana North Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Westlake","elevation_ft":630,"latitude":32.984444,"longitude":-97.171667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27AK","iata":"","local":"","name":"Pad-66 Heliport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Kuparuk","elevation_ft":60,"latitude":70.343002,"longitude":-149.589008,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1700,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27AR","iata":"","local":"27AR","name":"Nw Medical of Benton Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Bentonville","elevation_ft":1277,"latitude":36.33890151977539,"longitude":-94.19000244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27AL","iata":"","local":"27AL","name":"Little Texas Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Tuskegee","elevation_ft":500,"latitude":32.45349884033203,"longitude":-85.55819702148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27AZ","iata":"","local":"27AZ","name":"Eagle Roost Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Aguila","elevation_ft":2206,"latitude":33.919276,"longitude":-113.167795,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3906,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26XS","iata":"","local":"26XS","name":"Tatum Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Blanco","elevation_ft":1420,"latitude":30.11409950256348,"longitude":-98.4614028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27CN","iata":"","local":"27CN","name":"SCE Pardee Substation Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Clarita","elevation_ft":1073,"latitude":34.439531,"longitude":-118.57928,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27FA","iata":"","local":"","name":"Orange County Sheriff's Office Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":98,"latitude":28.507493,"longitude":-81.413401,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":448,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27FD","iata":"","local":"27FD","name":"Coastal Helicopters Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":20,"latitude":30.270423,"longitude":-85.524241,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27FL","iata":"","local":"27FL","name":"AdventHealth Wesley Chapel Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Wesley Chapel","elevation_ft":60,"latitude":28.19471,"longitude":-82.350453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":61,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27II","iata":"","local":"27II","name":"Fort Benjamin Harrison Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":860,"latitude":39.8650016784668,"longitude":-85.997802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27IL","iata":"","local":"27IL","name":"Jersey Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Jerseyville","elevation_ft":630,"latitude":39.11000061035156,"longitude":-90.34369659423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27IN","iata":"","local":"27IN","name":"St Vincent Indianapolis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":833,"latitude":39.90800094604492,"longitude":-86.19349670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27JY","iata":"","local":"27JY","name":"Heaton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newton","elevation_ft":942,"latitude":41.126178,"longitude":-74.82275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27IS","iata":"","local":"27IS","name":"Gelfius International Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Dahlgren","elevation_ft":530,"latitude":38.14889907836914,"longitude":-88.67030334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27IA","iata":"","local":"27IA","name":"Oldfield Aero","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Keosauqua","elevation_ft":750,"latitude":40.75130081179999,"longitude":-92.0307006836,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27KS","iata":"","local":"27KS","name":"Bellamy Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Goodland","elevation_ft":3650,"latitude":39.13006,"longitude":-101.713829,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27CL","iata":"","local":"27CL","name":"Sopwith Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pleasant Grove","elevation_ft":20,"latitude":38.747100830078125,"longitude":-121.572998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27KY","iata":"","local":"","name":"Bogle Farm Heliport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Bowling Green","elevation_ft":550,"latitude":36.951099,"longitude":-86.508102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27LA","iata":"","local":"27LA","name":"Baton Rouge General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":93,"latitude":30.44879913330078,"longitude":-91.1531982421875,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV83","iata":"","local":"NV83","name":"Hadley Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Round Mountain","elevation_ft":5744,"latitude":38.694098,"longitude":-117.146752,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6776,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27LS","iata":"","local":"27LS","name":"La Dotd Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":65,"latitude":30.459199905395508,"longitude":-91.17639923095705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27MA","iata":"","local":"27MA","name":"Wamsetto Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"Berkley","elevation_ft":0,"latitude":41.82059860229492,"longitude":-71.11470031738281,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":3500,"width_ft":75,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27NC","iata":"","local":"27NC","name":"Brunswick Media Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Southport","elevation_ft":27,"latitude":33.95069885253906,"longitude":-78.02439880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27MN","iata":"","local":"27MN","name":"Lake Bronson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lake Bronson","elevation_ft":960,"latitude":48.73749923706055,"longitude":-96.65450286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2506,"width_ft":83,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27MI","iata":"","local":"27MI","name":"Miller Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Vassar","elevation_ft":705,"latitude":43.37279891967773,"longitude":-83.48660278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27MS","iata":"","local":"27MS","name":"Jolly Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Carthage","elevation_ft":386,"latitude":32.758235,"longitude":-89.408718,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2485,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27MO","iata":"","local":"27MO","name":"Route 66 Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Carthage","elevation_ft":1055,"latitude":37.19390106201172,"longitude":-94.22419738769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27MT","iata":"","local":"27MT","name":"Rahn Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":3090,"latitude":48.324413,"longitude":-114.326501,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27NE","iata":"","local":"27NE","name":"Hendricks Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grant","elevation_ft":3450,"latitude":40.722801208496094,"longitude":-101.7959976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27NH","iata":"","local":"27NH","name":"Phantom One Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hanover","elevation_ft":1315,"latitude":43.673972,"longitude":-72.206472,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27NJ","iata":"","local":"27NJ","name":"Sony Music Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Pitman","elevation_ft":125,"latitude":39.74819946289063,"longitude":-75.12799835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"01NV","iata":"","local":"01NV","name":"Lantana Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Yerington","elevation_ft":4600,"latitude":38.76390075683594,"longitude":-119.0270004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27NY","iata":"","local":"27NY","name":"Don's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Wallkill","elevation_ft":385,"latitude":41.622693,"longitude":-74.241485,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27PN","iata":"","local":"","name":"Shelley Private Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Richfield","elevation_ft":750,"latitude":40.681198,"longitude":-77.161903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27SC","iata":"","local":"27SC","name":"Upair Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Lugoff","elevation_ft":251,"latitude":34.229400634765625,"longitude":-80.68219757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27SD","iata":"","local":"27SD","name":"Albrecht Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"De Smet","elevation_ft":1722,"latitude":44.295501708984375,"longitude":-97.55259704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27TA","iata":"","local":"27TA","name":"Headwind Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tyler","elevation_ft":525,"latitude":32.343101501464844,"longitude":-95.19709777832033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27TE","iata":"","local":"27TE","name":"Hospitals of Providence East Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":4002,"latitude":31.791186,"longitude":-106.263621,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27TN","iata":"","local":"27TN","name":"Memphis Police Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":240,"latitude":35.2494010925293,"longitude":-90.01580047607422,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":74,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27TS","iata":"","local":"27TS","name":"Walden Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Wylie","elevation_ft":525,"latitude":33.0181999206543,"longitude":-96.50689697265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27OH","iata":"","local":"27OH","name":"Schaller Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Findlay","elevation_ft":830,"latitude":40.94670104980469,"longitude":-83.67990112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2580,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27OK","iata":"","local":"27OK","name":"Thomas Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ponca City","elevation_ft":1110,"latitude":36.7422981262207,"longitude":-96.96389770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2440,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27TX","iata":"","local":"","name":"Charter Bank Building Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":62,"latitude":29.741899,"longitude":-95.484703,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1194,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"27VA","iata":"","local":"27VA","name":"Prince William Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Manassas","elevation_ft":243,"latitude":38.76580047607422,"longitude":-77.48780059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO48","iata":"","local":"CO48","name":"Crop Air Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Eaton","elevation_ft":4800,"latitude":40.512201,"longitude":-104.651256,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28AL","iata":"","local":"","name":"Golden Pond Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Ashville","elevation_ft":540,"latitude":33.862597,"longitude":-86.120696,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28CN","iata":"","local":"28CN","name":"San Joaquin Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":465,"latitude":35.38359832763672,"longitude":-119.0199966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28CO","iata":"","local":"28CO","name":"Blm Fire Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4820,"latitude":39.117801666259766,"longitude":-108.53900146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28AR","iata":"","local":"28AR","name":"Henley Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Charlotte","elevation_ft":377,"latitude":35.83330154418945,"longitude":-91.43329620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27WI","iata":"","local":"27WI","name":"Tegeler Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Prescott","elevation_ft":950,"latitude":44.80770111083984,"longitude":-92.71379852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2506,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27WA","iata":"","local":"27WA","name":"J C's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Conway","elevation_ft":236,"latitude":48.32509994506836,"longitude":-122.31600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28AZ","iata":"","local":"28AZ","name":"Sampley's Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Aguila","elevation_ft":2208,"latitude":33.922798156738,"longitude":-113.18099975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3500,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27XS","iata":"","local":"27XS","name":"Sport Flyers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brookshire","elevation_ft":180,"latitude":29.837999,"longitude":-95.94981,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4091,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28CA","iata":"","local":"28CA","name":"Dos Palos Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Dos Palos","elevation_ft":118,"latitude":36.964044,"longitude":-120.62994,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2210,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28FA","iata":"","local":"28FA","name":"North Broward Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pompano Beach","elevation_ft":21,"latitude":26.278245,"longitude":-80.122025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28FD","iata":"","local":"28FD","name":"Jackson County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Marianna","elevation_ft":145,"latitude":30.787313,"longitude":-85.240914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28GA","iata":"","local":"","name":"Hancock Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Sparta","elevation_ft":542,"latitude":33.268551,"longitude":-82.972071,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO58","iata":"","local":"CO58","name":"Wings N Things Airpark & Museum Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Longmont","elevation_ft":5000,"latitude":40.105801,"longitude":-104.955002,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28IN","iata":"","local":"","name":"Marchino Field","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Vincennes","elevation_ft":540,"latitude":38.637798,"longitude":-87.4347,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28LA","iata":"","local":"28LA","name":"Washington Parish Fire Dist 7/OEP Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Bogalusa","elevation_ft":146,"latitude":30.7833003998,"longitude":-89.91670227050001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28LS","iata":"","local":"28LS","name":"Hargroder Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":120,"latitude":30.1692008972168,"longitude":-92.0625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28MD","iata":"","local":"28MD","name":"Fedex Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Landover","elevation_ft":190,"latitude":38.908774,"longitude":-76.866934,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28MN","iata":"","local":"28MN","name":"Vasa Park Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Spring Park","elevation_ft":930,"latitude":44.963600158691406,"longitude":-93.62249755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28MI","iata":"","local":"28MI","name":"Miller-Herrold Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Cedar","elevation_ft":624,"latitude":44.8744010925293,"longitude":-85.7926025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28FL","iata":"","local":"28FL","name":"Jim Finlay Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cresent City","elevation_ft":40,"latitude":29.4419002532959,"longitude":-81.58309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28KY","iata":"","local":"28KY","name":"Brandon Airdrome Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Murray","elevation_ft":525,"latitude":36.57590103149414,"longitude":-88.31340026855469,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28NH","iata":"","local":"28NH","name":"A and K Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"New Boston","elevation_ft":825,"latitude":42.9369010925293,"longitude":-71.66950225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28NK","iata":"","local":"28NK","name":"Ritchie Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Clayton","elevation_ft":385,"latitude":44.186789,"longitude":-76.075981,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"CO92","iata":"","local":"CO92","name":"Frasier Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Last Chance","elevation_ft":5000,"latitude":39.644451,"longitude":-103.641672,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28OI","iata":"","local":"28OI","name":"Mount Carmel East Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":843,"latitude":39.98059844970703,"longitude":-82.84159851074219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28PA","iata":"","local":"","name":"Yarrow Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Schwenksville","elevation_ft":330,"latitude":40.252198,"longitude":-75.444317,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1060,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28PN","iata":"","local":"28PN","name":"Harsco Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wormleysburg","elevation_ft":365,"latitude":40.25979995727539,"longitude":-76.90969848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28PR","iata":"","local":"28PR","name":"La Concepcion Hospital Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San German","elevation_ft":120,"latitude":18.108699798583984,"longitude":-67.03939819335938,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28OH","iata":"","local":"28OH","name":"Newbury Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lyons","elevation_ft":743,"latitude":41.703399658203125,"longitude":-84.00270080566406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28NR","iata":"","local":"28NR","name":"Dry Pond Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Rutherfordton","elevation_ft":1130,"latitude":35.3475,"longitude":-81.995001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28MO","iata":"","local":"28MO","name":"Pasley Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Roscoe","elevation_ft":790,"latitude":37.973899841308594,"longitude":-93.8188018798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28MT","iata":"","local":"28MT","name":"Cain Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lincoln","elevation_ft":4480,"latitude":46.952372,"longitude":-112.747078,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28OR","iata":"","local":"28OR","name":"Parrett Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Newberg","elevation_ft":790,"latitude":45.479000091552734,"longitude":-122.23400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28OK","iata":"","local":"28OK","name":"Pellar Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Union City","elevation_ft":1400,"latitude":35.511128,"longitude":-98.036757,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28TN","iata":"","local":"28TN","name":"Bhm East Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":261,"latitude":35.12670135498047,"longitude":-89.86190032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28TS","iata":"","local":"","name":"Boe-Wrinkle Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Azle","elevation_ft":802,"latitude":32.9048,"longitude":-97.595001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28VA","iata":"","local":"28VA","name":"Radford Aap Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Radford","elevation_ft":1710,"latitude":37.18479919433594,"longitude":-80.52559661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28VT","iata":"","local":"28VT","name":"Mount Ascutney Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Windsor","elevation_ft":532,"latitude":43.486825,"longitude":-72.403014,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM37","iata":"","local":"NM37","name":"Adobe Ranch Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Magdalena","elevation_ft":7354,"latitude":33.5765,"longitude":-107.900002,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3900,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28XA","iata":"","local":"28XA","name":"Doctors Hospital of Laredo Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Laredo","elevation_ft":540,"latitude":27.606691,"longitude":-99.479345,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"28WA","iata":"","local":"28WA","name":"Robert L Delanoy Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":30,"latitude":45.73040008544922,"longitude":-122.73500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28TE","iata":"","local":"28TE","name":"Midlake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Elmendorf","elevation_ft":535,"latitude":29.268299102783203,"longitude":-98.33699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28XS","iata":"","local":"28XS","name":"Flying G Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kaufman","elevation_ft":470,"latitude":32.645999908447266,"longitude":-96.32530212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28TT","iata":"","local":"28TT","name":"Left Wing Low Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bynum","elevation_ft":596,"latitude":31.995861,"longitude":-97.002169,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2058,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28TA","iata":"","local":"28TA","name":"Duval County Ranch Co Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Freer","elevation_ft":665,"latitude":27.83359909,"longitude":-98.71700287,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":10280,"width_ft":34,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29AK","iata":"","local":"29AK","name":"Remington Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1250,"latitude":64.046814,"longitude":-145.432667,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29AL","iata":"","local":"29AL","name":"Regional Medical Center of Central Alabama Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Greenville","elevation_ft":432,"latitude":31.829947,"longitude":-86.646403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29AR","iata":"","local":"29AR","name":"Unity Health White County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Searcy","elevation_ft":273,"latitude":35.252507,"longitude":-91.697333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29CA","iata":"","local":"29CA","name":"Landells Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Desert Hot Springs","elevation_ft":940,"latitude":33.25590133666992,"longitude":-116.4540023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29CL","iata":"","local":"29CL","name":"Childrens Hospital Los Angeles Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":500,"latitude":34.097338,"longitude":-118.291039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29CO","iata":"","local":"29CO","name":"St Mary's Hospital & Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4650,"latitude":39.089815,"longitude":-108.562855,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29FA","iata":"","local":"29FA","name":"Caloosa Downtown Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":2,"latitude":26.63500022888184,"longitude":-81.875,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":4000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29FD","iata":"","local":"29FD","name":"Gadsden Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Quincy","elevation_ft":230,"latitude":30.568119,"longitude":-84.548915,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29FL","iata":"","local":"29FL","name":"Halifax Hospital Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Daytona Beach","elevation_ft":46,"latitude":29.198539,"longitude":-81.053165,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"05CO","iata":"","local":"05CO","name":"Rancho de Aereo Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Mead","elevation_ft":4978,"latitude":40.214984,"longitude":-104.984423,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29IA","iata":"","local":"29IA","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Sidney","elevation_ft":1120,"latitude":40.75575,"longitude":-95.623455,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3049,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29AZ","iata":"","local":"29AZ","name":"Paloma Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Paloma","elevation_ft":737,"latitude":32.905602,"longitude":-112.900002,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5000,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":3000,"width_ft":150,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29CN","iata":"","local":"29CN","name":"Miller's Mother Lode Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Georgetown","elevation_ft":2400,"latitude":38.845032,"longitude":-120.831075,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29KY","iata":"","local":"","name":"Cramer Aerodrome","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Hopkinsville","elevation_ft":640,"latitude":36.893101,"longitude":-87.4272,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1882,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29LA","iata":"","local":"29LA","name":"Our Lady of the Lake Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":46,"latitude":30.404305,"longitude":-91.106018,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29LL","iata":"","local":"29LL","name":"Monroe County Ambulance Service Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Waterloo","elevation_ft":630,"latitude":38.33919906616211,"longitude":-90.1624984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29LS","iata":"","local":"29LS","name":"L Auberge du Lac Hotel Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":8,"latitude":30.207801,"longitude":-93.265298,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":4000,"width_ft":250,"surface":"W"},{"id":"16W/34W","length_ft":4000,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29MA","iata":"","local":"29MA","name":"Laminated Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Holyoke","elevation_ft":135,"latitude":42.20149993896485,"longitude":-72.59809875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29ME","iata":"","local":"29ME","name":"Teconnet Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"China","elevation_ft":194,"latitude":44.448,"longitude":-69.530333,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29NC","iata":"","local":"","name":"Self Field","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Shelby","elevation_ft":930,"latitude":35.311755,"longitude":-81.625296,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29NH","iata":"","local":"29NH","name":"Sunny Hill Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Lyndeborough","elevation_ft":822,"latitude":42.88840103149414,"longitude":-71.73780059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29MN","iata":"","local":"29MN","name":"Wetenkamp Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Tintah","elevation_ft":990,"latitude":46.02830123901367,"longitude":-96.36280059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29MT","iata":"","local":"29MT","name":"Craik Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Trout Creek","elevation_ft":2500,"latitude":47.738112,"longitude":-115.504332,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29IN","iata":"","local":"29IN","name":"Homestead Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Columbia City","elevation_ft":863,"latitude":41.07590103149414,"longitude":-85.38610076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1950,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29MI","iata":"","local":"29MI","name":"Sawyer Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mason","elevation_ft":910,"latitude":42.59999847412109,"longitude":-84.44999694824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29NJ","iata":"","local":"29NJ","name":"J L Gentile Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Buena","elevation_ft":110,"latitude":39.483979848,"longitude":-74.8808383942,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29NY","iata":"","local":"","name":"Breezy Meadows Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Cape Vincent","elevation_ft":296,"latitude":44.088,"longitude":-76.269167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX99","iata":"","local":"TX99","name":"Williams Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Goodland","elevation_ft":4085,"latitude":34.00680160522461,"longitude":-102.98699951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":125,"surface":"T"},{"id":"04/22","length_ft":3000,"width_ft":125,"surface":"T"},{"id":"08L/26R","length_ft":2800,"width_ft":125,"surface":"T"},{"id":"08R/26L","length_ft":2300,"width_ft":125,"surface":"T"},{"id":"13/31","length_ft":2200,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29OI","iata":"","local":"29OI","name":"Jtv Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Madison","elevation_ft":630,"latitude":41.81700134277344,"longitude":-81.06900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29OK","iata":"","local":"","name":"Ditch Witch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Perry","elevation_ft":1120,"latitude":36.300346,"longitude":-97.318526,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29OR","iata":"","local":"","name":"Smith Private Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Brooks","elevation_ft":180,"latitude":45.031465,"longitude":-122.956952,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1915,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29PA","iata":"","local":"","name":"Gardner Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Breinigsville","elevation_ft":500,"latitude":40.555847,"longitude":-75.645283,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29PN","iata":"","local":"29PN","name":"St Vincent Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Erie","elevation_ft":731,"latitude":42.11169815,"longitude":-80.08010101,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29RI","iata":"","local":"29RI","name":"Vaucluse Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Portsmouth","elevation_ft":40,"latitude":41.54219818115234,"longitude":-71.23609924316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29TA","iata":"","local":"","name":"Cactus Hill Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Wichita Falls","elevation_ft":1040,"latitude":33.873053,"longitude":-98.645906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29TE","iata":"","local":"","name":"Pearland Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Pearland","elevation_ft":51,"latitude":29.558599,"longitude":-95.2808,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29TN","iata":"","local":"29TN","name":"Erlanger Bledsoe Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Pikeville","elevation_ft":957,"latitude":35.620112,"longitude":-85.190772,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29SC","iata":"","local":"29SC","name":"Hannah Rhea Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Walterboro","elevation_ft":89,"latitude":32.90140151977539,"longitude":-80.85359954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29TS","iata":"","local":"29TS","name":"West Houston Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":81,"latitude":29.728542,"longitude":-95.594489,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29VT","iata":"","local":"29VT","name":"Middle Hero Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VT","municipality":"Grand Isle","elevation_ft":105,"latitude":44.756389,"longitude":-73.266667,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":10000,"width_ft":2000,"surface":"W"},{"id":"15W/33W","length_ft":10000,"width_ft":2000,"surface":"W"},{"id":"18/36","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29WA","iata":"","local":"29WA","name":"Crossings Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Tacoma","elevation_ft":384,"latitude":47.261713,"longitude":-122.432714,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29TX","iata":"","local":"29TX","name":"Lockett Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Vernon","elevation_ft":1282,"latitude":34.094807,"longitude":-99.365108,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29XA","iata":"","local":"29XA","name":"Ascension Seton Edgar B Davis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Luling","elevation_ft":395,"latitude":29.673223,"longitude":-97.653818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"29XS","iata":"","local":"29XS","name":"Temple Eastex Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Diboll","elevation_ft":240,"latitude":31.1830997467041,"longitude":-94.78060150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":118,"width_ft":103,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"93TE","iata":"","local":"93TE","name":"Mayhew Ranch Number 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":2783,"latitude":29.809601,"longitude":-102.907997,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4050,"width_ft":75,"surface":"D"},{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"D"},{"id":"18/36","length_ft":5200,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK3","iata":"","local":"2AK3","name":"Five Finger CG Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Five Finger","elevation_ft":48,"latitude":57.269843,"longitude":-133.630371,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AK4","iata":"","local":"2AK4","name":"Bootleggers Cove Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":45,"latitude":59.470001,"longitude":-151.51199,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK1","iata":"","local":"2AK1","name":"Blair Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fort Wainwright","elevation_ft":910,"latitude":64.363443,"longitude":-147.364855,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1555,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK2","iata":"","local":"2AK2","name":"Clear Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fort Wainwright","elevation_ft":660,"latitude":64.454293,"longitude":-147.56999,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3988,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS21","iata":"","local":"TS21","name":"Roy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justiceburg","elevation_ft":2366,"latitude":33.084833,"longitude":-101.114833,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TA3","iata":"","local":"2TA3","name":"Triangle Ranch Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Salt Flat","elevation_ft":4400,"latitude":31.718201,"longitude":-104.598,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2800,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":4000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE4","iata":"","local":"3TE4","name":"Hot Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Presidio","elevation_ft":3071,"latitude":30.008801,"longitude":-104.665001,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AL0","iata":"","local":"","name":"Paulling Place Airstrip","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Dayton","elevation_ft":275,"latitude":32.351799,"longitude":-87.545602,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AL2","iata":"","local":"2AL2","name":"Randolph County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Roanoke","elevation_ft":500,"latitude":33.15729904174805,"longitude":-85.38880157470703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AN2","iata":"","local":"2AN2","name":"Ak-Chin Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1073,"latitude":33.027294,"longitude":-112.085127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AL7","iata":"","local":"2AL7","name":"Mount Aero Lake Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Hanceville","elevation_ft":625,"latitude":34.062801361083984,"longitude":-86.72309875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AL1","iata":"","local":"2AL1","name":"Collier Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Magnolia Springs","elevation_ft":74,"latitude":30.42410087585449,"longitude":-87.77780151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AL8","iata":"","local":"2AL8","name":"Finkley Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Phenix City","elevation_ft":413,"latitude":32.42110061645508,"longitude":-85.24810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AL6","iata":"","local":"2AL6","name":"Dale O. Galer Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Irvington","elevation_ft":40,"latitude":30.491981,"longitude":-88.197307,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK5","iata":"","local":"2AK5","name":"Johnstone Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Hinchinbrook","elevation_ft":15,"latitude":60.4817008972,"longitude":-146.583999634,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR14","iata":"","local":"OR14","name":"Juntura Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Juntura","elevation_ft":3034,"latitude":43.737248,"longitude":-118.070458,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1830,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TE4","iata":"","local":"4TE4","name":"Taurus Mesa Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alpine","elevation_ft":3576,"latitude":29.62316,"longitude":-103.684646,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3200,"width_ft":75,"surface":"D"},{"id":"17L/35R","length_ft":3600,"width_ft":60,"surface":"D"},{"id":"17R/35L","length_ft":4900,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AR1","iata":"","local":"","name":"Seratt Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Rogers","elevation_ft":1305,"latitude":36.292099,"longitude":-94.095299,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2130,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AR3","iata":"","local":"2AR3","name":"Stone County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Mountain View","elevation_ft":765,"latitude":35.856201171875,"longitude":-92.08290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AR4","iata":"","local":"","name":"Jaynes Field","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Trumann","elevation_ft":212,"latitude":35.6707,"longitude":-90.527802,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AR8","iata":"","local":"","name":"L C Hickman Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Centerton","elevation_ft":1380,"latitude":36.352798,"longitude":-94.333097,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AR9","iata":"","local":"2AR9","name":"Island Health Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Holiday Island","elevation_ft":1547,"latitude":36.45500183105469,"longitude":-93.71939849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AZ0","iata":"","local":"","name":"Helicopter Transport Inc / Office Heliport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1160,"latitude":33.450001,"longitude":-111.980003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":197,"width_ft":110,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2AR2","iata":"","local":"2AR2","name":"Davidson Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Sage","elevation_ft":835,"latitude":36.01520156860352,"longitude":-91.79660034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AR5","iata":"","local":"2AR5","name":"Ashmore Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Centerton","elevation_ft":1362,"latitude":36.38309860229492,"longitude":-94.2938995361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AZ1","iata":"","local":"2AZ1","name":"Indian Hills Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Salome","elevation_ft":1866,"latitude":33.760346,"longitude":-113.614748,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AZ4","iata":"","local":"2AZ4","name":"Millar Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1215,"latitude":33.0536994934082,"longitude":-112.14600372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AR7","iata":"","local":"2AR7","name":"Head Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Prescott","elevation_ft":441,"latitude":33.849098205566406,"longitude":-93.4791030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":60,"surface":"T"},{"id":"18L/36R","length_ft":1000,"width_ft":60,"surface":"T"},{"id":"18R/36L","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CA0","iata":"","local":"2CA0","name":"Ash Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Three Rivers","elevation_ft":1820,"latitude":36.49580001831055,"longitude":-118.83399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"},{"id":"H2","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CA5","iata":"","local":"2CA5","name":"Platform Emmy Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Huntington Beach","elevation_ft":87,"latitude":33.66230010986328,"longitude":-118.04499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CA6","iata":"","local":"2CA6","name":"K & T 660 Figueroa Partners Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":629,"latitude":34.049393,"longitude":-118.259336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CD2","iata":"","local":"2CD2","name":"UCHealth Medical Center of the Rockies Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Loveland","elevation_ft":5010,"latitude":40.416182,"longitude":-104.99694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"},{"id":"H2","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"08ID","iata":"","local":"08ID","name":"Symms Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Marsing","elevation_ft":2680,"latitude":43.56930160522461,"longitude":-116.7770004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2500,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CD5","iata":"","local":"2CD5","name":"Elk Mountain Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Montrose","elevation_ft":8965,"latitude":38.253333,"longitude":-107.972222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":86,"width_ft":86,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CD6","iata":"","local":"2CD6","name":"Safer Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6510,"latitude":39.39485,"longitude":-104.547033,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CA2","iata":"","local":"2CA2","name":"Cones Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Twentynine Palms","elevation_ft":1800,"latitude":34.16279983520508,"longitude":-116.0479965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":100,"surface":"D"},{"id":"12/30","length_ft":1050,"width_ft":450,"surface":"D"},{"id":"17/35","length_ft":1300,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CA3","iata":"","local":"2CA3","name":"Crosswinds Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Twentynine Palms","elevation_ft":1835,"latitude":34.161001,"longitude":-115.995648,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":200,"surface":"D"},{"id":"18/36","length_ft":1400,"width_ft":200,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CD3","iata":"","local":"2CD3","name":"Bijou Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Peyton","elevation_ft":6600,"latitude":39.119472,"longitude":-104.431806,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2785,"width_ft":65,"surface":"T"},{"id":"18/36","length_ft":3980,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CD7","iata":"","local":"2CD7","name":"Turnberry Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Carbondale","elevation_ft":7100,"latitude":39.469083,"longitude":-107.135722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CD8","iata":"","local":"2CD8","name":"Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Aurora","elevation_ft":5557,"latitude":39.742381,"longitude":-104.835581,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CL0","iata":"","local":"2CL0","name":"Commerce Business Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"City of Commerce","elevation_ft":135,"latitude":33.987549,"longitude":-118.161483,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CL1","iata":"","local":"","name":"Canyon Creek Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Morgan Hill","elevation_ft":695,"latitude":37.108073,"longitude":-121.79835,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2326,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CL6","iata":"","local":"2CL6","name":"St John's Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Oxnard","elevation_ft":76,"latitude":34.216615,"longitude":-119.15733,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CL7","iata":"","local":"2CL7","name":"Glendale Plaza Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Glendale","elevation_ft":904,"latitude":34.155692,"longitude":-118.258515,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CL8","iata":"","local":"2CL8","name":"Inland Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Wildomar","elevation_ft":1327,"latitude":33.592553,"longitude":-117.237204,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CN2","iata":"","local":"2CN2","name":"Department of Water and Power Granada Hills Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":1124,"latitude":34.292348,"longitude":-118.474713,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR13","iata":"","local":"OR13","name":"Wiley Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Dayville","elevation_ft":4130,"latitude":44.502474,"longitude":-119.371133,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1650,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04ID","iata":"","local":"04ID","name":"Lanham Field","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Emmett","elevation_ft":2343,"latitude":43.877015,"longitude":-116.538365,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":25,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CN3","iata":"","local":"2CN3","name":"Tenaja Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Murrieta","elevation_ft":2350,"latitude":33.511111,"longitude":-117.328611,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CL9","iata":"","local":"2CL9","name":"Mustang Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Galt","elevation_ft":45,"latitude":38.33440017700195,"longitude":-121.3040008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CD9","iata":"","local":"2CD9","name":"Kellogg Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Laporte","elevation_ft":5180,"latitude":40.6814,"longitude":-105.13855,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":50,"surface":"T"},{"id":"08/26","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CN6","iata":"","local":"2CN6","name":"Department of Water & Power Los Angeles Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":654,"latitude":34.058055,"longitude":-118.24954,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":104,"width_ft":104,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CN7","iata":"","local":"2CN7","name":"Qualcomm Building N Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Diego","elevation_ft":486,"latitude":32.896236,"longitude":-117.196029,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"22OR","iata":"","local":"22OR","name":"Iron Crown Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Silverton","elevation_ft":790,"latitude":44.94179916381836,"longitude":-122.76300048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CO0","iata":"","local":"2CO0","name":"Heli-One American Support, LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Fort Collins","elevation_ft":4935,"latitude":40.583585,"longitude":-106.985331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO2","iata":"","local":"","name":"CMRS Airdrome","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Poncha Springs","elevation_ft":7872,"latitude":38.540298,"longitude":-106.105003,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO4","iata":"","local":"2CO4","name":"Presbyterian/St Luke's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Denver","elevation_ft":5291,"latitude":39.747752,"longitude":-104.967866,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO6","iata":"","local":"2CO6","name":"Manor House Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Littleton","elevation_ft":6220,"latitude":39.58689880371094,"longitude":-105.16899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO7","iata":"","local":"2CO7","name":"St Mary-Corwin Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":4817,"latitude":38.23360061645508,"longitude":-104.6230010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO8","iata":"","local":"2CO8","name":"East Morgan County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Brush","elevation_ft":4280,"latitude":40.25830078125,"longitude":-103.64900207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO9","iata":"","local":"2CO9","name":"Lands End Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Grand Junction","elevation_ft":4630,"latitude":39.072167,"longitude":-108.511167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2CO3","iata":"","local":"2CO3","name":"Jackrabbit Strip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Milliken","elevation_ft":5000,"latitude":40.375,"longitude":-104.8730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CO1","iata":"","local":"2CO1","name":"Cherokee Trail Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Peyton","elevation_ft":7240,"latitude":39.11050033569336,"longitude":-104.58399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA0","iata":"","local":"2FA0","name":"Kendall District Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":60,"latitude":25.69569969177246,"longitude":-80.38140106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FA3","iata":"","local":"","name":"Henderson Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Bokeelia","elevation_ft":8,"latitude":26.5187,"longitude":-82.1518,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FA8","iata":"","local":"2FA8","name":"Central Florida Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sanford","elevation_ft":17,"latitude":28.813459,"longitude":-81.283189,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2DE2","iata":"","local":"2DE2","name":"Willaview Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Farmington","elevation_ft":63,"latitude":38.85499954223633,"longitude":-75.57219696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FD0","iata":"","local":"2FD0","name":"Lazyboy Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Branford","elevation_ft":45,"latitude":29.9758,"longitude":-82.907303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3335,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA4","iata":"","local":"2FA4","name":"Southern Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clewiston","elevation_ft":18,"latitude":26.379499435424805,"longitude":-80.94560241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA9","iata":"","local":"2FA9","name":"Mount Olive Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lamont","elevation_ft":73,"latitude":30.336389,"longitude":-83.783611,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA2","iata":"","local":"2FA2","name":"Monroe Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Belleview","elevation_ft":75,"latitude":29.01889991760254,"longitude":-82.11370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA1","iata":"","local":"2FA1","name":"Squillacote Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ormond Beach","elevation_ft":40,"latitude":29.251264,"longitude":-81.200535,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1515,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA6","iata":"","local":"2FA6","name":"Freeflight International Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Coleman","elevation_ft":55,"latitude":28.81110000610352,"longitude":-82.06539916992188,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FD1","iata":"","local":"2FD1","name":"Hobby Hill STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Weirsdale","elevation_ft":95,"latitude":28.975500106811523,"longitude":-81.918701171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD3","iata":"","local":"2FD3","name":"Bayfront Medical Center Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"St Petersburg","elevation_ft":128,"latitude":27.763349,"longitude":-82.642279,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":28,"width_ft":28,"surface":"C"},{"id":"H2","length_ft":28,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD4","iata":"","local":"2FD4","name":"Port Everglades Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":25,"latitude":26.096200942993164,"longitude":-80.11370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD5","iata":"","local":"2FD5","name":"Adventure Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Marathon","elevation_ft":3,"latitude":24.73430061340332,"longitude":-81.0186996459961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD7","iata":"","local":"2FD7","name":"Air Orlando Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":120,"latitude":28.4356,"longitude":-81.473099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"},{"id":"H2","length_ft":28,"width_ft":28,"surface":"C"},{"id":"H3","length_ft":28,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD8","iata":"","local":"","name":"Lib Field","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Welaka","elevation_ft":50,"latitude":29.521099,"longitude":-81.632301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD9","iata":"","local":"2FD9","name":"AdventHealth DeLand Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"DeLand","elevation_ft":78,"latitude":29.044626,"longitude":-81.317844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":112,"width_ft":92,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FL1","iata":"","local":"2FL1","name":"Broward County Civic Arena Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sunrise","elevation_ft":10,"latitude":26.159400939941406,"longitude":-80.32559967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FL4","iata":"","local":"2FL4","name":"Brady Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Juna Beach","elevation_ft":4,"latitude":26.85580062866211,"longitude":-80.07469940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FD2","iata":"","local":"2FD2","name":"Marjorie Kennan Rawlings Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Island Grove","elevation_ft":78,"latitude":29.47929955,"longitude":-82.05329895,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FD6","iata":"","local":"2FD6","name":"Highlander Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Oak Hill","elevation_ft":15,"latitude":28.88800048828125,"longitude":-80.86640167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2875,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FL5","iata":"","local":"","name":"Brooksville International Airways, Inc. Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":95,"latitude":28.423901,"longitude":-81.459702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"},{"id":"H2","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FL7","iata":"","local":"2FL7","name":"Porta Target Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palm Bay","elevation_ft":28,"latitude":27.9242000579834,"longitude":-80.61370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":330,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2FL9","iata":"","local":"2FL9","name":"AdventHealth Heart of Florida Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Davenport","elevation_ft":166,"latitude":28.18145,"longitude":-81.64277,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GA3","iata":"","local":"","name":"Wrights Field","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Pinehurst","elevation_ft":383,"latitude":32.20582,"longitude":-83.786824,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GA4","iata":"","local":"","name":"Mack's Field","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Pinehurst","elevation_ft":400,"latitude":32.17129,"longitude":-83.755699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GA6","iata":"","local":"","name":"Catoosa Springs Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Ringgold","elevation_ft":930,"latitude":34.918479,"longitude":-85.052547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GA7","iata":"","local":"","name":"Morgan Falls Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Roswell","elevation_ft":998,"latitude":33.9659,"longitude":-84.362099,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GA1","iata":"","local":"2GA1","name":"Poole Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Oxford","elevation_ft":830,"latitude":33.68069839477539,"longitude":-83.85269927978516,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1400,"width_ft":80,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GA0","iata":"","local":"2GA0","name":"Kennedy Intranational Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Newborn","elevation_ft":695,"latitude":33.5265007019043,"longitude":-83.63800048828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3816,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FL8","iata":"","local":"2FL8","name":"Tiger Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"River Ranch","elevation_ft":54,"latitude":27.88360023498535,"longitude":-81.36309814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3150,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GA8","iata":"","local":"2GA8","name":"Shannon Flight Strip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Shannon","elevation_ft":677,"latitude":34.34980010986328,"longitude":-85.07689666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GE1","iata":"","local":"2GE1","name":"Burke County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Waynesboro","elevation_ft":264,"latitude":33.08440017700195,"longitude":-82.01309967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GE2","iata":"","local":"2GE2","name":"Atlanta Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":860,"latitude":33.762669,"longitude":-84.373932,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GE6","iata":"","local":"2GE6","name":"Virgil Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Albany","elevation_ft":300,"latitude":31.59530067443848,"longitude":-84.42279815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GE9","iata":"","local":"","name":"Tract Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Snellville","elevation_ft":1000,"latitude":33.897499,"longitude":-84.023903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA0","iata":"","local":"2IA0","name":"Genesis Medical Center East Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Davenport","elevation_ft":677,"latitude":41.54169845581055,"longitude":-90.55650329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA1","iata":"","local":"2IA1","name":"Finley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Dubuque","elevation_ft":900,"latitude":42.49580001831055,"longitude":-90.68489837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA2","iata":"","local":"2IA2","name":"MercyOne Elkader Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Elkader","elevation_ft":774,"latitude":42.860102,"longitude":-91.4151417,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA3","iata":"","local":"2IA3","name":"Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Mount Pleasant","elevation_ft":734,"latitude":40.96200180053711,"longitude":-91.55989837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA4","iata":"","local":"2IA4","name":"CMC at West Ninth Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Waterloo","elevation_ft":922,"latitude":42.461005,"longitude":-92.34468,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA5","iata":"","local":"2IA5","name":"Grape Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Hamburg","elevation_ft":961,"latitude":40.622501373291016,"longitude":-95.64969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2GA9","iata":"","local":"2GA9","name":"Lenora Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Snellville","elevation_ft":940,"latitude":33.80459976196289,"longitude":-83.99629974365234,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GE7","iata":"","local":"2GE7","name":"Petty Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Crandall","elevation_ft":760,"latitude":34.958099365234375,"longitude":-84.7791976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IA6","iata":"","local":"2IA6","name":"Stewart Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Lake City","elevation_ft":1243,"latitude":42.27000045776367,"longitude":-94.7335968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA7","iata":"","local":"","name":"Downtown Heliport","category":"closed","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Rapids","elevation_ft":724,"latitude":41.972801,"longitude":-91.669296,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1307,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IA8","iata":"","local":"2IA8","name":"Burgess Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Onawa","elevation_ft":1049,"latitude":42.0264015198,"longitude":-96.1063995361,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IG5","iata":"","local":"2IG5","name":"Heli-Bell Museum Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Mentone","elevation_ft":822,"latitude":41.171556,"longitude":-86.042816,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IG6","iata":"","local":"2IG6","name":"Indiana University Health Bloomington Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Bloomington","elevation_ft":800,"latitude":39.160646,"longitude":-86.541531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2II4","iata":"","local":"2II4","name":"Psi Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Plainfield","elevation_ft":780,"latitude":39.71120071411133,"longitude":-86.3855972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2ID2","iata":"","local":"2ID2","name":"Linda's Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Mackay","elevation_ft":6250,"latitude":43.95439910888672,"longitude":-113.64700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2II0","iata":"","local":"2II0","name":"Indian Hills Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Kokomo","elevation_ft":860,"latitude":40.417613,"longitude":-86.150215,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ID3","iata":"","local":"2ID3","name":"Josephine Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Murphy","elevation_ft":5100,"latitude":42.749198,"longitude":-116.674089,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2II3","iata":"","local":"2II3","name":"Stottlemyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Frankton","elevation_ft":865,"latitude":40.229283,"longitude":-85.816269,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ID5","iata":"","local":"2ID5","name":"Splan Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"McCall","elevation_ft":4987,"latitude":44.807467,"longitude":-116.049483,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1300,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2II5","iata":"","local":"2II5","name":"Burns International Harbor Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Portage","elevation_ft":596,"latitude":41.637001037597656,"longitude":-87.15229797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2II7","iata":"","local":"2II7","name":"K-9 Korner Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Ossian","elevation_ft":825,"latitude":40.89250183105469,"longitude":-85.20500183105469,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2II8","iata":"","local":"2II8","name":"West Central Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Clinton","elevation_ft":486,"latitude":39.65240097045898,"longitude":-87.39790344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2II9","iata":"","local":"2II9","name":"Rice Private Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Covington","elevation_ft":660,"latitude":40.15280151367188,"longitude":-87.30809783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IL4","iata":"","local":"","name":"Mountain Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Perry","elevation_ft":590,"latitude":39.779202,"longitude":-90.748596,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IL5","iata":"","local":"","name":"Sutton Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Omaha","elevation_ft":470,"latitude":37.9342,"longitude":-88.231697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IL6","iata":"","local":"","name":"Low and Slow Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Hardin","elevation_ft":455,"latitude":39.137501,"longitude":-90.629997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IL8","iata":"","local":"2IL8","name":"Illinois Department of Transportation Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Elgin","elevation_ft":730,"latitude":42.019938,"longitude":-88.281253,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IL7","iata":"","local":"2IL7","name":"Ben Emge Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Belleville","elevation_ft":555,"latitude":38.515301,"longitude":-90.027901,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IL2","iata":"","local":"2IL2","name":"Watters Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Dwight","elevation_ft":660,"latitude":41.05339813232422,"longitude":-88.46119689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2410,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2II6","iata":"","local":"2II6","name":"Baird-Wolford Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Tipton","elevation_ft":880,"latitude":40.264464,"longitude":-86.102536,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2085,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN7","iata":"","local":"2IN7","name":"Columbus Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Columbus","elevation_ft":632,"latitude":39.217263,"longitude":-85.893445,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IN8","iata":"","local":"2IN8","name":"Franciscan Health Crown Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Crown Point","elevation_ft":758,"latitude":41.393527,"longitude":-87.365448,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IS1","iata":"","local":"2IS1","name":"Proctor Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Peoria","elevation_ft":640,"latitude":40.75059890749999,"longitude":-89.5944976807,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":250,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2IS4","iata":"","local":"2IS4","name":"Ritter Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Illinois City","elevation_ft":552,"latitude":41.337831,"longitude":-91.013507,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IS9","iata":"","local":"2IS9","name":"Pontiac Flying/Cooksville Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lexington","elevation_ft":741,"latitude":40.578098,"longitude":-88.707802,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2415,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN3","iata":"","local":"2IN3","name":"Tatertown Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Medaryville","elevation_ft":700,"latitude":41.08480072021485,"longitude":-86.92420196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1980,"width_ft":62,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN6","iata":"","local":"2IN6","name":"Galloway Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Noblesville","elevation_ft":830,"latitude":40.041901,"longitude":-85.916901,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN9","iata":"","local":"2IN9","name":"Berry Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Whiteland","elevation_ft":795,"latitude":39.56669998168945,"longitude":-86.11810302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN2","iata":"","local":"2IN2","name":"Gerig's Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Roanoke","elevation_ft":850,"latitude":41.00920104980469,"longitude":-85.37139892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1760,"width_ft":65,"surface":"T"},{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN0","iata":"","local":"2IN0","name":"Skip's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Ossian","elevation_ft":858,"latitude":40.83689880371094,"longitude":-85.17109680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2050,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2JY3","iata":"","local":"2JY3","name":"Wm. B. Kessler Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hammonton","elevation_ft":71,"latitude":39.63140106201172,"longitude":-74.77279663085938,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2JY5","iata":"","local":"2JY5","name":"Jet Line South Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Cinnaminson","elevation_ft":45,"latitude":40.01580047607422,"longitude":-74.97579956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2JY6","iata":"","local":"2JY6","name":"The Ridge At Backbrook Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Ringoes","elevation_ft":170,"latitude":40.44125,"longitude":-74.828167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2JY9","iata":"","local":"2JY9","name":"Hargrove Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Camden","elevation_ft":23,"latitude":39.9463882446,"longitude":-75.10388946530001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2KS4","iata":"","local":"","name":"Dick Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Spivey","elevation_ft":1549,"latitude":37.446653,"longitude":-98.223196,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2KY0","iata":"","local":"2KY0","name":"Jane Todd Crawford Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Greensburg","elevation_ft":625,"latitude":37.24330139160156,"longitude":-85.49330139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2KY2","iata":"","local":"2KY2","name":"Livingston Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Salem","elevation_ft":420,"latitude":37.262994,"longitude":-88.227639,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2KS2","iata":"","local":"2KS2","name":"Stuber Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Severy","elevation_ft":1200,"latitude":37.65560150146485,"longitude":-96.29060363769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KS5","iata":"","local":"2KS5","name":"Plains Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Plains","elevation_ft":2762,"latitude":37.27090072631836,"longitude":-100.58799743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":150,"surface":"T"},{"id":"08/26","length_ft":2250,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KS6","iata":"","local":"2KS6","name":"Flying H Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Seneca","elevation_ft":1192,"latitude":39.750379,"longitude":-96.026783,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KY6","iata":"","local":"2KY6","name":"The Medical Center At Bowling Green Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Bowling Green","elevation_ft":494,"latitude":36.994456,"longitude":-86.42863,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2KY7","iata":"","local":"2KY7","name":"Taylor County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Campbellsville","elevation_ft":872,"latitude":37.367612,"longitude":-85.336491,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2KY9","iata":"","local":"2KY9","name":"Baptist Health La Grange Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"La Grange","elevation_ft":792,"latitude":38.39418,"longitude":-85.376865,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LA1","iata":"","local":"2LA1","name":"N.Freshwater Bayou Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Intracoastal City","elevation_ft":4,"latitude":29.68160057067871,"longitude":-92.26399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LA2","iata":"","local":"2LA2","name":"Iberia Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":15,"latitude":29.98969,"longitude":-91.784559,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":59,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LA7","iata":"","local":"2LA7","name":"Costello Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Oak Grove","elevation_ft":75,"latitude":32.965396,"longitude":-91.425966,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3293,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LA5","iata":"","local":"2LA5","name":"Reed Flying Service Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Iota","elevation_ft":35,"latitude":30.343299865722656,"longitude":-92.43209838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":130,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KY5","iata":"","local":"2KY5","name":"Womstead Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Olive Hill","elevation_ft":1050,"latitude":38.375,"longitude":-83.15470123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3060,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LA6","iata":"","local":"2LA6","name":"Howell 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Jackson","elevation_ft":180,"latitude":30.833499908447266,"longitude":-91.16680145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LA0","iata":"","local":"2LA0","name":"Central Industries Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Intracoastal City","elevation_ft":2,"latitude":29.787957,"longitude":-92.158728,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LA4","iata":"","local":"2LA4","name":"Bunkie Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bunkie","elevation_ft":65,"latitude":30.929100036621097,"longitude":-92.1792984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LA8","iata":"","local":"","name":"Transco Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Kaplan","elevation_ft":12,"latitude":29.983,"longitude":-92.281503,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LA9","iata":"","local":"2LA9","name":"Cow Island Trunkline Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Kaplan","elevation_ft":8,"latitude":29.885499954223636,"longitude":-92.27239990234376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LL0","iata":"","local":"2LL0","name":"Taylorville Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Taylorville","elevation_ft":620,"latitude":39.554444,"longitude":-89.294166,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LL3","iata":"","local":"","name":"Roy Burden Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Shirley","elevation_ft":730,"latitude":40.388901,"longitude":-89.069199,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1665,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LL6","iata":"","local":"2LL6","name":"Genesis Medical Center - Illini Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Silvis","elevation_ft":700,"latitude":41.4944992065,"longitude":-90.4181976318,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LL8","iata":"","local":"2LL8","name":"Washington County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Nashville","elevation_ft":700,"latitude":38.338726,"longitude":-89.392299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LS0","iata":"","local":"2LS0","name":"Air Logistics Galliano Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Galliano","elevation_ft":-2,"latitude":29.414441,"longitude":-90.29769,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2000,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MA2","iata":"","local":"2MA2","name":"Digital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Hudson","elevation_ft":450,"latitude":42.32649993896485,"longitude":-71.40950012207031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2LL7","iata":"","local":"2LL7","name":"Adams Restricted Landing Area Number 2","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pontiac","elevation_ft":630,"latitude":40.934816,"longitude":-88.740664,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2450,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LL1","iata":"","local":"2LL1","name":"Cwian Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sheridan","elevation_ft":550,"latitude":41.540247,"longitude":-88.68802,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2160,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LS3","iata":"","local":"2LS3","name":"Majors Airpark","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Melville","elevation_ft":34,"latitude":30.626092,"longitude":-91.768584,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MA3","iata":"","local":"2MA3","name":"Rider Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Ipswich","elevation_ft":40,"latitude":42.66429901123047,"longitude":-70.83979797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":460,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MA4","iata":"","local":"2MA4","name":"Compaq Littleton Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Littleton","elevation_ft":300,"latitude":42.54930114746094,"longitude":-71.47260284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":24,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MA5","iata":"","local":"2MA5","name":"Compaq Powdermill Road Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Maynard","elevation_ft":175,"latitude":42.42789840698242,"longitude":-71.45760345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MA7","iata":"","local":"2MA7","name":"Falls Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MA","municipality":"North Attleborough","elevation_ft":175,"latitude":41.95840072631836,"longitude":-71.32640075683594,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":3000,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MA8","iata":"","local":"2MA8","name":"Compaq Stow Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Stow","elevation_ft":250,"latitude":42.43090057373047,"longitude":-71.54170227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":15,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MA9","iata":"","local":"2MA9","name":"Digital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Tewksbury","elevation_ft":130,"latitude":42.63930130004883,"longitude":-71.22450256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MD2","iata":"","local":"2MD2","name":"Aerospace Tech Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Columbia","elevation_ft":415,"latitude":39.23649978637695,"longitude":-76.82610321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MD7","iata":"","local":"2MD7","name":"Maritime Institute Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Linthicum Heights","elevation_ft":170,"latitude":39.21120071411133,"longitude":-76.6718978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2ME2","iata":"","local":"2ME2","name":"North Haven Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"North Haven","elevation_ft":48,"latitude":44.129372,"longitude":-68.874339,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MI0","iata":"","local":"","name":"Woodside Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Chesaning","elevation_ft":615,"latitude":43.214626,"longitude":-84.045094,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MI1","iata":"","local":"2MI1","name":"Spectrum Health Blodgett Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":800,"latitude":42.953767,"longitude":-85.622509,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MI2","iata":"","local":"2MI2","name":"St. Mary Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Livonia","elevation_ft":665,"latitude":42.42779922485352,"longitude":-83.40409851074219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MI3","iata":"","local":"","name":"Larry D Boven Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":890,"latitude":42.3125,"longitude":-85.463682,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1854,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MI9","iata":"","local":"2MI9","name":"Capen Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mecosta","elevation_ft":1015,"latitude":43.62419891357422,"longitude":-85.31780242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":100,"surface":"T"},{"id":"N/S","length_ft":1450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN2","iata":"","local":"2MN2","name":"Dreamcatcher Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Jacobson","elevation_ft":1250,"latitude":46.94039916992188,"longitude":-93.2978973388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN1","iata":"","local":"2MN1","name":"Winter Strip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Gluek","elevation_ft":1040,"latitude":45.04610061645508,"longitude":-95.4645004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN0","iata":"","local":"2MN0","name":"Pribbs Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"East Grand Forks","elevation_ft":818,"latitude":48.08209991455078,"longitude":-97.01629638671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2200,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MI5","iata":"","local":"2MI5","name":"Somerville Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Ada","elevation_ft":660,"latitude":42.941727,"longitude":-85.485112,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3050,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN3","iata":"","local":"2MN3","name":"CCM Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Montevideo","elevation_ft":1024,"latitude":44.955137,"longitude":-95.711496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MN5","iata":"","local":"","name":"Pelican Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Orr","elevation_ft":1288,"latitude":48.057999,"longitude":-92.856003,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":5309,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MO3","iata":"","local":"2MO3","name":"Independence Regional Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Independence","elevation_ft":952,"latitude":39.09439849853516,"longitude":-94.4352035522461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MO6","iata":"","local":"","name":"Hunziker Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Hurdland","elevation_ft":890,"latitude":40.135064,"longitude":-92.297974,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1570,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MN9","iata":"","local":"2MN9","name":"F. Dillenburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Foley","elevation_ft":1295,"latitude":45.82440185546875,"longitude":-93.99530029296876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN4","iata":"","local":"2MN4","name":"Cornfield Canyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Blue Earth","elevation_ft":1132,"latitude":43.59845,"longitude":-94.2529,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MO1","iata":"","local":"2MO1","name":"Bird Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Willard","elevation_ft":1250,"latitude":37.31999969482422,"longitude":-93.4198989868164,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MO0","iata":"","local":"2MO0","name":"Fletcher Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Centerview","elevation_ft":805,"latitude":38.786659,"longitude":-93.86752,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1100,"width_ft":40,"surface":"T"},{"id":"13/31","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN8","iata":"","local":"2MN8","name":"Trygstad Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Rochester","elevation_ft":1227,"latitude":43.99610137939453,"longitude":-92.33570098876952,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN6","iata":"","local":"2MN6","name":"Van Norman's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"St Charles","elevation_ft":1100,"latitude":44.04719924926758,"longitude":-92.09290313720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MS2","iata":"","local":"","name":"TGP Station 54 Heliport","category":"closed","iso_country":"US","iso_region":"US-MS","municipality":"Greenville","elevation_ft":120,"latitude":33.357201,"longitude":-91.054701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MS3","iata":"","local":"","name":"TGP Station 542 Heliport","category":"closed","iso_country":"US","iso_region":"US-MS","municipality":"De Kalb","elevation_ft":305,"latitude":32.638901,"longitude":-88.660004,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1925,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MT5","iata":"","local":"2MT5","name":"Briar Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":5175,"latitude":45.59410095214844,"longitude":-111.1520004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MT3","iata":"","local":"2MT3","name":"Community Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Missoula","elevation_ft":3160,"latitude":46.86989974975586,"longitude":-113.99099731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MT4","iata":"","local":"2MT4","name":"River Bend Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Ferndale","elevation_ft":3010,"latitude":48.082801818847656,"longitude":-113.99600219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MT6","iata":"","local":"2MT6","name":"Sun River Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Augusta","elevation_ft":4450,"latitude":47.59999847412109,"longitude":-112.6719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MS9","iata":"","local":"2MS9","name":"Kimmel Land & Cattle Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Houston","elevation_ft":265,"latitude":33.83000183105469,"longitude":-88.92279815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MO7","iata":"","local":"2MO7","name":"Fawn Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Warrenton","elevation_ft":750,"latitude":38.873926,"longitude":-91.089879,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MT0","iata":"","local":"2MT0","name":"Bates Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":3110,"latitude":48.299972,"longitude":-114.414543,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MO9","iata":"","local":"2MO9","name":"Runway Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":929,"latitude":38.95000076293945,"longitude":-94.45020294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1320,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MT7","iata":"","local":"2MT7","name":"Barnaby Lake Medivac Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Fortine","elevation_ft":3034,"latitude":48.778194,"longitude":-114.968444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MU0","iata":"","local":"2MU0","name":"Sainte Genevieve County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Sainte Genevieve","elevation_ft":424,"latitude":37.968692,"longitude":-90.054243,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MU1","iata":"","local":"2MU1","name":"Saint Louis Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Saint Louis","elevation_ft":610,"latitude":38.6349983215332,"longitude":-90.26110076904295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MY3","iata":"","local":"2MY3","name":"Cambridge Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Cambridge","elevation_ft":980,"latitude":45.56545,"longitude":-93.231361,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NC2","iata":"","local":"2NC2","name":"Union Memorial Hospital Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Monroe","elevation_ft":600,"latitude":34.96770095825195,"longitude":-80.52369689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2MT9","iata":"","local":"2MT9","name":"Gold Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Drummond","elevation_ft":4956,"latitude":46.523083,"longitude":-112.9897,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NC1","iata":"","local":"2NC1","name":"Hawk's Knoll Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Waxhaw","elevation_ft":695,"latitude":34.997398376464844,"longitude":-80.8009033203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NC0","iata":"","local":"2NC0","name":"Mountain Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Burnsville","elevation_ft":4432,"latitude":35.86869812011719,"longitude":-82.341796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MY2","iata":"","local":"2MY2","name":"Zarn Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Amboy","elevation_ft":1050,"latitude":43.907417,"longitude":-94.274667,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1320,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NA0","iata":"","local":"2NA0","name":"Soderquist Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wilton","elevation_ft":1880,"latitude":47.25669860839844,"longitude":-100.7959976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1320,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MU9","iata":"","local":"2MU9","name":"Monroe Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hawk Point","elevation_ft":710,"latitude":38.965599060058594,"longitude":-91.11810302734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NC3","iata":"","local":"2NC3","name":"Sky-5 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Raleigh","elevation_ft":400,"latitude":35.779598236083984,"longitude":-78.67420196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NC5","iata":"","local":"2NC5","name":"Meridian Corporate Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":773,"latitude":35.23630142211914,"longitude":-80.93309783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":110,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NC9","iata":"","local":"2NC9","name":"Scotland Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Laurinburg","elevation_ft":214,"latitude":34.75320053100586,"longitude":-79.46839904785156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2ND4","iata":"","local":"2ND4","name":"Trinity Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Minot","elevation_ft":1692,"latitude":48.23199844360352,"longitude":-101.29199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NC6","iata":"","local":"2NC6","name":"Flying M Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lexington","elevation_ft":845,"latitude":35.799598693847656,"longitude":-80.39620208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1780,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NC4","iata":"","local":"2NC4","name":"Scottbrook Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Goldsboro","elevation_ft":160,"latitude":35.33789825439453,"longitude":-78.15470123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1350,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ND3","iata":"","local":"2ND3","name":"Casslindan Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grand Forks","elevation_ft":832,"latitude":48.000842,"longitude":-97.121934,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NC8","iata":"","local":"2NC8","name":"Goodnight's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kannapolis","elevation_ft":740,"latitude":35.52539825439453,"longitude":-80.63980102539062,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ND1","iata":"","local":"2ND1","name":"Westerlind Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mercer","elevation_ft":1910,"latitude":47.49250030517578,"longitude":-100.6999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ND0","iata":"","local":"2ND0","name":"Kraft Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mapleton","elevation_ft":910,"latitude":46.81439971923828,"longitude":-97.04979705810548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":3175,"width_ft":120,"surface":"T"},{"id":"17R/35L","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ND5","iata":"","local":"2ND5","name":"Cloud 9 Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Turtle Lake","elevation_ft":1904,"latitude":47.641991,"longitude":-100.821241,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2218,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NH1","iata":"","local":"2NH1","name":"Foote Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Merrimack","elevation_ft":235,"latitude":42.860257,"longitude":-71.487382,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NH2","iata":"","local":"2NH2","name":"Westport Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Litchfield","elevation_ft":205,"latitude":42.85490036010742,"longitude":-71.47370147705078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NH3","iata":"","local":"2NH3","name":"Scott Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Bow","elevation_ft":580,"latitude":43.11429977416992,"longitude":-71.49819946289062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NH4","iata":"","local":"2NH4","name":"Spear Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Plymouth","elevation_ft":977,"latitude":43.75749969482422,"longitude":-71.69560241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NH6","iata":"","local":"2NH6","name":"Speedway Northside Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Loudon","elevation_ft":560,"latitude":43.365773,"longitude":-71.455665,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NJ2","iata":"","local":"2NJ2","name":"Sportland Pier Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"North Wildwood","elevation_ft":10,"latitude":38.989628,"longitude":-74.800276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NE0","iata":"","local":"2NE0","name":"Johnson Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Elwood","elevation_ft":2625,"latitude":40.69670104980469,"longitude":-99.83429718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3030,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NH5","iata":"","local":"2NH5","name":"Pilgrim's Home Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Westmoreland","elevation_ft":600,"latitude":42.99029922485352,"longitude":-72.40170288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":800,"width_ft":30,"surface":"T"},{"id":"17/35","length_ft":1200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ND9","iata":"","local":"2ND9","name":"Brekhus Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Norma","elevation_ft":1850,"latitude":48.81669998168945,"longitude":-101.91699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":5280,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NE7","iata":"","local":"2NE7","name":"Kumor Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grant","elevation_ft":3520,"latitude":40.85139846801758,"longitude":-101.94300079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":100,"surface":"T"},{"id":"N/S","length_ft":3500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NE8","iata":"","local":"2NE8","name":"Walvoord Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hickman","elevation_ft":1370,"latitude":40.628703,"longitude":-96.562944,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NJ4","iata":"","local":"2NJ4","name":"Six Flags Great Adventure Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Jackson","elevation_ft":120,"latitude":40.14619827270508,"longitude":-74.43460083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":94,"width_ft":94,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NJ7","iata":"","local":"2NJ7","name":"Foley Machinery Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Piscataway","elevation_ft":200,"latitude":40.55009841918945,"longitude":-74.48770141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NJ9","iata":"","local":"2NJ9","name":"Bayonne Golf Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bayonne","elevation_ft":9,"latitude":40.66469955444336,"longitude":-74.09110260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NK2","iata":"","local":"2NK2","name":"Cove Neck Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Cove Neck","elevation_ft":10,"latitude":40.88370132446289,"longitude":-73.49120330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NK4","iata":"","local":"2NK4","name":"Wheelabrator Westchester Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Peekskill","elevation_ft":72,"latitude":41.27748,"longitude":-73.940418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NK5","iata":"","local":"","name":"NCH Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Alexandria Bay","elevation_ft":275,"latitude":44.301701,"longitude":-75.954903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NK6","iata":"","local":"2NK6","name":"Bertrand Chaffee Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Springville","elevation_ft":1420,"latitude":42.508399963378906,"longitude":-78.65809631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NK8","iata":"","local":"2NK8","name":"Landmark Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Whitestone","elevation_ft":80,"latitude":40.78200149536133,"longitude":-73.82569885253906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NJ5","iata":"","local":"2NJ5","name":"Sanduff Farms Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Phillipsburg","elevation_ft":350,"latitude":40.652002,"longitude":-75.185997,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NK9","iata":"","local":"2NK9","name":"Old Orchard Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Modena","elevation_ft":660,"latitude":41.65719985961914,"longitude":-74.07720184326172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NK3","iata":"","local":"2NK3","name":"Rose Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Orient","elevation_ft":20,"latitude":41.151686,"longitude":-72.266564,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1100,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NR4","iata":"","local":"2NR4","name":"Apex Healthplex Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Apex","elevation_ft":432,"latitude":35.747222,"longitude":-78.872222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NV3","iata":"","local":"2NV3","name":"Vista Del Monte Lot 55 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Mesquite","elevation_ft":1978,"latitude":36.837922,"longitude":-114.050432,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NV8","iata":"","local":"2NV8","name":"Mercy Air-Pahrump Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Pahrump","elevation_ft":2650,"latitude":36.191349,"longitude":-115.986368,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NY2","iata":"","local":"2NY2","name":"High View Too Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Chester","elevation_ft":586,"latitude":41.349667,"longitude":-74.333167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":220,"width_ft":155,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NY3","iata":"","local":"2NY3","name":"Kwp Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Hurley","elevation_ft":610,"latitude":41.99039840698242,"longitude":-74.08760070800781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NY5","iata":"","local":"2NY5","name":"Strong Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Rochester","elevation_ft":554,"latitude":43.122299,"longitude":-77.622803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NY6","iata":"","local":"2NY6","name":"Slate Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Middletown","elevation_ft":505,"latitude":41.37200164794922,"longitude":-74.50769805908203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NY8","iata":"","local":"2NY8","name":"Benbyre Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Alligerville","elevation_ft":260,"latitude":41.80339813232422,"longitude":-74.18289947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2NM9","iata":"","local":"2NM9","name":"High Desert Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Corona","elevation_ft":5575,"latitude":34.198763,"longitude":-105.165108,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5280,"width_ft":95,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NY7","iata":"","local":"2NY7","name":"Towner Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Addison","elevation_ft":1248,"latitude":42.12149810791016,"longitude":-77.2114028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NY9","iata":"","local":"2NY9","name":"Kayutah Lake/James & Helene D Allen Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Alpine","elevation_ft":1385,"latitude":42.367811,"longitude":-76.724406,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5000,"width_ft":150,"surface":"W"},{"id":"08/26","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NV2","iata":"","local":"2NV2","name":"Gibb Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Sparks","elevation_ft":4242,"latitude":39.835629,"longitude":-119.675904,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OA3","iata":"","local":"2OA3","name":"Sawmill Creek Resort Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Huron","elevation_ft":580,"latitude":41.409698486328125,"longitude":-82.5967025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OG2","iata":"","local":"2OG2","name":"Erickson Air-Crane Whetstone Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Central Point","elevation_ft":1224,"latitude":42.429861,"longitude":-122.906671,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OG3","iata":"","local":"2OG3","name":"Wiley's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-OR","municipality":"Lake Oswego","elevation_ft":12,"latitude":45.430999755859375,"longitude":-122.6500015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OH1","iata":"","local":"2OH1","name":"Magruder Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Port Clinton","elevation_ft":580,"latitude":41.50559997558594,"longitude":-82.93270111083984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OH3","iata":"","local":"2OH3","name":"Adams County Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Seaman","elevation_ft":915,"latitude":38.933869,"longitude":-83.58339,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OA1","iata":"","local":"2OA1","name":"Bristol Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bristolville","elevation_ft":865,"latitude":41.41510009765625,"longitude":-80.8843002319336,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OA5","iata":"","local":"2OA5","name":"Fl-Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Marysville","elevation_ft":980,"latitude":40.182498931884766,"longitude":-83.35089874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OH4","iata":"","local":"2OH4","name":"Cedar Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Shauck","elevation_ft":1220,"latitude":40.6245002746582,"longitude":-82.635498046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OA4","iata":"","local":"2OA4","name":"Victory Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bethel Township","elevation_ft":1055,"latitude":39.931391,"longitude":-83.908863,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1987,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OG4","iata":"","local":"2OG4","name":"El Rancho Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Fields","elevation_ft":4130,"latitude":42.331487,"longitude":-118.650614,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OA2","iata":"","local":"2OA2","name":"Mackie's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Midland","elevation_ft":993,"latitude":39.247897,"longitude":-83.916378,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2900,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OH5","iata":"","local":"2OH5","name":"Dayton Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":750,"latitude":39.77336,"longitude":-84.16976,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OI3","iata":"","local":"2OI3","name":"Railway Stop Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Walbridge","elevation_ft":620,"latitude":41.56779861450195,"longitude":-83.52799987792969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OI6","iata":"","local":"2OI6","name":"Park Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":1020,"latitude":39.97029876708984,"longitude":-82.96240234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OK0","iata":"","local":"","name":"Burford Corp. Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Maysville","elevation_ft":945,"latitude":34.832002,"longitude":-97.410004,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1320,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OK1","iata":"","local":"","name":"Frost Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Meeker","elevation_ft":1030,"latitude":35.590099,"longitude":-97.010598,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3830,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OK3","iata":"","local":"","name":"Moore Airpark","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Moore","elevation_ft":1285,"latitude":35.354198,"longitude":-97.483902,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2890,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OK6","iata":"","local":"","name":"Flying N Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Meeker","elevation_ft":1095,"latitude":35.481998,"longitude":-97.020599,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OH8","iata":"","local":"2OH8","name":"Port-O-John Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Derby","elevation_ft":925,"latitude":39.7952995300293,"longitude":-83.22319793701172,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OH6","iata":"","local":"2OH6","name":"Smith Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Troy","elevation_ft":935,"latitude":40.012001,"longitude":-84.281303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1850,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OH7","iata":"","local":"2OH7","name":"Jbr Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hamersville","elevation_ft":945,"latitude":38.911201477051,"longitude":-84.026000976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1208,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OK2","iata":"","local":"2OK2","name":"Twin Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Midwest City","elevation_ft":1199,"latitude":35.329200744628906,"longitude":-97.2697982788086,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OK8","iata":"","local":"","name":"D & G Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Newcastle","elevation_ft":1300,"latitude":35.225101,"longitude":-97.646103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OK9","iata":"","local":"","name":"Pata Skyhaven Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Norman","elevation_ft":1136,"latitude":35.1959,"longitude":-97.308403,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OR2","iata":"","local":"2OR2","name":"Pioneer Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Prineville","elevation_ft":2940,"latitude":44.31230163574219,"longitude":-120.83799743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2OR9","iata":"","local":"2OR9","name":"World Trade Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":296,"latitude":45.516277,"longitude":-122.674849,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PA0","iata":"","local":"","name":"Zettlemoyer Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Kutztown","elevation_ft":550,"latitude":40.556801,"longitude":-75.697998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PA1","iata":"","local":"2PA1","name":"Boehm's Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Greeley","elevation_ft":1330,"latitude":41.4431,"longitude":-75.007896,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OR0","iata":"","local":"2OR0","name":"Nielsen Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon City","elevation_ft":510,"latitude":45.34687,"longitude":-122.52244,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OR6","iata":"","local":"2OR6","name":"Lockhart Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Ironside","elevation_ft":4615,"latitude":44.18130111694336,"longitude":-118.21499633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1900,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OR1","iata":"","local":"2OR1","name":"Big Muddy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Fossil","elevation_ft":1641,"latitude":44.828499,"longitude":-120.495003,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4185,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OR3","iata":"","local":"2OR3","name":"Davidson Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jefferson","elevation_ft":188,"latitude":44.79460144042969,"longitude":-123.0979995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OK7","iata":"","local":"2OK7","name":"Cole Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Newcastle","elevation_ft":1353,"latitude":35.258399963378906,"longitude":-97.66280364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PA9","iata":"","local":"2PA9","name":"Wilson Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lansdale","elevation_ft":460,"latitude":40.20009994506836,"longitude":-75.29959869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PN2","iata":"","local":"2PN2","name":"Fortman Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Shrewsbury","elevation_ft":990,"latitude":39.78749847412109,"longitude":-76.64720153808594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PN9","iata":"","local":"2PN9","name":"Sun Company-Radnor Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Radnor","elevation_ft":425,"latitude":40.04710006713867,"longitude":-75.35769653320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PS0","iata":"","local":"2PS0","name":"Rotelle Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"West Point","elevation_ft":340,"latitude":40.197898864746094,"longitude":-75.29910278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PS2","iata":"","local":"2PS2","name":"UPMC Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"York","elevation_ft":410,"latitude":39.966744,"longitude":-76.692317,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PN5","iata":"","local":"2PN5","name":"Baker-Sell Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Woodbury","elevation_ft":1371,"latitude":40.2484016418457,"longitude":-78.36080169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PS3","iata":"","local":"2PS3","name":"Mathna Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Dillsburg","elevation_ft":490,"latitude":40.015751,"longitude":-77.042398,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PA8","iata":"","local":"2PA8","name":"Shulls Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Landisburg","elevation_ft":640,"latitude":40.30009841918945,"longitude":-77.29969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PN7","iata":"","local":"2PN7","name":"Brennan Personal Use Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Zelienople","elevation_ft":1210,"latitude":40.855848,"longitude":-80.068772,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PA7","iata":"","local":"2PA7","name":"Egolf Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Landisburg","elevation_ft":610,"latitude":40.33340072631836,"longitude":-77.29969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PN1","iata":"","local":"2PN1","name":"Malco Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Westfield","elevation_ft":1990,"latitude":41.9833984375,"longitude":-77.52469635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PS4","iata":"","local":"2PS4","name":"Wgal-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":360,"latitude":40.0369987487793,"longitude":-76.33769989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PS5","iata":"","local":"2PS5","name":"Rosini Residence Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Shamokin","elevation_ft":960,"latitude":40.78680038452149,"longitude":-76.58499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PS8","iata":"","local":"2PS8","name":"UPMC Susquehanna Sunbury Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Sunbury","elevation_ft":500,"latitude":40.861702,"longitude":-76.777737,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2PS9","iata":"","local":"2PS9","name":"Albert Einstein Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":270,"latitude":40.03680038452149,"longitude":-75.14350128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2RI7","iata":"","local":"2RI7","name":"Malbone Estate Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Newport","elevation_ft":83,"latitude":41.504909,"longitude":-71.310511,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SC3","iata":"","local":"2SC3","name":"Melrose Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-SC","municipality":"Hilton Head","elevation_ft":0,"latitude":32.139198303222656,"longitude":-80.86810302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SC4","iata":"","local":"2SC4","name":"Salty Fare Landng Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-SC","municipality":"Hilton Head","elevation_ft":0,"latitude":32.2338981628418,"longitude":-80.75420379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SC6","iata":"","local":"2SC6","name":"Sled Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Columbia","elevation_ft":275,"latitude":34.06610107421875,"longitude":-81.1156005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SD0","iata":"","local":"2SD0","name":"Paradise Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Nemo","elevation_ft":4500,"latitude":44.16360092163086,"longitude":-103.47899627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2SD1","iata":"","local":"2SD1","name":"Mc Kennan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Sioux Falls","elevation_ft":1510,"latitude":43.5340995789,"longitude":-96.71499633790002,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SC8","iata":"","local":"2SC8","name":"Gaston Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Gaston","elevation_ft":460,"latitude":33.785818,"longitude":-81.092105,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2SD5","iata":"","local":"2SD5","name":"Sturgis Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Sturgis","elevation_ft":3510,"latitude":44.39780044555664,"longitude":-103.50900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SD6","iata":"","local":"2SD6","name":"Avera Heart Hospital of South Dakota Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Sioux Falls","elevation_ft":1477,"latitude":43.49079895019531,"longitude":-96.77970123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2SD9","iata":"","local":"2SD9","name":"Tc Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Ipswich","elevation_ft":1515,"latitude":45.45220184326172,"longitude":-99.01010131835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TA0","iata":"","local":"","name":"Darmar Medical Emergency Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Katy","elevation_ft":140,"latitude":29.789101,"longitude":-95.799698,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1455,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TA2","iata":"","local":"2TA2","name":"The Medical Center of Mesquite Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mesquite","elevation_ft":506,"latitude":32.77939987182617,"longitude":-96.6010971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TA7","iata":"","local":"","name":"Era Helicopters Sabine Base Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":7,"latitude":29.696301,"longitude":-93.956596,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":18,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TA9","iata":"","local":"","name":"AMIGO For Christ Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":840,"latitude":32.6604,"longitude":-97.842003,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4205,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TA4","iata":"","local":"2TA4","name":"Mario's Flying Pizza Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sealy","elevation_ft":233,"latitude":29.747506,"longitude":-96.290066,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2050,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TA1","iata":"","local":"2TA1","name":"Gravco Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lufkin","elevation_ft":284,"latitude":31.3902,"longitude":-94.691002,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TA8","iata":"","local":"2TA8","name":"El Coyote Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Encino","elevation_ft":196,"latitude":26.85840034,"longitude":-98.22200012,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5499,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TE1","iata":"","local":"2TE1","name":"Republic Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Santa Fe","elevation_ft":21,"latitude":29.32859992980957,"longitude":-95.06189727783205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":280,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TE7","iata":"","local":"2TE7","name":"Beach Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Post","elevation_ft":2303,"latitude":33.227201,"longitude":-101.133249,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":50,"surface":"T"},{"id":"11/29","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TE8","iata":"","local":"","name":"Wagner-Braxdale Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Crystal City","elevation_ft":570,"latitude":28.678992,"longitude":-99.800234,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TE9","iata":"","local":"2TE9","name":"Cuero Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Cuero","elevation_ft":210,"latitude":29.112904,"longitude":-97.284359,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TN0","iata":"","local":"2TN0","name":"Hospital Wing Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":282,"latitude":35.14179992675781,"longitude":-90.02680206298828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TN1","iata":"","local":"2TN1","name":"Baptist Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Ripley","elevation_ft":415,"latitude":35.743099212646484,"longitude":-89.53939819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TN3","iata":"","local":"","name":"Oak Ridge Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Oak Ridge","elevation_ft":1140,"latitude":36.001499,"longitude":-84.247398,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TE5","iata":"","local":"2TE5","name":"Piano Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Flatonia","elevation_ft":383,"latitude":29.69510078430176,"longitude":-97.16329956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TE2","iata":"","local":"2TE2","name":"Flying Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Azle","elevation_ft":720,"latitude":32.829065,"longitude":-97.53489,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TE4","iata":"","local":"2TE4","name":"Frels Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":100,"latitude":29.17919921875,"longitude":-96.32270050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TE0","iata":"BZT","local":"2TE0","name":"Eagle Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brazoria","elevation_ft":15,"latitude":28.982200622559,"longitude":-95.579696655273,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2700,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TE6","iata":"","local":"2TE6","name":"Burris Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Karnes City","elevation_ft":448,"latitude":28.883771,"longitude":-98.049221,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3300,"width_ft":210,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TN5","iata":"","local":"2TN5","name":"Athens Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Athens","elevation_ft":950,"latitude":35.43560028076172,"longitude":-84.59989929199219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TN6","iata":"","local":"2TN6","name":"Saint Thomas Midtown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":690,"latitude":36.153953,"longitude":-86.802022,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TN9","iata":"","local":"2TN9","name":"Baptist Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Union City","elevation_ft":360,"latitude":36.41400146484375,"longitude":-89.04669952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TS1","iata":"","local":"2TS1","name":"Titus Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mount Pleasant","elevation_ft":422,"latitude":33.175463,"longitude":-94.97081,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TS5","iata":"","local":"","name":"Hedley Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Hedley","elevation_ft":2510,"latitude":34.8937,"longitude":-100.610001,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":890,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TS7","iata":"","local":"2TS7","name":"Jamak Fabrication Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":1050,"latitude":32.78120040893555,"longitude":-97.81639862060548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TN7","iata":"","local":"2TN7","name":"Wolf Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Kingston","elevation_ft":890,"latitude":35.80440139770508,"longitude":-84.41580200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TN8","iata":"","local":"2TN8","name":"Soggy Bottom Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Dowelltown","elevation_ft":580,"latitude":36.018001556396484,"longitude":-85.93599700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2075,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TS6","iata":"","local":"T56","name":"Eagle's Nest Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Midlothian","elevation_ft":780,"latitude":32.512602,"longitude":-96.926695,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TS8","iata":"","local":"2TS8","name":"Bailey Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stockdale","elevation_ft":452,"latitude":29.22050094604492,"longitude":-97.87169647216795,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4200,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TS3","iata":"","local":"2TS3","name":"Tigerbird Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":450,"latitude":31.67930030822754,"longitude":-97.2406005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TS2","iata":"","local":"2TS2","name":"Shofner Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Harlingen","elevation_ft":57,"latitude":26.168862,"longitude":-97.733055,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TS9","iata":"","local":"","name":"DPS-Tyler Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Tyler","elevation_ft":570,"latitude":32.313999,"longitude":-95.239098,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1920,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TX0","iata":"","local":"2TX0","name":"Blue Sky Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Amarillo","elevation_ft":3615,"latitude":35.062604,"longitude":-101.850421,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TX6","iata":"","local":"2TX6","name":"Everitt Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Idalou","elevation_ft":3200,"latitude":33.68180084228516,"longitude":-101.66799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":100,"surface":"D"},{"id":"17/35","length_ft":3400,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2TX9","iata":"","local":"2TX9","name":"Ethyl Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pasadena","elevation_ft":9,"latitude":29.741100311279,"longitude":-95.170799255371,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2655,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2UT4","iata":"","local":"2UT4","name":"Heber Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Heber City","elevation_ft":5681,"latitude":40.49020004272461,"longitude":-111.40599822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2UT2","iata":"","local":"2UT2","name":"High Meadow Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Duck Creek Village","elevation_ft":8280,"latitude":37.52080154418945,"longitude":-112.64199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2071,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2UT3","iata":"","local":"2UT3","name":"Fort Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Brigham City","elevation_ft":4440,"latitude":41.4921989440918,"longitude":-112.59100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TX1","iata":"","local":"2TX1","name":"Russell Paradise Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Elmendorf","elevation_ft":535,"latitude":29.22865,"longitude":-98.384046,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2588,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TX3","iata":"","local":"2TX3","name":"La Fonda Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1020,"latitude":29.21689987182617,"longitude":-100.61699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5280,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TX4","iata":"","local":"2TX4","name":"Lewis Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Encinal","elevation_ft":540,"latitude":27.98360061645508,"longitude":-99.37670135498048,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4800,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TX5","iata":"","local":"2TX5","name":"Berry Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gatesville","elevation_ft":757,"latitude":31.453500747680664,"longitude":-97.75140380859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VA4","iata":"","local":"2VA4","name":"Winchester Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Winchester","elevation_ft":831,"latitude":39.195407,"longitude":-78.191999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VA7","iata":"","local":"2VA7","name":"Virginia Beach General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":25,"latitude":36.86629867553711,"longitude":-76.02580261230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VE2","iata":"","local":"2VE2","name":"Spring Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2375,"latitude":36.091026,"longitude":-115.239359,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VG4","iata":"","local":"2VG4","name":"Deer Run Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Nelson County","elevation_ft":805,"latitude":37.88769912719727,"longitude":-78.86190032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VG5","iata":"","local":"2VG5","name":"Breeden Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":8,"latitude":36.831298828125,"longitude":-76.06600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VA5","iata":"","local":"2VA5","name":"Rosegill Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Saluda","elevation_ft":32,"latitude":37.630699,"longitude":-76.565002,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VA2","iata":"","local":"2VA2","name":"Melville Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Surry","elevation_ft":90,"latitude":37.14599990844727,"longitude":-76.79000091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VA1","iata":"","local":"2VA1","name":"Jett Airpark","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Edwardsville","elevation_ft":90,"latitude":37.89599990844727,"longitude":-76.3552017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VA3","iata":"","local":"2VA3","name":"Merlin Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Amelia Court House","elevation_ft":235,"latitude":37.316693,"longitude":-77.866373,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VA8","iata":"","local":"2VA8","name":"Brandywyne Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Holland","elevation_ft":66,"latitude":36.686936,"longitude":-76.823369,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2UT5","iata":"","local":"2UT5","name":"Charlevoix Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"New Harmony","elevation_ft":5300,"latitude":37.447504,"longitude":-113.247102,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":400,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VG6","iata":"","local":"2VG6","name":"Rychlk Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Manassas","elevation_ft":330,"latitude":38.76079940795898,"longitude":-77.62969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VG9","iata":"","local":"2VG9","name":"Sentara Williamsburg Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Williamsburg","elevation_ft":118,"latitude":37.33539962769999,"longitude":-76.74069976810001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VI2","iata":"","local":"2VI2","name":"Redoubt View Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":385,"latitude":60.419038,"longitude":-152.354894,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":2400,"width_ft":150,"surface":"W"},{"id":"07W/25W","length_ft":4500,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2VT2","iata":"","local":"2VT2","name":"Northern Lights Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VT","municipality":"Alburg","elevation_ft":95,"latitude":44.87279891967773,"longitude":-73.28170013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":10000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WA0","iata":"","local":"2WA0","name":"Pcfd Nr 26 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Greenwater","elevation_ft":1780,"latitude":47.144798278808594,"longitude":-121.63600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WA2","iata":"","local":"","name":"Quartermaster Harbor Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Dockton","elevation_ft":0,"latitude":47.379398,"longitude":-122.445851,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3892,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WA4","iata":"","local":"2WA4","name":"Bainbridge Island Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bainbridge Island","elevation_ft":184,"latitude":47.643276,"longitude":-122.521505,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WA5","iata":"","local":"2WA5","name":"Coulee Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Grand Coulee","elevation_ft":1525,"latitude":47.941898,"longitude":-119.00713,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WA1","iata":"","local":"2WA1","name":"Diamond Point Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sequim","elevation_ft":262,"latitude":48.09260177612305,"longitude":-122.9290008544922,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":2335,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WA3","iata":"","local":"2WA3","name":"Stuart Island West Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Friday Harbor","elevation_ft":200,"latitude":48.68450164794922,"longitude":-123.20999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1560,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WA6","iata":"","local":"2WA6","name":"Rice Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Grand Coulee","elevation_ft":2434,"latitude":47.997906,"longitude":-119.087355,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI2","iata":"","local":"","name":"Shullsburg Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Shullsburg","elevation_ft":1080,"latitude":42.5569,"longitude":-90.2276,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WI3","iata":"","local":"2WI3","name":"Milwaukee County Medical Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Wauwatosa","elevation_ft":835,"latitude":43.041500091552734,"longitude":-88.02310180664062,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":120,"width_ft":90,"surface":"A"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WN2","iata":"","local":"","name":"Gaffney Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Briggsville","elevation_ft":827,"latitude":43.654202,"longitude":-89.630302,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WI8","iata":"","local":"2WI8","name":"Davies Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oostburg","elevation_ft":645,"latitude":43.59749984741211,"longitude":-87.77899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI9","iata":"","local":"2WI9","name":"Bulldog Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oxford","elevation_ft":955,"latitude":43.7599983215332,"longitude":-89.63480377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI5","iata":"","local":"2WI5","name":"Blair Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mercer","elevation_ft":1625,"latitude":46.0974006652832,"longitude":-90.16320037841795,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI6","iata":"","local":"2WI6","name":"Matson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Stoughton","elevation_ft":915,"latitude":42.91360092163086,"longitude":-89.18620300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI1","iata":"","local":"2WI1","name":"Uff-Da Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Stoughton","elevation_ft":945,"latitude":42.94359970092773,"longitude":-89.2865982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI7","iata":"","local":"2WI7","name":"Hecklers' Strip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mount Vernon","elevation_ft":1130,"latitude":42.96969985961914,"longitude":-89.66539764404297,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2065,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WI4","iata":"","local":"2WI4","name":"Plows & Props Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Springfield","elevation_ft":840,"latitude":42.642799377441406,"longitude":-88.39869689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WA9","iata":"","local":"2WA9","name":"Touchet Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Huntsville","elevation_ft":1350,"latitude":46.28919982910156,"longitude":-118.10099792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WA8","iata":"","local":"2WA8","name":"Kramer Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Harrington","elevation_ft":2181,"latitude":47.383764,"longitude":-118.29812,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WS4","iata":"","local":"2WS4","name":"SSM Health St. Mary's Hospital-Jansville Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Janesville","elevation_ft":860,"latitude":42.6698694,"longitude":-88.9763806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WV2","iata":"","local":"2WV2","name":"Louis A. Johnson Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Clarksburg","elevation_ft":1040,"latitude":39.10240173339844,"longitude":-80.36209869384766,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WV6","iata":"","local":"2WV6","name":"West Virginia State Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Wheeling","elevation_ft":682,"latitude":40.0531005859375,"longitude":-80.72470092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2WN6","iata":"","local":"2WN6","name":"Cunningham Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Granton","elevation_ft":1089,"latitude":44.52970123291016,"longitude":-90.41929626464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WS3","iata":"","local":"2WS3","name":"C. R. Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Greenleaf","elevation_ft":800,"latitude":44.280792,"longitude":-88.093577,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WN5","iata":"","local":"2WN5","name":"Murmuring Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Necedah","elevation_ft":910,"latitude":44.00640106201172,"longitude":-90.01920318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WS2","iata":"","local":"2WS2","name":"Connor's Lake Landing","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Webster","elevation_ft":1000,"latitude":45.91275,"longitude":-92.293239,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1765,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WN7","iata":"","local":"2WN7","name":"Planeacres Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fisk","elevation_ft":844,"latitude":43.94869995117188,"longitude":-88.67320251464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WN9","iata":"","local":"2WN9","name":"Hillcrest Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Goldendale","elevation_ft":2405,"latitude":45.84510040283203,"longitude":-120.70099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2730,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XA1","iata":"","local":"2XA1","name":"Great Horizon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":317,"latitude":28.140322,"longitude":-98.935994,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WY8","iata":"","local":"2WY8","name":"Bar Flying E Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cody","elevation_ft":5550,"latitude":44.40439987182617,"longitude":-109.28199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XA3","iata":"","local":"2XA3","name":"North Cypress Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Cypress","elevation_ft":130,"latitude":29.927545,"longitude":-95.632832,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2XA6","iata":"","local":"2XA6","name":"Red Berry Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":670,"latitude":29.43470001220703,"longitude":-98.41780090332033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2XA8","iata":"","local":"2XA8","name":"Air Evac Lifeteam Base 53 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Teague","elevation_ft":490,"latitude":31.691578,"longitude":-96.168664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2XA9","iata":"","local":"2XA9","name":"Rolling Plains Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sweetwater","elevation_ft":2180,"latitude":32.452367,"longitude":-100.397167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2XS0","iata":"","local":"2XS0","name":"Valley Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Brownsville","elevation_ft":26,"latitude":25.977842,"longitude":-97.516011,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"2XS3","iata":"","local":"2XS3","name":"Glad Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Palestine","elevation_ft":487,"latitude":32.019836,"longitude":-95.695035,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4250,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS1","iata":"","local":"2XS1","name":"Harris Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Johnson City","elevation_ft":1188,"latitude":30.21969985961914,"longitude":-98.30259704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS2","iata":"","local":"2XS2","name":"Indio-Faith Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":750,"latitude":28.2628002167,"longitude":-100.162002563,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5164,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XA5","iata":"","local":"2XA5","name":"Someday Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lockhart","elevation_ft":466,"latitude":29.803699493408203,"longitude":-97.69120025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1876,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS6","iata":"","local":"2XS6","name":"Foster Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Utopia","elevation_ft":1687,"latitude":29.722533,"longitude":-99.574673,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2150,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS9","iata":"","local":"2XS9","name":"Uvalde County Hospital Authority Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Uvalde","elevation_ft":917,"latitude":29.214099884033203,"longitude":-99.7677993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30AL","iata":"","local":"30AL","name":"Med Flight 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Danville","elevation_ft":650,"latitude":34.373001,"longitude":-87.0805,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30CA","iata":"","local":"30CA","name":"Indian Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Greenville","elevation_ft":3482,"latitude":40.141201,"longitude":-120.937226,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30CL","iata":"","local":"30CL","name":"Long Beach Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Long Beach","elevation_ft":84,"latitude":33.808741,"longitude":-118.186728,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30FA","iata":"","local":"30FA","name":"Florida Hospital Lake Placid Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":141,"latitude":27.320499420166016,"longitude":-81.37049865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30FD","iata":"","local":"30FD","name":"City of Fort Lauderdale Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Lauderdale","elevation_ft":6,"latitude":26.124000549316406,"longitude":-80.14420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30FL","iata":"","local":"30FL","name":"Putnam Community Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Palatka","elevation_ft":59,"latitude":29.643512,"longitude":-81.692906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30AR","iata":"","local":"30AR","name":"Phalanx Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Greers Ferry","elevation_ft":584,"latitude":35.54436111,"longitude":-92.0561676,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30CO","iata":"","local":"30CO","name":"Coyote Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Guffey","elevation_ft":8030,"latitude":38.67250061035156,"longitude":-105.33599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1150,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS7","iata":"","local":"2XS7","name":"Annandale Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Uvalde","elevation_ft":1205,"latitude":29.450199127197266,"longitude":-99.68370056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS8","iata":"","local":"2XS8","name":"Benson Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Uvalde","elevation_ft":929,"latitude":29.229400634765625,"longitude":-99.82389831542967,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3300,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30IL","iata":"","local":"30IL","name":"Clay County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Flora","elevation_ft":475,"latitude":38.67940139770508,"longitude":-88.47250366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30KS","iata":"","local":"","name":"Tyler Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Arkansas City","elevation_ft":1200,"latitude":37.132301,"longitude":-97.073402,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2597,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30KY","iata":"","local":"30KY","name":"Wayne County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Monticello","elevation_ft":923,"latitude":36.81949996948242,"longitude":-84.86740112304688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30LA","iata":"","local":"30LA","name":"Venice Base Heliport & Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":7,"latitude":29.27109909057617,"longitude":-89.35579681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":3000,"width_ft":280,"surface":"W"},{"id":"16W/34W","length_ft":5000,"width_ft":800,"surface":"W"},{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H2","length_ft":48,"width_ft":48,"surface":"C"},{"id":"H3","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30LS","iata":"","local":"30LS","name":"Rotorcraft Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Broussard","elevation_ft":31,"latitude":30.15239906311035,"longitude":-91.95069885253906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30MA","iata":"","local":"30MA","name":"Clinton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Clinton","elevation_ft":368,"latitude":42.42789840698242,"longitude":-71.69280242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30ME","iata":"","local":"30ME","name":"Togus VA LZ Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Augusta","elevation_ft":169,"latitude":44.275255,"longitude":-69.704879,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30MN","iata":"","local":"30MN","name":"Mayo Clinic Health System - Albert Lea Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Albert Lea","elevation_ft":1253,"latitude":43.652697,"longitude":-93.371564,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30MI","iata":"","local":"30MI","name":"Wolverton's Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Buchanan","elevation_ft":750,"latitude":41.859142,"longitude":-86.327219,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1200,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30LL","iata":"","local":"30LL","name":"Williams Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Chapin","elevation_ft":614,"latitude":39.75419998168945,"longitude":-90.36540222167967,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1960,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30MO","iata":"","local":"30MO","name":"Matzie Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lebanon","elevation_ft":1129,"latitude":37.64590072631836,"longitude":-92.49459838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30NJ","iata":"","local":"30NJ","name":"Hillside Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hopewell","elevation_ft":382,"latitude":40.39229965209961,"longitude":-74.77909851074219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30NM","iata":"","local":"30NM","name":"Crusader Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Sedan","elevation_ft":4536,"latitude":36.116389,"longitude":-103.096667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30NR","iata":"","local":"30NR","name":"Bladen Lakes State Forest Tactical Landing Zone Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabethtown","elevation_ft":95,"latitude":34.709583,"longitude":-78.571137,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":1000,"surface":"T"},{"id":"H2","length_ft":1000,"width_ft":1000,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30OH","iata":"","local":"30OH","name":"Bahl Helistop","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1345,"latitude":40.75699996948242,"longitude":-82.55020141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30PA","iata":"","local":"","name":"Kings Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Schwenksville","elevation_ft":290,"latitude":40.265741,"longitude":-75.437837,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1169,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30PN","iata":"","local":"30PN","name":"Pittsburgh Children'S Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1098,"latitude":40.466389,"longitude":-79.953056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30SD","iata":"","local":"30SD","name":"Barber Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Aberdeen","elevation_ft":1380,"latitude":45.504811,"longitude":-98.595539,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30NC","iata":"","local":"30NC","name":"Happy Bottom Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Advance","elevation_ft":705,"latitude":36.04859924316406,"longitude":-80.45690155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30OK","iata":"","local":"OL41","name":"Lobo Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Calvin","elevation_ft":792,"latitude":34.908091,"longitude":-96.24362,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30MT","iata":"","local":"30MT","name":"Nistler Helena Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":4753,"latitude":46.571072,"longitude":-112.237895,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1304,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30OR","iata":"","local":"30OR","name":"Bero Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Vernonia","elevation_ft":700,"latitude":45.802601,"longitude":-123.279999,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30NE","iata":"","local":"30NE","name":"Nebraskaland Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Campbell","elevation_ft":2000,"latitude":40.355803,"longitude":-98.685817,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30TE","iata":"","local":"30TE","name":"Cone Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lorenzo","elevation_ft":3144,"latitude":33.811199,"longitude":-101.396003,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":80,"surface":"T"},{"id":"17/35","length_ft":4270,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30TN","iata":"","local":"30TN","name":"Tristar Skyline Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":720,"latitude":36.24625,"longitude":-86.749957,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30TS","iata":"","local":"","name":"Hall Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Ore City","elevation_ft":350,"latitude":32.829653,"longitude":-94.71743,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1160,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30VA","iata":"","local":"30VA","name":"Clinch Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richlands","elevation_ft":1965,"latitude":37.09460067749024,"longitude":-81.82099914550781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"30XA","iata":"","local":"30XA","name":"Baylor Scott & White Aubrey Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Aubrey","elevation_ft":594,"latitude":33.220623,"longitude":-96.912943,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31AL","iata":"","local":"31AL","name":"Old Chipley Helo Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Slocomb","elevation_ft":260,"latitude":31.078289,"longitude":-85.537789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31AR","iata":"","local":"31AR","name":"Van Buren County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Clinton","elevation_ft":700,"latitude":35.57590103149414,"longitude":-92.45349884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31AZ","iata":"","local":"","name":"Benson Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Benson","elevation_ft":3628,"latitude":31.963699,"longitude":-110.260002,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4800,"width_ft":140,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31AK","iata":"","local":"31AK","name":"Dalrymple's Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":450,"latitude":64.83453,"longitude":-147.437024,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30TA","iata":"","local":"30TA","name":"Tri-Modal Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":812,"latitude":30.585468,"longitude":-97.717552,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30TX","iata":"","local":"30TX","name":"Burg Lake Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stonewall","elevation_ft":1463,"latitude":30.232361,"longitude":-98.654972,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31CL","iata":"","local":"31CL","name":"Presbyterian Intercommunity Hospital Whittier Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Whittier","elevation_ft":196,"latitude":33.971497,"longitude":-118.049622,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31CO","iata":"","local":"","name":"Montrose Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Montrose","elevation_ft":5812,"latitude":38.480499,"longitude":-107.869003,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31CT","iata":"","local":"31CT","name":"Quiet Corner Heliport","category":"heliport","iso_country":"US","iso_region":"US-CT","municipality":"Pomfret","elevation_ft":268,"latitude":41.854767,"longitude":-71.928483,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31FD","iata":"","local":"31FD","name":"Florida State Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Chattahoochee","elevation_ft":235,"latitude":30.706300735473636,"longitude":-84.84239959716797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31GA","iata":"","local":"31GA","name":"WGCL-TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Atlanta","elevation_ft":939,"latitude":33.787341,"longitude":-84.401055,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31II","iata":"","local":"","name":"Rising Sun Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Rising Sun","elevation_ft":830,"latitude":38.9259,"longitude":-84.911903,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31IS","iata":"","local":"31IS","name":"Mason District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Havana","elevation_ft":479,"latitude":40.30780029,"longitude":-90.05460358,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31LA","iata":"","local":"31LA","name":"Iota Volunteer Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Iota","elevation_ft":26,"latitude":30.329583,"longitude":-92.497022,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31KS","iata":"","local":"31KS","name":"Mills Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"South Hutchinson","elevation_ft":1520,"latitude":37.99580001831055,"longitude":-97.92949676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31KY","iata":"","local":"31KY","name":"Wild Blue Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paris","elevation_ft":890,"latitude":38.109928,"longitude":-84.338737,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31IN","iata":"","local":"31IN","name":"Timber House Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lafayette","elevation_ft":726,"latitude":40.28499984741211,"longitude":-86.85639953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31LL","iata":"","local":"","name":"Seeman Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Pontiac","elevation_ft":689,"latitude":40.778599,"longitude":-88.666199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31LS","iata":"","local":"31LS","name":"Helicopter Management Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":20,"latitude":30.03420066833496,"longitude":-91.8643035888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31MD","iata":"","local":"31MD","name":"AGH Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Berlin","elevation_ft":12,"latitude":38.340216,"longitude":-75.210544,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":84,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31MI","iata":"","local":"","name":"Rentz Ultralight Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Niles","elevation_ft":800,"latitude":41.7798,"longitude":-86.1772,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31NC","iata":"","local":"31NC","name":"NH HMC Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Huntersville","elevation_ft":753,"latitude":35.406792,"longitude":-80.859071,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31NH","iata":"","local":"31NH","name":"Johnson's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Northwood","elevation_ft":562,"latitude":43.223588,"longitude":-71.25072,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31NJ","iata":"","local":"","name":"Atlantic City Medical Center-Mainland Division Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Pomona","elevation_ft":63,"latitude":39.479301,"longitude":-74.539299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31OH","iata":"","local":"31OH","name":"Au Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1300,"latitude":40.77310180664063,"longitude":-82.56269836425781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31OK","iata":"","local":"31OK","name":"Siegfried Point Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Disney","elevation_ft":740,"latitude":36.48649978637695,"longitude":-94.99079895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31PA","iata":"","local":"31PA","name":"Foxcatcher Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Newtown Square","elevation_ft":440,"latitude":39.99789810180664,"longitude":-75.41519927978516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31MT","iata":"","local":"31MT","name":"Reverse 5 Bar M Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Great Falls","elevation_ft":4260,"latitude":47.236454,"longitude":-111.302315,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1337,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31MO","iata":"","local":"31MO","name":"Hannah Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Bolckow","elevation_ft":937,"latitude":40.105499267578125,"longitude":-94.74330139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":50,"surface":"T"},{"id":"N/S","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31PN","iata":"","local":"31PN","name":"Control Dynamics Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Warminster","elevation_ft":282,"latitude":40.209167,"longitude":-75.081389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":61,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31TA","iata":"","local":"","name":"Vitek Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Granger","elevation_ft":580,"latitude":30.726713,"longitude":-97.421275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31TE","iata":"","local":"31TE","name":"Tenneco Lab Helistop","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":58,"latitude":29.722999572753903,"longitude":-95.47109985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31TN","iata":"","local":"31TN","name":"Crockett Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Lawrenceburg","elevation_ft":922,"latitude":35.222925,"longitude":-87.336958,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31WA","iata":"","local":"31WA","name":"Mary Bridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Tacoma","elevation_ft":409,"latitude":47.259751,"longitude":-122.452149,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32AL","iata":"","local":"32AL","name":"SES North Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":633,"latitude":34.664849,"longitude":-86.746609,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32AR","iata":"","local":"32AR","name":"Stuttgart Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Stuttgart","elevation_ft":193,"latitude":34.517778,"longitude":-91.559722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"31TS","iata":"","local":"31TS","name":"Flyers Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Greenville","elevation_ft":640,"latitude":33.190399169921875,"longitude":-96.18910217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1150,"width_ft":40,"surface":"T"},{"id":"06/24","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31WN","iata":"","local":"31WN","name":"Berlin Field LLC","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Berlin","elevation_ft":773,"latitude":43.991368,"longitude":-88.961968,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31WI","iata":"","local":"W11","name":"Sullivan Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Sullivan","elevation_ft":875,"latitude":43.007432,"longitude":-88.602237,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":716,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31XS","iata":"","local":"31XS","name":"Fly-N-Ski Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Merit","elevation_ft":638,"latitude":33.18370056152344,"longitude":-96.27030181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2325,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31TX","iata":"","local":"31TX","name":"Scott Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":590,"latitude":31.596799850463867,"longitude":-97.33000183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1950,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32AZ","iata":"","local":"32AZ","name":"Scottsdale Healthcare Thompson Peak Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Scottsdale","elevation_ft":1675,"latitude":33.67,"longitude":-111.922222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32CN","iata":"","local":"32CN","name":"Pacific Bell-2300 Imperial Hwy Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Segundo","elevation_ft":209,"latitude":33.93048,"longitude":-118.38239,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32FD","iata":"","local":"32FD","name":"Kearney Construction Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Riverview","elevation_ft":13,"latitude":27.90439987182617,"longitude":-82.38330078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32FL","iata":"","local":"","name":"Meyer Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":105,"latitude":28.5014,"longitude":-81.444199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32IL","iata":"","local":"32IL","name":"Village of Tamms Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Tamms","elevation_ft":340,"latitude":37.23889923095703,"longitude":-89.26580047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32IN","iata":"","local":"","name":"Roto-Whirl/Ski World Heliport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Nashville","elevation_ft":593,"latitude":39.154999,"longitude":-86.297203,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2033,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32FA","iata":"","local":"32FA","name":"Sunset Strip Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":34,"latitude":27.23419952392578,"longitude":-80.90370178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32CO","iata":"","local":"32CO","name":"Braun Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Penrose","elevation_ft":5543,"latitude":38.45472,"longitude":-105.081899,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3240,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32CA","iata":"","local":"32CA","name":"Stone Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lemoore","elevation_ft":220,"latitude":36.331538,"longitude":-119.825177,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2540,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32CL","iata":"","local":"32CL","name":"Bob's Flying Service Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Knights Landing","elevation_ft":40,"latitude":38.83319854736328,"longitude":-121.71800231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32II","iata":"","local":"32II","name":"Roberts Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Vevay","elevation_ft":820,"latitude":38.81639862060547,"longitude":-85.1063003540039,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32KY","iata":"","local":"32KY","name":"St Elizabeth Medical Center South Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Edgewood","elevation_ft":873,"latitude":39.01029968261719,"longitude":-84.55690002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32LA","iata":"","local":"32LA","name":"John W Stone Oil Distributor LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Cameron","elevation_ft":10,"latitude":29.774388,"longitude":-93.35024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32MA","iata":"","local":"32MA","name":"Berkshire Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"North Adams","elevation_ft":855,"latitude":42.708035,"longitude":-73.110328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":350,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32MI","iata":"","local":"32MI","name":"William Beaumont Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Royal Oak","elevation_ft":705,"latitude":42.51503,"longitude":-83.194095,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32MN","iata":"","local":"32MN","name":"Don's Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Watkins","elevation_ft":1140,"latitude":45.36750030517578,"longitude":-94.39939880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2100,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32NH","iata":"","local":"32NH","name":"Lumberjack Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Wentworth","elevation_ft":742,"latitude":43.838358,"longitude":-71.885873,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32NJ","iata":"","local":"32NJ","name":"George Harms Const Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Farmingdale","elevation_ft":100,"latitude":40.20840072631836,"longitude":-74.17459869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32NK","iata":"","local":"","name":"Schoharie Creek Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Sloansville","elevation_ft":620,"latitude":42.7533,"longitude":-74.311096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32NC","iata":"","local":"32NC","name":"Hall Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Parkton","elevation_ft":175,"latitude":34.89640045166016,"longitude":-79.04309844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32MS","iata":"","local":"32MS","name":"Browns Landing","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Foxworth","elevation_ft":385,"latitude":31.194167,"longitude":-89.9525,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32KS","iata":"","local":"32KS","name":"Wilkens Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Healy","elevation_ft":2856,"latitude":38.59310150146485,"longitude":-100.61299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32LS","iata":"","local":"32LS","name":"Stevens Strip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Ponchatoula","elevation_ft":13,"latitude":30.41959953,"longitude":-90.35900116,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32OK","iata":"","local":"","name":"Flying A Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Hartshorne","elevation_ft":670,"latitude":34.831797,"longitude":-95.517502,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32PA","iata":"","local":"","name":"Yost Personal Use Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Shermans Dale","elevation_ft":560,"latitude":40.330101,"longitude":-77.1772,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2880,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32TN","iata":"","local":"32TN","name":"Southern Tennessee Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Winchester","elevation_ft":984,"latitude":35.174281,"longitude":-86.089917,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32TS","iata":"","local":"32TS","name":"Seton Medical Center H-4 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":582,"latitude":30.304567,"longitude":-97.746542,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32TX","iata":"","local":"32TX","name":"Hinson Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kenney","elevation_ft":365,"latitude":30.0580997467041,"longitude":-96.35919952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3931,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32WA","iata":"","local":"","name":"Whitestone Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Tonasket","elevation_ft":1310,"latitude":48.722778,"longitude":-119.467222,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1392,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32OH","iata":"","local":"32OH","name":"Rall Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1330,"latitude":40.760057,"longitude":-82.41833,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32WI","iata":"","local":"32WI","name":"Dalonia Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hortonville","elevation_ft":850,"latitude":44.31639862060547,"longitude":-88.70089721679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2050,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32VA","iata":"","local":"32VA","name":"Old South Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Abingdon","elevation_ft":1970,"latitude":36.677778,"longitude":-81.928722,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1890,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32OR","iata":"","local":"32OR","name":"Pine Hollow Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Tygh Valley","elevation_ft":1820,"latitude":45.254799,"longitude":-121.293999,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2433,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32TE","iata":"","local":"2G5","name":"Granite Shoals Bob Sylvester Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granite Shoals","elevation_ft":860,"latitude":30.589399,"longitude":-98.3703,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":969,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32TA","iata":"","local":"32TA","name":"Wilbourn Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Harwood","elevation_ft":350,"latitude":29.68727,"longitude":-97.435899,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32XA","iata":"","local":"32XA","name":"Medical Center Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Odessa","elevation_ft":3000,"latitude":31.84618,"longitude":-102.374382,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"32XS","iata":"","local":"32XS","name":"Cedar Circle Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Midlothian","elevation_ft":750,"latitude":32.46149826049805,"longitude":-97.00869750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33AL","iata":"","local":"33AL","name":"Russell Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Alexander City","elevation_ft":703,"latitude":32.930062,"longitude":-85.970914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33CA","iata":"","local":"","name":"Lloyd's Landing Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Rosamond","elevation_ft":2690,"latitude":34.905499,"longitude":-118.302002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33CN","iata":"","local":"33CN","name":"Platform Hillhouse Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Carpinteria","elevation_ft":98,"latitude":34.33110046386719,"longitude":-119.60399627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33CO","iata":"","local":"33CO","name":"Melby Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"San Luis","elevation_ft":8820,"latitude":37.06499862670898,"longitude":-105.46399688720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33FA","iata":"","local":"33FA","name":"Recreation Corporation Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":67,"latitude":27.598100662231445,"longitude":-80.84590148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":230,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33AR","iata":"","local":"33AR","name":"Skypoint Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Greers Ferry","elevation_ft":547,"latitude":35.602199554399995,"longitude":-92.1425018311,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33AZ","iata":"","local":"33AZ","name":"Yolo Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Camp Wood","elevation_ft":5950,"latitude":34.793156,"longitude":-112.974472,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33CL","iata":"","local":"33CL","name":"Oak Country Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Paso Robles","elevation_ft":1200,"latitude":35.56829833984375,"longitude":-120.7969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32WY","iata":"","local":"32WY","name":"Double L Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Etna","elevation_ft":5732,"latitude":43.080301,"longitude":-111.031936,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33IN","iata":"","local":"33IN","name":"Rusby Field","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Palmyra","elevation_ft":750,"latitude":38.44309997558594,"longitude":-86.05780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33LS","iata":"","local":"33LS","name":"Our Lady of Lourdes Heart Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":43,"latitude":30.173383,"longitude":-92.026253,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33MA","iata":"","local":"33MA","name":"Seagate Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Manchester","elevation_ft":40,"latitude":42.55979919433594,"longitude":-70.77230072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33MI","iata":"","local":"","name":"Great Lakes Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Sagola","elevation_ft":1300,"latitude":46.0666,"longitude":-88.007599,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33MN","iata":"","local":"","name":"Swift Private Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Wendell","elevation_ft":1100,"latitude":46.09,"longitude":-96.097,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33FD","iata":"","local":"33FD","name":"R O Ranch STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mayo","elevation_ft":50,"latitude":29.914400100708008,"longitude":-83.2665023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33FL","iata":"","local":"33FL","name":"Flying S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Kenansville","elevation_ft":72,"latitude":27.860861,"longitude":-80.999862,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33KY","iata":"","local":"33KY","name":"Bigger (Stol) STOLport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Utica","elevation_ft":406,"latitude":37.612300872802734,"longitude":-87.05690002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33KS","iata":"","local":"33KS","name":"Buena Terra Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":950,"latitude":39.152361,"longitude":-95.610065,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":80,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33ID","iata":"","local":"33ID","name":"Ozzy's Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Fairfield","elevation_ft":5128,"latitude":43.379362,"longitude":-114.769444,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33IL","iata":"","local":"33IL","name":"John Scharff Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Clinton","elevation_ft":730,"latitude":40.16609954833984,"longitude":-88.89830017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1835,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33MO","iata":"","local":"","name":"Leaming Field","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Golden City","elevation_ft":1135,"latitude":37.251401,"longitude":-94.0569,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33MT","iata":"","local":"33MT","name":"Kruger Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"West Glacier","elevation_ft":3300,"latitude":48.48059844970703,"longitude":-114.0009994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33NH","iata":"","local":"33NH","name":"Bear Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Henniker","elevation_ft":864,"latitude":43.144345,"longitude":-71.853634,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33NJ","iata":"","local":"33NJ","name":"Centra State Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold","elevation_ft":169,"latitude":40.237098693847656,"longitude":-74.31099700927734,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33OA","iata":"","local":"33OA","name":"Liberty EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Liberty Township","elevation_ft":866,"latitude":39.377323,"longitude":-84.368402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33PA","iata":"","local":"","name":"Sutliff Private Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Shickshinny","elevation_ft":800,"latitude":41.166801,"longitude":-76.249702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33PN","iata":"","local":"33PN","name":"Skepton Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pennsburg","elevation_ft":640,"latitude":40.388999938965,"longitude":-75.438003540039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33OI","iata":"","local":"33OI","name":"Soaring Horse Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Chatham Township","elevation_ft":950,"latitude":41.082801818847656,"longitude":-82.04319763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33OK","iata":"","local":"33OK","name":"Myrick Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Edmond","elevation_ft":1195,"latitude":35.7432903732,"longitude":-97.4055790901,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2625,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33OR","iata":"","local":"33OR","name":"Crow-Mag Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Elmira","elevation_ft":450,"latitude":44.06370162963867,"longitude":-123.39099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33NE","iata":"","local":"33NE","name":"Orr Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hay Springs","elevation_ft":3880,"latitude":42.382895,"longitude":-102.574239,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3585,"width_ft":30,"surface":"T"},{"id":"13/31","length_ft":1450,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33MS","iata":"","local":"33MS","name":"Freedom Strip","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Purvis","elevation_ft":361,"latitude":31.102297,"longitude":-89.418755,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1978,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33SC","iata":"","local":"33SC","name":"Triad Carolinas Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Florence","elevation_ft":114,"latitude":34.161399841308594,"longitude":-79.75389862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33TE","iata":"","local":"","name":"SW Police Station Nr 4 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":55,"latitude":29.688365,"longitude":-95.452083,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2322,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33TN","iata":"","local":"33TN","name":"Bradley Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Cleveland","elevation_ft":908,"latitude":35.178211,"longitude":-84.869442,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33TS","iata":"","local":"33TS","name":"CHI Saint Joseph Health Burleson Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Caldwell","elevation_ft":386,"latitude":30.521044,"longitude":-96.716567,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33TX","iata":"","local":"33TX","name":"Tgp 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Agua Dulce","elevation_ft":108,"latitude":27.74449920654297,"longitude":-97.84639739990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33WI","iata":"","local":"33WI","name":"St Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":617,"latitude":44.53219985961914,"longitude":-88.06590270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33WV","iata":"","local":"33WV","name":"Healthnet One Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Westover","elevation_ft":1106,"latitude":39.632494,"longitude":-80.000784,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33XS","iata":"","local":"33XS","name":"Six Mile Volunteer Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Hemphill","elevation_ft":240,"latitude":31.250292,"longitude":-93.778931,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"33VA","iata":"","local":"33VA","name":"Fox Fire Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Halifax","elevation_ft":535,"latitude":36.7843017578125,"longitude":-79.04969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33WY","iata":"","local":"33WY","name":"Skidmo Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Etna","elevation_ft":6020,"latitude":43.045926,"longitude":-110.991236,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1325,"width_ft":400,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33TA","iata":"","local":"33TA","name":"Lake Bonanza Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Montgomery","elevation_ft":301,"latitude":30.33300018310547,"longitude":-95.61219787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2579,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34AL","iata":"","local":"34AL","name":"Gaston Steam Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Wilsonville","elevation_ft":461,"latitude":33.246578,"longitude":-86.469113,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34CL","iata":"","local":"34CL","name":"Burney Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Burney","elevation_ft":3116,"latitude":40.893609,"longitude":-121.651354,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34FA","iata":"","local":"34FA","name":"Gezik Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Rockledge","elevation_ft":0,"latitude":28.25189971923828,"longitude":-80.66889953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":5350,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34FL","iata":"","local":"","name":"Ellis Agricultural Field","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Paxton","elevation_ft":324,"latitude":30.965853,"longitude":-86.302135,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":520,"width_ft":87,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34GA","iata":"","local":"34GA","name":"Cobb General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Austell","elevation_ft":1070,"latitude":33.857208,"longitude":-84.606677,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34CD","iata":"","local":"34CD","name":"Elk Park Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Allenspark","elevation_ft":7900,"latitude":40.262683,"longitude":-105.448011,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34AR","iata":"","local":"34AR","name":"Woodbridge Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Marked Tree","elevation_ft":215,"latitude":35.581454,"longitude":-90.384668,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34ID","iata":"","local":"34ID","name":"Freeman Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Cavendish","elevation_ft":3100,"latitude":46.570333,"longitude":-116.343611,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34CO","iata":"","local":"34CO","name":"Simons Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Aurora","elevation_ft":5525,"latitude":39.716400146484375,"longitude":-104.73200225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2400,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34CN","iata":"","local":"34CN","name":"Bonanza Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Snelling","elevation_ft":295,"latitude":37.52349853515625,"longitude":-120.39800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4100,"width_ft":100,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34AK","iata":"","local":"34AK","name":"Cardwell Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":425,"latitude":61.625,"longitude":-149.28900146484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1200,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34IA","iata":"","local":"34IA","name":"Beck Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Russell","elevation_ft":1023,"latitude":40.997189,"longitude":-93.155608,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34KS","iata":"","local":"34KS","name":"St Joseph Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1350,"latitude":37.67169952392578,"longitude":-97.29119873046876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34LL","iata":"","local":"34LL","name":"Il Dept of Corrections/Lawrence County Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Sumner","elevation_ft":490,"latitude":38.7282981873,"longitude":-87.90809631350001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34LS","iata":"","local":"","name":"Coastal Ridge Airpark","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Abbeville","elevation_ft":20,"latitude":30.0289,"longitude":-92.014503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34MA","iata":"","local":"34MA","name":"Crowhurst Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Manchester-By-The Sea","elevation_ft":70,"latitude":42.57630157470703,"longitude":-70.73889923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34MN","iata":"","local":"","name":"Peil/Juliar Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Mound","elevation_ft":627,"latitude":44.959685,"longitude":-93.649399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34MO","iata":"","local":"34MO","name":"Cyanamid-Hannibal Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Hannibal","elevation_ft":468,"latitude":39.83250045776367,"longitude":-91.44020080566406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34II","iata":"","local":"34II","name":"Burk Personal Use Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Anderson","elevation_ft":930,"latitude":40.050816,"longitude":-85.602318,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1250,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34IL","iata":"","local":"34IL","name":"G. Bray Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lewistown","elevation_ft":550,"latitude":40.361545,"longitude":-90.109849,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34MI","iata":"","local":"34MI","name":"De Witt Property Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Spring Lake","elevation_ft":605,"latitude":43.10029983520508,"longitude":-86.22339630126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34TS","iata":"","local":"34TS","name":"Canyon Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canyon Lake","elevation_ft":940,"latitude":29.91580009460449,"longitude":-98.24749755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34MS","iata":"","local":"34MS","name":"Colle Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Gautier","elevation_ft":25,"latitude":30.473800659179688,"longitude":-88.69619750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34LA","iata":"","local":"34LA","name":"Swamp Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"DeRidder","elevation_ft":180,"latitude":30.772236,"longitude":-93.271465,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34NC","iata":"","local":"34NC","name":"Carolinas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":750,"latitude":35.204368,"longitude":-80.838466,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H3","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34NH","iata":"","local":"34NH","name":"Stone Song Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Milford","elevation_ft":360,"latitude":42.814701080322266,"longitude":-71.66110229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34NJ","iata":"","local":"","name":"Chilton Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Pequannock","elevation_ft":186,"latitude":40.957901,"longitude":-74.309601,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34OH","iata":"","local":"34OH","name":"Arend Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mark Center","elevation_ft":720,"latitude":41.25699996948242,"longitude":-84.6416015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34OK","iata":"","local":"","name":"Double Bar S Ranches Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Shamrock","elevation_ft":950,"latitude":35.900101,"longitude":-96.5503,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34OR","iata":"","local":"34OR","name":"Providence Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":234,"latitude":45.52819824,"longitude":-122.6119995,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":106,"width_ft":106,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34TN","iata":"","local":"34TN","name":"Livingston Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Livingston","elevation_ft":990,"latitude":36.383848,"longitude":-85.328069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34SC","iata":"","local":"34SC","name":"Toms Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Kingstree","elevation_ft":80,"latitude":33.771833,"longitude":-79.96625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2117,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34TE","iata":"","local":"34TE","name":"Bee Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Maypearl","elevation_ft":760,"latitude":32.23210144042969,"longitude":-97.00859832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3030,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34ND","iata":"","local":"34ND","name":"Plath Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Davenport","elevation_ft":928,"latitude":46.7057991027832,"longitude":-97.15650177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34NE","iata":"","local":"34NE","name":"Evans Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Hershey","elevation_ft":2895,"latitude":41.223899841308594,"longitude":-100.93499755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34TX","iata":"","local":"34TX","name":"Buckmaster Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":920,"latitude":32.62710189819336,"longitude":-97.78359985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34VA","iata":"","local":"34VA","name":"Loudoun Hospital Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Leesburg","elevation_ft":315,"latitude":39.07720184326172,"longitude":-77.47640228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34WA","iata":"","local":"34WA","name":"Orbit Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Washougal","elevation_ft":22,"latitude":45.567901611328125,"longitude":-122.31900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"34XA","iata":"","local":"34XA","name":"Dell Childrens North Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":934,"latitude":30.485456,"longitude":-97.800944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35AK","iata":"","local":"35AK","name":"Seal Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Deadhorse","elevation_ft":30,"latitude":70.492202758789,"longitude":-148.69500732422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1050,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35AL","iata":"","local":"","name":"Silcox Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Citronelle","elevation_ft":339,"latitude":31.089605,"longitude":-88.245089,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35AR","iata":"","local":"","name":"Black Horse Landing Ultralightport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Eureka Springs","elevation_ft":1207,"latitude":36.3564,"longitude":-93.686302,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2005,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35CA","iata":"","local":"35CA","name":"Los Angeles County/USC Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":454,"latitude":34.057766,"longitude":-118.208096,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35FA","iata":"","local":"35FA","name":"Rimes Lakecrest Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Cross Creek","elevation_ft":65,"latitude":29.46789932250977,"longitude":-82.15879821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3400,"width_ft":200,"surface":"T"},{"id":"10/28","length_ft":4600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35CO","iata":"","local":"35CO","name":"Lone Tree Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Punkin Center","elevation_ft":5525,"latitude":38.886555,"longitude":-103.812561,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4900,"width_ft":40,"surface":"G"},{"id":"14/32","length_ft":5250,"width_ft":55,"surface":"T"},{"id":"16/34","length_ft":1900,"width_ft":55,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34XS","iata":"","local":"34XS","name":"Flying Hare Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":225,"latitude":30.391944,"longitude":-95.538611,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35FL","iata":"","local":"35FL","name":"St Vincent's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville","elevation_ft":63,"latitude":30.308245,"longitude":-81.690613,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":96,"width_ft":87,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35GA","iata":"","local":"35GA","name":"Buford Precinct Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Buford","elevation_ft":1070,"latitude":34.097900390625,"longitude":-84.01239776611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35LL","iata":"","local":"35LL","name":"Crawford Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Robinson","elevation_ft":550,"latitude":39.015899658203125,"longitude":-87.75,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35LS","iata":"","local":"35LS","name":"The Bluffs Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":116,"latitude":30.8031005859375,"longitude":-91.24490356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35MA","iata":"","local":"35MA","name":"Idlewide Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Beverly","elevation_ft":25,"latitude":42.55799865722656,"longitude":-70.8125991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35IL","iata":"","local":"35IL","name":"7th Heaven Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"La Moille","elevation_ft":800,"latitude":41.534065,"longitude":-89.204532,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35FD","iata":"","local":"35FD","name":"Rush Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Trenton","elevation_ft":80,"latitude":29.69230079650879,"longitude":-82.72920227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35KY","iata":"","local":"35KY","name":"Welcome Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Franklin","elevation_ft":695,"latitude":36.711504,"longitude":-86.636038,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35IS","iata":"","local":"35IS","name":"Enoch Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Findlay","elevation_ft":676,"latitude":39.52840042114258,"longitude":-88.76399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2620,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35IN","iata":"","local":"35IN","name":"Ellison Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Tipton","elevation_ft":875,"latitude":40.29449844360352,"longitude":-85.94249725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35MI","iata":"","local":"35MI","name":"Law Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Vermontville","elevation_ft":920,"latitude":42.6338996887207,"longitude":-84.98580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35MO","iata":"","local":"35MO","name":"Camp Clark Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Nevada","elevation_ft":900,"latitude":37.81669998168945,"longitude":-94.30020141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"T"},{"id":"H2","length_ft":100,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35MU","iata":"","local":"35MU","name":"AE 146 Pike County Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Louisiana","elevation_ft":521,"latitude":39.414878,"longitude":-91.098633,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35NH","iata":"","local":"35NH","name":"Cobbetts Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Windham","elevation_ft":177,"latitude":42.806914,"longitude":-71.275853,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":1500,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35NJ","iata":"","local":"35NJ","name":"Mid-State Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Somerville","elevation_ft":260,"latitude":40.600399017333984,"longitude":-75.71939849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35NK","iata":"","local":"35NK","name":"Tiger Paw Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Lyndonville","elevation_ft":295,"latitude":43.367099,"longitude":-78.414026,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35NY","iata":"","local":"","name":"Ciszak Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Springville","elevation_ft":1397,"latitude":42.512293,"longitude":-78.734894,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35OH","iata":"","local":"35OH","name":"Gainey Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Massillon","elevation_ft":940,"latitude":40.81869888305664,"longitude":-81.52369689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35OK","iata":"","local":"","name":"Schumacher Field","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Clinton","elevation_ft":1595,"latitude":35.5,"longitude":-99.035598,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35PA","iata":"","local":"","name":"Spring Land Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Plumsteadville","elevation_ft":550,"latitude":40.3937,"longitude":-75.164299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35NE","iata":"","local":"35NE","name":"Shelburnes Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ogallala","elevation_ft":3475,"latitude":41.04999923706055,"longitude":-101.80500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35OL","iata":"","local":"35OL","name":"Henderson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mooreland","elevation_ft":1750,"latitude":36.63309860229492,"longitude":-99.15119934082033,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35MT","iata":"","local":"35MT","name":"Haynes Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3620,"latitude":45.861717,"longitude":-108.646765,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35SC","iata":"","local":"35SC","name":"Kershaw Health Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Camden","elevation_ft":158,"latitude":34.253527,"longitude":-80.59154,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35TA","iata":"","local":"35TA","name":"Texas Health Presbyterian Hospital Plano Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":669,"latitude":33.0434989929,"longitude":-96.83719635010002,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35TE","iata":"","local":"","name":"NE Police Station Nr 2 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":53,"latitude":29.813299,"longitude":-95.336304,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2008,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35TN","iata":"","local":"35TN","name":"DeKalb Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Smithville","elevation_ft":1114,"latitude":35.960944,"longitude":-85.830211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35VA","iata":"","local":"35VA","name":"Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"South Hill","elevation_ft":470,"latitude":36.751347,"longitude":-78.104767,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"35XS","iata":"","local":"35XS","name":"Nocona General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Nocona","elevation_ft":905,"latitude":33.778492,"longitude":-97.73256,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36AA","iata":"","local":"36AA","name":"W. M. Thomas Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Sawyerville","elevation_ft":165,"latitude":32.716836,"longitude":-87.749524,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36AL","iata":"","local":"36AL","name":"Hidden Springs Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Ozark","elevation_ft":346,"latitude":31.491973,"longitude":-85.534407,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35WA","iata":"","local":"35WA","name":"Fisher Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Washtucna","elevation_ft":1521,"latitude":46.747883,"longitude":-118.419139,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35XA","iata":"","local":"35XA","name":"Rcade Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Livingston","elevation_ft":267,"latitude":30.834058,"longitude":-94.941683,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1461,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36CL","iata":"","local":"36CL","name":"Tri-City Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Oceanside","elevation_ft":260,"latitude":33.185298919677734,"longitude":-117.29100036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":68,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36FA","iata":"","local":"36FA","name":"Orlando Helicopter Adventures Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Kissimmee","elevation_ft":85,"latitude":28.333457,"longitude":-81.487765,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36FD","iata":"","local":"36FD","name":"Bay Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":16,"latitude":30.19379997253418,"longitude":-85.66130065917969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36FL","iata":"","local":"36FL","name":"Mease Countryside Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Safety Harbor","elevation_ft":32,"latitude":28.0428,"longitude":-82.707377,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36ID","iata":"","local":"36ID","name":"Dorothy Roeber Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Atlanta","elevation_ft":5200,"latitude":43.8072,"longitude":-115.1308,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36IL","iata":"","local":"36IL","name":"Batchtown Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Batchtown","elevation_ft":595,"latitude":39.033353,"longitude":-90.666094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36AR","iata":"","local":"36AR","name":"David Stanley Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Gregory","elevation_ft":200,"latitude":35.20640182495117,"longitude":-91.31890106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36KS","iata":"","local":"36KS","name":"White Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Galesburg","elevation_ft":1000,"latitude":37.4748,"longitude":-95.343597,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2690,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36CO","iata":"","local":"36CO","name":"Fat Chance Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Peyton","elevation_ft":7100,"latitude":39.10609817504883,"longitude":-104.54399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36CA","iata":"","local":"36CA","name":"Stone Land County Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stratford","elevation_ft":265,"latitude":36.13190078735352,"longitude":-119.98600006103516,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3300,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36II","iata":"","local":"36II","name":"Newby Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Brownsburg","elevation_ft":878,"latitude":39.84120178222656,"longitude":-86.34860229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36LA","iata":"","local":"36LA","name":"Lafayette Training Center - Cusa Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":106,"latitude":30.1658000946,"longitude":-92.05870056150002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36LL","iata":"","local":"36LL","name":"Calhoun Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Hardin","elevation_ft":460,"latitude":39.15890121459961,"longitude":-90.62220001220705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36MA","iata":"","local":"36MA","name":"Beth Israel Deaconess Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Boston","elevation_ft":161,"latitude":42.338161,"longitude":-71.109107,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":49,"width_ft":49,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36MN","iata":"","local":"","name":"Wagner Farm Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Barnesville","elevation_ft":935,"latitude":46.6716,"longitude":-96.575302,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36NC","iata":"","local":"","name":"Greensboro North Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Greensboro","elevation_ft":900,"latitude":36.253601,"longitude":-79.908096,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2007,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36NH","iata":"","local":"36NH","name":"Long Pond Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Pelham","elevation_ft":185,"latitude":42.700801849365234,"longitude":-71.37110137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":87,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36NJ","iata":"","local":"36NJ","name":"Colliers Mills Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Cassville","elevation_ft":130,"latitude":40.06340026855469,"longitude":-74.44129943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36MI","iata":"","local":"22T","name":"Tecumseh Mills Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Tecumseh","elevation_ft":797,"latitude":42.034351,"longitude":-83.879328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36MO","iata":"","local":"36MO","name":"Harrison Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rolla","elevation_ft":1050,"latitude":37.85279846191406,"longitude":-91.64679718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2750,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36MT","iata":"","local":"36MT","name":"16 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Grass Range","elevation_ft":3960,"latitude":46.800765,"longitude":-108.811458,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36OR","iata":"","local":"36OR","name":"Jasper Ridge Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jasper","elevation_ft":1125,"latitude":44.003619,"longitude":-122.880642,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36PN","iata":"","local":"36PN","name":"Us Army Reserve Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Edgemont","elevation_ft":480,"latitude":39.96680068969727,"longitude":-75.45240020751953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36TA","iata":"","local":"36TA","name":"G W Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":824,"latitude":29.553191,"longitude":-98.492577,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36TE","iata":"","local":"36TE","name":"Houston Police Department Northwest Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":101,"latitude":29.857422,"longitude":-95.539819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36TS","iata":"","local":"36TS","name":"4BH Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":920,"latitude":30.71691,"longitude":-97.77673,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36UT","iata":"","local":"36UT","name":"Park City Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Park City","elevation_ft":6759,"latitude":40.687822,"longitude":-111.470627,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":76,"width_ft":76,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36VA","iata":"","local":"36VA","name":"Carilion Westlake Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Hardy","elevation_ft":990,"latitude":37.115861,"longitude":-79.718361,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36VT","iata":"","local":"36VT","name":"North Hero Passage Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VT","municipality":"North Hero","elevation_ft":102,"latitude":44.854722,"longitude":-73.285556,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":2500,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37AL","iata":"","local":"37AL","name":"Veterans Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Pell City","elevation_ft":455,"latitude":33.603568,"longitude":-86.302934,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37AR","iata":"","local":"","name":"Beech Creek Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Hamburg","elevation_ft":175,"latitude":33.182499,"longitude":-91.628304,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"36TN","iata":"","local":"36TN","name":"Ruckman Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":660,"latitude":36.471847,"longitude":-87.135674,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36XS","iata":"","local":"36XS","name":"Mill Iron Ranch South Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wellington","elevation_ft":2097,"latitude":34.897,"longitude":-100.11789,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37AZ","iata":"","local":"37AZ","name":"Sarita Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Coolidge","elevation_ft":1464,"latitude":32.93560028076172,"longitude":-111.48500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37CO","iata":"","local":"37CO","name":"Ash Mesa Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Olathe","elevation_ft":5681,"latitude":38.56719970703125,"longitude":-107.99600219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37FA","iata":"","local":"37FA","name":"Advent Health Orlando Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":75,"latitude":28.575654,"longitude":-81.368268,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":700,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37FD","iata":"","local":"","name":"Ringhaver Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Palm Bay","elevation_ft":31,"latitude":27.988899,"longitude":-80.626999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37KS","iata":"","local":"","name":"Bar P Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Howard","elevation_ft":1060,"latitude":37.481998,"longitude":-96.337797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37KY","iata":"","local":"37KY","name":"University of Kentucky Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":1050,"latitude":38.030586,"longitude":-84.508214,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":180,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37LA","iata":"","local":"37LA","name":"Wayne Brown Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Clayton","elevation_ft":59,"latitude":31.72769927978516,"longitude":-91.58290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37FL","iata":"","local":"37FL","name":"Flying Harness Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bell","elevation_ft":78,"latitude":29.718599319458008,"longitude":-82.84459686279297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37IL","iata":"","local":"37IL","name":"Minder Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lincoln","elevation_ft":600,"latitude":40.133399963378906,"longitude":-89.32510375976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37ID","iata":"","local":"37ID","name":"Hungry Ridge Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Grangeville","elevation_ft":4599,"latitude":45.782417,"longitude":-115.938,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2248,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37CL","iata":"","local":"37CL","name":"Lyall-Roberts Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Pauma Valley","elevation_ft":925,"latitude":33.324501,"longitude":-116.989998,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1700,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37CA","iata":"","local":"37CA","name":"Billy Joe Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Temecula","elevation_ft":1350,"latitude":33.50699996948242,"longitude":-117.0709991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37IN","iata":"","local":"37IN","name":"Felix Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Stockwell","elevation_ft":750,"latitude":40.29169845581055,"longitude":-86.7802963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37LS","iata":"","local":"37LS","name":"Vortex 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Iberia","elevation_ft":20,"latitude":30.03019905090332,"longitude":-91.87210083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37MA","iata":"","local":"37MA","name":"Hanson Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Wilbraham","elevation_ft":400,"latitude":42.122778,"longitude":-72.423611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37MN","iata":"","local":"","name":"Nagel and Schultz Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Belle Plaine","elevation_ft":970,"latitude":44.582199,"longitude":-93.801598,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37NC","iata":"","local":"37NC","name":"Valdese General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Valdese","elevation_ft":1250,"latitude":35.74810028076172,"longitude":-81.52249908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37NH","iata":"","local":"37NH","name":"Hooksett's Seaplane Landing","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Hooksett","elevation_ft":175,"latitude":43.085833,"longitude":-71.466944,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":2500,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37NJ","iata":"","local":"37NJ","name":"Deepwater Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Deepwater","elevation_ft":0,"latitude":39.697601318359375,"longitude":-75.49490356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37NY","iata":"","local":"37NY","name":"Cuba Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Cuba","elevation_ft":1600,"latitude":42.2209014893,"longitude":-78.26640319820001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37OH","iata":"","local":"37OH","name":"Southwest General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Middleburg Heights","elevation_ft":792,"latitude":41.371141,"longitude":-81.831367,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37MS","iata":"","local":"37MS","name":"P2 Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Clinton","elevation_ft":246,"latitude":32.389828,"longitude":-90.350779,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37NE","iata":"","local":"37NE","name":"Watermeier Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Burr","elevation_ft":1100,"latitude":40.6077995300293,"longitude":-96.30780029296876,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37ND","iata":"","local":"37ND","name":"Sunset Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Dunn Center","elevation_ft":2360,"latitude":47.23199844360352,"longitude":-102.50900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37LL","iata":"","local":"37LL","name":"Dale Curten Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Modoc","elevation_ft":615,"latitude":38.04779815673828,"longitude":-89.99710083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1750,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37OK","iata":"","local":"37OK","name":"Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Ada","elevation_ft":1072,"latitude":34.777329,"longitude":-96.633577,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37PN","iata":"","local":"37PN","name":"UPMC Hanover Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hanover","elevation_ft":672,"latitude":39.808025,"longitude":-76.982344,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37TA","iata":"","local":"37TA","name":"Texas Health Presbyterian Hospital Dallas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":563,"latitude":32.880451,"longitude":-96.761044,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37TN","iata":"","local":"37TN","name":"University of Tennessee Lifestar Sweetwater Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Sweetwater","elevation_ft":968,"latitude":35.609402,"longitude":-84.455299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"},{"id":"H2","length_ft":21,"width_ft":21,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37VA","iata":"","local":"37VA","name":"St. Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":263,"latitude":37.570278,"longitude":-77.502778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"37WI","iata":"","local":"37WI","name":"Docken Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mount Horeb","elevation_ft":1230,"latitude":42.9911003112793,"longitude":-89.75350189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37TS","iata":"","local":"37TS","name":"J Linn Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Greenville","elevation_ft":460,"latitude":32.9907,"longitude":-96.040002,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38IS","iata":"","local":"38IS","name":"Winchester Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Nauvoo","elevation_ft":685,"latitude":40.58200073242188,"longitude":-91.3584976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1740,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37OR","iata":"","local":"37OR","name":"Vey Sheep Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Starkey","elevation_ft":4158,"latitude":45.09320068359375,"longitude":-118.39900207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":4500,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37TX","iata":"","local":"37TX","name":"Yates Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Saba","elevation_ft":1400,"latitude":31.32159996032715,"longitude":-98.8656005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37TE","iata":"","local":"37TE","name":"Johnnie Volk Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hitchcock","elevation_ft":13,"latitude":29.360200881958008,"longitude":-95.00990295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38ID","iata":"","local":"38ID","name":"Sky Ranch North Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Nampa","elevation_ft":2750,"latitude":43.5094444444,"longitude":-116.667916667,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38CO","iata":"","local":"38CO","name":"Basin Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Naturita","elevation_ft":5400,"latitude":38.21860122680664,"longitude":-108.2760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":87,"width_ft":77,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38FD","iata":"","local":"38FD","name":"Griffin's Main Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Frostproof","elevation_ft":125,"latitude":27.73699951171875,"longitude":-81.53199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38FL","iata":"","local":"38FL","name":"Flagler Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"St Augustine","elevation_ft":26,"latitude":29.862199783325195,"longitude":-81.31670379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38GA","iata":"","local":"38GA","name":"Lanier Park Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Gainesville","elevation_ft":1171,"latitude":34.319698333740234,"longitude":-83.79669952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38FA","iata":"","local":"38FA","name":"Blue Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Madison","elevation_ft":95,"latitude":30.48349952697754,"longitude":-83.2499008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38AR","iata":"","local":"38AR","name":"Williams Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Siloam Springs","elevation_ft":1150,"latitude":36.11880111694336,"longitude":-94.46820068359376,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38AK","iata":"","local":"38AK","name":"Mels Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":340,"latitude":61.5625,"longitude":-149.66799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":1500,"width_ft":400,"surface":"W"},{"id":"18/36","length_ft":1500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38CN","iata":"","local":"38CN","name":"Sanborn Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Meridian","elevation_ft":36,"latitude":39.10929870605469,"longitude":-121.88400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2745,"width_ft":95,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38II","iata":"","local":"38II","name":"Hampton Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greencastle","elevation_ft":895,"latitude":39.72861,"longitude":-86.822484,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38IN","iata":"","local":"38IN","name":"Fuller Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Brownsburg","elevation_ft":910,"latitude":39.902000427246094,"longitude":-86.36309814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":125,"surface":"T"},{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38KS","iata":"","local":"","name":"Savute Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Kechi","elevation_ft":1400,"latitude":37.777802,"longitude":-97.277496,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38KY","iata":"","local":"38KY","name":"Grant County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Williamstown","elevation_ft":956,"latitude":38.6464,"longitude":-84.57847,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38LL","iata":"","local":"38LL","name":"Gateway Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Granite City","elevation_ft":425,"latitude":38.70830154418945,"longitude":-90.1438980102539,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38MT","iata":"","local":"38MT","name":"AV8-ORR Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Hamilton","elevation_ft":3600,"latitude":46.227961,"longitude":-114.157333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38NC","iata":"","local":"","name":"Annie Penn Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Reidsville","elevation_ft":816,"latitude":36.353901,"longitude":-79.666702,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38NJ","iata":"","local":"38NJ","name":"Wjrz Radio Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Manahawkin","elevation_ft":11,"latitude":39.69929885864258,"longitude":-74.23429870605469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":480,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38OH","iata":"","local":"38OH","name":"Industry Air Park","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Baltimore","elevation_ft":877,"latitude":39.84479904174805,"longitude":-82.57959747314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38MO","iata":"","local":"38MO","name":"Barber Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Annada","elevation_ft":480,"latitude":39.25559997558594,"longitude":-90.85569763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38ND","iata":"","local":"38ND","name":"Schroeder Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Erie","elevation_ft":1140,"latitude":47.09799957275391,"longitude":-97.40119934082033,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38NE","iata":"","local":"38NE","name":"Boardman Aerial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Henderson","elevation_ft":1720,"latitude":40.75360107421875,"longitude":-97.85140228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2940,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38MI","iata":"","local":"38MI","name":"Chicora Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Allegan","elevation_ft":700,"latitude":42.46689987182617,"longitude":-85.97920227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38LA","iata":"","local":"38LA","name":"Whiteville Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Ville Platte","elevation_ft":43,"latitude":30.784400939941406,"longitude":-92.18229675292967,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38OK","iata":"","local":"38OK","name":"Duncan Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Duncan","elevation_ft":1120,"latitude":34.52135,"longitude":-97.976862,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38OR","iata":"","local":"38OR","name":"Pge Boardman Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Boardman","elevation_ft":682,"latitude":45.69453333,"longitude":-119.8087556,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38TA","iata":"","local":"","name":"Kurio Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":110,"latitude":29.801901,"longitude":-95.565498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":31,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38TE","iata":"","local":"38TE","name":"John S Dunn Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":225,"latitude":29.714123,"longitude":-95.395047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38TS","iata":"","local":"38TS","name":"Steeplechase Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":120,"latitude":29.92564,"longitude":-95.58973,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38TX","iata":"","local":"","name":"Lyndon B Johnson General Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":40,"latitude":29.8127,"longitude":-95.311302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38VA","iata":"","local":"38VA","name":"State Police Division Three Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Appomattox","elevation_ft":830,"latitude":37.36040115356445,"longitude":-78.868896484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38VG","iata":"","local":"38VG","name":"Carilion Tazewell Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Tazewell","elevation_ft":2477,"latitude":37.123164,"longitude":-81.489686,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38OI","iata":"","local":"38OI","name":"Ronshausen Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Darbyville","elevation_ft":750,"latitude":39.68510055541992,"longitude":-83.0718994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38TN","iata":"","local":"38TN","name":"Sugar Grove Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Westmoreland","elevation_ft":800,"latitude":36.625301361083984,"longitude":-86.27330017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38TT","iata":"","local":"38TT","name":"Olympus Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Campbell","elevation_ft":613,"latitude":33.167819,"longitude":-95.980372,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38UT","iata":"","local":"38UT","name":"Hoytsville Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Coalville","elevation_ft":5800,"latitude":40.877415,"longitude":-111.375468,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39AR","iata":"","local":"","name":"Twin Cities Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Van Buren","elevation_ft":410,"latitude":35.417198,"longitude":-94.326401,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39CA","iata":"","local":"39CA","name":"Sce Palm Springs District Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Cathedral City","elevation_ft":300,"latitude":33.786399841308594,"longitude":-117.46600341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39CN","iata":"","local":"39CN","name":"Adventist Health Ukiah Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Ukiah","elevation_ft":608,"latitude":39.153027,"longitude":-123.202127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39DE","iata":"","local":"39DE","name":"Bayhealth Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-DE","municipality":"Milford","elevation_ft":202,"latitude":38.8867,"longitude":-75.390969,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"38VT","iata":"","local":"38VT","name":"Muddy Paw Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Shelburne","elevation_ft":372,"latitude":44.402083,"longitude":-73.157917,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1116,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38WI","iata":"","local":"38WI","name":"Northport Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Royalton","elevation_ft":800,"latitude":44.38859939575195,"longitude":-88.85260009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2270,"width_ft":165,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38WA","iata":"BYW","local":"38WA","name":"Blakely Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Blakely Island","elevation_ft":66,"latitude":48.578998565700005,"longitude":-122.825996399,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39FA","iata":"","local":"39FA","name":"Sanders Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hawthorne","elevation_ft":150,"latitude":29.6625,"longitude":-82.0093,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38XA","iata":"","local":"38XA","name":"Walk-Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Tyler","elevation_ft":474,"latitude":32.408055,"longitude":-95.389444,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3550,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38XS","iata":"","local":"38XS","name":"San Rafael Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Santa Elena","elevation_ft":312,"latitude":26.815200805664062,"longitude":-98.47930145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39AK","iata":"","local":"39AK","name":"Kroenke Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":340,"latitude":61.586021,"longitude":-149.235996,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39FL","iata":"","local":"39FL","name":"Palm Beach Sheriff's Range Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"West Palm Beach","elevation_ft":20,"latitude":26.71699905395508,"longitude":-80.19979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":550,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39GA","iata":"","local":"39GA","name":"Wayne Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Jessup","elevation_ft":99,"latitude":31.601375,"longitude":-81.898524,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39KS","iata":"","local":"","name":"Rolling Meadows Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Worden","elevation_ft":1050,"latitude":38.786098,"longitude":-95.307503,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39KY","iata":"","local":"39KY","name":"Somerset-Pulaski Co EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Somerset","elevation_ft":993,"latitude":37.08539962769999,"longitude":-84.6258010864,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39ME","iata":"","local":"39ME","name":"Maine Coast Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Ellsworth","elevation_ft":161,"latitude":44.5465528,"longitude":-68.4173944,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39NC","iata":"","local":"39NC","name":"Rebel Field","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Rutherfordton","elevation_ft":1078,"latitude":35.324582,"longitude":-81.946798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39LL","iata":"","local":"39LL","name":"Sullivan Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hamilton","elevation_ft":635,"latitude":40.401389,"longitude":-91.303056,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39MI","iata":"","local":"39MI","name":"Huber Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Crystal Falls","elevation_ft":1418,"latitude":46.16880035400391,"longitude":-88.17240142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1625,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39MO","iata":"","local":"39MO","name":"Gardner Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1325,"latitude":37.11869812011719,"longitude":-93.20490264892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1190,"width_ft":40,"surface":"T"},{"id":"15/33","length_ft":1190,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39IA","iata":"","local":"39IA","name":"Husband Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Dallas Center","elevation_ft":1010,"latitude":41.67940139770508,"longitude":-94.02020263671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39IN","iata":"","local":"39IN","name":"Roberts Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Sulphur Springs","elevation_ft":1085,"latitude":40.00230026245117,"longitude":-85.42890167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39II","iata":"","local":"39II","name":"Miller Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Topeka","elevation_ft":957,"latitude":41.51480102539063,"longitude":-85.55220031738281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39NJ","iata":"","local":"39NJ","name":"New Jersey State Police Troop B Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Totowa","elevation_ft":190,"latitude":40.899034,"longitude":-74.229314,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39NY","iata":"","local":"39NY","name":"Print Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Freeport","elevation_ft":63,"latitude":40.65330123901367,"longitude":-73.57360076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39OR","iata":"","local":"39OR","name":"Croman Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"White City","elevation_ft":1280,"latitude":42.42919921875,"longitude":-122.8759994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39PS","iata":"","local":"39PS","name":"Stat Medevac Harborcreek Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Harborcreek","elevation_ft":760,"latitude":42.172,"longitude":-79.942833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39TS","iata":"","local":"39TS","name":"Hearthstone Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":125,"latitude":29.87969970703125,"longitude":-95.63079833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39TX","iata":"","local":"39TX","name":"Sony Microelectronics Helistop","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":765,"latitude":29.444700241088867,"longitude":-98.63999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39VA","iata":"","local":"","name":"Kingstowne Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Alexandria","elevation_ft":200,"latitude":38.7714,"longitude":-77.139397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39OH","iata":"","local":"39OH","name":"Crosswind Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Minerva","elevation_ft":1160,"latitude":40.81230163574219,"longitude":-81.05509948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39SC","iata":"","local":"39SC","name":"Rizzy Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Clover","elevation_ft":775,"latitude":35.158436,"longitude":-81.2256,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39OK","iata":"","local":"39OK","name":"Paradise Air Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Goldsby","elevation_ft":1205,"latitude":35.11149978637695,"longitude":-97.47930145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39TA","iata":"","local":"39TA","name":"Flying Tigers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paris","elevation_ft":588,"latitude":33.6525993347168,"longitude":-95.65579986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2380,"width_ft":20,"surface":"A"},{"id":"16/34","length_ft":1375,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39TN","iata":"","local":"39TN","name":"Big Sandy Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Big Sandy","elevation_ft":632,"latitude":36.272649,"longitude":-88.040646,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39XA","iata":"","local":"39XA","name":"Childrens Medical Center Plano Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":675,"latitude":33.077694,"longitude":-96.801111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39XS","iata":"","local":"39XS","name":"Kimble Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Junction","elevation_ft":1749,"latitude":30.49818,"longitude":-99.781076,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AA3","iata":"","local":"3AA3","name":"CVTC Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Valdez","elevation_ft":50,"latitude":61.13,"longitude":-146.3705554,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AK0","iata":"","local":"","name":"Little Niklason Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":380,"latitude":61.626499,"longitude":-149.287994,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AK1","iata":"","local":"","name":"Deshka Landing Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":110,"latitude":61.7188,"longitude":-150.195999,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":660,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"39WA","iata":"","local":"39WA","name":"Tailskid Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tum Tum","elevation_ft":1910,"latitude":47.851898193359375,"longitude":-117.78199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AL0","iata":"","local":"3AL0","name":"Fayette County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Fayette","elevation_ft":370,"latitude":33.70920181274414,"longitude":-87.82360076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AL2","iata":"","local":"3AL2","name":"East Alabama Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Opelika","elevation_ft":749,"latitude":32.639198303222656,"longitude":-85.4021987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AL3","iata":"","local":"3AL3","name":"Tuscaloosa Police Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Tuscaloosa","elevation_ft":160,"latitude":33.17409896850586,"longitude":-87.55709838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AL4","iata":"","local":"","name":"Aldot Complex Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Montgomery","elevation_ft":221,"latitude":32.413601,"longitude":-86.268097,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AL9","iata":"","local":"3AL9","name":"Cullman Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Cullman","elevation_ft":826,"latitude":34.20059967041016,"longitude":-86.80470275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AR1","iata":"","local":"3AR1","name":"Pine Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Yellville","elevation_ft":800,"latitude":36.41059875488281,"longitude":-92.66329956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AL8","iata":"","local":"3AL8","name":"Flint River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Owens Crossroads","elevation_ft":590,"latitude":34.61920166015625,"longitude":-86.46690368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2669,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AL1","iata":"","local":"3AL1","name":"Flying H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Hartford","elevation_ft":264,"latitude":31.05039978027344,"longitude":-85.685302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AL6","iata":"","local":"3AL6","name":"Town & Country Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Branchville","elevation_ft":730,"latitude":33.4901008605957,"longitude":-86.4124984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR0","iata":"","local":"3AR0","name":"Frost Flying Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Marianna","elevation_ft":240,"latitude":34.821512,"longitude":-90.846521,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK8","iata":"","local":"3AK8","name":"Boisselle's Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":400,"latitude":61.66249847412109,"longitude":-149.39199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1320,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AZ0","iata":"","local":"3AZ0","name":"Flagstaff Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Flagstaff","elevation_ft":7016,"latitude":35.208297,"longitude":-111.643164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AZ1","iata":"","local":"3AZ1","name":"Pixley-Richards Gilbert Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Gilbert","elevation_ft":1231,"latitude":33.37229919433594,"longitude":-111.83699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AZ4","iata":"","local":"3AZ4","name":"John C Lincoln Deer Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1380,"latitude":33.665905,"longitude":-112.115325,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AZ6","iata":"","local":"3AZ6","name":"Banner Del E Webb Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Sun City West","elevation_ft":1255,"latitude":33.659335,"longitude":-112.373496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AZ7","iata":"","local":"3AZ7","name":"The Buttes in Tempe Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tempe","elevation_ft":1297,"latitude":33.404643,"longitude":-111.970194,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3AR8","iata":"","local":"3AR8","name":"River Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Heber Springs","elevation_ft":260,"latitude":35.472329,"longitude":-91.96302,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR9","iata":"","local":"3AR9","name":"Hog Air Aviation Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Paragould","elevation_ft":240,"latitude":36.055213,"longitude":-90.366851,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AZ8","iata":"","local":"3AZ8","name":"High Mesa Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Solomon","elevation_ft":3080,"latitude":32.76685,"longitude":-109.653254,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3300,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR3","iata":"","local":"3AR3","name":"Cypress Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Cabot","elevation_ft":280,"latitude":35.059658,"longitude":-92.082145,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR6","iata":"","local":"3AR6","name":"Crystal Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Little Rock","elevation_ft":500,"latitude":34.728493,"longitude":-92.516985,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AZ5","iata":"","local":"3AZ5","name":"Hualapai Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Peach Springs","elevation_ft":5317,"latitude":35.572200775146484,"longitude":-113.29199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4790,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CA1","iata":"","local":"3CA1","name":"Newport Beach Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Newport Beach","elevation_ft":156,"latitude":33.626399993896484,"longitude":-117.8769989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CA2","iata":"","local":"3CA2","name":"Jamboree Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Irvine","elevation_ft":77,"latitude":33.67779922485352,"longitude":-117.83699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":88,"width_ft":88,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CA3","iata":"","local":"","name":"Dixon Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"New Cuyama","elevation_ft":2440,"latitude":34.922199,"longitude":-119.526001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CA5","iata":"","local":"","name":"Haws Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Madera","elevation_ft":192,"latitude":36.9416,"longitude":-120.242995,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CA6","iata":"","local":"3CA6","name":"Trizec 5670 Wilshire LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":559,"latitude":34.061962,"longitude":-118.352146,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CA8","iata":"","local":"3CA8","name":"Holy Cross Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Mission Hills","elevation_ft":1031,"latitude":34.280109,"longitude":-118.461186,"has_tower":false,"has_beacon":false,"runways":[{"id":"H2","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CL0","iata":"","local":"3CL0","name":"UC Davis Medical Center Tower II Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Sacramento","elevation_ft":236,"latitude":38.554831,"longitude":-121.455491,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CL1","iata":"","local":"3CL1","name":"Metropolitan Water District Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":465,"latitude":34.054704,"longitude":-118.23636,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":67,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CL3","iata":"","local":"3CL3","name":"World Trade Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Long Beach","elevation_ft":398,"latitude":33.777801513671875,"longitude":-118.1999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CL5","iata":"","local":"3CL5","name":"Chase Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":412,"latitude":34.037200927734375,"longitude":-118.25800323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CL7","iata":"","local":"3CL7","name":"Raleigh Enterprises Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":200,"latitude":34.036324,"longitude":-118.443555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CA7","iata":"","local":"3CA7","name":"Metz Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Greenfield","elevation_ft":240,"latitude":36.32830047607422,"longitude":-121.18699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3400,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CL9","iata":"","local":"3CL9","name":"SCE Northern Division Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Ventura","elevation_ft":273,"latitude":34.286414,"longitude":-119.170676,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CN2","iata":"","local":"3CN2","name":"Santa Barbara Cottage Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Barbara","elevation_ft":201,"latitude":34.43,"longitude":-119.724166,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CN4","iata":"","local":"3CN4","name":"Kaiser Permanente Anaheim Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Anaheim","elevation_ft":341,"latitude":33.852,"longitude":-117.8453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CN5","iata":"","local":"3CN5","name":"Los Angeles County Sheriffs Dept South LA Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":209,"latitude":33.92864,"longitude":-118.299004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CO4","iata":"","local":"3CO4","name":"Tercio Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Stonewall","elevation_ft":7957,"latitude":37.070899963378906,"longitude":-105.0189971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CO3","iata":"","local":"3CO3","name":"Sterling Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Sterling","elevation_ft":3946,"latitude":40.61249923706055,"longitude":-103.22000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CO5","iata":"","local":"3CO5","name":"Texas Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Texas Creek","elevation_ft":6250,"latitude":38.409400939941406,"longitude":-105.58499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL9","iata":"","local":"","name":"Sun N Lake Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Sebring","elevation_ft":156,"latitude":27.538601,"longitude":-81.509804,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CO2","iata":"","local":"3CO2","name":"Mertens Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Sterling","elevation_ft":4192,"latitude":40.616391,"longitude":-103.332436,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CO7","iata":"","local":"3CO7","name":"Dietrichs Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6780,"latitude":39.33250045776367,"longitude":-104.56600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CN7","iata":"","local":"3CN7","name":"Alta Mesa Airpark","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Wilton","elevation_ft":125,"latitude":38.379143,"longitude":-121.221728,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CO8","iata":"","local":"3CO8","name":"Estes Park Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Estes Park","elevation_ft":7674,"latitude":40.371371,"longitude":-105.515024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3CO9","iata":"","local":"3CO9","name":"D B Smith Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Victor","elevation_ft":9710,"latitude":38.712501525878906,"longitude":-105.14199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FA3","iata":"","local":"3FA3","name":"Southfork Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Saint Cloud","elevation_ft":80,"latitude":28.226944,"longitude":-81.366528,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FA5","iata":"","local":"3FA5","name":"Richard Kohler Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Osteen","elevation_ft":25,"latitude":28.830778,"longitude":-81.115531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FA6","iata":"","local":"3FA6","name":"Sumter County Sheriff's Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Bushnell","elevation_ft":77,"latitude":28.662544,"longitude":-82.107508,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FA8","iata":"","local":"3FA8","name":"Searey Central SPB","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Tavares","elevation_ft":67,"latitude":28.766111,"longitude":-81.74611,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":2000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD1","iata":"","local":"","name":"Tampa Bay Executive Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"New Port Richey","elevation_ft":41,"latitude":28.1879997253,"longitude":-82.6256027222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD2","iata":"","local":"3FD2","name":"Leesburg Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Leesburg","elevation_ft":75,"latitude":28.8083,"longitude":-81.866997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD3","iata":"","local":"3FD3","name":"Holmes Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Melbourne","elevation_ft":40,"latitude":28.087799072265625,"longitude":-80.61370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD5","iata":"","local":"3FD5","name":"Arnold Palmer Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":150,"latitude":28.523125,"longitude":-81.380196,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":59,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD6","iata":"","local":"3FD6","name":"Tradewinds Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Scottsmoor","elevation_ft":5,"latitude":28.76420021057129,"longitude":-80.85389709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3FD0","iata":"","local":"3FD0","name":"Last Chance Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":70,"latitude":27.021699905395508,"longitude":-81.45120239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3FD7","iata":"","local":"3FD7","name":"Indian River Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":11,"latitude":27.658395,"longitude":-80.396137,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD8","iata":"","local":"3FD8","name":"West Boca Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Boca Raton","elevation_ft":20,"latitude":26.356321,"longitude":-80.200236,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FD9","iata":"","local":"3FD9","name":"Prairie Lake Private Residential Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Altamonte Springs","elevation_ft":86,"latitude":28.6567,"longitude":-81.353401,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":1800,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL2","iata":"","local":"3FL2","name":"AdventHealth Fish Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Orange City","elevation_ft":45,"latitude":28.9147,"longitude":-81.284698,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL3","iata":"","local":"3FL3","name":"Sheriff's Operation Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":70,"latitude":29.193300247192383,"longitude":-82.17510223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL4","iata":"","local":"3FL4","name":"Knobel Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Cocoa","elevation_ft":38,"latitude":28.24850082397461,"longitude":-80.66200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL6","iata":"","local":"","name":"Wink TV Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":6,"latitude":26.650729,"longitude":-81.855472,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL7","iata":"","local":"3FL7","name":"Ascension Sacred Heart Hospital Emerald Coast Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Miramar Beach","elevation_ft":17,"latitude":30.379072,"longitude":-86.305332,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3FL8","iata":"","local":"3FL8","name":"Hart Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Malone","elevation_ft":125,"latitude":30.9463005065918,"longitude":-85.2738037109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3FL5","iata":"","local":"3FL5","name":"Mills Ranch South Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Kenansville","elevation_ft":60,"latitude":27.77829933166504,"longitude":-80.9218978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA2","iata":"","local":"3GA2","name":"Tanner Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1062,"latitude":33.570098876953125,"longitude":-85.07489776611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GA4","iata":"","local":"3GA4","name":"Stonewall Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Union City","elevation_ft":1020,"latitude":33.60089874267578,"longitude":-84.54910278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GA7","iata":"","local":"","name":"Rhodes Air Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Waynesboro","elevation_ft":195,"latitude":33.162631,"longitude":-81.768816,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2974,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GE1","iata":"","local":"3GE1","name":"Okefenokee Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Folkston","elevation_ft":125,"latitude":30.737499237060547,"longitude":-82.12670135498047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GE2","iata":"","local":"3GE2","name":"Williams Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Stone Mountain","elevation_ft":990,"latitude":33.82080078125,"longitude":-84.12809753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GE3","iata":"","local":"3GE3","name":"Broad River Air Park","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lavonia","elevation_ft":690,"latitude":34.41235,"longitude":-83.18061,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA3","iata":"","local":"3GA3","name":"Warren Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lookout Mountain","elevation_ft":1866,"latitude":34.871111,"longitude":-85.4375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA9","iata":"","local":"3GA9","name":"Vintage Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Zebulon","elevation_ft":873,"latitude":33.13349914550781,"longitude":-84.37740325927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA5","iata":"","local":"3GA5","name":"Diamond R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Villa Rica","elevation_ft":1213,"latitude":33.637831,"longitude":-84.940542,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA1","iata":"","local":"3GA1","name":"Prattsburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Talbotton","elevation_ft":554,"latitude":32.728242,"longitude":-84.356875,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1750,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA8","iata":"","local":"3GA8","name":"Cauley's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Soperton","elevation_ft":251,"latitude":32.32939910888672,"longitude":-82.63500213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GE5","iata":"","local":"3GE5","name":"Rockdale Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Conyers","elevation_ft":865,"latitude":33.680058,"longitude":-84.002785,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GE6","iata":"","local":"3GE6","name":"Wellstar Douglas Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Douglasville","elevation_ft":1120,"latitude":33.73889923095703,"longitude":-84.73280334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3GE9","iata":"","local":"","name":"Holly Farm Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Woodstock","elevation_ft":900,"latitude":34.139999,"longitude":-84.378098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IA0","iata":"","local":"3IA0","name":"Washington County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Washington","elevation_ft":760,"latitude":41.28919982910156,"longitude":-91.6876983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IA2","iata":"","local":"3IA2","name":"Greene County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Jefferson","elevation_ft":1050,"latitude":42.016700744628906,"longitude":-94.38770294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IA6","iata":"","local":"3IA6","name":"Ottumwa Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Ottumwa","elevation_ft":845,"latitude":41.028900146484375,"longitude":-92.39070129394533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3ID4","iata":"","local":"3ID4","name":"Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ID","municipality":"Glenns Ferry","elevation_ft":2560,"latitude":42.9541015625,"longitude":-115.30500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3ID2","iata":"","local":"3ID2","name":"The Last Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Weippe","elevation_ft":3155,"latitude":46.350675,"longitude":-115.977,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3II1","iata":"","local":"3II1","name":"Shenandoah Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Gosport","elevation_ft":720,"latitude":39.41669845581055,"longitude":-86.63580322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3II0","iata":"","local":"3II0","name":"Fremont (Murphy) Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Fremont","elevation_ft":1050,"latitude":41.6910848513,"longitude":-84.864256382,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IG3","iata":"","local":"3IG3","name":"Terry's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Columbia City","elevation_ft":850,"latitude":41.17020034790039,"longitude":-85.42160034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":605,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3II7","iata":"","local":"3II7","name":"Army Aviation Support Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":790,"latitude":39.579924,"longitude":-85.81217,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL3","iata":"","local":"3IL3","name":"Stillman Fire Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Stillman Valley","elevation_ft":720,"latitude":42.10559844970703,"longitude":-89.18329620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL4","iata":"","local":"3IL4","name":"Maaks Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Middletown","elevation_ft":527,"latitude":40.13140106201172,"longitude":-89.59320068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL5","iata":"","local":"","name":"Illinois State Fair Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Springfield","elevation_ft":580,"latitude":39.8358,"longitude":-89.639702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL6","iata":"","local":"3IL6","name":"Pinckneyville Correctional Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Pinckneyville","elevation_ft":463,"latitude":38.08330154418945,"longitude":-89.31999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL7","iata":"","local":"","name":"Home Free Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Steward","elevation_ft":819,"latitude":41.803398,"longitude":-89.021797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL8","iata":"","local":"","name":"Evanston Hospital-Golf Course Site Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Evanston","elevation_ft":610,"latitude":42.064804,"longitude":-87.684502,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IN3","iata":"","local":"","name":"Carlson Farm Airport","category":"closed","iso_country":"US","iso_region":"US-IN","municipality":"Portage","elevation_ft":690,"latitude":41.523102,"longitude":-87.163902,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IL9","iata":"","local":"3IL9","name":"Alekat Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Atlanta","elevation_ft":600,"latitude":40.281024,"longitude":-89.312593,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1995,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IN0","iata":"","local":"3IN0","name":"Flying M Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Portage","elevation_ft":640,"latitude":41.558732,"longitude":-87.125933,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3II9","iata":"","local":"3II9","name":"Dick's Strip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Arcola","elevation_ft":850,"latitude":41.098345,"longitude":-85.241783,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IS9","iata":"","local":"3IS9","name":"Grand Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Grand Tower","elevation_ft":370,"latitude":37.6328010559082,"longitude":-89.5062026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3JY2","iata":"","local":"3JY2","name":"Cherry Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Parsippany-Troy Hills","elevation_ft":3,"latitude":40.8705,"longitude":-74.44325,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3IS5","iata":"","local":"3IS5","name":"Holmes Southeast Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pawnee","elevation_ft":590,"latitude":39.685394,"longitude":-89.598722,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IS7","iata":"","local":"3IS7","name":"Foote Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Wenona","elevation_ft":650,"latitude":41.086700439453125,"longitude":-89.09590148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IS3","iata":"","local":"3IS3","name":"Noland Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Blue Mound","elevation_ft":600,"latitude":39.739237,"longitude":-89.146113,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IS1","iata":"","local":"3IS1","name":"Mc Coy Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Blue Mound","elevation_ft":615,"latitude":39.702827,"longitude":-89.209628,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IN7","iata":"","local":"3IN7","name":"Chain-O-Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"South Bend","elevation_ft":743,"latitude":41.661243,"longitude":-86.353183,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IN8","iata":"","local":"3IN8","name":"Ddt Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Culver","elevation_ft":823,"latitude":41.2047004699707,"longitude":-86.3458023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2020,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IN6","iata":"","local":"3IN6","name":"Holloway Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Washington","elevation_ft":750,"latitude":38.588333,"longitude":-85.505833,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2570,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IN9","iata":"","local":"3IN9","name":"Thomas Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Cicero","elevation_ft":890,"latitude":40.15140151977539,"longitude":-86.11920166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IN5","iata":"","local":"3IN5","name":"Pippenger Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Albion","elevation_ft":980,"latitude":41.31689834594727,"longitude":-85.37139892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS0","iata":"","local":"3KS0","name":"Stormont-Vail Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":920,"latitude":39.0525016784668,"longitude":-95.69550323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"-"},{"id":"H3","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3KS1","iata":"","local":"","name":"Mesa Verde Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":1080,"latitude":39.155602,"longitude":-95.743301,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3KS9","iata":"","local":"3KS9","name":"Tri Rotor Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ulysses","elevation_ft":3091,"latitude":37.726869,"longitude":-101.195288,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3800,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS6","iata":"","local":"3KS6","name":"St Mary Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Manhattan","elevation_ft":1150,"latitude":39.20180130004883,"longitude":-96.60079956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3KS4","iata":"","local":"3KS4","name":"Eveleigh Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ulysses","elevation_ft":3207,"latitude":37.767848,"longitude":-101.434579,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KY0","iata":"","local":"","name":"Lamar Field","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Hawesville","elevation_ft":410,"latitude":37.896702,"longitude":-86.789397,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1730,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3KY1","iata":"","local":"3KY1","name":"Goode Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Utica","elevation_ft":395,"latitude":37.64139938354492,"longitude":-87.13169860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS2","iata":"","local":"3KS2","name":"Munson Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Arkansas City","elevation_ft":1166,"latitude":37.060567,"longitude":-96.998479,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2051,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS7","iata":"","local":"3KS7","name":"Berwick Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Valley Center","elevation_ft":1400,"latitude":37.828227,"longitude":-97.349296,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KY3","iata":"","local":"3KY3","name":"Mason Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Taylorsville","elevation_ft":510,"latitude":38.03829956054688,"longitude":-85.3593978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KY5","iata":"","local":"3KY5","name":"Carroll County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Carrollton","elevation_ft":480,"latitude":38.680497,"longitude":-85.168043,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3KY6","iata":"","local":"","name":"Russell Airport","category":"closed","iso_country":"US","iso_region":"US-KY","municipality":"Battletown","elevation_ft":430,"latitude":38.0306,"longitude":-86.231697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3KY8","iata":"","local":"3KY8","name":"Fidelity Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Covington","elevation_ft":756,"latitude":39.02790069580078,"longitude":-84.52439880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3LA5","iata":"","local":"","name":"Petroleum Helicopters Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":10,"latitude":30.2169,"longitude":-93.153801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3LA7","iata":"","local":"3LA7","name":"Variable Bore Rams Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Broussard","elevation_ft":30,"latitude":30.076753,"longitude":-91.948969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3LA6","iata":"","local":"3LA6","name":"Morgan Crop Service Nr 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":12,"latitude":30.137699127197266,"longitude":-93.0792999267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL1","iata":"","local":"3LL1","name":"Herschel Hunter Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marissa","elevation_ft":470,"latitude":38.223785,"longitude":-89.706689,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KY4","iata":"","local":"3KY4","name":"Craw Daddy Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Carrollton","elevation_ft":460,"latitude":38.67279815673828,"longitude":-85.18280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LA4","iata":"","local":"3LA4","name":"Little Pecan Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Grand Chenier","elevation_ft":7,"latitude":29.799701,"longitude":-92.803563,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4002,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LA1","iata":"","local":"3LA1","name":"Wilder Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Kinder","elevation_ft":55,"latitude":30.558500289916992,"longitude":-92.8042984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LA8","iata":"","local":"3LA8","name":"Open A-1 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":16,"latitude":30.138500213623047,"longitude":-93.22789764404295,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2250,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL2","iata":"","local":"3LL2","name":"Hammond-Henry Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Geneseo","elevation_ft":650,"latitude":41.46110153198242,"longitude":-90.15689849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3LL7","iata":"","local":"3LL7","name":"St Margarets Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Spring Valley","elevation_ft":625,"latitude":41.32500076293945,"longitude":-89.19730377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MA0","iata":"","local":"3MA0","name":"Compaq Woburn Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Woburn","elevation_ft":80,"latitude":42.50979995727539,"longitude":-71.13639831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MA1","iata":"","local":"3MA1","name":"Marlborough Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Marlborough","elevation_ft":520,"latitude":42.356201171875,"longitude":-71.55509948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3LL8","iata":"","local":"3LL8","name":"McLeansboro Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"McLeansboro","elevation_ft":415,"latitude":38.076011,"longitude":-88.538446,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL4","iata":"","local":"3LL4","name":"Pillow Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Spring Grove","elevation_ft":815,"latitude":42.44720077514648,"longitude":-88.20149993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LS7","iata":"","local":"3LS7","name":"Bock Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Williamsville","elevation_ft":592,"latitude":39.98640060424805,"longitude":-89.51170349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1725,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL6","iata":"","local":"3LL6","name":"Bickel Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lenzburg","elevation_ft":530,"latitude":38.335,"longitude":-89.769722,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2215,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL9","iata":"","local":"3LL9","name":"Compton Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pocahontas","elevation_ft":535,"latitude":38.80419921875,"longitude":-89.60890197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL3","iata":"","local":"3LL3","name":"Kibler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marshall","elevation_ft":588,"latitude":39.44609832763672,"longitude":-87.64450073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1423,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LS8","iata":"","local":"3LS8","name":"The Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Folsom","elevation_ft":50,"latitude":30.651296,"longitude":-90.114369,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MA3","iata":"","local":"3MA3","name":"Seapuit Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Barnstable","elevation_ft":20,"latitude":41.61149978637695,"longitude":-70.41529846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MA4","iata":"","local":"3MA4","name":"North Chatham Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Chatham","elevation_ft":10,"latitude":41.71480178833008,"longitude":-69.96610260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MA7","iata":"","local":"","name":"Gear Plant Heliport","category":"closed","iso_country":"US","iso_region":"US-MA","municipality":"Lynn","elevation_ft":10,"latitude":42.452141,"longitude":-70.965432,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MA9","iata":"","local":"3MA9","name":"Marston Mills Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Marston Mills","elevation_ft":10,"latitude":41.64039993286133,"longitude":-70.40779876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MD1","iata":"","local":"3MD1","name":"MedStar Southern Maryland Hospital Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Clinton","elevation_ft":270,"latitude":38.748009,"longitude":-76.876858,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MD2","iata":"","local":"3MD2","name":"Garrett County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Oakland","elevation_ft":2457,"latitude":39.41320037841797,"longitude":-79.40119934082031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MD7","iata":"","local":"3MD7","name":"Green Terrace Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":310,"latitude":39.4025993347168,"longitude":-76.50499725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MA5","iata":"","local":"3MA5","name":"Westport Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Westport","elevation_ft":80,"latitude":41.543201,"longitude":-71.035301,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3ME7","iata":"","local":"","name":"Peru / Destiny Cove SPB","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"UNKNOWN","elevation_ft":580,"latitude":44.460597,"longitude":-70.396957,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":4000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3ME8","iata":"","local":"3ME8","name":"Mast Cove Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Naples","elevation_ft":267,"latitude":43.994998931884766,"longitude":-70.64129638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI1","iata":"","local":"","name":"Fuller Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Milford","elevation_ft":1060,"latitude":42.5623,"longitude":-83.659103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI3","iata":"","local":"3MI3","name":"Zayti Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Novi","elevation_ft":901,"latitude":42.440222,"longitude":-83.515861,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI4","iata":"","local":"3MI4","name":"Clear Sky Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Kalamazoo","elevation_ft":980,"latitude":42.185001373291,"longitude":-85.721702575684,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":79,"width_ft":49,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI5","iata":"","local":"","name":"Innes Acres Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Decker","elevation_ft":775,"latitude":43.450001,"longitude":-83.027702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI6","iata":"","local":"3MI6","name":"Highland Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Highland","elevation_ft":1040,"latitude":42.65700149536133,"longitude":-83.65019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI9","iata":"","local":"3MI9","name":"Ness Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MI","municipality":"Rapid River","elevation_ft":580,"latitude":45.903900146484375,"longitude":-86.97029876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":3000,"width_ft":150,"surface":"W"},{"id":"11W/29W","length_ft":5000,"width_ft":150,"surface":"W"},{"id":"14W/32W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN0","iata":"","local":"3MN0","name":"Shadduck Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Annandale","elevation_ft":991,"latitude":45.29219818115234,"longitude":-94.0947036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":8000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN1","iata":"","local":"","name":"Stahlberg-Mohr Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Iron Junction","elevation_ft":1380,"latitude":47.448502,"longitude":-92.644897,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1235,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MI0","iata":"","local":"3MI0","name":"Doss Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lake George","elevation_ft":1050,"latitude":43.9370002746582,"longitude":-85.02200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1320,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MN2","iata":"","local":"3MN2","name":"Mercy Hospital & Healthcare Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Moose Lake","elevation_ft":1060,"latitude":46.44070053100586,"longitude":-92.77549743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN3","iata":"","local":"","name":"Honker Flats Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Middle River","elevation_ft":1190,"latitude":48.538896,"longitude":-95.952004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN4","iata":"","local":"","name":"Agri Helicopter Inc. Heliport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Owatonna","elevation_ft":1148,"latitude":44.094101,"longitude":-93.267997,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN5","iata":"","local":"","name":"Little Rock/Rock Port Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Rice","elevation_ft":1055,"latitude":45.723,"longitude":-94.193901,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":5300,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN6","iata":"","local":"3MN6","name":"Mayo Clinic Health System-Mankato Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Mankato","elevation_ft":1076,"latitude":44.163951,"longitude":-93.983215,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN8","iata":"","local":"","name":"Aysta Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Saint Cloud","elevation_ft":1024,"latitude":45.522701,"longitude":-94.122803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MO1","iata":"","local":"3MO1","name":"Police Department Helicopter Maint Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":855,"latitude":39.0457992554,"longitude":-94.4974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"},{"id":"H2","length_ft":25,"width_ft":25,"surface":"C"},{"id":"H3","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MO3","iata":"","local":"3MO3","name":"Research Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":947,"latitude":39.00809860229492,"longitude":-94.55819702148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":55,"surface":"C"},{"id":"H2","length_ft":70,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN9","iata":"","local":"3MN9","name":"Schumacher Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Oster","elevation_ft":1020,"latitude":44.9844017029,"longitude":-93.9360961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OA3","iata":"","local":"3OA3","name":"Pelton Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Oberlin","elevation_ft":800,"latitude":41.259904,"longitude":-82.20475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MN7","iata":"","local":"3MN7","name":"Blue Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Sabin","elevation_ft":927,"latitude":46.80049896240234,"longitude":-96.59500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MS0","iata":"","local":"3MS0","name":"Grand Gulf Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Port Gibson","elevation_ft":160,"latitude":32.013999938964844,"longitude":-91.0521011352539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MS3","iata":"","local":"3MS3","name":"Root Hog Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Flora","elevation_ft":220,"latitude":32.5159,"longitude":-90.351196,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MS4","iata":"","local":"3MS4","name":"Pascagoula Naval Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":13,"latitude":30.33839988708496,"longitude":-88.57360076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MS5","iata":"","local":"3MS5","name":"Mitchells Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Vaiden","elevation_ft":323,"latitude":33.300218,"longitude":-89.814039,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MS6","iata":"","local":"3MS6","name":"E E Lane Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Flora","elevation_ft":268,"latitude":32.554298400878906,"longitude":-90.30290222167967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MS8","iata":"","local":"3MS8","name":"Fairview Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Scooba","elevation_ft":170,"latitude":32.94219970703125,"longitude":-88.3635025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MS9","iata":"","local":"3MS9","name":"Union Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Union","elevation_ft":512,"latitude":32.581038,"longitude":-89.136972,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2550,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MT5","iata":"","local":"3MT5","name":"Community Hospital of Anaconda EMS Helipad","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Anaconda","elevation_ft":5320,"latitude":46.132137,"longitude":-112.957397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3MT3","iata":"","local":"3MT3","name":"Three Cross Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ryegate","elevation_ft":3930,"latitude":46.125556,"longitude":-109.365,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MS1","iata":"","local":"3MS1","name":"Thomas Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Holly Springs","elevation_ft":485,"latitude":34.80580139160156,"longitude":-89.46089935302734,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4188,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MS2","iata":"","local":"3MS2","name":"Thunderfoot Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Tylertown","elevation_ft":390,"latitude":31.079099655151367,"longitude":-90.02839660644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NA7","iata":"","local":"3NA7","name":"J. R. Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Kensal","elevation_ft":1530,"latitude":47.38610076904297,"longitude":-98.71700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NC2","iata":"","local":"3NC2","name":"Garner Road Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Raleigh","elevation_ft":375,"latitude":35.732111,"longitude":-78.628722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NC7","iata":"","local":"3NC7","name":"Maxwell Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Sparta","elevation_ft":3050,"latitude":36.5192985534668,"longitude":-81.13670349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC6","iata":"","local":"3NC6","name":"Mc Cachren Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Harrisburg","elevation_ft":565,"latitude":35.3117980957,"longitude":-80.644203186,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":23,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NA6","iata":"","local":"3NA6","name":"Risovi Ranch Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hamberg","elevation_ft":1560,"latitude":47.770599365234375,"longitude":-99.46179962158205,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NA0","iata":"","local":"3NA0","name":"Erickson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Clifford","elevation_ft":1095,"latitude":47.41669845581055,"longitude":-97.5114974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC1","iata":"","local":"3NC1","name":"Welborn Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Boonville","elevation_ft":1030,"latitude":36.20539855957031,"longitude":-80.65840148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MT9","iata":"","local":"3MT9","name":"Willow Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Philipsburg","elevation_ft":5536,"latitude":46.471562,"longitude":-113.492461,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":960,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC8","iata":"","local":"3NC8","name":"Chinquapin Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Cashiers","elevation_ft":4200,"latitude":35.157902,"longitude":-83.067047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NH2","iata":"","local":"3NH2","name":"Flying Loon Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Nelson","elevation_ft":1400,"latitude":42.9737639,"longitude":-72.0847278,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":12000,"width_ft":100,"surface":"W"},{"id":"15W/33W","length_ft":1800,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NH4","iata":"","local":"3NH4","name":"Portsmouth Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Portsmouth","elevation_ft":62,"latitude":43.06462,"longitude":-70.791532,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NH9","iata":"","local":"3NH9","name":"Longview Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Alton","elevation_ft":560,"latitude":43.54759979248047,"longitude":-71.22699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NJ0","iata":"","local":"3NJ0","name":"Hamilton Farm Golf Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bedminster","elevation_ft":308,"latitude":40.707801818847656,"longitude":-74.68389892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NJ2","iata":"","local":"3NJ2","name":"Educational Testing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Princeton","elevation_ft":270,"latitude":40.34180068969727,"longitude":-74.71630096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":83,"width_ft":83,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NJ3","iata":"","local":"3NJ3","name":"Dow Jones & Co. Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Princeton","elevation_ft":76,"latitude":40.370399475097656,"longitude":-74.58599853515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NE5","iata":"","local":"3NE5","name":"MT Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Murdock","elevation_ft":1165,"latitude":40.947553,"longitude":-96.202597,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3ND5","iata":"","local":"3ND5","name":"Gage Flying Farmer Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Oriska","elevation_ft":1235,"latitude":47.06110000610352,"longitude":-97.77120208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NE3","iata":"","local":"3NE3","name":"Wells Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Holdrege","elevation_ft":2275,"latitude":40.5,"longitude":-99.31700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NJ4","iata":"","local":"3NJ4","name":"Sarnoff Princeton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Princeton","elevation_ft":90,"latitude":40.33340072631836,"longitude":-74.63289642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NJ8","iata":"","local":"3NJ8","name":"Aventis Pharmaceuticals Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgewater","elevation_ft":189,"latitude":40.62260055541992,"longitude":-74.63269805908203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NK1","iata":"","local":"3NK1","name":"Catskills Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Monticello","elevation_ft":1250,"latitude":41.708723,"longitude":-74.736359,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NK2","iata":"","local":"3NK2","name":"Bassett Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Cooperstown","elevation_ft":1243,"latitude":42.68949890136719,"longitude":-74.92150115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NK3","iata":"","local":"3NK3","name":"Linuo American Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Hopewell Junction","elevation_ft":322,"latitude":41.533948,"longitude":-73.833359,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NK7","iata":"","local":"3NK7","name":"B/G Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Gilboa/Grand Gorge","elevation_ft":1100,"latitude":42.424800872802734,"longitude":-74.45099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NJ6","iata":"","local":"3NJ6","name":"Inductotherm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Rancocas","elevation_ft":65,"latitude":40.015098571777344,"longitude":-74.84290313720703,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4002,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NK8","iata":"","local":"3NK8","name":"B Flat Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Copake","elevation_ft":800,"latitude":42.14059829711914,"longitude":-73.61190032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NK5","iata":"","local":"3NK5","name":"Secret Spot Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Plattsburgh","elevation_ft":155,"latitude":44.61669921875,"longitude":-73.46530151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1950,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NK6","iata":"","local":"3NK6","name":"Tuscarora Plateau Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Tuscarora","elevation_ft":900,"latitude":42.637001037597656,"longitude":-77.88390350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NK4","iata":"","local":"3NK4","name":"Laska Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Jamestown","elevation_ft":1480,"latitude":42.028193,"longitude":-79.19765,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NK9","iata":"","local":"3NK9","name":"Arnot Ogden Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Elmira","elevation_ft":909,"latitude":42.100595,"longitude":-76.826406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":128,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NR5","iata":"","local":"3NR5","name":"UNC Hillsborough Helipad","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Hillsborough","elevation_ft":682,"latitude":36.036394,"longitude":-79.092245,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NV1","iata":"","local":"3NV1","name":"Desert Springs Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":1967,"latitude":36.112528,"longitude":-115.124214,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NY1","iata":"","local":"","name":"Old Orchard Road Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Armonk","elevation_ft":527,"latitude":41.116438,"longitude":-73.715563,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1660,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NY2","iata":"","local":"3NY2","name":"Astoria Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Astoria","elevation_ft":15,"latitude":40.78620147705078,"longitude":-73.91210174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NY8","iata":"","local":"","name":"SUNY Health Science Center Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Syracuse","elevation_ft":452,"latitude":43.042011,"longitude":-76.140479,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":10001,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NY9","iata":"","local":"","name":"Hilltop Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Colden","elevation_ft":1385,"latitude":42.664398,"longitude":-78.670775,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3NY7","iata":"","local":"3NY7","name":"Hiserts Airpark Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ephratah","elevation_ft":813,"latitude":42.984398,"longitude":-74.519083,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NR3","iata":"","local":"3NR3","name":"Transylvania Community Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Brevard","elevation_ft":2110,"latitude":35.270277,"longitude":-82.644167,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2903,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NR4","iata":"","local":"3NR4","name":"Crabbe Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabeth City","elevation_ft":15,"latitude":36.281394,"longitude":-76.336688,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3100,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OA9","iata":"","local":"3OA9","name":"Memorial Hospital of Union County Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Marysville","elevation_ft":1001,"latitude":40.229400634765625,"longitude":-83.3677978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OH2","iata":"","local":"","name":"API Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"North Lawrence","elevation_ft":1120,"latitude":40.810299,"longitude":-81.629303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OH3","iata":"","local":"","name":"Pelz Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"South Vienna","elevation_ft":990,"latitude":39.983898,"longitude":-83.613298,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OH5","iata":"","local":"","name":"Stub's Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Alliance","elevation_ft":1130,"latitude":40.9674,"longitude":-81.205801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OI7","iata":"","local":"3OI7","name":"Valley Asphalt Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Sharonville","elevation_ft":580,"latitude":39.2859001159668,"longitude":-84.4301986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OH4","iata":"","local":"3OH4","name":"Riceland Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Andover","elevation_ft":1115,"latitude":41.60390090942383,"longitude":-80.58979797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2120,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OH0","iata":"","local":"3OH0","name":"Andy Barnhart Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"New Carlisle","elevation_ft":895,"latitude":39.930317,"longitude":-84.013429,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":30,"surface":"A"},{"id":"10/28","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OG3","iata":"","local":"3OG3","name":"Dillon Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Klamath Falls","elevation_ft":4092,"latitude":42.122222,"longitude":-121.791667,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OH9","iata":"","local":"3OH9","name":"Merts Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wilmington","elevation_ft":1010,"latitude":39.562026,"longitude":-83.857784,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OH7","iata":"","local":"","name":"Creager Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Williamsburg","elevation_ft":895,"latitude":39.030102,"longitude":-84.0466,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1950,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OH1","iata":"","local":"3OH1","name":"Morningstar North Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"West Alexandria","elevation_ft":982,"latitude":39.69729995727539,"longitude":-84.5427017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OH6","iata":"","local":"3OH6","name":"Youngpeter Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Delphos","elevation_ft":815,"latitude":40.78329849243164,"longitude":-84.3677978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2460,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OI8","iata":"","local":"3OI8","name":"McLaren St Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Maumee","elevation_ft":638,"latitude":41.5561,"longitude":-83.682099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OI9","iata":"","local":"3OI9","name":"V.J.S. Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Pepper Pike","elevation_ft":1050,"latitude":41.47639846801758,"longitude":-81.46600341796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OK2","iata":"","local":"","name":"Hopcus Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Jones","elevation_ft":1110,"latitude":35.591999,"longitude":-97.327798,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1250,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OK3","iata":"","local":"3OK3","name":"Cedar Crest Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Locust Grove","elevation_ft":582,"latitude":36.105098724365234,"longitude":-95.23519897460938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OK4","iata":"","local":"3OK4","name":"St Anthony Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1300,"latitude":35.479000091552734,"longitude":-97.5177993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"},{"id":"H2","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OK6","iata":"","local":"","name":"Mauney Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":680,"latitude":36.0784,"longitude":-95.859398,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OR0","iata":"","local":"3OR0","name":"Pge Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":76,"latitude":45.49599838256836,"longitude":-122.64800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OR5","iata":"","local":"3OR5","name":"Elkins Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":550,"latitude":44.86009979248047,"longitude":-123.03800201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3OK5","iata":"","local":"3OK5","name":"Bearden Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lindsay","elevation_ft":1180,"latitude":34.728599548300004,"longitude":-97.605796814,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OK0","iata":"","local":"3OK0","name":"Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ada","elevation_ft":780,"latitude":34.70500183105469,"longitude":-96.57669830322266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OK8","iata":"","local":"3OK8","name":"Flying G Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sand Springs","elevation_ft":890,"latitude":36.11669921875,"longitude":-96.2335968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2230,"width_ft":75,"surface":"T"},{"id":"16/34","length_ft":2640,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PA1","iata":"","local":"","name":"Navarro Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Sellersville","elevation_ft":540,"latitude":40.371667,"longitude":-75.337468,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PA3","iata":"","local":"","name":"Lehman Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Lehman","elevation_ft":1300,"latitude":41.322035,"longitude":-76.044667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PA5","iata":"","local":"3PA5","name":"Davis Family Furniture Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Adamsburg","elevation_ft":1000,"latitude":40.31029891967773,"longitude":-79.65499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PA7","iata":"","local":"3PA7","name":"Nason Medical Center LLC Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Roaring Spring","elevation_ft":1336,"latitude":40.339663,"longitude":-78.389907,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PA0","iata":"","local":"3PA0","name":"Horst Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lebanon","elevation_ft":450,"latitude":40.383399963378906,"longitude":-76.46640014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PN0","iata":"","local":"3PN0","name":"Schulteis Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Biglerville","elevation_ft":680,"latitude":39.96039962768555,"longitude":-77.25910186767578,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PA6","iata":"","local":"3PA6","name":"Fox Hollow Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lewisburg","elevation_ft":540,"latitude":40.992446,"longitude":-76.902474,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PA4","iata":"","local":"3PA4","name":"Giffin Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Leraysville","elevation_ft":840,"latitude":41.77790069580078,"longitude":-76.13719940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PN1","iata":"","local":"3PN1","name":"Ashlawn Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Clifford","elevation_ft":1511,"latitude":41.62200164794922,"longitude":-75.59629821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OR8","iata":"","local":"3OR8","name":"Cline Falls Air Park","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Redmond","elevation_ft":2920,"latitude":44.283199310302734,"longitude":-121.2689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":150,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OR9","iata":"","local":"3OR9","name":"Murphy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Juntura","elevation_ft":3465,"latitude":43.957401275634766,"longitude":-118.13200378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1950,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PN4","iata":"","local":"3PN4","name":"UPMC Jameson Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"New Castle","elevation_ft":945,"latitude":41.012685,"longitude":-80.35172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PN5","iata":"","local":"3PN5","name":"H.G.F. Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":420,"latitude":40.56510162353516,"longitude":-75.55799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS0","iata":"","local":"3PS0","name":"Penn Chester County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"West Chester","elevation_ft":460,"latitude":39.970765,"longitude":-75.603383,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS1","iata":"","local":"3PS1","name":"Pitcairn Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bryn Athyn","elevation_ft":190,"latitude":40.12590026855469,"longitude":-75.07879638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS2","iata":"","local":"","name":"Chestnut Street Garage Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":385,"latitude":40.2584,"longitude":-76.8797,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2036,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS3","iata":"","local":"","name":"Richard L Miller Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Myerstown","elevation_ft":590,"latitude":40.389301,"longitude":-76.310799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS5","iata":"","local":"3PS5","name":"Shamokin Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Shamokin","elevation_ft":720,"latitude":40.80540084838867,"longitude":-76.56999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS6","iata":"","local":"","name":"Divine Providence Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Williamsport","elevation_ft":581,"latitude":41.260101,"longitude":-76.983299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS7","iata":"","local":"3PS7","name":"Coxton Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lakewood","elevation_ft":2110,"latitude":41.85810089111328,"longitude":-75.44889831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3PS4","iata":"","local":"3PS4","name":"Mountain Hide-Away Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Millcreek","elevation_ft":1604,"latitude":40.72359848022461,"longitude":-77.98739624023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PN7","iata":"","local":"3PN7","name":"Stahl's Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Union Dale","elevation_ft":1950,"latitude":41.74789810180664,"longitude":-75.49739837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PN6","iata":"","local":"3PN6","name":"Gravel Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Saegertown","elevation_ft":1240,"latitude":41.742484,"longitude":-80.07484,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3SC3","iata":"","local":"3SC3","name":"Carolina Pines Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Hartsville","elevation_ft":228,"latitude":34.34939956665039,"longitude":-80.10330200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3SC5","iata":"","local":"3SC5","name":"Hillcrest Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Simpsonville","elevation_ft":875,"latitude":34.721342,"longitude":-82.247842,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3SD5","iata":"","local":"3SD5","name":"Dilligaf Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Lead","elevation_ft":6020,"latitude":44.22740173339844,"longitude":-103.77899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3SD6","iata":"","local":"","name":"Running Colors Airport","category":"closed","iso_country":"US","iso_region":"US-SD","municipality":"Rapid City","elevation_ft":2920,"latitude":44.202202,"longitude":-103.079002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TA1","iata":"","local":"","name":"Hunt Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Comfort","elevation_ft":1600,"latitude":30.036273,"longitude":-98.697874,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2500,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TA3","iata":"","local":"3TA3","name":"Baltzell's Las Brisas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bandera","elevation_ft":1165,"latitude":29.58830070495605,"longitude":-98.94609832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":15,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3SD3","iata":"","local":"3SD3","name":"Brown Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Scenic","elevation_ft":2780,"latitude":43.811798095703125,"longitude":-102.72000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3SC4","iata":"","local":"3SC4","name":"Crooked Fence Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Woodruff","elevation_ft":645,"latitude":34.771301,"longitude":-81.98822,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3033,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TA0","iata":"","local":"3TA0","name":"Four Square Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rocksprings","elevation_ft":2250,"latitude":30.096900939941406,"longitude":-100.40499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4093,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TA4","iata":"","local":"3TA4","name":"Tin Top Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownwood","elevation_ft":1300,"latitude":31.48579978942871,"longitude":-98.9760971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3SD4","iata":"","local":"3SD4","name":"Chris Hofer Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Tea","elevation_ft":1491,"latitude":43.464939,"longitude":-96.862633,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE2","iata":"","local":"3TE2","name":"Texas Commerce Bank Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":458,"latitude":29.7588005065918,"longitude":-95.36380004882812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TE7","iata":"","local":"","name":"Mills Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Pandale","elevation_ft":1965,"latitude":30.240869,"longitude":-101.412577,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TE6","iata":"","local":"3TE6","name":"Skellytown Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Skellytown","elevation_ft":3280,"latitude":35.56999969482422,"longitude":-101.16899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TA5","iata":"","local":"3TA5","name":"Blanco Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Blanco","elevation_ft":1460,"latitude":30.122467,"longitude":-98.374783,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3450,"width_ft":27,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE3","iata":"","local":"3TE3","name":"Lazy Dog Ranch Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Nevada","elevation_ft":600,"latitude":33.074013,"longitude":-96.432,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE0","iata":"","local":"3TE0","name":"K Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Iola","elevation_ft":285,"latitude":30.731599807739254,"longitude":-96.131103515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TA6","iata":"","local":"3TA6","name":"Spring Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1440,"latitude":29.541900634765625,"longitude":-100.25299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4280,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TA9","iata":"","local":"3TA9","name":"Chacon Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crystal City","elevation_ft":595,"latitude":28.70859909057617,"longitude":-100.00700378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2900,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE8","iata":"","local":"3TE8","name":"Terlingua Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Terlingua","elevation_ft":2717,"latitude":29.319401,"longitude":-103.584,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3600,"width_ft":120,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TN1","iata":"","local":"3TN1","name":"Methodist Hospital-North Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":346,"latitude":35.23400115966797,"longitude":-89.89289855957031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TN5","iata":"","local":"3TN5","name":"Holston Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Kingsport","elevation_ft":1270,"latitude":36.553643,"longitude":-82.552815,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TN7","iata":"","local":"3TN7","name":"Pigeon Forge Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Pigeon Forge","elevation_ft":1400,"latitude":35.724300384521484,"longitude":-83.63929748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TS4","iata":"","local":"3TS4","name":"Intermedics Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Angleton","elevation_ft":34,"latitude":29.211258,"longitude":-95.440072,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TS5","iata":"","local":"","name":"Purdy-Nielsen Memorial Airpark","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Beasley","elevation_ft":105,"latitude":29.4711,"longitude":-95.886299,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TS0","iata":"","local":"3TS0","name":"East Side Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Longview","elevation_ft":373,"latitude":32.50849914550781,"longitude":-94.70020294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2025,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TN3","iata":"","local":"3TN3","name":"Wayne's World Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Dresden","elevation_ft":440,"latitude":36.264622,"longitude":-88.755541,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TN9","iata":"","local":"3TN9","name":"Holenthawall Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Springfield","elevation_ft":645,"latitude":36.61330032348633,"longitude":-86.810302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TS1","iata":"","local":"3TS1","name":"White Wings Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wimberley","elevation_ft":1083,"latitude":30.01140022277832,"longitude":-98.04049682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TS3","iata":"","local":"3TS3","name":"J-D Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvin","elevation_ft":34,"latitude":29.37470054626465,"longitude":-95.29049682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TS6","iata":"","local":"","name":"Lawrence Administrative Services Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":252,"latitude":30.345736,"longitude":-95.478339,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TS8","iata":"","local":"3TS8","name":"Dailey Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":25,"latitude":29.789400100708008,"longitude":-95.27739715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TX0","iata":"","local":"3TX0","name":"Texas Department of Public Safety Corpus Christi Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":37,"latitude":27.7411,"longitude":-97.434998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TX4","iata":"","local":"","name":"Willow Run Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":820,"latitude":33.094717,"longitude":-97.381075,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":75,"surface":"T"},{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TX8","iata":"","local":"","name":"Drop Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":700,"latitude":33.125099,"longitude":-97.346102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3UT6","iata":"","local":"3UT6","name":"Riverton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Riverton","elevation_ft":4638,"latitude":40.520019,"longitude":-111.981616,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3UT7","iata":"","local":"3UT7","name":"Losee Villa Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Heber City","elevation_ft":5680,"latitude":40.409681,"longitude":-111.511273,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":82,"width_ft":72,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3TX7","iata":"","local":"3TX7","name":"Flying P Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":805,"latitude":33.14080047607422,"longitude":-97.37110137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TX9","iata":"","local":"3TX9","name":"Rafter J Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Burleson","elevation_ft":710,"latitude":32.5275993347168,"longitude":-97.28079986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TX3","iata":"","local":"3TX3","name":"Sitton Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":682,"latitude":33.119598388671875,"longitude":-97.3197021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3UT8","iata":"","local":"3UT8","name":"Little Sahara Medical Helipad #1","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Little Sahara Recreation Area","elevation_ft":5228,"latitude":39.72637,"longitude":-112.30547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3UT9","iata":"","local":"3UT9","name":"Little Sahara Medical Helipad #2","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Little Sahara Recreation Area","elevation_ft":4957,"latitude":39.673007,"longitude":-112.354742,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3VA9","iata":"","local":"3VA9","name":"Danville Life Saving Crew Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Danville","elevation_ft":520,"latitude":36.58570098876953,"longitude":-79.4092025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3VG3","iata":"","local":"3VG3","name":"Serenity Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Burgess","elevation_ft":10,"latitude":37.93610000610352,"longitude":-76.34860229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA3","iata":"","local":"3VA3","name":"Flying Circus Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bealeton","elevation_ft":315,"latitude":38.551488,"longitude":-77.715411,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":150,"surface":"T"},{"id":"16/34","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VG2","iata":"","local":"3VG2","name":"Machipongo International Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Machipongo","elevation_ft":36,"latitude":37.3883018494,"longitude":-75.8925018311,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA4","iata":"","local":"3VA4","name":"Bill Davenport Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warsaw","elevation_ft":10,"latitude":37.857067,"longitude":-76.736097,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA8","iata":"","local":"3VA8","name":"Garner Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Windsor","elevation_ft":80,"latitude":36.85630035400391,"longitude":-76.68219757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VG4","iata":"","local":"","name":"Knight's Landing LLC Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":11,"latitude":36.558333,"longitude":-76.116389,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3VG6","iata":"","local":"","name":"Muddy Toes Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Tangier","elevation_ft":5,"latitude":37.819283,"longitude":-75.995452,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WA5","iata":"","local":"3WA5","name":"Barnes Lonesome Polecat Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Oak Harbor","elevation_ft":188,"latitude":48.25830078125,"longitude":-122.66699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":500,"width_ft":125,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WA6","iata":"","local":"","name":"Boeing Kent Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Kent","elevation_ft":25,"latitude":47.418701,"longitude":-122.261002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WA7","iata":"","local":"3WA7","name":"Kent Benaroya Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Kent","elevation_ft":25,"latitude":47.41450119018555,"longitude":-122.2300033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WA8","iata":"","local":"3WA8","name":"Evergreen Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Kirkland","elevation_ft":185,"latitude":47.71611023,"longitude":-122.1801682,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WA0","iata":"","local":"3WA0","name":"Taylor Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Rainier","elevation_ft":470,"latitude":46.89759826660156,"longitude":-122.66999816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI2","iata":"","local":"3WI2","name":"Tesmer Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Waterloo","elevation_ft":925,"latitude":43.15280151367188,"longitude":-88.9845962524414,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VG9","iata":"","local":"3VG9","name":"Potts Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"South Boston","elevation_ft":550,"latitude":36.711385,"longitude":-79.136266,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WA4","iata":"","local":"3WA4","name":"Watson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kahlotus","elevation_ft":1349,"latitude":46.71649932861328,"longitude":-118.61799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WA3","iata":"","local":"3WA3","name":"Angel Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kahlotus","elevation_ft":884,"latitude":46.64849853515625,"longitude":-118.58300018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3900,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WA9","iata":"","local":"","name":"Flying Carpet Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Lacey","elevation_ft":255,"latitude":46.964544,"longitude":-122.799937,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI7","iata":"","local":"","name":"Bark River Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Dousman","elevation_ft":875,"latitude":43.033298,"longitude":-88.458199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WN3","iata":"","local":"3WN3","name":"Kenosha County Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Kenosha","elevation_ft":771,"latitude":42.5702018737793,"longitude":-88.04560089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WV2","iata":"","local":"3WV2","name":"Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Huntington","elevation_ft":885,"latitude":38.37779998779297,"longitude":-82.5167007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WN8","iata":"","local":"3WN8","name":"Blunt Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chippewa Falls","elevation_ft":930,"latitude":44.93560028076172,"longitude":-91.43070220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WN9","iata":"","local":"3WN9","name":"Brion Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Strum","elevation_ft":900,"latitude":44.55690002441406,"longitude":-91.3668975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WN6","iata":"","local":"3WN6","name":"Knutson Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chetek","elevation_ft":1035,"latitude":45.23899841308594,"longitude":-91.71189880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI8","iata":"","local":"3WI8","name":"Plantation Pine Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Redgranite","elevation_ft":825,"latitude":44.05329895019531,"longitude":-89.1218032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI9","iata":"","local":"3WI9","name":"Rosenbaum Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chippewa Falls","elevation_ft":940,"latitude":44.99375915527344,"longitude":-91.37775421142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WN2","iata":"","local":"3WN2","name":"Old Dairy Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Washburn","elevation_ft":725,"latitude":46.69160079956055,"longitude":-90.87069702148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI5","iata":"","local":"3WI5","name":"Clover Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Whitewater","elevation_ft":850,"latitude":42.8125,"longitude":-88.72650146484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI6","iata":"","local":"3WI6","name":"Melin Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Clinton","elevation_ft":885,"latitude":42.590775,"longitude":-88.874613,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":50,"surface":"T"},{"id":"09/27","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WV6","iata":"","local":"3WV6","name":"Air Evac 121 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Mount Hope","elevation_ft":2400,"latitude":37.834155,"longitude":-81.196654,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3WV7","iata":"","local":"3WV7","name":"United Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Bridgeport","elevation_ft":1247,"latitude":39.329202,"longitude":-80.238642,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XA2","iata":"","local":"3XA2","name":"Matagorda Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bay City","elevation_ft":52,"latitude":28.979889,"longitude":-95.992331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XA4","iata":"","local":"3XA4","name":"Palmview Police Department","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Palmview","elevation_ft":160,"latitude":26.23945236,"longitude":-98.37071991,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XA5","iata":"","local":"3XA5","name":"Houston Methodist Clear Lake Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Nassau Bay","elevation_ft":12,"latitude":29.550536,"longitude":-95.085742,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XA6","iata":"","local":"3XA6","name":"Dell Children's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":644,"latitude":30.304401,"longitude":-97.707757,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"},{"id":"H2","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XA9","iata":"","local":"3XA9","name":"MFS Sabine Pass Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":8,"latitude":29.716024,"longitude":-93.864541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XS0","iata":"","local":"","name":"Hartlee Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":588,"latitude":33.268568,"longitude":-97.080256,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":215,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XA1","iata":"","local":"3XA1","name":"Hardy Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Valley View","elevation_ft":670,"latitude":33.47395,"longitude":-97.169267,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XS1","iata":"","local":"3XS1","name":"Kubecka Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Palacios","elevation_ft":20,"latitude":28.767200469970703,"longitude":-96.30690002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XA8","iata":"","local":"3XA8","name":"Chicken Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cresson","elevation_ft":1055,"latitude":32.514162,"longitude":-97.594803,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2468,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XA7","iata":"","local":"3XA7","name":"Eagle Rock Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pontotoc","elevation_ft":1540,"latitude":30.890974,"longitude":-99.006557,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XS2","iata":"","local":"3XS2","name":"Citizens Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Victoria","elevation_ft":95,"latitude":28.812023,"longitude":-96.978192,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XS6","iata":"","local":"3XS6","name":"Christus Good Shepherd Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Longview","elevation_ft":359,"latitude":32.500151,"longitude":-94.731034,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XS7","iata":"","local":"3XS7","name":"Bell Training Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":657,"latitude":33.049167,"longitude":-97.2935,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2000,"width_ft":60,"surface":"A"},{"id":"H2","length_ft":1550,"width_ft":60,"surface":"A"},{"id":"H3","length_ft":1000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"3XS9","iata":"","local":"3XS9","name":"Comanche Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Comanche","elevation_ft":1422,"latitude":31.896299362182617,"longitude":-98.60540008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40AL","iata":"","local":"40AL","name":"North Alabama Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Florence","elevation_ft":526,"latitude":34.805125,"longitude":-87.652819,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40CA","iata":"","local":"40CA","name":"City of Industry Civic Financial Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"City of Industry","elevation_ft":322,"latitude":34.024539,"longitude":-117.95929,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40CL","iata":"","local":"40CL","name":"Joby Aero, Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Cruz","elevation_ft":632,"latitude":37.024194,"longitude":-122.156749,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40AZ","iata":"","local":"40AZ","name":"Boulais Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1240,"latitude":33.07889938354492,"longitude":-112.12899780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XS8","iata":"","local":"3XS8","name":"Ken Ada Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waller","elevation_ft":250,"latitude":30.137034,"longitude":-95.917643,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3549,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XS5","iata":"","local":"3XS5","name":"Star Smith Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Von Ormy","elevation_ft":662,"latitude":29.29800033569336,"longitude":-98.67669677734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XS4","iata":"","local":"3XS4","name":"Jenkins Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Vidor","elevation_ft":15,"latitude":30.1343994140625,"longitude":-93.93599700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40CN","iata":"","local":"40CN","name":"Loma Linda University Medical Center-Murrieta Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Murrieta","elevation_ft":1576,"latitude":33.614716,"longitude":-117.169905,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40FA","iata":"","local":"","name":"Sequiam Heliport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Orlando","elevation_ft":95,"latitude":28.447201,"longitude":-81.369202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40FD","iata":"","local":"40FD","name":"Little's Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":115,"latitude":28.01059913635254,"longitude":-81.87899780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40FL","iata":"","local":"","name":"Fred Babcock Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Punta Gorda","elevation_ft":38,"latitude":26.885099,"longitude":-81.751198,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1013,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40GA","iata":"","local":"40GA","name":"Smyrna Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Smyrna","elevation_ft":930,"latitude":33.859798431396484,"longitude":-84.51380157470703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40ID","iata":"","local":"40ID","name":"Camas Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Fairfield","elevation_ft":5075,"latitude":43.314031,"longitude":-114.905598,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40LA","iata":"","local":"40LA","name":"Woodsland Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Monroe","elevation_ft":60,"latitude":32.34600067138672,"longitude":-91.96959686279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4800,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40LL","iata":"","local":"40LL","name":"Kirby Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Monticello","elevation_ft":673,"latitude":40.059988,"longitude":-88.560035,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40MA","iata":"","local":"40MA","name":"Lowell General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Lowell","elevation_ft":143,"latitude":42.648141,"longitude":-71.34294,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40IL","iata":"","local":"40IL","name":"Antique Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Cornell","elevation_ft":683,"latitude":41.006637,"longitude":-88.658001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40IN","iata":"","local":"40IN","name":"Cherry Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Freetown","elevation_ft":745,"latitude":39.07419967651367,"longitude":-86.1541976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40MO","iata":"","local":"","name":"Louise's Strip","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Weston","elevation_ft":945,"latitude":39.422798,"longitude":-94.8377,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2452,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40NC","iata":"","local":"40NC","name":"Heavenly Flights Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Boone","elevation_ft":2474,"latitude":36.180301666259766,"longitude":-81.5239028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":52,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40ND","iata":"","local":"40ND","name":"Gorder Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Galchutt","elevation_ft":951,"latitude":46.38470077514648,"longitude":-96.82260131835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40NJ","iata":"","local":"40NJ","name":"Osterman Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Neshanic","elevation_ft":200,"latitude":40.48619842529297,"longitude":-74.73570251464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40NK","iata":"","local":"40NK","name":"Central Government Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":680,"latitude":38.138906,"longitude":-85.62941,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H3","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40PA","iata":"","local":"40PA","name":"Specialty Records Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Olyphant","elevation_ft":913,"latitude":41.45899963378906,"longitude":-75.58100128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40OH","iata":"","local":"40OH","name":"Bucks Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Newbury Township","elevation_ft":1220,"latitude":41.450479,"longitude":-81.234512,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40OI","iata":"","local":"40OI","name":"M.C.R. Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lodi","elevation_ft":1155,"latitude":41.06169891357422,"longitude":-81.98359680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40OK","iata":"","local":"40OK","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Oilton","elevation_ft":930,"latitude":36.1161003112793,"longitude":-96.53810119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40MN","iata":"","local":"40MN","name":"Turner Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bingham Lake","elevation_ft":1410,"latitude":43.86660003662109,"longitude":-95.01419830322266,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40MT","iata":"","local":"40MT","name":"Silver Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":3860,"latitude":46.706601,"longitude":-112.06909,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1400,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40NE","iata":"","local":"40NE","name":"Landgren Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Bartlett","elevation_ft":2100,"latitude":41.97499847412109,"longitude":-98.51589965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3200,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40TS","iata":"","local":"","name":"Square K Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"West","elevation_ft":590,"latitude":31.7724,"longitude":-97.132201,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2062,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40TX","iata":"","local":"40TX","name":"Tgp 25 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Cleveland","elevation_ft":163,"latitude":30.3218994140625,"longitude":-95.1615982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40VA","iata":"","local":"40VA","name":"Sovah Health Martinsville Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Martinsville","elevation_ft":1010,"latitude":36.699846,"longitude":-79.866259,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40WA","iata":"","local":"40WA","name":"Signal Peak Lookout Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"White Swan","elevation_ft":5111,"latitude":46.23320007324219,"longitude":-121.13500213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40WV","iata":"","local":"40WV","name":"Weirton Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Weirton","elevation_ft":1203,"latitude":40.393778,"longitude":-80.527402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40XA","iata":"","local":"40XA","name":"Lone Star Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":110,"latitude":29.76583,"longitude":-95.398444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"40XS","iata":"","local":"40XS","name":"Hank Sasser Airport at Breakaway","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cedar Park","elevation_ft":897,"latitude":30.51768,"longitude":-97.780865,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40TN","iata":"","local":"40TN","name":"Cloud 9 Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Bean Station","elevation_ft":1090,"latitude":36.347471,"longitude":-83.267349,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41AK","iata":"","local":"41AK","name":"Settlers Bay Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":75,"latitude":61.5009002686,"longitude":-149.639694214,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1900,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40TA","iata":"","local":"40TA","name":"Miles Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jewett","elevation_ft":460,"latitude":31.3129997253418,"longitude":-96.22049713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40TE","iata":"","local":"40TE","name":"Sybert Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jarrell","elevation_ft":841,"latitude":30.789100646972656,"longitude":-97.65499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1100,"width_ft":75,"surface":"T"},{"id":"07/25","length_ft":1700,"width_ft":75,"surface":"T"},{"id":"10/28","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41AL","iata":"","local":"41AL","name":"UAB Hospital/Gardendale Fed Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Gardendale","elevation_ft":630,"latitude":33.6484,"longitude":-86.8189,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41FL","iata":"","local":"41FL","name":"Southern Machine & Steel Yard Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":18,"latitude":26.63419914245605,"longitude":-81.83399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":360,"width_ft":140,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41GA","iata":"","local":"41GA","name":"Falcons Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Jonesboro","elevation_ft":940,"latitude":33.538137,"longitude":-84.346403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41IL","iata":"","local":"","name":"Alcock Restricted Landing Area","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Lindenwood","elevation_ft":780,"latitude":42.065078,"longitude":-89.038869,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":3451,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41IN","iata":"","local":"41IN","name":"Professional Arts Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"New Albany","elevation_ft":512,"latitude":38.30030059814453,"longitude":-85.83580017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41ID","iata":"","local":"41ID","name":"Black'S Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Kuna","elevation_ft":2788,"latitude":43.471383,"longitude":-116.326417,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":25,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41CA","iata":"","local":"41CA","name":"Silver Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Silver Flat","elevation_ft":2511,"latitude":40.3176,"longitude":-123.253998,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41AZ","iata":"","local":"41AZ","name":"Ak Chin Community Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1210,"latitude":32.991601,"longitude":-112.02364,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2950,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41CO","iata":"","local":"41CO","name":"Flying Dog Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Meeker","elevation_ft":7020,"latitude":39.971111,"longitude":-107.611111,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41IG","iata":"","local":"41IG","name":"Parker Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Crawfordsville","elevation_ft":780,"latitude":39.972549,"longitude":-86.997578,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41AR","iata":"","local":"41AR","name":"Ashworth Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Arkadelphia","elevation_ft":501,"latitude":34.12329864501953,"longitude":-93.34970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41KY","iata":"","local":"41KY","name":"UofL Health - Jewish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":440,"latitude":38.250187,"longitude":-85.750839,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41LA","iata":"","local":"41LA","name":"Metro Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Shreveport","elevation_ft":158,"latitude":32.536389,"longitude":-93.76,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41MA","iata":"","local":"41MA","name":"Haney Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Mashpee","elevation_ft":22,"latitude":41.590556,"longitude":-70.474963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41MI","iata":"","local":"41MI","name":"Sturgis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Stugis","elevation_ft":921,"latitude":41.795308,"longitude":-85.406566,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41MN","iata":"","local":"","name":"Shannon Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Clinton","elevation_ft":1000,"latitude":45.426899,"longitude":-96.5895,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41MS","iata":"","local":"41MS","name":"Dixie Dusters Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Itta Bena","elevation_ft":126,"latitude":33.523339,"longitude":-90.362093,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3900,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41NH","iata":"","local":"41NH","name":"Upper Connecticut Vally Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Colebrook","elevation_ft":1101,"latitude":44.903922,"longitude":-71.481517,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41NJ","iata":"","local":"41NJ","name":"Meadowlands Hospital Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Secaucus","elevation_ft":10,"latitude":40.79180145263672,"longitude":-74.07240295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41ME","iata":"","local":"41ME","name":"Eagle Ridge Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Jay","elevation_ft":400,"latitude":44.519616,"longitude":-70.146278,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41NC","iata":"","local":"41NC","name":"Sloop Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kannapolis","elevation_ft":794,"latitude":35.52180099487305,"longitude":-80.52200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41ND","iata":"","local":"41ND","name":"Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Minot","elevation_ft":1533,"latitude":48.140511,"longitude":-101.147367,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41MT","iata":"","local":"41MT","name":"R & R Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Heron","elevation_ft":2274,"latitude":48.08715,"longitude":-116.046267,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":775,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41OH","iata":"","local":"","name":"Sleepy Hollow Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Minerva","elevation_ft":1050,"latitude":40.783699,"longitude":-81.098999,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41OI","iata":"","local":"41OI","name":"Mansfield General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1335,"latitude":40.75260162353516,"longitude":-82.5281982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41OK","iata":"","local":"41OK","name":"KOCO TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1163,"latitude":35.563145,"longitude":-97.488636,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41OR","iata":"","local":"41OR","name":"McKenzie-Willamette Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Springfield","elevation_ft":46,"latitude":44.053657,"longitude":-123.003597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41PN","iata":"","local":"41PN","name":"Decarbo Ambulance Service Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"New Castle","elevation_ft":800,"latitude":40.9901008605957,"longitude":-80.33869934082031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":180,"width_ft":110,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41TE","iata":"","local":"41TE","name":"South Texas Veterans Health Care Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrville","elevation_ft":1600,"latitude":30.018286,"longitude":-99.11432,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41VA","iata":"","local":"","name":"Brown's Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":150,"latitude":37.534302,"longitude":-77.443604,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42GA","iata":"","local":"42GA","name":"Matthews Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Marietta","elevation_ft":1167,"latitude":33.980899810791016,"longitude":-84.56330108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41TN","iata":"","local":"41TN","name":"Stonewall Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Milton","elevation_ft":760,"latitude":35.90079879760742,"longitude":-86.20719909667969,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3058,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41TA","iata":"","local":"41TA","name":"Circle P Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bluff Dale","elevation_ft":800,"latitude":32.23731,"longitude":-97.8707,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41TS","iata":"","local":"41TS","name":"Flying T Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Westminster","elevation_ft":705,"latitude":33.37839889526367,"longitude":-96.44830322265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41WA","iata":"","local":"41WA","name":"Central Washington Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Wenatchee","elevation_ft":878,"latitude":47.407198,"longitude":-120.32121,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"41XA","iata":"","local":"41XA","name":"Saber Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Spring Branch","elevation_ft":1174,"latitude":29.831536,"longitude":-98.462468,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42AK","iata":"","local":"","name":"Wicker Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":314,"latitude":61.568505,"longitude":-149.484491,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42AL","iata":"","local":"42AL","name":"Choctaw General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Butler","elevation_ft":133,"latitude":32.093361,"longitude":-88.210349,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42AR","iata":"","local":"42AR","name":"Baxter County Sheriffs Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Mountain Home","elevation_ft":773,"latitude":36.33325,"longitude":-92.3874,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42CA","iata":"","local":"42CA","name":"John F Kennedy Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Indio","elevation_ft":12,"latitude":33.705854,"longitude":-116.236761,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42CL","iata":"","local":"42CL","name":"Costa Mesa Police Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Costa Mesa","elevation_ft":60,"latitude":33.66310119628906,"longitude":-117.90399932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":93,"width_ft":67,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42CO","iata":"","local":"42CO","name":"Ptarmigan Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Evergreen","elevation_ft":8198,"latitude":39.6875,"longitude":-105.39600372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"-"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42FD","iata":"","local":"42FD","name":"Palm Beach Community College Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Worth","elevation_ft":13,"latitude":26.610700607299805,"longitude":-80.08760070800781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42FL","iata":"","local":"42FL","name":"Plantation Key Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Marathon","elevation_ft":0,"latitude":24.971200942993164,"longitude":-80.59559631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":6600,"width_ft":3300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42CN","iata":"","local":"42CN","name":"Peg Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Reedley","elevation_ft":460,"latitude":36.70909881591797,"longitude":-119.40499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3110,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41XS","iata":"","local":"41XS","name":"Macho Grande Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Taylor","elevation_ft":600,"latitude":30.534482,"longitude":-97.419849,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42IL","iata":"","local":"42IL","name":"Lynn Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Union","elevation_ft":870,"latitude":42.20330047607422,"longitude":-88.49749755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42JY","iata":"","local":"42JY","name":"Vineland Golf Course Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Millville","elevation_ft":85,"latitude":39.413436,"longitude":-75.008369,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42LA","iata":"","local":"42LA","name":"Ochsner St Mary Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Morgan City","elevation_ft":102,"latitude":29.708624,"longitude":-91.200909,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42MA","iata":"","local":"42MA","name":"Worcester Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Worcester","elevation_ft":469,"latitude":42.25429916381836,"longitude":-71.79769897460938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42MI","iata":"","local":"","name":"Midway Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Albion","elevation_ft":963,"latitude":42.215858,"longitude":-84.806313,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42MS","iata":"","local":"42MS","name":"Oktibbeha County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Starkville","elevation_ft":265,"latitude":33.4752306,"longitude":-88.8209694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42MN","iata":"","local":"42MN","name":"Kral's Personal Use Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Corcoran","elevation_ft":990,"latitude":45.08409881591797,"longitude":-93.56439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1700,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42KY","iata":"","local":"42KY","name":"Pirates Cove Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Benton","elevation_ft":380,"latitude":36.77640151977539,"longitude":-88.22229766845703,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42KS","iata":"","local":"42KS","name":"Farney Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Kiowa","elevation_ft":1345,"latitude":37.01069,"longitude":-98.454528,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2339,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42MO","iata":"","local":"42MO","name":"Aire Parque Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Festus","elevation_ft":710,"latitude":38.12310028076172,"longitude":-90.38899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2225,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42IA","iata":"","local":"42IA","name":"Lakeport Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Salix","elevation_ft":1077,"latitude":42.261494,"longitude":-96.289523,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42NH","iata":"","local":"42NH","name":"Androscoggin Valley Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Berlin","elevation_ft":1183,"latitude":44.48673,"longitude":-71.15433,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42NJ","iata":"","local":"42NJ","name":"Inspira Elmer Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Elmer","elevation_ft":95,"latitude":39.589204,"longitude":-75.181541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42NR","iata":"","local":"42NR","name":"Harnett Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Lillington","elevation_ft":185,"latitude":35.425961,"longitude":-78.809454,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42OK","iata":"","local":"42OK","name":"Kwtv Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1160,"latitude":35.547298431396484,"longitude":-97.49559783935548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42PA","iata":"","local":"42PA","name":"Ransome Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Exton","elevation_ft":575,"latitude":40.022598,"longitude":-75.585999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42PN","iata":"","local":"42PN","name":"Allegheny General Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":811,"latitude":40.45090103149414,"longitude":-80.00060272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42TA","iata":"","local":"42TA","name":"Rental Tools Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"La Porte","elevation_ft":28,"latitude":29.7012996673584,"longitude":-95.07830047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42TE","iata":"","local":"","name":"Ball Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Victoria","elevation_ft":124,"latitude":28.881208,"longitude":-97.020504,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42OH","iata":"","local":"42OH","name":"Dunn Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Newton Falls","elevation_ft":955,"latitude":41.15589904785156,"longitude":-81.00399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42SC","iata":"","local":"42SC","name":"Chicken Coop Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Florence","elevation_ft":74,"latitude":34.162866,"longitude":-79.666066,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2900,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42TN","iata":"","local":"42TN","name":"Oliver Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Paris","elevation_ft":475,"latitude":36.411944,"longitude":-88.265556,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42OR","iata":"","local":"42OR","name":"Shotgun Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Post","elevation_ft":3430,"latitude":44.13420104980469,"longitude":-120.322998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1650,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42UT","iata":"","local":"42UT","name":"Pluralsight Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Draper","elevation_ft":4738,"latitude":40.486556,"longitude":-111.889694,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42VG","iata":"","local":"42VG","name":"Sentara Princess Anne Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":15,"latitude":36.77635,"longitude":-76.099513,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"42WI","iata":"","local":"42WI","name":"Rusk County Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Ladysmith","elevation_ft":1126,"latitude":45.45439910888672,"longitude":-91.11009979248048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43AL","iata":"","local":"43AL","name":"Flat Rock Community Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Flat Rock","elevation_ft":1289,"latitude":34.769023,"longitude":-85.69632,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43AZ","iata":"","local":"43AZ","name":"MTAS 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tonopah","elevation_ft":1184,"latitude":33.400669,"longitude":-113.229861,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43AR","iata":"","local":"43AR","name":"Haigwood Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Newport","elevation_ft":230,"latitude":35.61140060424805,"longitude":-91.24140167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42WA","iata":"","local":"42WA","name":"Sheffels Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Wilbur","elevation_ft":2222,"latitude":47.81719970703125,"longitude":-118.8010025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1100,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42XS","iata":"","local":"42XS","name":"Temple Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Freer","elevation_ft":490,"latitude":27.957444,"longitude":-98.403889,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43AK","iata":"","local":"43AK","name":"Kalmbach Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":445,"latitude":61.60079956054688,"longitude":-149.57899475097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2800,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42XA","iata":"","local":"42XA","name":"Skid Row Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Golinda","elevation_ft":472,"latitude":31.362276,"longitude":-97.0903,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1872,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42TT","iata":"","local":"42TT","name":"Duke International Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cleveland","elevation_ft":250,"latitude":30.45562,"longitude":-95.230785,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2533,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43CN","iata":"","local":"","name":"Mazza Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Petaluma","elevation_ft":20,"latitude":38.1852,"longitude":-122.601997,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3690,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43CO","iata":"","local":"","name":"Kostroski Airport","category":"closed","iso_country":"US","iso_region":"US-CO","municipality":"Franktown","elevation_ft":6700,"latitude":39.364978,"longitude":-104.677091,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":125,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43FA","iata":"","local":"43FA","name":"Air Eye Med Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Brandon","elevation_ft":30,"latitude":27.931176,"longitude":-82.287834,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43FL","iata":"","local":"","name":"Fly'n R Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Umatilla","elevation_ft":78,"latitude":28.9842,"longitude":-81.817001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":2403,"width_ft":60,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43GA","iata":"","local":"43GA","name":"Piedmont Henry Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Stockbridge","elevation_ft":809,"latitude":33.513643,"longitude":-84.228162,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43II","iata":"","local":"43II","name":"Kirk Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Merrillville","elevation_ft":710,"latitude":41.45230102539063,"longitude":-87.31890106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43IL","iata":"","local":"43IL","name":"Vertiport Chicago Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":594,"latitude":41.862142,"longitude":-87.670249,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":78,"width_ft":78,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43IS","iata":"","local":"43IS","name":"Igoe Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Seymour","elevation_ft":695,"latitude":40.097801208496094,"longitude":-88.42060089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43KY","iata":"","local":"43KY","name":"Wlky-Tv Studios Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Louisville","elevation_ft":500,"latitude":38.26309967041016,"longitude":-85.71019744873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43KS","iata":"","local":"43KS","name":"Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Manhattan","elevation_ft":1100,"latitude":39.101898193359375,"longitude":-96.41780090332033,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43IG","iata":"","local":"43IG","name":"Grayland Intergalactic Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Grayland","elevation_ft":280,"latitude":46.801528,"longitude":-124.072944,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43IN","iata":"","local":"43IN","name":"Hepler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"St Wendel","elevation_ft":460,"latitude":38.13750076293945,"longitude":-87.67639923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43NH","iata":"","local":"43NH","name":"Trayport Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Rollinsford","elevation_ft":108,"latitude":43.223044,"longitude":-70.831564,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43NY","iata":"","local":"","name":"Watercolor Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Cherry Valley","elevation_ft":1993,"latitude":42.784697,"longitude":-74.802498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43PN","iata":"","local":"","name":"E L Gruber Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Pottstown","elevation_ft":195,"latitude":40.233398,"longitude":-75.644096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43TE","iata":"","local":"43TE","name":"Police Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":85,"latitude":29.765467,"longitude":-95.371537,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43OI","iata":"","local":"43OI","name":"Windswept Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"North Baltimore","elevation_ft":710,"latitude":41.19869995117188,"longitude":-83.70079803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43TN","iata":"","local":"43TN","name":"Roseanne Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Morrison","elevation_ft":1050,"latitude":35.618056,"longitude":-86.0025,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1350,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43OK","iata":"","local":"43OK","name":"Biggs Skypatch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Wellston","elevation_ft":1000,"latitude":35.66669845581055,"longitude":-96.9835968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43MO","iata":"","local":"43MO","name":"Riordan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pleasant Hill","elevation_ft":1000,"latitude":38.783344,"longitude":-94.370134,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2430,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43OR","iata":"","local":"43OR","name":"Inspiration Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3400,"latitude":44.622655,"longitude":-122.753742,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43NV","iata":"","local":"43NV","name":"Topaz Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Wellington","elevation_ft":5066,"latitude":38.72871,"longitude":-119.466067,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2300,"width_ft":50,"surface":"G"},{"id":"18/36","length_ft":4325,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43NE","iata":"","local":"43NE","name":"Onion Crest Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Riverdale","elevation_ft":2205,"latitude":40.775001525878906,"longitude":-99.15470123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43TS","iata":"","local":"","name":"Fraser Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lindale","elevation_ft":570,"latitude":32.5649,"longitude":-95.465398,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3462,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43TT","iata":"","local":"43TT","name":"Cook Children's North Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Prosper","elevation_ft":592,"latitude":33.221358,"longitude":-96.869695,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43VA","iata":"","local":"","name":"State Police Division Six Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Salem","elevation_ft":1250,"latitude":37.277599,"longitude":-80.128403,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43WA","iata":"","local":"43WA","name":"Wilson Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Woodinville","elevation_ft":35,"latitude":47.762298583984375,"longitude":-122.15699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"43XS","iata":"","local":"43XS","name":"Tdcj/Southern Regional Medical Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Texas City","elevation_ft":10,"latitude":29.425800323486328,"longitude":-94.9810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44CA","iata":"","local":"","name":"W R Byron Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Blythe","elevation_ft":400,"latitude":33.679199,"longitude":-114.643997,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1697,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44CL","iata":"","local":"","name":"Cortopassi Airport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Linden","elevation_ft":80,"latitude":38.013802,"longitude":-121.125999,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2323,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44CN","iata":"","local":"44CN","name":"UCLA Wilshire Glendon Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":509,"latitude":34.059059,"longitude":-118.443818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44AZ","iata":"","local":"44AZ","name":"Sandhill Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Page","elevation_ft":5868,"latitude":36.93190002441406,"longitude":-111.97000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2640,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43XA","iata":"","local":"43XA","name":"Gulf Coast Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wadsworth","elevation_ft":23,"latitude":28.825625,"longitude":-95.908217,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2462,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43TX","iata":"","local":"43TX","name":"Mid-Valley Dusters Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alamo","elevation_ft":91,"latitude":26.153136,"longitude":-98.136331,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1925,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44FA","iata":"","local":"44FA","name":"Orlando Health Lakeland Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lakeland","elevation_ft":135,"latitude":27.994444,"longitude":-81.917778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44FD","iata":"","local":"","name":"Epcot Center Ultralightport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Lake Buena Vista","elevation_ft":102,"latitude":28.353099823,"longitude":-81.54699707030001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44FL","iata":"","local":"44FL","name":"Martin Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Stuart","elevation_ft":5,"latitude":27.200612,"longitude":-80.243496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44IL","iata":"","local":"44IL","name":"Wilson Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Minooka","elevation_ft":595,"latitude":41.53919982910156,"longitude":-88.32489776611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44LL","iata":"","local":"44LL","name":"Carlinville Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Carlinville","elevation_ft":620,"latitude":39.28120040893555,"longitude":-89.86949920654297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44MD","iata":"","local":"44MD","name":"Union Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":330,"latitude":39.328778,"longitude":-76.614528,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44ID","iata":"","local":"44ID","name":"Boulder Creek Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Donnelly","elevation_ft":4950,"latitude":44.736942,"longitude":-116.074158,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44IN","iata":"","local":"44IN","name":"Rush STOLport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"West Lafayette","elevation_ft":675,"latitude":40.49980163574219,"longitude":-86.95500183105469,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2608,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44MI","iata":"","local":"44MI","name":"Airbatco Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mulliken","elevation_ft":852,"latitude":42.774235,"longitude":-84.903217,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2033,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44LS","iata":"","local":"44LS","name":"Sheridan's Strip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Ponchatoula","elevation_ft":24,"latitude":30.472201,"longitude":-90.367785,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44LA","iata":"","local":"44LA","name":"B T & K H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Dry Creek","elevation_ft":110,"latitude":30.647761,"longitude":-93.056785,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3400,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44MN","iata":"","local":"","name":"Freedom Base Heliport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Hanover","elevation_ft":1005,"latitude":45.168701,"longitude":-93.728698,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44NH","iata":"","local":"44NH","name":"Lakes Region General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Laconia","elevation_ft":597,"latitude":43.528004,"longitude":-71.463906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":97,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44NJ","iata":"","local":"","name":"Highlands Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Rumson","elevation_ft":0,"latitude":40.366797,"longitude":-74.032898,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44OH","iata":"","local":"44OH","name":"Sjs Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cuyahoga Falls","elevation_ft":1025,"latitude":41.16619873046875,"longitude":-81.49340057373047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44OK","iata":"","local":"","name":"Sky High Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Crescent","elevation_ft":1100,"latitude":35.954201,"longitude":-97.549202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44PN","iata":"","local":"44PN","name":"Sports Complex Of Honesdale Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Honesdale","elevation_ft":1361,"latitude":41.560619,"longitude":-75.265575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44NY","iata":"","local":"44NY","name":"Tomcat Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Plain","elevation_ft":460,"latitude":42.93429946899414,"longitude":-74.65239715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44SC","iata":"","local":"44SC","name":"4 Holes Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Orangeburg","elevation_ft":184,"latitude":33.481943,"longitude":-80.777026,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3366,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44NC","iata":"","local":"44NC","name":"Broadway Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Landis","elevation_ft":650,"latitude":35.54330062866211,"longitude":-80.65190124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44MU","iata":"","local":"44MU","name":"Lynch Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Granby","elevation_ft":1170,"latitude":36.90810012817383,"longitude":-94.30999755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44ND","iata":"","local":"44ND","name":"Fredericks Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Halliday","elevation_ft":2225,"latitude":47.52780151367188,"longitude":-102.24099731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":30,"surface":"-"},{"id":"15/33","length_ft":1600,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44OR","iata":"","local":"44OR","name":"Compton Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Canby","elevation_ft":160,"latitude":45.2223014831543,"longitude":-122.72699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44TA","iata":"","local":"44TA","name":"Aero Crafter Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Princeton","elevation_ft":520,"latitude":33.124968,"longitude":-96.52221,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44WA","iata":"","local":"44WA","name":"Skyline Hospital Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"White Salmon","elevation_ft":1000,"latitude":45.722198486328125,"longitude":-121.4729995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44XS","iata":"","local":"","name":"Prudential Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bellaire","elevation_ft":140,"latitude":29.708599,"longitude":-95.461304,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45AZ","iata":"","local":"","name":"Pine Springs Airport","category":"closed","iso_country":"US","iso_region":"US-AZ","municipality":"Pine Springs","elevation_ft":6930,"latitude":35.403322,"longitude":-109.272852,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2585,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"44WI","iata":"","local":"44WI","name":"Stoiber Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Spencer","elevation_ft":1298,"latitude":44.772217,"longitude":-90.385067,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44TN","iata":"","local":"44TN","name":"Stone Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Louisville","elevation_ft":890,"latitude":35.84090042,"longitude":-84.07569885,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1121,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45AR","iata":"","local":"45AR","name":"Thunder Ridge Ranch","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Flippin","elevation_ft":789,"latitude":36.3671989441,"longitude":-92.6401977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2230,"width_ft":150,"surface":"T"},{"id":"06/24","length_ft":1480,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44XA","iata":"","local":"44XA","name":"HFS Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Robstown","elevation_ft":72,"latitude":27.836944,"longitude":-97.771806,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3292,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44TX","iata":"","local":"44TX","name":"White Oak Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":1875,"latitude":30.21050071716309,"longitude":-99.09480285644533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":14,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44TS","iata":"","local":"44TS","name":"Mc David Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Llano","elevation_ft":1407,"latitude":30.5776996613,"longitude":-98.8337020874,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44TE","iata":"","local":"44TE","name":"Shirley Williams Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kingsland","elevation_ft":880,"latitude":30.683500289916992,"longitude":-98.41699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45CA","iata":"","local":"","name":"Chapin Medical Pad Heliport","category":"closed","iso_country":"US","iso_region":"US-CA","municipality":"Corona","elevation_ft":578,"latitude":33.8936,"longitude":-117.598,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45CO","iata":"","local":"45CO","name":"Ag-Air Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Mead","elevation_ft":5025,"latitude":40.20550155639648,"longitude":-104.97599792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45FA","iata":"","local":"45FA","name":"Hendry Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Clewiston","elevation_ft":16,"latitude":26.751627,"longitude":-80.941086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45FD","iata":"","local":"45FD","name":"Baptist Medical Center Beaches Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Jacksonville Beach","elevation_ft":17,"latitude":30.272339,"longitude":-81.39764,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45GA","iata":"","local":"","name":"Hyatt Regency Hotel Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Savannah","elevation_ft":123,"latitude":32.081911,"longitude":-81.091472,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45IA","iata":"","local":"45IA","name":"Great River Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"West Burlington","elevation_ft":700,"latitude":40.810613,"longitude":-91.173903,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45IL","iata":"","local":"45IL","name":"Lake Forest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Lake Forest","elevation_ft":680,"latitude":42.25415,"longitude":-87.863559,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45IS","iata":"","local":"45IS","name":"Adventist Bolingbrook Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Bolingbrook","elevation_ft":690,"latitude":41.68091,"longitude":-88.086345,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45KS","iata":"","local":"","name":"Liebau Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Grenola","elevation_ft":1250,"latitude":37.4039,"longitude":-96.4533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2328,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45ID","iata":"","local":"45ID","name":"Fox Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Priest River","elevation_ft":2434,"latitude":48.330153,"longitude":-116.826237,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45CL","iata":"","local":"45CL","name":"Hell'er High Water Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Zenia","elevation_ft":2493,"latitude":40.141878,"longitude":-123.399124,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45CN","iata":"","local":"45CN","name":"Hermitage Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Groveland","elevation_ft":2700,"latitude":37.880691,"longitude":-120.194936,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45KY","iata":"","local":"45KY","name":"Medical Center Albany Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Albany","elevation_ft":955,"latitude":36.697903,"longitude":-85.145764,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45LA","iata":"","local":"","name":"Air Logistics (Venice) N Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Venice","elevation_ft":-1,"latitude":29.301901,"longitude":-89.374496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45ME","iata":"","local":"45ME","name":"Miles Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Damariscotta","elevation_ft":8,"latitude":44.026651,"longitude":-69.53011,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45MI","iata":"","local":"","name":"Franklin's Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Barbeau","elevation_ft":630,"latitude":46.263901,"longitude":-84.126404,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45MS","iata":"","local":"45MS","name":"Box Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Sunflower","elevation_ft":123,"latitude":33.547164,"longitude":-90.567094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2065,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45NH","iata":"","local":"45NH","name":"Hayes Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Raymond","elevation_ft":152,"latitude":42.985198974609375,"longitude":-71.17829895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45NJ","iata":"","local":"","name":"Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Union","elevation_ft":75,"latitude":40.690399,"longitude":-74.307899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45NR","iata":"","local":"45NR","name":"NHRMC-Ed North Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Wilmington","elevation_ft":29,"latitude":34.316552,"longitude":-77.768284,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45NY","iata":"","local":"45NY","name":"Turning Stone Resort & Casino Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Verona","elevation_ft":359,"latitude":43.110569,"longitude":-75.593658,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45MO","iata":"","local":"45MO","name":"Waldmeister Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"St Peters","elevation_ft":424,"latitude":38.848967,"longitude":-90.639098,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":20,"surface":"T"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45MT","iata":"","local":"45MT","name":"Pester Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Hingham","elevation_ft":3055,"latitude":48.628333,"longitude":-110.469667,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2540,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":2600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45OG","iata":"","local":"45OG","name":"Rugg Ranches Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Pilot Rock","elevation_ft":1890,"latitude":45.476389,"longitude":-118.791667,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":35,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45PA","iata":"","local":"45PA","name":"Meadville Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Meadville","elevation_ft":1125,"latitude":41.64120101928711,"longitude":-80.1458969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45TA","iata":"","local":"45TA","name":"Spl Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":63,"latitude":29.659099578857425,"longitude":-95.42880249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45TS","iata":"","local":"45TS","name":"Bullhead Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Llano","elevation_ft":1430,"latitude":30.583499908447266,"longitude":-98.80870056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45TT","iata":"","local":"45TT","name":"UTMB League City Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"League City","elevation_ft":19,"latitude":29.480488,"longitude":-95.097059,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45TX","iata":"","local":"","name":"West Airpark","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"West","elevation_ft":563,"latitude":31.752399,"longitude":-97.098297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45VA","iata":"","local":"","name":"Frog Hollow Farm Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"West Point","elevation_ft":30,"latitude":37.695099,"longitude":-76.995003,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45WA","iata":"","local":"45WA","name":"Yakima Valley Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1220,"latitude":46.594038,"longitude":-120.546649,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"45TN","iata":"","local":"45TN","name":"Darnell's Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Church Hill","elevation_ft":1150,"latitude":36.50669860839844,"longitude":-82.71170043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45OK","iata":"","local":"45OK","name":"Belleview Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"South Coffeyville","elevation_ft":775,"latitude":36.91260147094727,"longitude":-95.60299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45OR","iata":"","local":"45OR","name":"Gederos Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Coquille","elevation_ft":280,"latitude":43.1548,"longitude":-124.170998,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1750,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45OH","iata":"","local":"45OH","name":"Boober Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"New Richmond","elevation_ft":854,"latitude":38.975994,"longitude":-84.219511,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45TE","iata":"","local":"","name":"Deussen Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ponder","elevation_ft":790,"latitude":33.191797,"longitude":-97.324444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46CO","iata":"","local":"46CO","name":"Huerfano Agricultural Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":4790,"latitude":38.09999847412109,"longitude":-104.4260025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46AL","iata":"","local":"46AL","name":"Sly Pig's Base Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AL","municipality":"Sylacauga","elevation_ft":396,"latitude":33.198332,"longitude":-86.475,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":5500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46AR","iata":"","local":"","name":"Robert Chris McIntosh Airport","category":"closed","iso_country":"US","iso_region":"US-AR","municipality":"Sherwood","elevation_ft":242,"latitude":34.846199,"longitude":-92.172096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46CL","iata":"","local":"46CL","name":"AT&T Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":679,"latitude":34.039611,"longitude":-118.261704,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46FA","iata":"","local":"46FA","name":"Perdido Key Fire Station Helipad","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Perdido Key","elevation_ft":35,"latitude":30.291918,"longitude":-87.469572,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46FL","iata":"","local":"46FL","name":"Parrish Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Titusville","elevation_ft":10,"latitude":28.631548,"longitude":-80.824538,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46GA","iata":"","local":"46GA","name":"St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Savannah","elevation_ft":26,"latitude":31.984899520874023,"longitude":-81.15570068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46CN","iata":"","local":"46CN","name":"Crystal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Llano","elevation_ft":3420,"latitude":34.484781,"longitude":-117.825898,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4500,"width_ft":250,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46AK","iata":"","local":"46AK","name":"Bear Cove Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":115,"latitude":59.737844,"longitude":-151.022186,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1250,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45XS","iata":"","local":"45XS","name":"Ghost Apache Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":330,"latitude":28.131058,"longitude":-98.906091,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4045,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46II","iata":"","local":"46II","name":"Porter Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Valparaiso","elevation_ft":864,"latitude":41.553648,"longitude":-87.047982,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46IL","iata":"","local":"46IL","name":"Mc Donough County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Macomb","elevation_ft":685,"latitude":40.4500007629,"longitude":-90.6668014526,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46KY","iata":"","local":"46KY","name":"St Luke Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Fort Thomas","elevation_ft":814,"latitude":39.07780075073242,"longitude":-84.4646987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46LA","iata":"","local":"","name":"Davis Plantation Airport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Bastrop","elevation_ft":150,"latitude":32.796501,"longitude":-91.9468,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46ME","iata":"","local":"ME29","name":"Redington-Fairview General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Skowhegan","elevation_ft":205,"latitude":44.757728,"longitude":-69.714411,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46MN","iata":"","local":"","name":"Elmer Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Evansville","elevation_ft":1350,"latitude":46.005501,"longitude":-95.692,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46MO","iata":"","local":"","name":"Sontimer Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Saint Peters","elevation_ft":443,"latitude":38.808673,"longitude":-90.613522,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46NH","iata":"","local":"46NH","name":"Upper Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Orford","elevation_ft":1196,"latitude":43.859999,"longitude":-72.095954,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46NC","iata":"","local":"46NC","name":"Brown Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Marshville","elevation_ft":400,"latitude":34.892799377441406,"longitude":-80.37329864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46NE","iata":"","local":"46NE","name":"Jantzen Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Madrid","elevation_ft":3375,"latitude":40.89640045166016,"longitude":-101.50499725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46KS","iata":"","local":"46KS","name":"Hidden Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Valley Center","elevation_ft":1345,"latitude":37.831699,"longitude":-97.363098,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2434,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46LS","iata":"","local":"46LS","name":"Venissat Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Gueydan","elevation_ft":4,"latitude":30.086111,"longitude":-92.532222,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46OK","iata":"","local":"","name":"Steinert Lakes Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Bison","elevation_ft":1120,"latitude":36.220746,"longitude":-97.843609,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46OR","iata":"","local":"46OR","name":"Delamarter Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Pendleton","elevation_ft":1275,"latitude":45.6426010131836,"longitude":-118.80899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46PA","iata":"","local":"46PA","name":"St Margaret Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":761,"latitude":40.48949813842773,"longitude":-79.89450073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46PN","iata":"","local":"46PN","name":"D.R. Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":361,"latitude":40.9,"longitude":-75.866667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46TE","iata":"","local":"","name":"02 Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Alpine","elevation_ft":3799,"latitude":29.873373,"longitude":-103.702656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1216,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46TN","iata":"","local":"46TN","name":"Pleasantville Pentacostal Church Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Pleasantville","elevation_ft":582,"latitude":35.674444,"longitude":-87.6725,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46WA","iata":"","local":"46WA","name":"Don Williams Private Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1560,"latitude":46.60900115966797,"longitude":-120.61399841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46WI","iata":"","local":"46WI","name":"Holy Family Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"New Richmond","elevation_ft":996,"latitude":45.1176986694336,"longitude":-92.5561981201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46XS","iata":"","local":"","name":"Windy Hill Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":600,"latitude":33.310827,"longitude":-97.101741,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4524,"width_ft":52,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"46NY","iata":"","local":"46NY","name":"Savannah Agri-Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Savannah","elevation_ft":465,"latitude":43.018798828125,"longitude":-76.76100158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46TA","iata":"","local":"46TA","name":"Gould Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":287,"latitude":28.129929,"longitude":-98.859289,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47AL","iata":"","local":"47AL","name":"Southflight Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Semmes","elevation_ft":253,"latitude":30.784811,"longitude":-88.280715,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47CA","iata":"","local":"47CA","name":"Mountains Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lake Arrowhead","elevation_ft":5318,"latitude":34.265462,"longitude":-117.16779,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47CL","iata":"","local":"47CL","name":"Spears Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Fernando","elevation_ft":1314,"latitude":34.312935,"longitude":-118.474331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47FA","iata":"","local":"47FA","name":"Canal Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Tavernier","elevation_ft":5,"latitude":25.023096,"longitude":-80.4964,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47KY","iata":"","local":"47KY","name":"B. M. H. Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Hardinsburg","elevation_ft":730,"latitude":37.766700744628906,"longitude":-86.44110107421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":69,"width_ft":69,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47FD","iata":"","local":"47FD","name":"Strayhorn Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":20,"latitude":26.66279983520508,"longitude":-81.77059936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47GA","iata":"","local":"47GA","name":"Everidge Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Pinehurst","elevation_ft":450,"latitude":32.220674,"longitude":-83.855909,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47FL","iata":"","local":"47FL","name":"Flying Exotics Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Weirsdale","elevation_ft":150,"latitude":28.96419906616211,"longitude":-81.77899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1985,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47CO","iata":"","local":"47CO","name":"Mile Hi Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"New Raymer","elevation_ft":5270,"latitude":40.900001525878906,"longitude":-104.83399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2700,"width_ft":25,"surface":"D"},{"id":"11/29","length_ft":2200,"width_ft":25,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47KS","iata":"","local":"47KS","name":"Maxwell Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Baldwin City","elevation_ft":1011,"latitude":38.770599365234375,"longitude":-95.27439880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47IN","iata":"","local":"47IN","name":"Mann Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Merom","elevation_ft":428,"latitude":38.988399505615234,"longitude":-87.51809692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47LA","iata":"","local":"47LA","name":"Christus Ochsner St Patrick Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lake Charles","elevation_ft":17,"latitude":30.215411,"longitude":-93.227035,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":74,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47MA","iata":"","local":"47MA","name":"Devon Glen Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Hamilton","elevation_ft":100,"latitude":42.6234016418457,"longitude":-70.86620330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47ME","iata":"","local":"47ME","name":"Sebasticook Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Pittsfield","elevation_ft":306,"latitude":44.789602,"longitude":-69.370219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47NE","iata":"","local":"47NE","name":"Bryan Lincoln General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Lincoln","elevation_ft":1204,"latitude":40.789648,"longitude":-96.698291,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":39,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47NJ","iata":"","local":"47NJ","name":"Metropolitan Electric Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Clifton","elevation_ft":220,"latitude":40.887298583984375,"longitude":-74.16380310058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47OH","iata":"","local":"","name":"Chapin Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Norwalk","elevation_ft":885,"latitude":41.201099,"longitude":-82.573027,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47OI","iata":"","local":"47OI","name":"Wadsworth-Rittman Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Wadsworth","elevation_ft":1115,"latitude":41.027766,"longitude":-81.750595,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47MN","iata":"","local":"47MN","name":"Sons Private-Commercial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Norwood Young America","elevation_ft":1000,"latitude":44.7053,"longitude":-93.85495,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47NC","iata":"","local":"47NC","name":"Windemere Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":98,"latitude":35.13809967041016,"longitude":-78.82279968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2890,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47MO","iata":"","local":"","name":"Cliff Scott Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hamilton","elevation_ft":1000,"latitude":39.736667,"longitude":-93.99125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47OK","iata":"","local":"47OK","name":"Harman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Calumet","elevation_ft":1345,"latitude":35.58369827270508,"longitude":-98.04010009765624,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1950,"width_ft":50,"surface":"T"},{"id":"08/26","length_ft":2500,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":1700,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":1220,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47PN","iata":"","local":"47PN","name":"Bristol Usar Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bristol","elevation_ft":45,"latitude":40.12229919433594,"longitude":-74.89679718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47VA","iata":"","local":"47VA","name":"Division Five Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Chesapeake","elevation_ft":20,"latitude":36.79600143432617,"longitude":-76.23799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47VG","iata":"","local":"47VG","name":"Bath Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Hot Springs","elevation_ft":2365,"latitude":37.993351,"longitude":-79.831853,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47WA","iata":"","local":"47WA","name":"Fitz Pad 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Woodinville","elevation_ft":180,"latitude":47.78419876098633,"longitude":-122.14199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47XS","iata":"","local":"47XS","name":"Bartos Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3153,"latitude":33.47249984741211,"longitude":-101.78500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"47TX","iata":"","local":"47TX","name":"Armstrong Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Armstrong","elevation_ft":27,"latitude":26.933900833129883,"longitude":-97.7624969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47VT","iata":"","local":"47VT","name":"Cub Field","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Panton","elevation_ft":140,"latitude":44.125677,"longitude":-73.369616,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1650,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47WI","iata":"","local":"47WI","name":"Oakbrook Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fort Atkinson","elevation_ft":840,"latitude":42.89073,"longitude":-88.808609,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47TE","iata":"","local":"47TE","name":"Whites Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"La Ward","elevation_ft":43,"latitude":28.85169982910156,"longitude":-96.49749755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47XA","iata":"","local":"47XA","name":"Luv Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Taylor","elevation_ft":540,"latitude":30.506519,"longitude":-97.41354,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47TA","iata":"","local":"47TA","name":"Pleasure Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Prosper","elevation_ft":604,"latitude":33.25600051879883,"longitude":-96.8852996826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2540,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47TS","iata":"","local":"47TS","name":"Hensarling Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Madisonville","elevation_ft":315,"latitude":31.04800033569336,"longitude":-95.9177017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48CA","iata":"","local":"48CA","name":"Huntington Beach Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Westminster","elevation_ft":29,"latitude":33.74530029296875,"longitude":-118,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48CL","iata":"","local":"48CL","name":"PG&E Grass Valley Service Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Grass Valley","elevation_ft":2430,"latitude":39.200334,"longitude":-121.061343,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48FA","iata":"","local":"48FA","name":"Silver Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Leesburg","elevation_ft":63,"latitude":28.841969,"longitude":-81.807511,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":4077,"width_ft":90,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48FD","iata":"","local":"48FD","name":"Delray Medical Center Emergency Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Delray Beach","elevation_ft":20,"latitude":26.438016,"longitude":-80.127703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48GA","iata":"","local":"48GA","name":"Fairview Park Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Dublin","elevation_ft":279,"latitude":32.532901763916016,"longitude":-82.95099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48IN","iata":"","local":"48IN","name":"123 Arcom Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Indianapolis","elevation_ft":850,"latitude":39.8588981628418,"longitude":-85.99829864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":350,"width_ft":275,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48KY","iata":"","local":"48KY","name":"Westlake Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Columbia","elevation_ft":803,"latitude":37.097194,"longitude":-85.29535,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48LA","iata":"","local":"48LA","name":"Chevron Place Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"New Orleans","elevation_ft":273,"latitude":29.95299911499023,"longitude":-90.0730972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48AZ","iata":"","local":"48AZ","name":"Rimrock Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Rimrock","elevation_ft":3575,"latitude":34.650668,"longitude":-111.788313,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48CO","iata":"","local":"48CO","name":"Shaull Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Nunn","elevation_ft":5235,"latitude":40.72159957885742,"longitude":-104.77799987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48AK","iata":"","local":"48AK","name":"Castle Mountain Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sutton/Chickaloon","elevation_ft":1010,"latitude":61.7960412696,"longitude":-148.494161367,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48FL","iata":"","local":"48FL","name":"Mc Kinnon Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Walnut Hill","elevation_ft":227,"latitude":30.8141002655,"longitude":-87.47499847410002,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2380,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48LS","iata":"","local":"48LS","name":"Our Lady of Lourdes Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":30,"latitude":30.151714,"longitude":-92.035722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48MI","iata":"","local":"48MI","name":"Manju Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Dorr","elevation_ft":720,"latitude":42.72740173339844,"longitude":-85.7155990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48MN","iata":"","local":"48MN","name":"Northfield Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Northfield","elevation_ft":1035,"latitude":44.474155,"longitude":-93.191925,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48MO","iata":"","local":"48MO","name":"Lions Emergency Evac Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"California","elevation_ft":860,"latitude":38.62730026245117,"longitude":-92.53990173339844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48MT","iata":"","local":"48MT","name":"The Landing Zone Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Stevensville","elevation_ft":3680,"latitude":46.446667,"longitude":-114.061667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48NE","iata":"","local":"48NE","name":"Valley Fire/Rescue Dist & Emerg Service Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Valley","elevation_ft":1140,"latitude":41.3111000061,"longitude":-96.3475036621,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48NH","iata":"","local":"48NH","name":"Winter Harbor Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Wolfeboro","elevation_ft":504,"latitude":43.59389877319336,"longitude":-71.26139831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"12W/30W","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"15W/33W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48NJ","iata":"","local":"48NJ","name":"Southern Training Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Salem","elevation_ft":6,"latitude":39.561500549316406,"longitude":-75.4791030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":145,"width_ft":115,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48NY","iata":"","local":"","name":"Tennessee Gas Nr 2 Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Hamburg","elevation_ft":1050,"latitude":42.675097,"longitude":-78.830299,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48OH","iata":"","local":"","name":"Dechant Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Oberlin","elevation_ft":800,"latitude":41.2542,"longitude":-82.197098,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48NC","iata":"","local":"48NC","name":"Morrison Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lexington","elevation_ft":825,"latitude":35.781700134277344,"longitude":-80.41690063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48OI","iata":"","local":"48OI","name":"Mansfield Cpc Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1400,"latitude":40.773399353027344,"longitude":-82.60179901123047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48OK","iata":"","local":"","name":"Rafter R Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Checotah","elevation_ft":620,"latitude":35.42414,"longitude":-95.4962,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48PA","iata":"","local":"48PA","name":"Veterans Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Tower City","elevation_ft":500,"latitude":40.58729934692383,"longitude":-76.54329681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48PN","iata":"","local":"48PN","name":"Wilson Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Spring Grove","elevation_ft":577,"latitude":39.904247,"longitude":-76.914248,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48SN","iata":"","local":"48SN","name":"Lifeteam 20 Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1420,"latitude":37.743402,"longitude":-97.224197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48TA","iata":"","local":"48TA","name":"Hamlin Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Hamlin","elevation_ft":1750,"latitude":32.88570022583008,"longitude":-100.13500213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48TT","iata":"","local":"48TT","name":"Bradford Volunteer Fire Department/Capt. John L. Hall Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":400,"latitude":31.995863,"longitude":-95.770483,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48VT","iata":"","local":"48VT","name":"Cub Cove Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VT","municipality":"Colchester","elevation_ft":95,"latitude":44.553547,"longitude":-73.231497,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":4000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"48OR","iata":"","local":"48OR","name":"Lookingglass Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Roseburg","elevation_ft":580,"latitude":43.1593017578125,"longitude":-123.5019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48TX","iata":"","local":"48TX","name":"Tri-County Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Trenton","elevation_ft":790,"latitude":33.451793,"longitude":-96.377377,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4500,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48TE","iata":"","local":"48TE","name":"4M Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Langtry","elevation_ft":1824,"latitude":30.021,"longitude":-101.573056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49CA","iata":"","local":"49CA","name":"DCOR Platform Habitat Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Carpinteria","elevation_ft":90,"latitude":34.286619,"longitude":-119.589343,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49GA","iata":"","local":"49GA","name":"Southern Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Riverdale","elevation_ft":821,"latitude":33.579722,"longitude":-84.388229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49FD","iata":"","local":"49FD","name":"Watson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Quincy","elevation_ft":275,"latitude":30.611944,"longitude":-84.641667,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49AR","iata":"","local":"49AR","name":"Sid's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"DeWitt","elevation_ft":194,"latitude":34.214444,"longitude":-91.457778,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48WA","iata":"","local":"48WA","name":"West Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1900,"latitude":46.562193,"longitude":-120.780311,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49CN","iata":"","local":"49CN","name":"Rancho Tehama Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Red Bluff","elevation_ft":550,"latitude":40.01599884033203,"longitude":-122.38999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3750,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49CO","iata":"","local":"49CO","name":"Air Dusters Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Roggen","elevation_ft":4780,"latitude":40.093299865722656,"longitude":-104.375,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2640,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48XS","iata":"","local":"48XS","name":"Maravillas Gap Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":3325,"latitude":29.92659950256348,"longitude":-103.29499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49CL","iata":"","local":"49CL","name":"El Peco Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Madera","elevation_ft":213,"latitude":36.90549850463867,"longitude":-120.177001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3000,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49II","iata":"","local":"49II","name":"Reinoehl Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lena","elevation_ft":800,"latitude":39.60979843139648,"longitude":-87.01529693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48XA","iata":"","local":"48XA","name":"Spring Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cisco","elevation_ft":1652,"latitude":32.319357,"longitude":-98.98797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1160,"width_ft":10,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49IS","iata":"","local":"49IS","name":"Katherine Shaw Bethea Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Dixon","elevation_ft":582,"latitude":41.84450149536133,"longitude":-89.47930145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49KY","iata":"","local":"49KY","name":"Morning Star Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Lexington","elevation_ft":916,"latitude":37.96369934082031,"longitude":-84.37020111083984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49LA","iata":"","local":"49LA","name":"Woman's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Baton Rouge","elevation_ft":47,"latitude":30.44659996032715,"longitude":-91.09300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":68,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49LL","iata":"","local":"49LL","name":"Decatur Conference Center and Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Decatur","elevation_ft":678,"latitude":39.846698761,"longitude":-89.02700042720001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49LS","iata":"","local":"49LS","name":"Empire Terminal Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Buras","elevation_ft":8,"latitude":29.373284,"longitude":-89.549137,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49ME","iata":"","local":"49ME","name":"Inland Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Waterville","elevation_ft":227,"latitude":44.542114,"longitude":-69.661238,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49MI","iata":"","local":"","name":"Tegethoff Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Wayland","elevation_ft":770,"latitude":42.638302,"longitude":-85.584396,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1040,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49MO","iata":"","local":"49MO","name":"Hermann Ii Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":590,"latitude":38.621700286865234,"longitude":-90.38899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49NC","iata":"","local":"49NC","name":"Wilkes Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"North Wilkesboro","elevation_ft":985,"latitude":36.15919876098633,"longitude":-81.15779876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49MT","iata":"","local":"49MT","name":"Firebuster Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Columbus","elevation_ft":3901,"latitude":45.605715,"longitude":-109.121281,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49IL","iata":"","local":"49IL","name":"Walnut Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Somonauk","elevation_ft":666,"latitude":41.593299865722656,"longitude":-88.69170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49KS","iata":"","local":"49KS","name":"N & N Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Manhattan","elevation_ft":1230,"latitude":39.2140998840332,"longitude":-96.67230224609376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49NE","iata":"","local":"","name":"Harden Airstrip","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"North Platte","elevation_ft":3006,"latitude":41.05572,"longitude":-100.733454,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49NJ","iata":"","local":"49NJ","name":"Bertino Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hammonton","elevation_ft":70,"latitude":39.63570022583008,"longitude":-74.7490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49NY","iata":"","local":"49NY","name":"Westmoreland Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Shelter Island","elevation_ft":22,"latitude":41.055672,"longitude":-72.360486,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49OH","iata":"","local":"","name":"Gilbert Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Olmsted Falls","elevation_ft":790,"latitude":41.3667,"longitude":-81.966499,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49OK","iata":"","local":"49OK","name":"Holdenville General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Holdenville","elevation_ft":864,"latitude":35.088781,"longitude":-96.379341,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49PN","iata":"","local":"49PN","name":"Geisinger Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Danville","elevation_ft":600,"latitude":40.972900390625,"longitude":-76.6041030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"},{"id":"H2","length_ft":47,"width_ft":47,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49TA","iata":"","local":"","name":"Roeder Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Crosby","elevation_ft":49,"latitude":29.895727,"longitude":-95.021083,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49TN","iata":"","local":"49TN","name":"Sweetwater Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Sweetwater","elevation_ft":968,"latitude":35.609276,"longitude":-84.454841,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49NK","iata":"","local":"49NK","name":"Trump MTN Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Attica","elevation_ft":1501,"latitude":42.793259,"longitude":-78.292372,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49OR","iata":"","local":"49OR","name":"Land's Inn Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Dayville","elevation_ft":3880,"latitude":44.593065,"longitude":-119.563694,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2360,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49TE","iata":"","local":"49TE","name":"K Star Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brenham","elevation_ft":397,"latitude":30.2835278,"longitude":-96.4596111,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1100,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49TS","iata":"","local":"49TS","name":"Campus at Legacy Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":697,"latitude":33.0723,"longitude":-96.808899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49TX","iata":"","local":"49TX","name":"Valley Baptist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Harlingen","elevation_ft":60,"latitude":26.175135,"longitude":-97.669632,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49VA","iata":"","local":"49VA","name":"Rappahannock General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Kilmarnnock","elevation_ft":30,"latitude":37.70489883422852,"longitude":-76.38379669189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"49WI","iata":"","local":"","name":"Tri-Center Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Loganville","elevation_ft":1225,"latitude":43.3792,"longitude":-90.015404,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AA4","iata":"","local":"4AA4","name":"South Peninsula Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":370,"latitude":59.652303,"longitude":-151.549902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AK0","iata":"","local":"4AK0","name":"Niklason Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":380,"latitude":61.6291999817,"longitude":-149.270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2700,"width_ft":75,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AK3","iata":"","local":"4AK3","name":"Long Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Long Lake","elevation_ft":1500,"latitude":61.378011,"longitude":-143.32105,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1150,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AK2","iata":"","local":"4AK2","name":"St John Homestead Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":250,"latitude":61.55799865722656,"longitude":-149.4239959716797,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AK5","iata":"","local":"4AK5","name":"Mankomen Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Mankomen Lake","elevation_ft":3050,"latitude":62.98989868164063,"longitude":-144.47999572753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2300,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49XS","iata":"","local":"49XS","name":"McCasland Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Star","elevation_ft":1370,"latitude":31.448333,"longitude":-98.321111,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AK1","iata":"","local":"4AK1","name":"Inigok Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Deadhorse","elevation_ft":192,"latitude":70.00379943847656,"longitude":-153.0780029296875,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":5000,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AL0","iata":"","local":"","name":"WBRC-Tv Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Birmingham","elevation_ft":1000,"latitude":33.488602,"longitude":-86.799402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AL1","iata":"","local":"4AL1","name":"Tanner East Alabama Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Wedowee","elevation_ft":970,"latitude":33.294637,"longitude":-85.480305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AL2","iata":"","local":"","name":"Irwin Farms Airport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Foley","elevation_ft":25,"latitude":30.373199,"longitude":-87.725601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AL3","iata":"","local":"","name":"Wallace State College Heliport","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Hanceville","elevation_ft":630,"latitude":34.066898,"longitude":-86.790802,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AL4","iata":"","local":"4AL4","name":"Froberg Heliport","category":"heliport","iso_country":"US","iso_region":"US-AL","municipality":"Hartselle","elevation_ft":630,"latitude":34.42720031738281,"longitude":-86.91500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AL5","iata":"","local":"","name":"Spinelli Field","category":"closed","iso_country":"US","iso_region":"US-AL","municipality":"Madison","elevation_ft":750,"latitude":34.729198,"longitude":-86.755302,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AK9","iata":"","local":"4AK9","name":"Tibbetts Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Naknek","elevation_ft":50,"latitude":58.732899,"longitude":-157.015975,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AK7","iata":"","local":"4AK7","name":"Aleknagik Mission Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Aleknagik","elevation_ft":150,"latitude":59.279999,"longitude":-158.5971,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":25,"surface":"G"},{"id":"09/27","length_ft":1500,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AK8","iata":"","local":"4AK8","name":"Napaimute Pioneer Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Napaimute","elevation_ft":200,"latitude":61.53630065917969,"longitude":-158.73899841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AL9","iata":"","local":"4AL9","name":"T W Spear Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Lapine","elevation_ft":438,"latitude":31.974700927699995,"longitude":-86.2938995361,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2909,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AL6","iata":"","local":"4AL6","name":"Bonner Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Summerdale","elevation_ft":105,"latitude":30.55827,"longitude":-87.6527,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AR0","iata":"","local":"4AR0","name":"St Mary's Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Russellville","elevation_ft":393,"latitude":35.2836990356,"longitude":-93.1504974365,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AR3","iata":"","local":"4AR3","name":"Conway Regional Health System Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Conway","elevation_ft":385,"latitude":35.0853996277,"longitude":-92.457901001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AR8","iata":"","local":"4AR8","name":"Washington Regional Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-AR","municipality":"Fayetteville","elevation_ft":1251,"latitude":36.10810089111328,"longitude":-94.15859985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AZ1","iata":"","local":"4AZ1","name":"Moulder Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Surprise","elevation_ft":1521,"latitude":33.753299713134766,"longitude":-112.41600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AZ4","iata":"","local":"4AZ4","name":"Fort Omotse Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Tombstone","elevation_ft":4253,"latitude":31.601433,"longitude":-110.068883,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AZ5","iata":"","local":"4AZ5","name":"New Waddell Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-AZ","municipality":"Phoenix","elevation_ft":1582,"latitude":33.845123,"longitude":-112.269823,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CA0","iata":"","local":"4CA0","name":"LAPD Hooper Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":302,"latitude":34.044014,"longitude":-118.247303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":205,"width_ft":105,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CA1","iata":"","local":"4CA1","name":"City National Bank Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":453,"latitude":34.047704,"longitude":-118.254116,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4AZ6","iata":"","local":"4AZ6","name":"Parsons Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Kingman","elevation_ft":3760,"latitude":34.99810028076172,"longitude":-113.46199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AZ9","iata":"","local":"4AZ9","name":"Leroy Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Willcox","elevation_ft":4197,"latitude":32.11309814453125,"longitude":-109.76200103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2640,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CA3","iata":"","local":"4CA3","name":"Camp Parks Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Pleasanton","elevation_ft":361,"latitude":37.70830154418945,"longitude":-121.89299774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":2200,"width_ft":400,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CA4","iata":"","local":"4CA4","name":"St Francis Medical Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Lynwood","elevation_ft":154,"latitude":33.930301666259766,"longitude":-118.2030029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":94,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CA5","iata":"","local":"4CA5","name":"Choc Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Orange","elevation_ft":275,"latitude":33.78079,"longitude":-117.865062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CA6","iata":"","local":"4CA6","name":"Chevron Refinery Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"El Segundo","elevation_ft":29,"latitude":33.914454,"longitude":-118.427215,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CA9","iata":"","local":"4CA9","name":"Randy Champe-Gary Howe Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":184,"latitude":33.970101,"longitude":-118.277622,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CD0","iata":"","local":"4CD0","name":"Parkview Medical Center West Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":5005,"latitude":38.329142,"longitude":-104.702132,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CL1","iata":"","local":"4CL1","name":"Lyon Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Rancho Santa Margarita","elevation_ft":898,"latitude":33.613399505615234,"longitude":-117.59100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":74,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CL5","iata":"","local":"4CL5","name":"Mercy San Juan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Carmichael","elevation_ft":169,"latitude":38.669114,"longitude":-121.314348,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CL6","iata":"","local":"4CL6","name":"Pat Coyle Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"San Marcos","elevation_ft":600,"latitude":33.142172,"longitude":-117.14553,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CL7","iata":"","local":"4CL7","name":"Inyo County Sheriff Search & Rescue Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Bishop","elevation_ft":4120,"latitude":37.36579895019531,"longitude":-118.36799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CL3","iata":"","local":"4CL3","name":"Antelope Valley Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Williams","elevation_ft":530,"latitude":39.14605,"longitude":-122.356716,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CL8","iata":"","local":"4CL8","name":"Hanford Community Medical Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Hanford","elevation_ft":251,"latitude":36.329778,"longitude":-119.659564,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CL9","iata":"","local":"4CL9","name":"Arrowhead Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Colton","elevation_ft":1076,"latitude":34.075377,"longitude":-117.349327,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"},{"id":"H2","length_ft":104,"width_ft":104,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CN7","iata":"","local":"4CN7","name":"Children's Hospital of Los Angeles Heliport II","category":"heliport","iso_country":"US","iso_region":"US-CA","municipality":"Los Angeles","elevation_ft":529,"latitude":34.097289,"longitude":-118.288803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CO1","iata":"","local":"4CO1","name":"Martin Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Waterton","elevation_ft":5718,"latitude":39.499698638916016,"longitude":-105.1060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CO4","iata":"","local":"4CO4","name":"St Anthony North Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Westminster","elevation_ft":5506,"latitude":39.850375,"longitude":-105.017211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":94,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CO5","iata":"","local":"4CO5","name":"Pioneers Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Meeker","elevation_ft":6298,"latitude":40.04140090942383,"longitude":-107.91100311279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":76,"width_ft":46,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CO6","iata":"","local":"4CO6","name":"Lutheran Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Wheat Ridge","elevation_ft":5500,"latitude":39.76588,"longitude":-105.09264,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CO3","iata":"","local":"4CO3","name":"Griffin Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Walsh","elevation_ft":3964,"latitude":37.392936,"longitude":-102.283058,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CO9","iata":"","local":"4CO9","name":"Beaver Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-CO","municipality":"Beaver Creek","elevation_ft":7500,"latitude":39.63123,"longitude":-106.52436,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FA0","iata":"","local":"4FA0","name":"Orlando Health Lake Mary Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Mary","elevation_ft":75,"latitude":28.768868,"longitude":-81.349924,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4CO7","iata":"","local":"4CO7","name":"Ambrosich Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elbert","elevation_ft":7028,"latitude":39.220351,"longitude":-104.680738,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FA7","iata":"","local":"4FA7","name":"Lake Panasoffkee Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Lake Panasoffkee","elevation_ft":39,"latitude":28.798722,"longitude":-82.11575,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":4031,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FA9","iata":"","local":"4FA9","name":"North Port Fire Rescue Station 86 Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"North Port","elevation_ft":11,"latitude":27.048778,"longitude":-82.337528,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FD4","iata":"","local":"4FD4","name":"Bay Seaplanes Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":0,"latitude":30.18490028381348,"longitude":-85.7499008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":4000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FD5","iata":"","local":"4FD5","name":"Grand Lagoon Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-FL","municipality":"Panama City","elevation_ft":0,"latitude":30.134899139404297,"longitude":-85.73410034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":2000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FD6","iata":"","local":"4FD6","name":"Pine Island Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Pine Island Center","elevation_ft":10,"latitude":26.6067008972168,"longitude":-82.11090087890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FD9","iata":"","local":"4FD9","name":"Bowman's Beach Helistop","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Sanibel","elevation_ft":5,"latitude":26.46260070800781,"longitude":-82.15679931640625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":81,"width_ft":81,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FL4","iata":"","local":"","name":"Darrah Air Park","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Bell","elevation_ft":54,"latitude":29.778299,"longitude":-82.890405,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FL1","iata":"","local":"4FL1","name":"Escape Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Kenansville","elevation_ft":71,"latitude":27.86280059814453,"longitude":-80.95809936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FL0","iata":"","local":"4FL0","name":"Turkey Scratch Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lamont","elevation_ft":115,"latitude":30.403600692749023,"longitude":-83.80999755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FD7","iata":"","local":"4FD7","name":"Flanders Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Polk City","elevation_ft":131,"latitude":28.20639991760254,"longitude":-81.8279037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FL6","iata":"","local":"","name":"Royal Trails Airport","category":"closed","iso_country":"US","iso_region":"US-FL","municipality":"Cassia","elevation_ft":49,"latitude":28.937799,"longitude":-81.473701,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":68,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FL7","iata":"","local":"4FL7","name":"Physicians Regional Medical Center Collier Boulevard Heliport","category":"heliport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":14,"latitude":26.1066,"longitude":-81.68532,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4GA0","iata":"","local":"","name":"Pegasus Run Airport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Ball Ground","elevation_ft":900,"latitude":34.280102,"longitude":-84.421303,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1380,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4GA2","iata":"","local":"4GA2","name":"AU Medical Center & Children's Hospital of Georgia Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Augusta","elevation_ft":255,"latitude":33.471304,"longitude":-81.987963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4GA3","iata":"","local":"4GA3","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Bainbridge","elevation_ft":120,"latitude":30.903200149536133,"longitude":-84.5519027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4GA5","iata":"","local":"","name":"Southwire Heliport","category":"closed","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1094,"latitude":33.566562,"longitude":-85.070522,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3255,"width_ft":230,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4FL9","iata":"","local":"4FL9","name":"Gore Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Haines City","elevation_ft":135,"latitude":28.143400192260746,"longitude":-81.64700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1980,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FL8","iata":"","local":"4FL8","name":"Schwartz Farms Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Sarasota","elevation_ft":53,"latitude":27.343700408935547,"longitude":-82.31729888916016,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GA4","iata":"","local":"4GA4","name":"R.M. Harris Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Eton","elevation_ft":770,"latitude":34.84669876098633,"longitude":-84.75469970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GA1","iata":"","local":"4GA1","name":"Thacker Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":920,"latitude":33.0447998046875,"longitude":-84.39830017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GA6","iata":"","local":"4GA6","name":"Chattahoochee Air Park","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Douglasville","elevation_ft":750,"latitude":33.662328,"longitude":-84.680122,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GE7","iata":"","local":"4GE7","name":"AE154 Base Heliport","category":"heliport","iso_country":"US","iso_region":"US-GA","municipality":"Perry","elevation_ft":360,"latitude":32.458333,"longitude":-83.710278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IA0","iata":"","local":"4IA0","name":"Greater Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Creston","elevation_ft":1291,"latitude":41.07220077514648,"longitude":-94.39440155029295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IA3","iata":"","local":"4IA3","name":"Floyd County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Charles City","elevation_ft":1146,"latitude":43.05080032348633,"longitude":-92.68440246582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IA5","iata":"","local":"4IA5","name":"Iowa Speciality Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IA","municipality":"Clarion","elevation_ft":1162,"latitude":42.721132,"longitude":-93.734436,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4II5","iata":"","local":"4II5","name":"Escc Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Hammond","elevation_ft":600,"latitude":41.594200134277344,"longitude":-87.49140167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4GA8","iata":"","local":"4GA8","name":"Andrews Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Arlington","elevation_ft":245,"latitude":31.41550064086914,"longitude":-84.71299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GE1","iata":"","local":"4GE1","name":"Viola Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Attapulgus","elevation_ft":285,"latitude":30.72369956970215,"longitude":-84.54109954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GA9","iata":"","local":"4GA9","name":"Ebeneezer Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cumming","elevation_ft":1230,"latitude":34.2422981262207,"longitude":-84.05709838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IA7","iata":"","local":"4IA7","name":"Witcombe Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Cedar Falls","elevation_ft":1000,"latitude":42.471337,"longitude":-92.504539,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4II3","iata":"","local":"4II3","name":"Oleo Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Fillmore","elevation_ft":870,"latitude":39.73640060424805,"longitude":-86.72969818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1450,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4II0","iata":"","local":"4II0","name":"De Ford Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Delphi","elevation_ft":640,"latitude":40.609501,"longitude":-86.738297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GE3","iata":"","local":"4GE3","name":"Whitehall Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Montrose","elevation_ft":350,"latitude":32.4994,"longitude":-83.182917,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4017,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IL0","iata":"","local":"4IL0","name":"Litchfield Fire Department West Side Emergency Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Litchfield","elevation_ft":677,"latitude":39.160542,"longitude":-89.665877,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IL6","iata":"","local":"","name":"Keim Heliport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"West Chicago","elevation_ft":795,"latitude":41.912498,"longitude":-88.158997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IL7","iata":"","local":"4IL7","name":"Brussels Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Brussels","elevation_ft":515,"latitude":38.94580078125,"longitude":-90.58719635009766,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IL9","iata":"","local":"4IL9","name":"Unzicker Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Benson","elevation_ft":745,"latitude":40.82749938964844,"longitude":-89.12079620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2280,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IN3","iata":"","local":"4IN3","name":"East Clear Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Clear Lake","elevation_ft":1069,"latitude":41.73500061035156,"longitude":-84.82279968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IN4","iata":"","local":"4IN4","name":"Wilson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Wallace","elevation_ft":710,"latitude":39.976659,"longitude":-87.181234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IL3","iata":"","local":"4IL3","name":"Thrifty Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Stillman Valley","elevation_ft":725,"latitude":42.142987,"longitude":-89.228468,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":750,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IL8","iata":"","local":"4IL8","name":"Rendleman Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Murphysboro","elevation_ft":500,"latitude":37.75630187988281,"longitude":-89.38330078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4II8","iata":"","local":"4II8","name":"Willis Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Greenfield","elevation_ft":880,"latitude":39.725591,"longitude":-85.714881,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IL4","iata":"","local":"4IL4","name":"Kuebler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"St Elmo","elevation_ft":620,"latitude":39.0564,"longitude":-88.816101,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IL2","iata":"","local":"4IL2","name":"Wayne Ziller Jr Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Fairbury","elevation_ft":661,"latitude":40.809941,"longitude":-88.539584,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IN6","iata":"","local":"4IN6","name":"Dragons Den Heliport","category":"heliport","iso_country":"US","iso_region":"US-IN","municipality":"Danvillle","elevation_ft":934,"latitude":39.745601654052734,"longitude":-86.64440155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS0","iata":"","local":"4IS0","name":"Joan Graves Edwards Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Anna","elevation_ft":624,"latitude":37.46390151977539,"longitude":-89.24590301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS1","iata":"","local":"","name":"Kamm Airport","category":"closed","iso_country":"US","iso_region":"US-IL","municipality":"Atwood","elevation_ft":672,"latitude":39.773102,"longitude":-88.4487,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS2","iata":"","local":"4IS2","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chester","elevation_ft":620,"latitude":37.92369842529297,"longitude":-88.80619812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS3","iata":"","local":"4IS3","name":"University of Chicago Hospitals Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Chicago","elevation_ft":665,"latitude":41.78839874267578,"longitude":-87.60420227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS4","iata":"","local":"4IS4","name":"Harrisburg Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-IL","municipality":"Harrisburg","elevation_ft":397,"latitude":37.73059844970703,"longitude":-88.52369689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS6","iata":"","local":"4IS6","name":"Hattan Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Minonk","elevation_ft":710,"latitude":40.93059921264648,"longitude":-89.12059783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IS8","iata":"","local":"4IS8","name":"Leigh Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sparland","elevation_ft":730,"latitude":40.02170181274414,"longitude":-89.55010223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4IN9","iata":"","local":"4IN9","name":"Wawasee Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Syracuse","elevation_ft":880,"latitude":41.41889953613281,"longitude":-85.69170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2150,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IS7","iata":"","local":"4IS7","name":"Litchfield Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Seymour","elevation_ft":704,"latitude":40.073101,"longitude":-88.399498,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IS5","iata":"","local":"4IS5","name":"Smith Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hecker","elevation_ft":420,"latitude":38.258399963378906,"longitude":-89.93810272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KS4","iata":"","local":"","name":"Police Heliport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Wichita","elevation_ft":1290,"latitude":37.6642,"longitude":-97.348701,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4KY2","iata":"","local":"4KY2","name":"Manchester Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Manchester","elevation_ft":935,"latitude":37.16249847412109,"longitude":-83.76190185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4KY6","iata":"","local":"4KY6","name":"Jennie Stuart Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Hopkinsville","elevation_ft":550,"latitude":36.860784,"longitude":-87.497675,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4KS6","iata":"","local":"4KS6","name":"Thomsen Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hartford","elevation_ft":1140,"latitude":38.24169921875,"longitude":-95.90670013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KY4","iata":"","local":"4KY4","name":"Moseley Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Calhoun","elevation_ft":395,"latitude":37.59249877929688,"longitude":-87.28109741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KS7","iata":"","local":"4KS7","name":"Butler Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Rose Hill","elevation_ft":1310,"latitude":37.55889892578125,"longitude":-97.06500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2687,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KS8","iata":"","local":"4KS8","name":"Bursch Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bird City","elevation_ft":3650,"latitude":39.592874,"longitude":-101.5927,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KS1","iata":"","local":"4KS1","name":"Amar Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wellsville","elevation_ft":1020,"latitude":38.68529891967773,"longitude":-95.03299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KS2","iata":"","local":"4KS2","name":"Ingels Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"De Soto","elevation_ft":960,"latitude":39.01860046386719,"longitude":-94.95439910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KY5","iata":"","local":"4KY5","name":"Weavers Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"West Point","elevation_ft":550,"latitude":38.02859878540039,"longitude":-83.88999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":750,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KT4","iata":"","local":"4KT4","name":"Steele's Bottom Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Warsaw","elevation_ft":495,"latitude":38.828736,"longitude":-84.817321,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KY9","iata":"","local":"4KY9","name":"King's Daughters Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KY","municipality":"Ashland","elevation_ft":625,"latitude":38.47079849243164,"longitude":-82.63500213623047,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4LA1","iata":"","local":"4LA1","name":"Chevron Fourchon Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Leeville","elevation_ft":5,"latitude":29.107475,"longitude":-90.194387,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":15,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4LA2","iata":"","local":"","name":"Green Hill Compressors Heliport","category":"closed","iso_country":"US","iso_region":"US-LA","municipality":"Leeville","elevation_ft":3,"latitude":29.076099,"longitude":-90.285103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4LA4","iata":"","local":"4LA4","name":"Chevron Usa Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Leeville","elevation_ft":0,"latitude":29.221099853515625,"longitude":-90.21790313720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4LA5","iata":"","local":"4LA5","name":"La Haye Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafayette","elevation_ft":120,"latitude":30.19070053100586,"longitude":-92.00900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4LA6","iata":"","local":"4LA6","name":"Little Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Lafitte","elevation_ft":10,"latitude":29.49690055847168,"longitude":-90.11810302734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4LA7","iata":"","local":"4LA7","name":"West Jefferson Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-LA","municipality":"Marrero","elevation_ft":2,"latitude":29.8929,"longitude":-90.094968,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4KY7","iata":"","local":"4KY7","name":"Mueller Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Verona","elevation_ft":890,"latitude":38.823494,"longitude":-84.686273,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4LL7","iata":"","local":"4LL7","name":"Willadae Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sycamore","elevation_ft":850,"latitude":42.001719,"longitude":-88.664927,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4LA8","iata":"","local":"4LA8","name":"Overton Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Clinton","elevation_ft":110,"latitude":30.70770072937012,"longitude":-90.87429809570312,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4LL9","iata":"","local":"4LL9","name":"Alan B. Janssen Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Morrisonville","elevation_ft":642,"latitude":39.34370040893555,"longitude":-89.42369842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1980,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MA0","iata":"","local":"4MA0","name":"Burke Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Sherborn","elevation_ft":240,"latitude":42.233011,"longitude":-71.358601,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MA3","iata":"","local":"4MA3","name":"Millbury Savings/West Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Millbury","elevation_ft":393,"latitude":42.19179916381836,"longitude":-71.76950073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MA4","iata":"","local":"4MA4","name":"J K L Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"New Bedford","elevation_ft":30,"latitude":41.621485,"longitude":-71.014225,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MA6","iata":"","local":"4MA6","name":"Pleasant Beach Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Cohasset","elevation_ft":20,"latitude":42.26258,"longitude":-70.81278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MA7","iata":"","local":"4MA7","name":"Ahearn Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Ludlow","elevation_ft":280,"latitude":42.19150161743164,"longitude":-72.45010375976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":145,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MA8","iata":"","local":"4MA8","name":"Pg Heliport","category":"heliport","iso_country":"US","iso_region":"US-MA","municipality":"Quincy","elevation_ft":10,"latitude":42.28089904785156,"longitude":-71.03730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MD3","iata":"","local":"4MD3","name":"Carey Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Bishopville","elevation_ft":23,"latitude":38.439917,"longitude":-75.159391,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1775,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4ME4","iata":"","local":"4ME4","name":"Lovewell Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Fryeburg","elevation_ft":390,"latitude":44.00680160522461,"longitude":-70.93360137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":10000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4ME9","iata":"","local":"4ME9","name":"Norway Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Norway","elevation_ft":380,"latitude":44.209319,"longitude":-70.531705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MI0","iata":"","local":"","name":"Kriewall Strip","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Romeo","elevation_ft":765,"latitude":42.8381,"longitude":-82.968803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MI2","iata":"","local":"4MI2","name":"McLaren Lapeer Region Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Lapeer","elevation_ft":855,"latitude":43.063695,"longitude":-83.321053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MI3","iata":"","local":"","name":"Phil's Field","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Overisel","elevation_ft":685,"latitude":42.72602,"longitude":-86.040673,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":260,"width_ft":220,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MI5","iata":"","local":"4MI5","name":"Bps Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ruby","elevation_ft":675,"latitude":43.00699996948242,"longitude":-82.60130310058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MN0","iata":"","local":"","name":"Skalicky Airstrip","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Albany","elevation_ft":1266,"latitude":45.6619,"longitude":-94.5756,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MI7","iata":"","local":"4MI7","name":"Witbeck Aerodrome Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Farwell","elevation_ft":890,"latitude":43.812714,"longitude":-84.813552,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1760,"width_ft":25,"surface":"T"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MI1","iata":"","local":"4MI1","name":"Air Rahe Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Petersburg","elevation_ft":680,"latitude":41.829522,"longitude":-83.6849,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MI4","iata":"","local":"4MI4","name":"Whitcomb Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Schoolcraft","elevation_ft":915,"latitude":42.1781005859375,"longitude":-85.6707992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MN3","iata":"","local":"4MN3","name":"Lexington Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Ham Lake","elevation_ft":1080,"latitude":45.31110000610352,"longitude":-93.15039825439452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MN6","iata":"","local":"4MN6","name":"Sanford Westbrook Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Westbrook","elevation_ft":1432,"latitude":44.046133,"longitude":-95.440041,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MN7","iata":"","local":"","name":"Burk Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Amboy","elevation_ft":1070,"latitude":43.8438,"longitude":-94.285797,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":3535,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MN8","iata":"","local":"","name":"Myers Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Pequot Lakes","elevation_ft":1300,"latitude":46.627499,"longitude":-94.339401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MS0","iata":"","local":"4MS0","name":"Payne Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Brandon","elevation_ft":359,"latitude":32.30061,"longitude":-89.859034,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MO7","iata":"","local":"4MO7","name":"Crop Care Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mound City","elevation_ft":875,"latitude":40.14139938354492,"longitude":-95.24079895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MN1","iata":"","local":"4MN1","name":"Hintzman Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"New York Mills","elevation_ft":1465,"latitude":46.65098,"longitude":-95.354874,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2185,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MO6","iata":"","local":"4MO6","name":"Mark Twain Air Park","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Louisiana","elevation_ft":840,"latitude":39.439485,"longitude":-91.116199,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MO8","iata":"","local":"4MO8","name":"Martens Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Atherton","elevation_ft":720,"latitude":39.20669937133789,"longitude":-94.26969909667967,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MS1","iata":"","local":"4MS1","name":"Robinsonville Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Robinsonville","elevation_ft":202,"latitude":34.816667,"longitude":-90.302917,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MS2","iata":"","local":"4MS2","name":"Dogwood Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Raymond","elevation_ft":250,"latitude":32.212100982666016,"longitude":-90.45030212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MS6","iata":"","local":"4MS6","name":"University of Mississippi Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":344,"latitude":32.328429,"longitude":-90.174025,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MS8","iata":"","local":"4MS8","name":"Casino Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Tunica","elevation_ft":201,"latitude":34.8400993347168,"longitude":-90.32839965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MT5","iata":"","local":"4MT5","name":"Port Smith Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":4020,"latitude":46.703368,"longitude":-111.827302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MT7","iata":"","local":"4MT7","name":"Big Sky Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Big Sky","elevation_ft":6276,"latitude":45.261111,"longitude":-111.3,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MY2","iata":"","local":"4MY2","name":"Lakewood Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Staples","elevation_ft":1270,"latitude":46.351692,"longitude":-94.750673,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4MS4","iata":"","local":"4MS4","name":"Spearman Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Shannon","elevation_ft":270,"latitude":34.15769958496094,"longitude":-88.76020050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MS3","iata":"","local":"4MS3","name":"Jeter Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Sladen","elevation_ft":520,"latitude":34.95600128173828,"longitude":-89.39399719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC1","iata":"","local":"4NC1","name":"Futuristics Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Milton","elevation_ft":520,"latitude":36.529598236083984,"longitude":-79.30169677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NC2","iata":"","local":"","name":"Bay Creek Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Bayboro","elevation_ft":2,"latitude":35.206437,"longitude":-76.611511,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1000,"width_ft":60,"surface":"T"},{"id":"13/31","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NC4","iata":"","local":"","name":"Lowe's Mooresville Heliport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Mooresville","elevation_ft":840,"latitude":35.544706,"longitude":-80.854381,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2074,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NC6","iata":"","local":"4NC6","name":"Cane Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fletcher","elevation_ft":2100,"latitude":35.441363,"longitude":-82.482223,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2680,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC8","iata":"","local":"4NC8","name":"Buffalo Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":600,"latitude":35.422401428222656,"longitude":-80.62059783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC5","iata":"","local":"4NC5","name":"Triple M Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cape Carteret","elevation_ft":30,"latitude":34.73040008544922,"longitude":-77.05049896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC3","iata":"","local":"NC2","name":"Taylorsville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Taylorsville","elevation_ft":1090,"latitude":35.930801,"longitude":-81.196702,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2850,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NA5","iata":"","local":"4NA5","name":"Berg Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Berthold","elevation_ft":2250,"latitude":48.28829956054688,"longitude":-101.8280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1760,"width_ft":36,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NA3","iata":"","local":"4NA3","name":"Peterson Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Antler","elevation_ft":1545,"latitude":48.857200622558594,"longitude":-101.302001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NA1","iata":"","local":"4NA1","name":"Ring Rock Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Williston","elevation_ft":2256,"latitude":48.25469970703125,"longitude":-103.6729965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC0","iata":"","local":"4NC0","name":"Boyd's Hawks Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mocksville","elevation_ft":815,"latitude":35.89849853515625,"longitude":-80.61620330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NJ1","iata":"","local":"4NJ1","name":"RJW University Hospital Somerset Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Somerville","elevation_ft":87,"latitude":40.56892,"longitude":-74.59453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NJ3","iata":"","local":"4NJ3","name":"Seabrook Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Salem","elevation_ft":30,"latitude":39.61959838867188,"longitude":-75.4384994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NJ4","iata":"","local":"4NJ4","name":"Pse & G Trenton Distribution Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Lawrenceville","elevation_ft":85,"latitude":40.28760147094727,"longitude":-74.67539978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NJ6","iata":"","local":"4NJ6","name":"Vineland Veterans Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Vineland","elevation_ft":109,"latitude":39.49509811401367,"longitude":-75.03070068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NJ8","iata":"","local":"","name":"Peters Airport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Whitehouse Station","elevation_ft":150,"latitude":40.600101,"longitude":-74.732903,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1700,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NK0","iata":"","local":"4NK0","name":"Wca Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Jamestown","elevation_ft":1340,"latitude":42.0900993347168,"longitude":-79.23059844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NE9","iata":"","local":"4NE9","name":"Holzfaster's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Paxton","elevation_ft":3305,"latitude":40.99919891357422,"longitude":-101.4469985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4ND8","iata":"","local":"4ND8","name":"Sanden Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wyndmere","elevation_ft":1065,"latitude":46.35409927368164,"longitude":-97.11699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4ND1","iata":"","local":"4ND1","name":"Knutson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Thompson","elevation_ft":880,"latitude":47.79280090332031,"longitude":-97.15370178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3440,"width_ft":165,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NE0","iata":"","local":"4NE0","name":"Regier Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Madrid","elevation_ft":3363,"latitude":40.91609954833984,"longitude":-101.55999755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NE8","iata":"","local":"4NE8","name":"Malone M-Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Palisade","elevation_ft":3000,"latitude":40.3828010559082,"longitude":-101.1520004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2640,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NK7","iata":"","local":"4NK7","name":"Apollo Fields Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Millbrook","elevation_ft":945,"latitude":41.831326,"longitude":-73.659353,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NK9","iata":"","local":"4NK9","name":"Corporate Park of Staten Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Staten Island","elevation_ft":5,"latitude":40.6171989440918,"longitude":-74.17579650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NY2","iata":"","local":"4NY2","name":"Edo Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"College Point","elevation_ft":0,"latitude":40.78340148925781,"longitude":-73.86620330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"NE/SW","length_ft":10000,"width_ft":500,"surface":"W"},{"id":"NW/SE","length_ft":10000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NY5","iata":"","local":"4NY5","name":"Bistrians Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"East Hampton","elevation_ft":70,"latitude":40.98759841918945,"longitude":-72.17340087890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NY9","iata":"","local":"4NY9","name":"Belmont Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Elmont","elevation_ft":72,"latitude":40.714500427246094,"longitude":-73.71040344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OA1","iata":"","local":"4OA1","name":"Fairfield Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Lancaster","elevation_ft":893,"latitude":39.718141,"longitude":-82.577888,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4NK2","iata":"","local":"4NK2","name":"Tracy Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Greenwich","elevation_ft":455,"latitude":43.145233,"longitude":-73.41965,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NK4","iata":"","local":"4NK4","name":"Woodford Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fabius","elevation_ft":1280,"latitude":42.82720184326172,"longitude":-76.02580261230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NK5","iata":"","local":"4NK5","name":"Harvs Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Macedon","elevation_ft":500,"latitude":43.101200103759766,"longitude":-77.3677978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NK3","iata":"","local":"4NK3","name":"Evans Airways Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Evans","elevation_ft":940,"latitude":42.669911,"longitude":-78.96831,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":30,"surface":"T"},{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53IA","iata":"","local":"53IA","name":"Tama Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Tama","elevation_ft":813,"latitude":41.95000076293945,"longitude":-92.57659912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OH0","iata":"","local":"4OH0","name":"Black Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Tipp City","elevation_ft":930,"latitude":39.98889923095703,"longitude":-84.1874008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OH2","iata":"","local":"4OH2","name":"Genesis Health Care Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Zanesville","elevation_ft":783,"latitude":39.973815,"longitude":-82.015364,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OH5","iata":"","local":"","name":"St Thomas Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":983,"latitude":41.096699,"longitude":-81.515404,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OH7","iata":"","local":"4OH7","name":"Holzer Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Gallipolis","elevation_ft":590,"latitude":38.84619903564453,"longitude":-82.2385025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OH9","iata":"","local":"4OH9","name":"Bellevue Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Bellevue","elevation_ft":750,"latitude":41.288719,"longitude":-82.882361,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OI0","iata":"","local":"4OI0","name":"ProMedica Flower Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Sylvania","elevation_ft":661,"latitude":41.708437,"longitude":-83.69229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OI1","iata":"","local":"4OI1","name":"Petro Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Zanesville","elevation_ft":808,"latitude":39.97169876098633,"longitude":-81.89510345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OI3","iata":"","local":"4OI3","name":"Horizons Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":508,"latitude":39.12260055541992,"longitude":-84.40989685058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OH8","iata":"","local":"4OH8","name":"Huffman Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Archbold","elevation_ft":741,"latitude":41.5,"longitude":-84.2499008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OA8","iata":"","local":"4OA8","name":"Bowman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Piqua","elevation_ft":980,"latitude":40.108319,"longitude":-84.299312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OK0","iata":"","local":"","name":"Zevely Climbing ZZ Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Seminole","elevation_ft":980,"latitude":35.225101,"longitude":-96.722802,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OK1","iata":"","local":"","name":"Hatton Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Talihina","elevation_ft":830,"latitude":34.716801,"longitude":-95.175201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OK2","iata":"","local":"","name":"Candy Lake Estate Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Avant","elevation_ft":685,"latitude":36.493099,"longitude":-96.054704,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3493,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OK3","iata":"","local":"4OK3","name":"St Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":752,"latitude":36.074892,"longitude":-95.918696,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OK6","iata":"","local":"","name":"Pitts Field","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Wanette","elevation_ft":1060,"latitude":34.989498,"longitude":-97.025297,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OK9","iata":"","local":"4OK9","name":"Hsi Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Cushing","elevation_ft":950,"latitude":35.92399978637695,"longitude":-96.7842025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":17,"width_ft":17,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OR1","iata":"","local":"4OR1","name":"McNary ARNG Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":209,"latitude":44.912,"longitude":-123.001502752,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4OR5","iata":"","local":"4OR5","name":"Fly 'N' W Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":206,"latitude":44.967899322509766,"longitude":-122.94100189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1564,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OR4","iata":"","local":"4OR4","name":"Schrock Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":245,"latitude":44.44359970092773,"longitude":-123.23799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OR3","iata":"","local":"4OR3","name":"Lambert Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Albany","elevation_ft":195,"latitude":44.73040008544922,"longitude":-123.07599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OR0","iata":"","local":"4OR0","name":"Springbrook Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Rogue River","elevation_ft":1560,"latitude":42.55509948730469,"longitude":-123.2040023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OI9","iata":"","local":"4OI9","name":"Baisden Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Coalton","elevation_ft":730,"latitude":39.10219955444336,"longitude":-82.61070251464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PA0","iata":"","local":"","name":"Millard Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Annville","elevation_ft":485,"latitude":40.3172,"longitude":-76.5364,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PA3","iata":"","local":"","name":"Frymoyer Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Liverpool","elevation_ft":520,"latitude":40.6306,"longitude":-77.0103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PA4","iata":"","local":"4PA4","name":"UPMC Susquehanna Lock Haven Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lock Haven","elevation_ft":720,"latitude":41.132176,"longitude":-77.470891,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PA7","iata":"","local":"","name":"Sheepshead Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Lykens","elevation_ft":610,"latitude":40.564804,"longitude":-76.746597,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":780,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PN3","iata":"","local":"4PN3","name":"Gallatin Fuel Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Masontown","elevation_ft":980,"latitude":39.86650085449219,"longitude":-79.95059967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PN4","iata":"","local":"","name":"Muddy Run Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Holtwood","elevation_ft":630,"latitude":39.845402,"longitude":-76.285202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PA1","iata":"","local":"4PA1","name":"Sauers-Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Berlin","elevation_ft":590,"latitude":40.8838996887207,"longitude":-76.9800033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PA5","iata":"","local":"4PA5","name":"Ponderosa Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lock Haven","elevation_ft":1820,"latitude":41.30839920043945,"longitude":-77.52469635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PN0","iata":"","local":"4PN0","name":"Flying M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Grove City","elevation_ft":1348,"latitude":41.216400146484375,"longitude":-80.09369659423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OR8","iata":"","local":"4OR8","name":"Wagoner Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":700,"latitude":44.8484992980957,"longitude":-123.04100036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1050,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OR7","iata":"","local":"4OR7","name":"Lusardi Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":205,"latitude":44.98540115,"longitude":-122.9459991,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PN6","iata":"","local":"4PN6","name":"Williams Grove Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mechanicsburg","elevation_ft":510,"latitude":40.15010070800781,"longitude":-77.03299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PN9","iata":"","local":"","name":"Glenn's Helo Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Birdsboro","elevation_ft":300,"latitude":40.2878,"longitude":-75.7659,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PS2","iata":"","local":"","name":"Altoona Regional Health System-Bon Secours Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Altoona","elevation_ft":1172,"latitude":40.5014,"longitude":-78.408096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4SD4","iata":"","local":"4SD4","name":"Dan's Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Rapid City","elevation_ft":3166,"latitude":44.04169845581055,"longitude":-103.0459976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PS7","iata":"","local":"","name":"Cohen Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Oxford","elevation_ft":418,"latitude":39.734656,"longitude":-75.942514,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PS8","iata":"","local":"4PS8","name":"Coatesville Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Coatesville","elevation_ft":564,"latitude":39.893333,"longitude":-75.818333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PS9","iata":"","local":"4PS9","name":"Ferrante Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Vandergrift","elevation_ft":950,"latitude":40.59870147705078,"longitude":-79.5811996459961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4PS4","iata":"","local":"4PS4","name":"Mountain Top Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Thompson","elevation_ft":2114,"latitude":41.815224,"longitude":-75.534243,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4SC7","iata":"","local":"4SC7","name":"Wexford Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Aiken","elevation_ft":350,"latitude":33.57830047607422,"longitude":-81.51170349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TA0","iata":"","local":"4TA0","name":"Massimiliano Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Damon","elevation_ft":65,"latitude":29.355499267578125,"longitude":-95.66380310058594,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3280,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TA1","iata":"","local":"4TA1","name":"Warschun Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":600,"latitude":33.302395,"longitude":-97.113181,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TA7","iata":"","local":"4TA7","name":"Oak Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Ingleside","elevation_ft":20,"latitude":27.861099243164062,"longitude":-97.19889831542967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TA9","iata":"","local":"4TA9","name":"Swinging Door Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Richmond","elevation_ft":88,"latitude":29.627500534057617,"longitude":-95.76940155029295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TE1","iata":"","local":"","name":"Figure 1 Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Booker","elevation_ft":2631,"latitude":36.266998,"longitude":-100.535004,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TE5","iata":"","local":"4TE5","name":"Dell City Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dell City","elevation_ft":3700,"latitude":31.933399200439453,"longitude":-105.20099639892578,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TA3","iata":"","local":"4TA3","name":"Costello Island Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Graford","elevation_ft":1020,"latitude":32.896562,"longitude":-98.461018,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TA2","iata":"","local":"4TA2","name":"V-Bar Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"China Spring","elevation_ft":565,"latitude":31.74225,"longitude":-97.319861,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1976,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TE9","iata":"","local":"4TE9","name":"Squirrel Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"D'Hanis","elevation_ft":970,"latitude":29.26409912109375,"longitude":-99.35060119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4400,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TE2","iata":"","local":"4TE2","name":"Lewis Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1379,"latitude":29.544099807739254,"longitude":-100.6729965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TE6","iata":"","local":"4TE6","name":"Jamison Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dayton","elevation_ft":85,"latitude":30.063077,"longitude":-94.948654,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TA4","iata":"","local":"4TA4","name":"Pea Patch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hempstead","elevation_ft":174,"latitude":29.93910026550293,"longitude":-96.05970001220705,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TN1","iata":"","local":"","name":"TGP Station 555 Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Collinwood","elevation_ft":874,"latitude":35.025101,"longitude":-87.757797,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1298,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TN5","iata":"","local":"","name":"TGP Station 860 Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Fairfield","elevation_ft":760,"latitude":35.847801,"longitude":-87.449501,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TN6","iata":"","local":"","name":"Lincoln Regional Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Fayetteville","elevation_ft":742,"latitude":35.149799,"longitude":-86.580803,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TN7","iata":"","local":"4TN7","name":"Bmh-H Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Huntingdon","elevation_ft":570,"latitude":36.000099182128906,"longitude":-88.4175033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TN8","iata":"","local":"4TN8","name":"Rgnl Hospital of Jackson Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Jackson","elevation_ft":444,"latitude":35.68230056762695,"longitude":-88.8551025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TS0","iata":"","local":"4TS0","name":"First City Financial Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":482,"latitude":29.75379943847656,"longitude":-95.3655014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TS3","iata":"","local":"4TS3","name":"Palestine Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Palestine","elevation_ft":570,"latitude":31.732789,"longitude":-95.626,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TS4","iata":"","local":"4TS4","name":"Palm Petroleum Corporation Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":95,"latitude":29.97520065307617,"longitude":-95.3687973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TS5","iata":"","local":"4TS5","name":"Goebel Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Home","elevation_ft":2189,"latitude":30.221900939941406,"longitude":-99.49839782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TN2","iata":"","local":"4TN2","name":"Buck Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Crossville","elevation_ft":1800,"latitude":35.883399963378906,"longitude":-84.96880340576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TN4","iata":"","local":"4TN4","name":"Cotton Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Eads","elevation_ft":345,"latitude":35.189998626708984,"longitude":-89.63860321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TS6","iata":"","local":"4TS6","name":"Texas Department of Public Safety Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Jersey Village","elevation_ft":140,"latitude":29.90497,"longitude":-95.59836,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TS7","iata":"","local":"4TS7","name":"Allison Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Stockton","elevation_ft":4572,"latitude":30.450199127197266,"longitude":-102.927001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TS9","iata":"","local":"4TS9","name":"Ossiport Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":818,"latitude":30.32323,"longitude":-97.867203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TX1","iata":"","local":"4TX1","name":"Abilene Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1800,"latitude":32.374255,"longitude":-99.743054,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TX9","iata":"","local":"","name":"Medical Center Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":1000,"latitude":29.507999,"longitude":-98.579201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":101,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"4TX3","iata":"","local":"4TX3","name":"Forest Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Petty","elevation_ft":525,"latitude":33.66120147705078,"longitude":-95.83360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TX2","iata":"","local":"4TX2","name":"Stage Coach Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Keller","elevation_ft":684,"latitude":32.966691,"longitude":-97.232695,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TS8","iata":"","local":"4TS8","name":"Glasscock Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"D'Hanis","elevation_ft":1089,"latitude":29.375,"longitude":-99.34200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TX6","iata":"","local":"4TX6","name":"Kilgore Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kilgore","elevation_ft":365,"latitude":32.41270065307617,"longitude":-94.81829833984376,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2780,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TX8","iata":"","local":"4TX8","name":"Addington Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Krum","elevation_ft":705,"latitude":33.24869918823242,"longitude":-97.2238998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT03","iata":"","local":"VT03","name":"Maule's Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Lincoln","elevation_ft":1100,"latitude":44.08869934082031,"longitude":-72.98090362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12NK","iata":"","local":"12NK","name":"Westport Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Westport","elevation_ft":276,"latitude":44.15840148925781,"longitude":-73.43289947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLKP","iata":"LKP","local":"LKP","name":"Lake Placid Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Lake Placid","elevation_ft":1747,"latitude":44.2644996643,"longitude":-73.96189880370001,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4196,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66VT","iata":"","local":"66VT","name":"Symon Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Shoreham","elevation_ft":300,"latitude":43.882785,"longitude":-73.2862,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY23","iata":"","local":"NY23","name":"MAC Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Mohawk","elevation_ft":1210,"latitude":42.987597,"longitude":-74.966499,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK76","iata":"","local":"NK76","name":"Grammar Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Geneva","elevation_ft":755,"latitude":42.88249969482422,"longitude":-77.05169677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY13","iata":"","local":"NY13","name":"D'Amico Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Lyons","elevation_ft":515,"latitude":43.0908,"longitude":-76.98864,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38NY","iata":"","local":"38NY","name":"Greenlawn Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Dundee","elevation_ft":1010,"latitude":42.54869842529297,"longitude":-76.95800018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1950,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85NY","iata":"","local":"85NY","name":"High Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Sardinia","elevation_ft":1540,"latitude":42.578399658203125,"longitude":-78.5199966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLRG","iata":"","local":"LRG","name":"Lincoln Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Lincoln","elevation_ft":208,"latitude":45.36220169067383,"longitude":-68.53469848632812,"has_tower":false,"has_beacon":true,"runways":[{"id":"06W/24W","length_ft":2400,"width_ft":100,"surface":"W"},{"id":"17/35","length_ft":2804,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA07","iata":"","local":"OA07","name":"Hemlock Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Rock Creek","elevation_ft":815,"latitude":41.70140075683594,"longitude":-80.86029815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78OH","iata":"","local":"78OH","name":"Valley City Flying Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Valley City","elevation_ft":850,"latitude":41.258037,"longitude":-81.969729,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH97","iata":"","local":"OH97","name":"Carcioppolo Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Auburn Center","elevation_ft":1165,"latitude":41.356884,"longitude":-81.214441,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI32","iata":"","local":"OI32","name":"Stoney's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ravenna","elevation_ft":1105,"latitude":41.16822,"longitude":-81.288046,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OI8","iata":"","local":"4OI8","name":"Brocker Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Canfield","elevation_ft":1170,"latitude":41.057188,"longitude":-80.755059,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42VT","iata":"","local":"42VT","name":"Frogs End Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Shelburne","elevation_ft":320,"latitude":44.36690139770508,"longitude":-73.15019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NK6","iata":"","local":"1NK6","name":"Catalano Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Wilmington","elevation_ft":840,"latitude":44.423807,"longitude":-73.758777,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY64","iata":"","local":"NY64","name":"The Pines Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Broadalbin","elevation_ft":850,"latitude":43.10290145874024,"longitude":-74.15509796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2800,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY26","iata":"","local":"NY26","name":"Sky-Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Mohawk","elevation_ft":1330,"latitude":42.983398,"longitude":-74.899597,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2141,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27NK","iata":"","local":"27NK","name":"Mohawk Air Park","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Schyler","elevation_ft":1079,"latitude":43.113317,"longitude":-75.044467,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NK3","iata":"","local":"83K","name":"Harris Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Ann","elevation_ft":261,"latitude":43.409669,"longitude":-73.532732,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT60","iata":"","local":"VT60","name":"Hulett Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"West Pawlett","elevation_ft":720,"latitude":43.3301010131836,"longitude":-73.24259948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1125,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY63","iata":"","local":"NY63","name":"Archdale Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Greenwich","elevation_ft":584,"latitude":43.05438,"longitude":-73.47197,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42NY","iata":"","local":"42NY","name":"Walter's Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"East Homer","elevation_ft":1560,"latitude":42.66899871826172,"longitude":-76.05619812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1150,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY16","iata":"","local":"NY16","name":"Oak Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"East Palmyra","elevation_ft":540,"latitude":43.0984001159668,"longitude":-77.18190002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30NY","iata":"","local":"30NY","name":"Coye Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Canadice","elevation_ft":1610,"latitude":42.750099182128906,"longitude":-77.55809783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2175,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52NY","iata":"","local":"52NY","name":"Bedson's Land Base Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Honeoye Falls","elevation_ft":804,"latitude":42.93059921264648,"longitude":-77.64420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53NY","iata":"","local":"53NY","name":"Smiths Land Base Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Honeoye Falls","elevation_ft":627,"latitude":42.95840072631836,"longitude":-77.61579895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK31","iata":"","local":"NK31","name":"Dawn Patrol Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Albion","elevation_ft":480,"latitude":43.26950073242188,"longitude":-78.14530181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00NY","iata":"","local":"00NY","name":"Weiss Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"West Bloomfield","elevation_ft":1000,"latitude":42.89576,"longitude":-77.495263,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2350,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20NY","iata":"","local":"20NY","name":"Stafford Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Stafford","elevation_ft":891,"latitude":43.0088996887207,"longitude":-78.04309844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1960,"width_ft":82,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65NY","iata":"","local":"65NY","name":"Chautauqua Lake Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Mayville","elevation_ft":1655,"latitude":42.28390121459961,"longitude":-79.44390106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY89","iata":"","local":"NY89","name":"Goose Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Jamestown","elevation_ft":1350,"latitude":42.078285,"longitude":-79.393506,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":1700,"width_ft":50,"surface":"W"},{"id":"15L/33R","length_ft":2800,"width_ft":50,"surface":"A"},{"id":"15R/33L","length_ft":2800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91NY","iata":"","local":"91NY","name":"Manitou Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Spencerport","elevation_ft":470,"latitude":43.19559860229492,"longitude":-77.74810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95NY","iata":"","local":"95NY","name":"Cummings Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Wales Center/Cowlesville/","elevation_ft":1280,"latitude":42.7892,"longitude":-78.476402,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98NY","iata":"","local":"98NY","name":"Krenzers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"West Bloomfield","elevation_ft":1035,"latitude":42.883399963378906,"longitude":-77.53309631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1400,"width_ft":75,"surface":"T"},{"id":"N/S","length_ft":1750,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28NY","iata":"","local":"28NY","name":"Spaudling Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Cassadaga","elevation_ft":1607,"latitude":42.308333,"longitude":-79.225,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK53","iata":"","local":"NK53","name":"Dodge/Coppola/Wheeler Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Sullivanville","elevation_ft":1030,"latitude":42.20560073852539,"longitude":-76.77050018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1000,"width_ft":75,"surface":"T"},{"id":"05U/23U","length_ft":550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA01","iata":"","local":"PA01","name":"Merrys Pymatuning Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Linesville","elevation_ft":1203,"latitude":41.67509841918945,"longitude":-80.43450164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1815,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN18","iata":"","local":"PN18","name":"Fairview Evergreen Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Fairview","elevation_ft":805,"latitude":42.02730178833008,"longitude":-80.24369812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1840,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI62","iata":"","local":"OI62","name":"Rataiczak Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Russell","elevation_ft":1200,"latitude":41.47639846801758,"longitude":-81.31710052490234,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78NY","iata":"","local":"78NY","name":"Flying F Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Pendleton","elevation_ft":582,"latitude":43.081362,"longitude":-78.779447,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3750,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY06","iata":"","local":"NY06","name":"Gaines Valley Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Albion","elevation_ft":380,"latitude":43.2963981628418,"longitude":-78.21389770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17NK","iata":"","local":"17NK","name":"Re-Dun Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Rock Stream","elevation_ft":1351,"latitude":42.457059,"longitude":-76.951053,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75NY","iata":"","local":"75NY","name":"Reiss Game Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Olean","elevation_ft":1698,"latitude":42.11669921875,"longitude":-78.31559753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75PA","iata":"","local":"75PA","name":"Marther Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Albion","elevation_ft":950,"latitude":41.87310028076172,"longitude":-80.45899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66OI","iata":"","local":"66OI","name":"Gorman-Green Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wooster","elevation_ft":1210,"latitude":40.781386,"longitude":-82.057614,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29OH","iata":"","local":"29OH","name":"Fox Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Magnolia","elevation_ft":1020,"latitude":40.6864013671875,"longitude":-81.30259704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH82","iata":"","local":"OH82","name":"Graham Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Dresden","elevation_ft":725,"latitude":40.1534,"longitude":-81.973503,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCYO","iata":"","local":"CYO","name":"Pickaway County Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Circleville","elevation_ft":684,"latitude":39.51599884,"longitude":-82.98210144,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":4346,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK54","iata":"","local":"NK54","name":"Matejka Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Erin","elevation_ft":1690,"latitude":42.176700592041016,"longitude":-76.64109802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13PA","iata":"","local":"13PA","name":"Rigrtona Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tidioute","elevation_ft":1703,"latitude":41.68259811401367,"longitude":-79.4520034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2225,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OA2","iata":"","local":"1OA2","name":"Mole Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Grafton","elevation_ft":854,"latitude":41.261206,"longitude":-81.990906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2140,"width_ft":63,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH03","iata":"","local":"OH03","name":"Woodworth Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Madison","elevation_ft":678,"latitude":41.79230117797852,"longitude":-81.05819702148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI69","iata":"","local":"OI69","name":"Blackacre Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Painesville","elevation_ft":640,"latitude":41.77840042114258,"longitude":-81.16699981689453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH07","iata":"","local":"OH07","name":"Sunset Strip","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Marlboro","elevation_ft":1190,"latitude":40.94390106201172,"longitude":-81.23899841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OH9","iata":"","local":"5OH9","name":"Furey Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Malvern","elevation_ft":1050,"latitude":40.696779,"longitude":-81.179094,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11OA","iata":"","local":"11OA","name":"Hide-A-Way Hills Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bremen","elevation_ft":780,"latitude":39.64310073852539,"longitude":-82.466796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI73","iata":"","local":"OI73","name":"Williamson Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cedarville","elevation_ft":1060,"latitude":39.71260070800781,"longitude":-83.80380249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55OI","iata":"","local":"55OI","name":"Aero Flight Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"East Palestine","elevation_ft":1140,"latitude":40.858699798583984,"longitude":-80.5353012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91OH","iata":"","local":"91OH","name":"Stine Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wooster","elevation_ft":1172,"latitude":40.7333984375,"longitude":-81.89289855957031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1650,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA14","iata":"","local":"OA14","name":"Roxford Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Dennison","elevation_ft":872,"latitude":40.426367,"longitude":-81.3202,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH61","iata":"","local":"OH61","name":"Amanda Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Amanda","elevation_ft":900,"latitude":39.63529968261719,"longitude":-82.73789978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OH0","iata":"","local":"2OH0","name":"Bohannan Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Kilbourne","elevation_ft":960,"latitude":40.34432,"longitude":-82.937175,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69OI","iata":"","local":"69OI","name":"Schulze's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Chatfield","elevation_ft":1000,"latitude":40.95009994506836,"longitude":-82.92489624023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87OI","iata":"","local":"87OI","name":"Lake Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Norwalk","elevation_ft":690,"latitude":41.27230072021485,"longitude":-82.62300109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58OH","iata":"","local":"58OH","name":"Rattlesnake Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Put In Bay","elevation_ft":586,"latitude":41.678511,"longitude":-82.848823,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1500,"width_ft":150,"surface":"T"},{"id":"N/S","length_ft":988,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI27","iata":"","local":"MI27","name":"Haigh Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Howell","elevation_ft":1000,"latitude":42.612065,"longitude":-83.859102,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI99","iata":"","local":"MI99","name":"Robertson Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Richmond","elevation_ft":620,"latitude":42.79890060424805,"longitude":-82.65879821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75MI","iata":"","local":"75MI","name":"Norton Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Memphis","elevation_ft":795,"latitude":42.970966,"longitude":-82.847459,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1347,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA40","iata":"","local":"OA40","name":"Autumn Orchard Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Louisville","elevation_ft":1189,"latitude":40.880278,"longitude":-81.291667,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH48","iata":"","local":"OH48","name":"Alliance Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Alliance","elevation_ft":1077,"latitude":40.90560150146485,"longitude":-81.06510162353516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTSO","iata":"","local":"TSO","name":"Carroll County-Tolson Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Carrollton","elevation_ft":1163,"latitude":40.561901,"longitude":-81.077499,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":4300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI91","iata":"","local":"OI91","name":"Hammond Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Yellow Springs","elevation_ft":990,"latitude":39.77970123291016,"longitude":-83.9092025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH21","iata":"","local":"OH21","name":"Horning Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Galion","elevation_ft":1190,"latitude":40.73619842529297,"longitude":-82.75270080566406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OH1","iata":"","local":"6OH1","name":"Missler-Bellevue Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bellevue","elevation_ft":760,"latitude":41.28620147705078,"longitude":-82.8666000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OI4","iata":"","local":"2OI4","name":"Aero Lake Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Westfield Center","elevation_ft":1195,"latitude":41.0452995300293,"longitude":-81.9365005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62OH","iata":"","local":"62OH","name":"Willard Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lancaster","elevation_ft":820,"latitude":39.694503,"longitude":-82.467542,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57OI","iata":"","local":"57OI","name":"Logan's Chance Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lawrenceville","elevation_ft":1100,"latitude":39.996700286865234,"longitude":-83.85469818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI85","iata":"","local":"OI85","name":"Mill Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ostrander","elevation_ft":960,"latitude":40.268398284912,"longitude":-83.221603393555,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3300,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OA1","iata":"","local":"1OA1","name":"Bashore Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Pleasant Hill","elevation_ft":940,"latitude":40.0458984375,"longitude":-84.33439636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2237,"width_ft":58,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10OH","iata":"","local":"10OH","name":"Zoellner Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Huron","elevation_ft":617,"latitude":41.402517,"longitude":-82.629333,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IL5","iata":"","local":"5IL5","name":"Hope Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Mazon","elevation_ft":558,"latitude":41.259925,"longitude":-88.356535,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2070,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OH1","iata":"","local":"1OH1","name":"S and S Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Quincy","elevation_ft":1057,"latitude":40.30139923095703,"longitude":-83.9760971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGQQ","iata":"GQQ","local":"GQQ","name":"Galion Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Galion","elevation_ft":1224,"latitude":40.7533988953,"longitude":-82.7238006592,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3504,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OH4","iata":"","local":"6OH4","name":"Aring Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Bowling Green","elevation_ft":650,"latitude":41.3583984375,"longitude":-83.55829620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1000,"width_ft":40,"surface":"T"},{"id":"N/S","length_ft":1770,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYPT","iata":"","local":"","name":"Pelee Island Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Pelee Island","elevation_ft":572,"latitude":41.780399,"longitude":-82.678001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3300,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":1500,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MI8","iata":"","local":"7MI8","name":"Letts Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Vassar","elevation_ft":800,"latitude":43.33919906616211,"longitude":-83.4760971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI01","iata":"","local":"MI01","name":"Fasel Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Avoca","elevation_ft":735,"latitude":43.05780029296875,"longitude":-82.6769027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30WI","iata":"","local":"30WI","name":"Chambers Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chambers Island","elevation_ft":588,"latitude":45.19189834594727,"longitude":-87.35929870605469,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34OI","iata":"","local":"34OI","name":"Mohican Air Park","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lakeville","elevation_ft":1180,"latitude":40.6945,"longitude":-82.117897,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2900,"width_ft":100,"surface":"T"},{"id":"09/27","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OH8","iata":"","local":"9OH8","name":"Ferrell Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Findlay","elevation_ft":815,"latitude":40.97639846801758,"longitude":-83.6416015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":79,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI48","iata":"","local":"MI48","name":"Ham-A-Lot Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Petersburg","elevation_ft":680,"latitude":41.842839,"longitude":-83.684149,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MI9","iata":"","local":"8MI9","name":"Winters Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Grass Lake","elevation_ft":1000,"latitude":42.303072,"longitude":-84.10728,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60MI","iata":"","local":"60MI","name":"Maybee Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Maybee","elevation_ft":650,"latitude":42.04140090942383,"longitude":-83.56690216064453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2020,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRCT","iata":"RCT","local":"RCT","name":"Nartron Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Reed City","elevation_ft":1055,"latitude":43.9000015259,"longitude":-85.5167007446,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4506,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WI8","iata":"","local":"1WI8","name":"Jorgensen - Stoller Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Algoma","elevation_ft":690,"latitude":44.635799408,"longitude":-87.44020080570002,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WN8","iata":"","local":"8WN8","name":"Mave's Lakeview Road Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ellison Bay","elevation_ft":700,"latitude":45.23509979248047,"longitude":-87.06749725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI2","iata":"","local":"9WI2","name":"Flying Dollar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Maribel","elevation_ft":840,"latitude":44.28749847412109,"longitude":-87.7958984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90WI","iata":"","local":"90WI","name":"Heritage Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Laona","elevation_ft":1608,"latitude":45.57500076293945,"longitude":-88.7083969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50OH","iata":"","local":"50OH","name":"Culver Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Oregon","elevation_ft":620,"latitude":41.663101196289,"longitude":-83.415496826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86MI","iata":"","local":"86MI","name":"Downwind Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Willis","elevation_ft":683,"latitude":42.15280151367188,"longitude":-83.56739807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2460,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI70","iata":"","local":"MI70","name":"Carl's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Clinton","elevation_ft":850,"latitude":42.071201,"longitude":-83.883598,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MI5","iata":"","local":"1MI5","name":"McKenzie's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Howell","elevation_ft":955,"latitude":42.6031,"longitude":-83.859703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MI7","iata":"","local":"7MI","name":"Flugplatz Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lexington","elevation_ft":700,"latitude":43.34183,"longitude":-82.54842,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGDW","iata":"GDW","local":"GDW","name":"Gladwin Zettel Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Gladwin","elevation_ft":776,"latitude":43.9706001282,"longitude":-84.47499847410002,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4699,"width_ft":75,"surface":"A"},{"id":"15/33","length_ft":2580,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI15","iata":"","local":"MI15","name":"Wards Long Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Fair Haven","elevation_ft":618,"latitude":42.72919845581055,"longitude":-82.66519927978516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":164,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46MI","iata":"","local":"46MI","name":"Cloud Nine West Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Webberville","elevation_ft":910,"latitude":42.546101,"longitude":-84.1278,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYGD","iata":"","local":"YGD","name":"Goderich Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Goderich","elevation_ft":712,"latitude":43.7668991089,"longitude":-81.7106018066,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5034,"width_ft":100,"surface":"A"},{"id":"10/28","length_ft":3002,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99MI","iata":"","local":"MI1","name":"Denton Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Clare","elevation_ft":845,"latitude":43.755141,"longitude":-84.808286,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MI2","iata":"","local":"3MI2","name":"South Fox Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Northport","elevation_ft":616,"latitude":45.399200439453125,"longitude":-85.8301010131836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5500,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MI6","iata":"","local":"2MI6","name":"The Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Whittemore","elevation_ft":809,"latitude":44.28743,"longitude":-83.760913,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95MI","iata":"","local":"95MI","name":"Evad Enterprises LLC Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Luther","elevation_ft":981,"latitude":44.087026,"longitude":-85.7307415,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI6","iata":"","local":"9WI6","name":"Kitty Hawk Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Polar","elevation_ft":1500,"latitude":45.10409927368164,"longitude":-89.01679992675781,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI47","iata":"","local":"WI47","name":"Timberline Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Scandinavia","elevation_ft":890,"latitude":44.43330001831055,"longitude":-89.15010070800781,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI4","iata":"","local":"5WI4","name":"Larson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Marinette","elevation_ft":615,"latitude":45.08140182495117,"longitude":-87.6792984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI78","iata":"","local":"WI78","name":"Martins Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Green Bay","elevation_ft":808,"latitude":44.42580032348633,"longitude":-87.93499755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS43","iata":"","local":"WS43","name":"Birch Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"De Pere","elevation_ft":813,"latitude":44.355499267578125,"longitude":-88.05840301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WI7","iata":"","local":"0WI7","name":"With Wings And A Halo Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Neenah","elevation_ft":760,"latitude":44.1335983276,"longitude":-88.4992980957,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WI4","iata":"","local":"7WI4","name":"Lewis Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Black River Falls","elevation_ft":1041,"latitude":44.30049896240234,"longitude":-90.98789978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI13","iata":"","local":"WI13","name":"Jennie'S Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wisconsin Rapids","elevation_ft":993,"latitude":44.254833,"longitude":-89.8395,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI67","iata":"","local":"WI67","name":"Bennett Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ripon","elevation_ft":935,"latitude":43.876994,"longitude":-88.900402,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS46","iata":"","local":"WS46","name":"J & L Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ripon","elevation_ft":975,"latitude":43.831555,"longitude":-88.891196,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MI8","iata":"","local":"MI55","name":"Twin Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Lewiston","elevation_ft":1275,"latitude":44.894115,"longitude":-84.297818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8WI2","iata":"","local":"8WI2","name":"Runway Leasing Inc Nr 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Plainfield","elevation_ft":1100,"latitude":44.224700927734375,"longitude":-89.53099822998047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18L/36R","length_ft":2400,"width_ft":35,"surface":"G"},{"id":"18R/36L","length_ft":2400,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99WI","iata":"","local":"99WI","name":"Goins Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Two Rivers","elevation_ft":660,"latitude":44.179166,"longitude":-87.631388,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WS2","iata":"","local":"9WS2","name":"Antique Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"De Pere","elevation_ft":655,"latitude":44.367639,"longitude":-88.158678,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI60","iata":"","local":"WI60","name":"Deer Haven Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cecil","elevation_ft":811,"latitude":44.832801818847656,"longitude":-88.46320343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1500,"width_ft":70,"surface":"T"},{"id":"N/S","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI87","iata":"","local":"WI87","name":"Pine River Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrill","elevation_ft":1370,"latitude":45.2033004761,"longitude":-89.52439880370001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1550,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI60","iata":"","local":"MI60","name":"Tannehill Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Fife Lake","elevation_ft":1050,"latitude":44.591400146484375,"longitude":-85.31079864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":150,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI00","iata":"","local":"WI00","name":"Norrie Brook Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Eland","elevation_ft":1240,"latitude":44.8739013671875,"longitude":-89.23069763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN09","iata":"","local":"WN09","name":"Bucky's Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Plainfield","elevation_ft":1145,"latitude":44.1643981934,"longitude":-89.508102417,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1650,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43MI","iata":"","local":"43MI","name":"W Gladstone Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Gladstone","elevation_ft":720,"latitude":45.85910034179688,"longitude":-87.1167984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2977,"width_ft":68,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI0","iata":"","local":"3WI0","name":"Carnot Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Algoma","elevation_ft":655,"latitude":44.6422004699707,"longitude":-87.4197998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1100,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56WI","iata":"","local":"56WI","name":"Jaks Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mosinee","elevation_ft":1190,"latitude":44.773458,"longitude":-89.590824,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1490,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WI8","iata":"","local":"7WI8","name":"Crispy Cedars Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Brussels","elevation_ft":700,"latitude":44.780722,"longitude":-87.602737,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI18","iata":"","local":"WI18","name":"Gateway Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bloomer","elevation_ft":1021,"latitude":45.13330078125,"longitude":-91.45020294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI55","iata":"","local":"WI55","name":"Broken Prop Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Berlin","elevation_ft":767,"latitude":43.98609924316406,"longitude":-88.9834976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WI8","iata":"","local":"5WI8","name":"Ermis-Ridgeview Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Coleman","elevation_ft":715,"latitude":45.07609939575195,"longitude":-88.00430297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9WI3","iata":"","local":"9WI3","name":"Buchholz Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Morrison","elevation_ft":955,"latitude":44.28549957275391,"longitude":-87.98680114746094,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1336,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI28","iata":"","local":"WI28","name":"Walter's Agri-Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Rio Creek","elevation_ft":717,"latitude":44.58610153198242,"longitude":-87.55760192871094,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1750,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS25","iata":"","local":"WS25","name":"Shangrila Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Beecher","elevation_ft":835,"latitude":45.58160018920898,"longitude":-87.84539794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN11","iata":"","local":"WN11","name":"Red Roof Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Beecher","elevation_ft":963,"latitude":45.58580017089844,"longitude":-88.00370025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":100,"surface":"T"},{"id":"13/31","length_ft":1900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WN3","iata":"","local":"2WN3","name":"Curns Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"New London","elevation_ft":790,"latitude":44.358525,"longitude":-88.762486,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":1001,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI4","iata":"","local":"3WI4","name":"Flying 'O' Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wausau","elevation_ft":1320,"latitude":44.92359924316406,"longitude":-89.40229797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55WI","iata":"","local":"55WI","name":"Cranmoor Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Nekoosa","elevation_ft":985,"latitude":44.31800079345703,"longitude":-89.96869659423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97WI","iata":"","local":"97WI","name":"North Fork Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Thorp","elevation_ft":1145,"latitude":44.96329879760742,"longitude":-90.86029815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1740,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS02","iata":"","local":"WS02","name":"Polish Paradise Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oxford","elevation_ft":1030,"latitude":43.74250030517578,"longitude":-89.71600341796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2020,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI91","iata":"","local":"WI91","name":"Larson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Larsen","elevation_ft":800,"latitude":44.20280075073242,"longitude":-88.63960266113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI42","iata":"","local":"WI42","name":"Pine Grove Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Rhinelander","elevation_ft":1630,"latitude":45.65719985961914,"longitude":-89.52989959716797,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":80,"surface":"T"},{"id":"16/34","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN44","iata":"","local":"WN44","name":"Podeweltz Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrill","elevation_ft":1470,"latitude":45.23939895629883,"longitude":-89.56900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS78","iata":"","local":"WS78","name":"River Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Rhinelander","elevation_ft":1525,"latitude":45.55030059814453,"longitude":-89.48780059814453,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1610,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS76","iata":"","local":"WS76","name":"Black Dog Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"New London","elevation_ft":898,"latitude":44.470766,"longitude":-88.823419,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3WI3","iata":"","local":"3WI3","name":"Plover River Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bevent","elevation_ft":1185,"latitude":44.76520156860352,"longitude":-89.40730285644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40WI","iata":"","local":"40WI","name":"Schubert Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Centerville","elevation_ft":750,"latitude":44.05830001831055,"longitude":-91.43070220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"09L/27R","length_ft":2500,"width_ft":50,"surface":"T"},{"id":"09R/27L","length_ft":2250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67WI","iata":"","local":"67WI","name":"Accurate Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Necedah","elevation_ft":890,"latitude":43.971099853515625,"longitude":-89.99710083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KVIQ","iata":"","local":"VIQ","name":"Neillsville Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Neillsville","elevation_ft":1237,"latitude":44.558102,"longitude":-90.512199,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":3400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN90","iata":"","local":"WN90","name":"Taylorport Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bruce","elevation_ft":1250,"latitude":45.373133,"longitude":-91.294713,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":250,"surface":"T"},{"id":"06W/24W","length_ft":4500,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN32","iata":"","local":"MN32","name":"Nietz Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Oronoco","elevation_ft":1130,"latitude":44.19139862060547,"longitude":-92.45269775390624,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS29","iata":"","local":"WS29","name":"Tachick Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Pound","elevation_ft":850,"latitude":45.12030029296875,"longitude":-88.14340209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WN3","iata":"","local":"4WN3","name":"Lakewood Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lakewood","elevation_ft":1300,"latitude":45.33209991455078,"longitude":-88.53600311279297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36WI","iata":"","local":"36WI","name":"Holland Air Park","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Holmen","elevation_ft":730,"latitude":44.03219985961914,"longitude":-91.29959869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WI1","iata":"","local":"6WI1","name":"Winch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wisconsin Rapids","elevation_ft":1120,"latitude":44.49520111083984,"longitude":-89.91259765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83WI","iata":"","local":"83WI","name":"Jones Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Dorchester","elevation_ft":1410,"latitude":44.97050094604492,"longitude":-90.34619903564452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS17","iata":"","local":"WS17","name":"Pioneer Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oshkosh","elevation_ft":826,"latitude":43.985045,"longitude":-88.576083,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1988,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35MN","iata":"","local":"35MN","name":"Wipline Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Inver Grove Heights","elevation_ft":687,"latitude":44.81549835205078,"longitude":-93.01349639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49MN","iata":"","local":"49MN","name":"Willow Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hastings","elevation_ft":839,"latitude":44.671406,"longitude":-92.827168,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN24","iata":"","local":"MN24","name":"Surfside Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Circle Pines","elevation_ft":890,"latitude":45.150001525878906,"longitude":-93.1168975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1900,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54WI","iata":"","local":"54WI","name":"Flyplassen Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Woodville","elevation_ft":1300,"latitude":44.96382,"longitude":-92.29523,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1425,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MY9","iata":"","local":"7MY9","name":"Petes Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Dexter","elevation_ft":1337,"latitude":43.746717,"longitude":-92.7245,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45WI","iata":"","local":"45WI","name":"Windsong Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Woodville","elevation_ft":1250,"latitude":45,"longitude":-92.28350067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN87","iata":"","local":"MN87","name":"Cooks Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ham Lake","elevation_ft":895,"latitude":45.24359893798828,"longitude":-93.2217025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1070,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62MN","iata":"","local":"62MN","name":"Taylors Falls Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Taylors Falls","elevation_ft":920,"latitude":45.38140106201172,"longitude":-92.68240356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":200,"surface":"T"},{"id":"04/22","length_ft":1300,"width_ft":200,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN08","iata":"","local":"MN08","name":"Eagles Nest Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Eagle Lake","elevation_ft":1000,"latitude":44.12649917602539,"longitude":-93.8718032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY57","iata":"","local":"MY57","name":"Fedor Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Holdingford","elevation_ft":1175,"latitude":45.763301849365234,"longitude":-94.4574966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1830,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23WN","iata":"","local":"23WN","name":"Willie's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Springbrook","elevation_ft":1110,"latitude":45.91109848022461,"longitude":-91.62850189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOGM","iata":"","local":"OGM","name":"Ontonagon County Schuster Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Ontonagon","elevation_ft":669,"latitude":46.84550095,"longitude":-89.36710358,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":3503,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37IS","iata":"","local":"37IS","name":"Hilbert Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marengo","elevation_ft":890,"latitude":42.33219909667969,"longitude":-88.60559844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL11","iata":"","local":"IL11","name":"Donald Alfred Gade Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Antioch","elevation_ft":805,"latitude":42.46530151367188,"longitude":-88.04039764404297,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL02","iata":"","local":"IL02","name":"Herbert C. Maas Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Zion","elevation_ft":719,"latitude":42.472198486328125,"longitude":-87.90840148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN45","iata":"","local":"MN45","name":"Jennrich Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Farmington","elevation_ft":951,"latitude":44.56610107421875,"longitude":-93.1322021484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN67","iata":"","local":"MN67","name":"Sky Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Jordan","elevation_ft":940,"latitude":44.659698,"longitude":-93.518303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY97","iata":"","local":"MY97","name":"Nielsen's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Farmington","elevation_ft":990,"latitude":44.599141,"longitude":-93.127585,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN40","iata":"","local":"MN40","name":"Meadowvale Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Elk River","elevation_ft":950,"latitude":45.36249923706055,"longitude":-93.5886001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MN1","iata":"","local":"9MN1","name":"Troll Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cambridge","elevation_ft":960,"latitude":45.61159896850586,"longitude":-93.19740295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN99","iata":"","local":"MN99","name":"Serenity Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lester Prairie","elevation_ft":1050,"latitude":44.915599822998,"longitude":-94.088897705078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MN8","iata":"","local":"6MN8","name":"Underland Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Medford","elevation_ft":1145,"latitude":44.15053,"longitude":-93.27721,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN58","iata":"","local":"MN58","name":"Sky Meadow Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hastings","elevation_ft":820,"latitude":44.698098,"longitude":-92.865136,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY35","iata":"","local":"MY35","name":"Walker Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Afton","elevation_ft":902,"latitude":44.93349838256836,"longitude":-92.81770324707033,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MN5","iata":"","local":"5MN5","name":"Barnes Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lindstrom","elevation_ft":945,"latitude":45.4364013671875,"longitude":-92.83489990234376,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1650,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN28","iata":"","local":"MN28","name":"Lux Strip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cosmos","elevation_ft":1120,"latitude":44.983001708984375,"longitude":-94.74810028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2550,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY90","iata":"","local":"MY90","name":"Al's Due North Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"North Branch","elevation_ft":915,"latitude":45.481845,"longitude":-92.988545,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS71","iata":"","local":"WS71","name":"Flying J Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"St Croix Falls","elevation_ft":1205,"latitude":45.43050003051758,"longitude":-92.6155014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KSSQ","iata":"","local":"SSQ","name":"Shell Lake Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Shell Lake","elevation_ft":1233,"latitude":45.73139954,"longitude":-91.92070007,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3711,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN00","iata":"","local":"MN00","name":"Webb Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hackensack","elevation_ft":1359,"latitude":46.95980072,"longitude":-94.42469788,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":40,"surface":"A"},{"id":"14W/32W","length_ft":5000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14WS","iata":"","local":"14WS","name":"Lakewood Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Stone Lake","elevation_ft":1365,"latitude":45.77799987792969,"longitude":-91.55850219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MY4","iata":"","local":"2MY4","name":"Miller Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Clear Lake","elevation_ft":987,"latitude":45.434174,"longitude":-93.950336,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41WI","iata":"","local":"41WI","name":"Paddock Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Elkhorn","elevation_ft":950,"latitude":42.73860168457031,"longitude":-88.57980346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WI0","iata":"","local":"6WI0","name":"Cub Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Prairie Farm","elevation_ft":1000,"latitude":45.18050003051758,"longitude":-91.98770141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85WI","iata":"","local":"85WI","name":"Cub Bear Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Emerald","elevation_ft":1240,"latitude":45.04439926147461,"longitude":-92.29280090332033,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN91","iata":"","local":"MN91","name":"Reynolds Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Princeton","elevation_ft":985,"latitude":45.53749847412109,"longitude":-93.51409912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6WN5","iata":"","local":"6WN5","name":"Airwolfe Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Stockholm","elevation_ft":1130,"latitude":44.49980163574219,"longitude":-92.19879913330078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY18","iata":"","local":"MY18","name":"Lino Air Park","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lino Lakes","elevation_ft":907,"latitude":45.187198638916016,"longitude":-93.13050079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2383,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN88","iata":"","local":"MN88","name":"Empire Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Paynesville","elevation_ft":1160,"latitude":45.28689956665,"longitude":-94.675300598145,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63MN","iata":"","local":"63MN","name":"Weideman International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Two Harbors","elevation_ft":930,"latitude":47.09439849853516,"longitude":-91.6001968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20WI","iata":"","local":"20WI","name":"Harju Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Redgranite","elevation_ft":800,"latitude":44.02140045166016,"longitude":-89.07929992675781,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WI6","iata":"","local":"7WI6","name":"Weatherbee Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wyocena","elevation_ft":960,"latitude":43.47050094604492,"longitude":-89.35900115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN03","iata":"","local":"WN03","name":"Van Der Vaart Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Sheboygan","elevation_ft":622,"latitude":43.6786003112793,"longitude":-87.72560119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL5","iata":"","local":"3LL5","name":"Richardson Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Spring Grove","elevation_ft":860,"latitude":42.464500427246094,"longitude":-88.23429870605469,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1750,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL23","iata":"","local":"IL23","name":"Ellis Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Cedarville","elevation_ft":900,"latitude":42.441984,"longitude":-89.450201,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26WI","iata":"","local":"26WI","name":"Kitty-Wompus Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Exeland","elevation_ft":1336,"latitude":45.699100494384766,"longitude":-91.30349731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MN2","iata":"","local":"1MN2","name":"Hay Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Akiey","elevation_ft":1430,"latitude":45.93820190429688,"longitude":-94.7606964111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48WI","iata":"","local":"48WI","name":"Circle A Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hazelhurst","elevation_ft":1640,"latitude":45.79380035400391,"longitude":-89.7301025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79MI","iata":"","local":"","name":"Pike River Landing","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Chassell","elevation_ft":902,"latitude":46.980073,"longitude":-88.549571,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29WI","iata":"","local":"29WI","name":"Whittlesey Cranberry Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Babcock","elevation_ft":982,"latitude":44.325337,"longitude":-90.027015,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MN4","iata":"","local":"7MN4","name":"Mille Lacs Lake Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Garrison","elevation_ft":1261,"latitude":46.31940078735352,"longitude":-93.83080291748048,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":50,"surface":"T"},{"id":"09/27","length_ft":1250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MN7","iata":"","local":"2MN7","name":"Fussy Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"North Prairie","elevation_ft":1100,"latitude":45.79159927368164,"longitude":-94.3407974243164,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KBDJ","iata":"","local":"BDJ","name":"Boulder Junction Payzer Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Boulder Junction","elevation_ft":1666,"latitude":46.1374015808,"longitude":-89.64600372310001,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3821,"width_ft":165,"surface":"T"},{"id":"16/34","length_ft":3214,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22WN","iata":"","local":"22WN","name":"Southwind Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Dodgeville","elevation_ft":1030,"latitude":43.06859970092773,"longitude":-90.21949768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59WI","iata":"","local":"59WI","name":"Little Wheel Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cottage Grove","elevation_ft":900,"latitude":43.03390121459961,"longitude":-89.19259643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35WI","iata":"","local":"35WI","name":"Barker Strip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"East Troy","elevation_ft":1000,"latitude":42.745601654052734,"longitude":-88.4375991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2350,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA54","iata":"","local":"IA54","name":"Anderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Dubuque","elevation_ft":1135,"latitude":42.50175,"longitude":-90.84218,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39WI","iata":"","local":"39WI","name":"S & S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Viola","elevation_ft":1200,"latitude":43.48469924926758,"longitude":-90.61990356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7WI2","iata":"","local":"7WI2","name":"Higgins Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Rio","elevation_ft":965,"latitude":43.44300079345703,"longitude":-89.1781997680664,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"95WI","iata":"","local":"95WI","name":"Wisersky Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Stoughton","elevation_ft":965,"latitude":42.93610000610352,"longitude":-89.12969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1295,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA23","iata":"","local":"IA23","name":"GAA Private (Abels Island) Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Guttenberg","elevation_ft":620,"latitude":42.808899,"longitude":-91.098198,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2540,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47IS","iata":"","local":"47IS","name":"Flying Z Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Durand","elevation_ft":945,"latitude":42.49169921875,"longitude":-89.35690307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IL2","iata":"","local":"8IL2","name":"Kirkpatrick Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Harvard","elevation_ft":950,"latitude":42.48469924926758,"longitude":-88.60009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS78","iata":"","local":"IS78","name":"Early-Merkel Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pecatonica","elevation_ft":794,"latitude":42.36605,"longitude":-89.235067,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL81","iata":"","local":"LL81","name":"Latham Park Aero Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":778,"latitude":42.375,"longitude":-89.070099,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2305,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL99","iata":"","local":"IL99","name":"B & C Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Earlville","elevation_ft":715,"latitude":41.59280014038086,"longitude":-88.96730041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50IL","iata":"","local":"50IL","name":"Midland Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Antioch","elevation_ft":750,"latitude":42.48889923095703,"longitude":-88.17430114746094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS19","iata":"","local":"IS19","name":"Carlson Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Pecatonica","elevation_ft":740,"latitude":42.335434,"longitude":-89.32366,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL87","iata":"","local":"LL87","name":"Compass Rose Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rockton","elevation_ft":970,"latitude":42.454825,"longitude":-88.9049,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WS7","iata":"","local":"0WS7","name":"Rockdale Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Rockdale","elevation_ft":825,"latitude":42.970979,"longitude":-89.028482,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":900,"width_ft":130,"surface":"T"},{"id":"18/36","length_ft":1400,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IL0","iata":"","local":"2IL0","name":"Sneek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Shannon","elevation_ft":909,"latitude":42.181400299072266,"longitude":-89.6769027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL7","iata":"","local":"5LL7","name":"Funny Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Union","elevation_ft":875,"latitude":42.210476,"longitude":-88.520056,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2016,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL87","iata":"","local":"IL87","name":"W Davis Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Compton","elevation_ft":930,"latitude":41.71110153198242,"longitude":-89.11229705810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN70","iata":"","local":"IN70","name":"Bodin Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Chesterton","elevation_ft":675,"latitude":41.63359832763672,"longitude":-87.0270004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17II","iata":"","local":"17II","name":"Dreessen Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Walkerton","elevation_ft":706,"latitude":41.45000076293945,"longitude":-86.51029968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65WN","iata":"","local":"65WN","name":"Whoopy Hollow Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wiota","elevation_ft":925,"latitude":42.67639923095703,"longitude":-89.93800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IL0","iata":"","local":"8IL0","name":"Adkins Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Harvard","elevation_ft":853,"latitude":42.352864,"longitude":-88.637442,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1950,"width_ft":78,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL28","iata":"","local":"LL28","name":"Sd Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Capron","elevation_ft":930,"latitude":42.43280029296875,"longitude":-88.71720123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15IA","iata":"","local":"15IA","name":"Stella Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Bellevue","elevation_ft":625,"latitude":42.235396,"longitude":-90.406767,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IL1","iata":"","local":"2IL1","name":"Mc Cartney Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Durand","elevation_ft":908,"latitude":42.413898468,"longitude":-89.32929992679999,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4LL8","iata":"","local":"4LL8","name":"Colonial Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sycamore","elevation_ft":840,"latitude":41.999315,"longitude":-88.648585,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IA2","iata":"","local":"4IA2","name":"Walker Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"West Liberty","elevation_ft":715,"latitude":41.585629,"longitude":-91.219912,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL38","iata":"","local":"IL38","name":"J Maddock Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Big Rock","elevation_ft":705,"latitude":41.766998,"longitude":-88.531998,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL05","iata":"","local":"IL05","name":"Bingham Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Alden","elevation_ft":980,"latitude":42.440299987793,"longitude":-88.488998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2630,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL79","iata":"","local":"LL79","name":"Severson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":813,"latitude":42.39310073852539,"longitude":-89.13069915771484,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15IL","iata":"","local":"15IL","name":"Gittleson Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Franklin Grove","elevation_ft":836,"latitude":41.79729843139648,"longitude":-89.27320098876953,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20IS","iata":"","local":"20IS","name":"Mitek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Winslow","elevation_ft":777,"latitude":42.49720001220703,"longitude":-89.79180145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4LL0","iata":"","local":"4LL0","name":"Ranken Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Steward","elevation_ft":785,"latitude":41.835899353027344,"longitude":-89.09339904785156,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64IL","iata":"","local":"64IL","name":"Walpole Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marengo","elevation_ft":790,"latitude":42.237985,"longitude":-88.662288,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2640,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA80","iata":"","local":"IA8","name":"Dyersville Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Dyersville","elevation_ft":980,"latitude":42.496101,"longitude":-91.179901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48LL","iata":"","local":"48LL","name":"Rock Cut Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Leaf River","elevation_ft":812,"latitude":42.125575,"longitude":-89.460555,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS65","iata":"","local":"IS65","name":"Woodlake Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sandwich","elevation_ft":677,"latitude":41.63840103149414,"longitude":-88.64450073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2988,"width_ft":50,"surface":"A"},{"id":"18/36","length_ft":1750,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IS3","iata":"","local":"2IS3","name":"Jackson Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Elmira","elevation_ft":760,"latitude":41.17169952392578,"longitude":-89.80680084228516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58IL","iata":"","local":"58IL","name":"Spangler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Manteno","elevation_ft":675,"latitude":41.240254,"longitude":-87.857666,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL89","iata":"","local":"LL89","name":"Blackhawk Farms Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rockton","elevation_ft":759,"latitude":42.48720169067383,"longitude":-89.10790252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LL9","iata":"","local":"2LL9","name":"George Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Somonauk","elevation_ft":740,"latitude":41.704200744628906,"longitude":-88.69309997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0WI9","iata":"","local":"0WI9","name":"Mc Manus Hoonch-Na-Shee-Kaw Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oregon","elevation_ft":931,"latitude":42.9314002991,"longitude":-89.3386993408,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05WI","iata":"","local":"05WI","name":"Ames Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Darien","elevation_ft":958,"latitude":42.651100158691406,"longitude":-88.74590301513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4LL1","iata":"","local":"4LL1","name":"Staton Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Steward","elevation_ft":770,"latitude":41.85419845581055,"longitude":-89.08760070800781,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59IL","iata":"","local":"59IL","name":"Ruder Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Maple Park","elevation_ft":855,"latitude":41.92580032348633,"longitude":-88.64640045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IS4","iata":"","local":"1IS4","name":"Swan Valley Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Lanark","elevation_ft":916,"latitude":42.134783,"longitude":-89.824208,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2LL2","iata":"","local":"2LL2","name":"Weihler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sherrard","elevation_ft":740,"latitude":41.31480026245117,"longitude":-90.5521011352539,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3II8","iata":"","local":"3II8","name":"Birkey Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bremen","elevation_ft":796,"latitude":41.44229888916016,"longitude":-86.26110076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1650,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12IL","iata":"","local":"12IL","name":"Hawker Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kankakee","elevation_ft":620,"latitude":41.20000076293945,"longitude":-88.0167007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LL80","iata":"","local":"LL80","name":"Darrington Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rockford","elevation_ft":862,"latitude":42.38199996948242,"longitude":-89.16120147705078,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30IS","iata":"","local":"30IS","name":"Aero Lake Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Genoa","elevation_ft":875,"latitude":42.077383,"longitude":-88.625372,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IL4","iata":"","local":"9IL4","name":"Thompson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Steward","elevation_ft":790,"latitude":41.80720138549805,"longitude":-89.04810333251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1385,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS80","iata":"","local":"IS80","name":"Uncle Chuck's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"DeKalb","elevation_ft":880,"latitude":41.917801,"longitude":-88.789299,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5IN4","iata":"","local":"5IN4","name":"Wyckoff Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Valparaiso","elevation_ft":780,"latitude":41.4833984375,"longitude":-86.94999694824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69IL","iata":"","local":"69IL","name":"David Gillespie Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Marseilles","elevation_ft":730,"latitude":41.36529922485352,"longitude":-88.67919921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":145,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IS8","iata":"BDF","local":"3IS8","name":"Rinkenberger Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bradford","elevation_ft":808,"latitude":41.2308998108,"longitude":-89.61569976810001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2614,"width_ft":190,"surface":"T"},{"id":"18/36","length_ft":1932,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN90","iata":"","local":"IN90","name":"Wietbrock Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lowell","elevation_ft":695,"latitude":41.25979995727539,"longitude":-87.48139953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IS3","iata":"","local":"0IS3","name":"Cady Aerial Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Rock Falls","elevation_ft":630,"latitude":41.660089,"longitude":-89.694443,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IL5","iata":"","local":"4IL5","name":"Frank's Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Morrison","elevation_ft":600,"latitude":41.724989,"longitude":-90.002639,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2040,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL93","iata":"","local":"IL93","name":"Hendrickson Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Creston","elevation_ft":889,"latitude":41.9453010559082,"longitude":-88.92400360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":80,"surface":"T"},{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19LL","iata":"","local":"19LL","name":"Neiner Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Manteno","elevation_ft":650,"latitude":41.25699996948242,"longitude":-87.91950225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1940,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0II8","iata":"","local":"0II8","name":"Sutton's Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lowell","elevation_ft":740,"latitude":41.324798583984375,"longitude":-87.47589874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IL9","iata":"","local":"2IL9","name":"Meadow Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Monee","elevation_ft":770,"latitude":41.43280029296875,"longitude":-87.78170013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3400,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68IS","iata":"","local":"68IS","name":"Casa De Aero Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hampshire","elevation_ft":860,"latitude":42.148605,"longitude":-88.561965,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2998,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LL7","iata":"","local":"1LL7","name":"Edwin G. Bennett Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sheffield","elevation_ft":690,"latitude":41.34980010986328,"longitude":-89.77320098876953,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60IA","iata":"","local":"60IA","name":"Village Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Blue Grass","elevation_ft":732,"latitude":41.469664,"longitude":-90.781292,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2777,"width_ft":146,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II38","iata":"","local":"II38","name":"Sherk Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lapaz","elevation_ft":860,"latitude":41.42639923095703,"longitude":-86.31639862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IS4","iata":"","local":"3IS4","name":"Merkle Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hanover","elevation_ft":970,"latitude":42.288898,"longitude":-90.345398,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN38","iata":"","local":"IN38","name":"Stewarts Green Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"North Liberty","elevation_ft":725,"latitude":41.5452995300293,"longitude":-86.45279693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IL9","iata":"","local":"6IL9","name":"Geldean Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Walnut","elevation_ft":745,"latitude":41.513995,"longitude":-89.631052,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IS5","iata":"","local":"7IS5","name":"Koppie Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Gilberts","elevation_ft":890,"latitude":42.12139892578125,"longitude":-88.37809753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IL8","iata":"","local":"7IL8","name":"Cody Port RLA Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Harding","elevation_ft":668,"latitude":41.518901825,"longitude":-88.837600708,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IL0","iata":"","local":"IL60","name":"Idlas Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Genoa","elevation_ft":850,"latitude":42.131503,"longitude":-88.700358,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IN4","iata":"","local":"2IN4","name":"Scott Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Argos","elevation_ft":810,"latitude":41.25669860839844,"longitude":-86.189697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II18","iata":"","local":"II18","name":"Lou Abbett Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"La Crosse","elevation_ft":685,"latitude":41.35076,"longitude":-86.92562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2540,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN54","iata":"","local":"IN54","name":"I & C Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Culver","elevation_ft":745,"latitude":41.28369903564453,"longitude":-86.46279907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IL2","iata":"","local":"6IL2","name":"Phyllis Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Huntley","elevation_ft":855,"latitude":42.221099853515625,"longitude":-88.41790008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LL6","iata":"","local":"0LL6","name":"Gord Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Sandwich","elevation_ft":710,"latitude":41.69839859008789,"longitude":-88.60759735107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IG05","iata":"","local":"IG05","name":"Wheeler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Knox","elevation_ft":720,"latitude":41.189763,"longitude":-86.606956,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN87","iata":"","local":"IN87","name":"Singleton's Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Knox","elevation_ft":685,"latitude":41.35139846801758,"longitude":-86.62640380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2640,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IL7","iata":"","local":"7IL7","name":"Edward Getzelman Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hampshire","elevation_ft":870,"latitude":42.127336,"longitude":-88.529991,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II43","iata":"","local":"II43","name":"C. V. Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Granger","elevation_ft":780,"latitude":41.75,"longitude":-86.19219970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS41","iata":"","local":"IS41","name":"Vogen Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Newark","elevation_ft":740,"latitude":41.460899353027344,"longitude":-88.59200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2138,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17WI","iata":"","local":"17WI","name":"Ha-Rail Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lake Mills","elevation_ft":885,"latitude":43.03609848022461,"longitude":-88.89320373535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3IL2","iata":"","local":"3IL2","name":"Sweedler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Elwood","elevation_ft":669,"latitude":41.41230010986328,"longitude":-88.04869842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8VA4","iata":"","local":"8VA4","name":"Lotus International Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Buckinham","elevation_ft":340,"latitude":37.67290115356445,"longitude":-78.70330047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2709,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45NC","iata":"","local":"45NC","name":"Glover Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Seaboard","elevation_ft":120,"latitude":36.528381,"longitude":-77.455308,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8VA6","iata":"","local":"8VA6","name":"Flatwoods Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lovingston","elevation_ft":840,"latitude":37.73820114135742,"longitude":-78.96219635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC2","iata":"DUF","local":"7NC2","name":"Pine Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Corolla","elevation_ft":16,"latitude":36.2535018921,"longitude":-75.7884979248,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3450,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86NC","iata":"","local":"86NC","name":"Craig Craft Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hertford","elevation_ft":14,"latitude":36.26359939575195,"longitude":-76.49330139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"04L/22R","length_ft":2600,"width_ft":24,"surface":"C"},{"id":"04R/22L","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPMZ","iata":"","local":"PMZ","name":"Plymouth Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Plymouth","elevation_ft":39,"latitude":35.80839920043945,"longitude":-76.7593002319336,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49NR","iata":"","local":"49NR","name":"Forty Niner at Middle Tract Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Windsor","elevation_ft":32,"latitude":35.898333,"longitude":-76.8625,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3662,"width_ft":72,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NR40","iata":"","local":"NR40","name":"Als Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Bethel","elevation_ft":65,"latitude":35.820833,"longitude":-77.378889,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA96","iata":"","local":"VA96","name":"Faber Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lovingston","elevation_ft":640,"latitude":37.82540130615234,"longitude":-78.73169708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42VA","iata":"","local":"42VA","name":"Virginia Beach Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Virginia Beach","elevation_ft":15,"latitude":36.678979,"longitude":-76.032677,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4845,"width_ft":190,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC28","iata":"","local":"NC28","name":"Meadstown Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabeth City","elevation_ft":7,"latitude":36.20019912719727,"longitude":-76.23580169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NC7","iata":"","local":"2NC7","name":"Scotland Neck East Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Scotland Neck","elevation_ft":103,"latitude":36.16790008544922,"longitude":-77.3989028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16NC","iata":"","local":"16NC","name":"Lee's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Edenton","elevation_ft":31,"latitude":36.19609832763672,"longitude":-76.66529846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1524,"width_ft":66,"surface":"T"},{"id":"10/28","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC01","iata":"","local":"NC01","name":"Harvey Point Defense Testing Activity Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hertford","elevation_ft":10,"latitude":36.09619903564453,"longitude":-76.32710266113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5291,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA85","iata":"","local":"VA85","name":"New Castle International Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"New Castle","elevation_ft":1320,"latitude":37.48350143432617,"longitude":-80.09980010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA92","iata":"","local":"VA92","name":"Peace and Plenty Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Onancock","elevation_ft":8,"latitude":37.7238,"longitude":-75.785998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG05","iata":"","local":"VG05","name":"Payne Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Tabscott","elevation_ft":463,"latitude":37.87960052490234,"longitude":-78.05750274658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":135,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG64","iata":"","local":"VG64","name":"Lee Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"West Point","elevation_ft":20,"latitude":37.561036,"longitude":-76.851135,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA08","iata":"","local":"VA08","name":"Longbranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Kilmarnock","elevation_ft":20,"latitude":37.717098236083984,"longitude":-76.35880279541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76NC","iata":"","local":"76NC","name":"Dunroamin Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Enfield","elevation_ft":100,"latitude":36.1599006652832,"longitude":-77.62470245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC45","iata":"","local":"NC45","name":"Enfield-Shearin Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Enfield","elevation_ft":125,"latitude":36.21720123291016,"longitude":-77.63749694824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10NC","iata":"","local":"10NC","name":"Johnston Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Jackson","elevation_ft":60,"latitude":36.340711,"longitude":-77.508974,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2450,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA04","iata":"","local":"VA04","name":"Barrows Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fincastle","elevation_ft":1100,"latitude":37.49209976196289,"longitude":-79.92870330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA83","iata":"","local":"VA83","name":"Fincastle Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fincastle","elevation_ft":1140,"latitude":37.52239990234375,"longitude":-79.85199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3039,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA99","iata":"","local":"VA99","name":"Federhart-Ophelia Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Reedville","elevation_ft":13,"latitude":37.905998,"longitude":-76.290497,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FL3","iata":"","local":"4FL3","name":"Fellsmere Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fellsmere","elevation_ft":24,"latitude":27.740214,"longitude":-80.666792,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80FD","iata":"","local":"80FD","name":"Brady Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Indiantown","elevation_ft":18,"latitude":27.11339950561523,"longitude":-80.6333999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4600,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90FL","iata":"","local":"90FL","name":"Paxton Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":66,"latitude":27.3612003326416,"longitude":-80.76090240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FL2","iata":"","local":"8FL2","name":"Kiever Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Summerfield","elevation_ft":67,"latitude":29.001101,"longitude":-82.100601,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9FA5","iata":"","local":"9FA5","name":"Marshall Swamp Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":53,"latitude":29.190833,"longitude":-82.032713,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9FL1","iata":"","local":"9FL1","name":"Flying W Airranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Bushnell","elevation_ft":58,"latitude":28.6835994720459,"longitude":-82.15760040283203,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3415,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL16","iata":"","local":"FL16","name":"Market World Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Auburndale","elevation_ft":125,"latitude":28.0585994720459,"longitude":-81.81649780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL00","iata":"","local":"FL00","name":"Griffins Peace River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Zolfo Springs","elevation_ft":65,"latitude":27.41889953613281,"longitude":-81.83260345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG22","iata":"","local":"VG22","name":"Rockfish Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Nellysford","elevation_ft":760,"latitude":37.878819,"longitude":-78.893558,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1750,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG25","iata":"","local":"VG25","name":"Robinson Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bedford","elevation_ft":850,"latitude":37.3484992981,"longitude":-79.5719985962,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC61","iata":"","local":"NC61","name":"Blackwater Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Moyock","elevation_ft":12,"latitude":36.45940017700195,"longitude":-76.21080017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2150,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NC3","iata":"","local":"1NC3","name":"Fletcher's Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabeth City","elevation_ft":7,"latitude":36.18069839477539,"longitude":-76.14910125732422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC66","iata":"","local":"NC66","name":"Ventosa Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Scotland Neck","elevation_ft":30,"latitude":36.13130187988281,"longitude":-77.2957992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70NC","iata":"","local":"70NC","name":"Martindale Executive Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Paschall","elevation_ft":300,"latitude":36.54460144042969,"longitude":-78.14800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC5","iata":"","local":"7NC5","name":"Crooked Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Bunn","elevation_ft":250,"latitude":35.933799743652344,"longitude":-78.24669647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC36","iata":"","local":"NC36","name":"Benton's Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Pikeville","elevation_ft":145,"latitude":35.502899169921875,"longitude":-78.0302963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1825,"width_ft":70,"surface":"T"},{"id":"16/34","length_ft":1030,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC12","iata":"","local":"NC12","name":"Lee Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Aurora","elevation_ft":3,"latitude":35.38959884643555,"longitude":-76.78469848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5070,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC10","iata":"","local":"NC10","name":"Nocarva Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Macon","elevation_ft":275,"latitude":36.54180145263672,"longitude":-78.05799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58NR","iata":"","local":"58NR","name":"Chase Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hookerton","elevation_ft":56,"latitude":35.42527,"longitude":-77.597401,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC5","iata":"","local":"6NC5","name":"Thompson Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Whitakers","elevation_ft":100,"latitude":36.01789855957031,"longitude":-77.66190338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC72","iata":"","local":"NC72","name":"Hinton Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Princeton","elevation_ft":152,"latitude":35.451499938964844,"longitude":-78.16000366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG30","iata":"","local":"VG30","name":"Scott Farm Strip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":33,"latitude":37.22710037231445,"longitude":-75.97689819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG09","iata":"","local":"VG09","name":"Starbase Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":20,"latitude":37.23142,"longitude":-75.984535,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC0","iata":"","local":"3NC0","name":"Clyde Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Morganton","elevation_ft":1100,"latitude":35.690399169921875,"longitude":-81.7123031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC4","iata":"","local":"3NC4","name":"Mc Donald Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Marshville","elevation_ft":545,"latitude":35.05350113,"longitude":-80.40899658,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52NC","iata":"","local":"52NC","name":"Epley Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Jacksonville","elevation_ft":43,"latitude":34.844600677490234,"longitude":-77.2667007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC7","iata":"","local":"4NC7","name":"Peacock STOLport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Garner","elevation_ft":390,"latitude":35.6963005065918,"longitude":-78.5374984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NC1","iata":"","local":"5NC1","name":"Tara Airbase Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mocksville","elevation_ft":756,"latitude":35.7932014465332,"longitude":-80.51229858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NC3","iata":"","local":"BQ1","name":"Gilliam-McConnell Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Carthage","elevation_ft":445,"latitude":35.341702,"longitude":-79.436897,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NC3","iata":"","local":"7NC3","name":"Kenly Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kenly","elevation_ft":225,"latitude":35.596389,"longitude":-78.098611,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3480,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC47","iata":"","local":"05N","name":"South Oaks Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Winterville","elevation_ft":50,"latitude":35.482164,"longitude":-77.355904,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG33","iata":"","local":"VG33","name":"Bull Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":18,"latitude":37.154598236083984,"longitude":-75.95690155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23NR","iata":"","local":"23NR","name":"Whitfield'S East Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fairfield","elevation_ft":1,"latitude":35.560556,"longitude":-76.234722,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3300,"width_ft":23,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19NC","iata":"","local":"19NC","name":"Double S Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Red Oak","elevation_ft":195,"latitude":36.06489944458008,"longitude":-77.9229965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42NC","iata":"","local":"42NC","name":"Spring Paths Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Spring Hope","elevation_ft":290,"latitude":35.957801818847656,"longitude":-78.17060089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC0","iata":"","local":"W17","name":"Raleigh East Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Knightdale","elevation_ft":313,"latitude":35.797699,"longitude":-78.436996,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC5","iata":"","local":"3NC5","name":"Flying Bj Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Stony Point","elevation_ft":1000,"latitude":35.812198638916016,"longitude":-81.06999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22GA","iata":"","local":"22GA","name":"Riverside Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fairmount","elevation_ft":620,"latitude":34.429298,"longitude":-85.054398,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2340,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC49","iata":"","local":"NC49","name":"Boyd Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Grimesland","elevation_ft":50,"latitude":35.527801513671875,"longitude":-77.19670104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC73","iata":"","local":"NC73","name":"Hodges Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Sladesville","elevation_ft":6,"latitude":35.43880081176758,"longitude":-76.44940185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2750,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG39","iata":"","local":"VG39","name":"Earth Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":9,"latitude":37.221529,"longitude":-76.008568,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC8","iata":"","local":"8NC8","name":"Lake Ridge Aero Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Durham","elevation_ft":309,"latitude":36.06010055541992,"longitude":-78.7833023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC2","iata":"","local":"9NC2","name":"Flyers Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Linden","elevation_ft":115,"latitude":35.21820068359375,"longitude":-78.79640197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2850,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC3","iata":"","local":"3NC3","name":"Tucker Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Locust","elevation_ft":645,"latitude":35.24689865112305,"longitude":-80.40750122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GA3","iata":"","local":"0GA3","name":"Ayresouth Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Temple","elevation_ft":1287,"latitude":33.77009963989258,"longitude":-85.06079864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE7","iata":"","local":"1GE7","name":"Hay Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Madison","elevation_ft":650,"latitude":33.5172004699707,"longitude":-83.439697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC7","iata":"","local":"8NC7","name":"Parker Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Maysville","elevation_ft":40,"latitude":34.9364013671875,"longitude":-77.27670288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NC8","iata":"","local":"0NC8","name":"Flying S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cleveland","elevation_ft":830,"latitude":35.755699,"longitude":-80.735298,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1NC2","iata":"","local":"1NC2","name":"Atwell Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mooresville","elevation_ft":830,"latitude":35.65470123291016,"longitude":-80.78939819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NC9","iata":"","local":"4NC9","name":"Lz Carroll STOLport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Gold Hill","elevation_ft":675,"latitude":35.44850158691406,"longitude":-80.34259796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22NC","iata":"","local":"22NC","name":"Flint Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Siler City","elevation_ft":650,"latitude":35.821098,"longitude":-79.4683,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA0","iata":"","local":"3GA0","name":"Grant Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Stockbridge","elevation_ft":790,"latitude":33.52750015258789,"longitude":-84.15689849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27GA","iata":"","local":"27GA","name":"Wilson Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1050,"latitude":33.658193,"longitude":-85.010195,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1250,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18GA","iata":"","local":"18GA","name":"Sleepy Hollow Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Social Circle","elevation_ft":750,"latitude":33.693199157714844,"longitude":-83.65769958496094,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GA5","iata":"","local":"2GA5","name":"Windrift Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":780,"latitude":33.04180145263672,"longitude":-84.43209838867188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17NR","iata":"","local":"17NR","name":"Zombie Air Force Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Ammon","elevation_ft":86,"latitude":34.78325,"longitude":-78.577008,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":600,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TN2","iata":"","local":"0TN2","name":"Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Greenback","elevation_ft":920,"latitude":35.65589904785156,"longitude":-84.18550109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GE7","iata":"","local":"0GE7","name":"Carpenter Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Appling","elevation_ft":450,"latitude":33.520301818847656,"longitude":-82.37249755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GE5","iata":"","local":"0GE5","name":"Mountain Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cleveland","elevation_ft":1438,"latitude":34.561798095703125,"longitude":-83.7135009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07GA","iata":"","local":"07GA","name":"Alcovy Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Covington","elevation_ft":750,"latitude":33.674263,"longitude":-83.764637,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21GE","iata":"","local":"21GE","name":"Deer Crossing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Cleveland","elevation_ft":1390,"latitude":34.54970169067383,"longitude":-83.82219696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0GE0","iata":"","local":"0GE0","name":"Pinewood Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Douglasville","elevation_ft":1085,"latitude":33.782100677490234,"longitude":-84.80079650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33GA","iata":"","local":"33GA","name":"Hudson River Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carnesville","elevation_ft":665,"latitude":34.2599983215332,"longitude":-83.28669738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14NC","iata":"","local":"14NC","name":"Camp Davis Marine Corps Outlying Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Holly Ridge","elevation_ft":60,"latitude":34.516458,"longitude":-77.545109,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":150,"surface":"C"},{"id":"18/36","length_ft":5000,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29GA","iata":"","local":"29GA","name":"Rolling Meadows Airfield","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Sharpsburg","elevation_ft":808,"latitude":33.384300231933594,"longitude":-84.63189697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AL5","iata":"","local":"2AL5","name":"Flying J Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Fort Payne","elevation_ft":1430,"latitude":34.392799377441406,"longitude":-85.66500091552734,"has_tower":false,"has_beacon":true,"runways":[{"id":"E/W","length_ft":1925,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GE9","iata":"","local":"1GE9","name":"Waverly Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Waverly Hall","elevation_ft":675,"latitude":32.71440124511719,"longitude":-84.71810150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TN9","iata":"","local":"1TN9","name":"Crumley Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Bristol","elevation_ft":1565,"latitude":36.504337,"longitude":-82.183045,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36GA","iata":"","local":"36GA","name":"Lola Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Conyers","elevation_ft":870,"latitude":33.72423,"longitude":-83.97608,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13GE","iata":"","local":"13GE","name":"Holt Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Oak Park","elevation_ft":280,"latitude":32.360801696777344,"longitude":-82.31809997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23GE","iata":"","local":"23GE","name":"Lt Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dublin","elevation_ft":286,"latitude":32.383056,"longitude":-83.1,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10GA","iata":"","local":"10GA","name":"Beaverbrook Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Griffin","elevation_ft":910,"latitude":33.32509994506836,"longitude":-84.29830169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GE8","iata":"","local":"3GE8","name":"Prater Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lincolnton","elevation_ft":460,"latitude":33.843616,"longitude":-82.478807,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18FD","iata":"","local":"18FD","name":"Skypark Estates Owners Assoc Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Baker","elevation_ft":250,"latitude":30.853394,"longitude":-86.667214,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3015,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30GA","iata":"","local":"09GE","name":"Elliott Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dawsonville","elevation_ft":1500,"latitude":34.459,"longitude":-84.181297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3014,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AL5","iata":"","local":"3AL5","name":"Edwards Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Jacksonville","elevation_ft":750,"latitude":33.83530044555664,"longitude":-85.76390075683594,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02GA","iata":"","local":"02GA","name":"Doug Bolton Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Commerce","elevation_ft":884,"latitude":34.202598571777344,"longitude":-83.42900085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":100,"surface":"T"},{"id":"13/31","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25GA","iata":"","local":"25GA","name":"Miller Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Douglasville","elevation_ft":750,"latitude":33.659797,"longitude":-84.663103,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AL3","iata":"","local":"2AL3","name":"Emerald Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Wetumpka","elevation_ft":365,"latitude":32.45539855957031,"longitude":-86.11920166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2750,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3GA6","iata":"","local":"3GA6","name":"Erlen Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Whitesburg","elevation_ft":1044,"latitude":33.57059860229492,"longitude":-84.89830017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FD9","iata":"","local":"0FD9","name":"Joy Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Defuniak Springs","elevation_ft":290,"latitude":30.652099609375,"longitude":-86.1093978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1975,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05FA","iata":"","local":"05FA","name":"Melanie's Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Florala","elevation_ft":295,"latitude":30.91889953613281,"longitude":-86.21829986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FD5","iata":"","local":"0FD5","name":"Breezy Knoll Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Defuniak Springs","elevation_ft":235,"latitude":30.820199966430664,"longitude":-86.34439849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GA2","iata":"","local":"2GA2","name":"Swaids Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Springfield","elevation_ft":85,"latitude":32.39459991455078,"longitude":-81.28070068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":3708,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2SC7","iata":"","local":"2SC7","name":"Laurel Hill Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"McClellanville","elevation_ft":8,"latitude":33.051701,"longitude":-79.541397,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38AL","iata":"","local":"38AL","name":"Sawtooth Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Hurtsboro","elevation_ft":350,"latitude":32.168333,"longitude":-85.40375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2863,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FL0","iata":"","local":"2FL0","name":"Crystal Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Wausau","elevation_ft":113,"latitude":30.456899642944336,"longitude":-85.68599700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54GA","iata":"","local":"54GA","name":"Deerfield Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Hampton","elevation_ft":890,"latitude":33.464298248291016,"longitude":-84.26830291748047,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53FD","iata":"","local":"53FD","name":"Charlotte's Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tallahassee","elevation_ft":80,"latitude":30.477500915527344,"longitude":-84.03469848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34FD","iata":"","local":"34FD","name":"Blue Ridge Flightpark Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Oakhill","elevation_ft":25,"latitude":28.857200622558597,"longitude":-80.90699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3335,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AL2","iata":"","local":"1AL2","name":"Tri-L Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Columbiana","elevation_ft":580,"latitude":33.24860000610352,"longitude":-86.59750366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3751,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2GE8","iata":"","local":"2GE8","name":"Andy Fields Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Newnan","elevation_ft":980,"latitude":33.46419906616211,"longitude":-84.66329956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"17GA","iata":"","local":"17GA","name":"Panther Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Newnan","elevation_ft":850,"latitude":33.46670150756836,"longitude":-84.86609649658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FL3","iata":"","local":"2FL3","name":"Folsom Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Marianna","elevation_ft":155,"latitude":30.669016,"longitude":-85.08364,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02AL","iata":"","local":"02AL","name":"Bass Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Foley","elevation_ft":61,"latitude":30.37150001525879,"longitude":-87.76439666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AL3","iata":"","local":"5AL3","name":"Flying X Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Montevallo","elevation_ft":466,"latitude":33.15290069580078,"longitude":-86.85140228271484,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39FD","iata":"","local":"39FD","name":"Ancient Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Steinhatchee","elevation_ft":26,"latitude":29.729400634765625,"longitude":-83.35350036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45FL","iata":"","local":"45FL","name":"Moss Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Live Oak","elevation_ft":155,"latitude":30.23740005493164,"longitude":-82.90650177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32GA","iata":"","local":"32GA","name":"Sebastian Cove Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Eatonton","elevation_ft":490,"latitude":33.454201,"longitude":-83.277802,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55FD","iata":"","local":"55FD","name":"Dotson Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Baker","elevation_ft":251,"latitude":30.818500518798828,"longitude":-86.68800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2120,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FL1","iata":"","local":"5FL1","name":"Ezell Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Keaton Beach","elevation_ft":25,"latitude":29.90329933166504,"longitude":-83.60790252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3FA7","iata":"","local":"3FA7","name":"Flying 4 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"New Smyrna Beach","elevation_ft":27,"latitude":29.042662,"longitude":-81.05695,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1480,"width_ft":80,"surface":"T"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3FL0","iata":"","local":"3FL0","name":"Mount Royal Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Welaka","elevation_ft":60,"latitude":29.43610000610352,"longitude":-81.65670013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":50,"surface":"A"},{"id":"11W/29W","length_ft":2430,"width_ft":50,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1GA0","iata":"","local":"1GA0","name":"Eagle Neck Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Shellman Bluff","elevation_ft":10,"latitude":31.63940048217773,"longitude":-81.3290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3535,"width_ft":41,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31FA","iata":"","local":"31FA","name":"S & S Avion Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Oxford","elevation_ft":70,"latitude":28.959199905395508,"longitude":-82.13420104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4060,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79FD","iata":"","local":"79FD","name":"Midway Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Plant City","elevation_ft":150,"latitude":28.04199981689453,"longitude":-82.09230041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA24","iata":"","local":"FA24","name":"Horseshoe Acres Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Indiantown","elevation_ft":9,"latitude":27.093299865722656,"longitude":-80.61219787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16FL","iata":"","local":"16FL","name":"J-22 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Milton","elevation_ft":200,"latitude":30.725184,"longitude":-87.200769,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2895,"width_ft":227,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AL5","iata":"","local":"0AL5","name":"Flomaton Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Flomaton","elevation_ft":247,"latitude":31.03219985961914,"longitude":-87.25279998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11FL","iata":"","local":"11FL","name":"Williams Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Middleburg","elevation_ft":88,"latitude":30.043724,"longitude":-81.885217,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FL4","iata":"","local":"5FL4","name":"Byrd Air Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Elkton","elevation_ft":21,"latitude":29.800800323486328,"longitude":-81.50090026855469,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3FL1","iata":"","local":"3FL1","name":"Two J's Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Dade City","elevation_ft":60,"latitude":28.45249938964844,"longitude":-82.20780181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2643,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31FL","iata":"","local":"31FL","name":"Forever Florida Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":54,"latitude":28.043352,"longitude":-81.01923,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63FD","iata":"","local":"63FD","name":"Link Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Alachua","elevation_ft":108,"latitude":29.69809913635254,"longitude":-82.49140167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2290,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FD0","iata":"","local":"6FD0","name":"Windy Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chiefland","elevation_ft":45,"latitude":29.56579971313477,"longitude":-82.86869812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FA3","iata":"","local":"4FA3","name":"Tranquility Bay Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":8,"latitude":26.643400192260746,"longitude":-82.1178970336914,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FL5","iata":"","local":"4FL5","name":"Ridge Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Frostproof","elevation_ft":140,"latitude":27.7572002411,"longitude":-81.6006011963,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAB","iata":"MAY","local":"","name":"Clarence A. Bain Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-SA","municipality":"Mangrove Cay","elevation_ft":19,"latitude":24.287701,"longitude":-77.684601,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5015,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA08","iata":"","local":"FA08","name":"Orlampa Inc Airport / Fantasy of Flight","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Polk City","elevation_ft":139,"latitude":28.166763,"longitude":-81.809603,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5090,"width_ft":125,"surface":"T"},{"id":"14/32","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06FD","iata":"","local":"06FD","name":"Grass Roots Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Mascotte","elevation_ft":105,"latitude":28.641700744628903,"longitude":-81.88500213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04FL","iata":"","local":"04FL","name":"Cross Creek Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ormond Beach","elevation_ft":30,"latitude":29.240353,"longitude":-81.222525,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01FL","iata":"","local":"01FL","name":"Cedar Knoll Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Geneva","elevation_ft":19,"latitude":28.78190040588379,"longitude":-81.1592025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1FA9","iata":"","local":"1FA9","name":"Villa Char Mar Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Meade","elevation_ft":134,"latitude":27.785144,"longitude":-81.651354,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":25,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09FA","iata":"","local":"09FA","name":"Placid Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":130,"latitude":27.2455997467041,"longitude":-81.41310119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08FL","iata":"","local":"08FL","name":"J. H. Hendrie Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":103,"latitude":27.08449935913086,"longitude":-81.32869720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FA8","iata":"","local":"7FA8","name":"Berry Grove Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":28,"latitude":26.695600509643555,"longitude":-81.4906005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1750,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85FA","iata":"","local":"85FA","name":"North Exuma Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"DeLand","elevation_ft":62,"latitude":29.093122,"longitude":-81.277635,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FL3","iata":"","local":"8FL3","name":"Back Achers Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Belleview","elevation_ft":90,"latitude":29.072999954223636,"longitude":-81.99949645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA37","iata":"","local":"FA37","name":"Wing South Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Naples","elevation_ft":9,"latitude":26.116538,"longitude":-81.702318,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4400,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0FD0","iata":"","local":"0FD0","name":"The 2A Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ormond Beach","elevation_ft":40,"latitude":29.26757,"longitude":-81.223331,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5FL7","iata":"","local":"5FL7","name":"Twelve Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Hernando","elevation_ft":50,"latitude":28.97800064086914,"longitude":-82.36370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FD5","iata":"","local":"6FD5","name":"Blanket Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Yeehaw Junction","elevation_ft":65,"latitude":27.778600692749023,"longitude":-81.09980010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAT","iata":"TCB","local":"","name":"Treasure Cay Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-CO","municipality":"Treasure Cay","elevation_ft":8,"latitude":26.745300293,"longitude":-77.3912963867,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7FL6","iata":"","local":"7FL6","name":"Spruce Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Daytona Beach","elevation_ft":24,"latitude":29.0802001953125,"longitude":-81.04669952392578,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4002,"width_ft":176,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70FA","iata":"","local":"70FA","name":"Wee Bee Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":27,"latitude":27.562175,"longitude":-80.5993694,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2682,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD08","iata":"","local":"FD08","name":"Antiquers Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Delray Beach","elevation_ft":23,"latitude":26.46540069580078,"longitude":-80.1498031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5180,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD30","iata":"","local":"FD30","name":"Southeastern Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":23,"latitude":27.411399841308597,"longitude":-80.52619934082031,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYBG","iata":"GHC","local":"","name":"Great Harbour Cay Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-BY","municipality":"Bullocks Harbour","elevation_ft":18,"latitude":25.7383,"longitude":-77.840103,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4536,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1FA3","iata":"","local":"1FA3","name":"Pine Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":12,"latitude":26.656200408935547,"longitude":-82.12120056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2658,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4FD3","iata":"","local":"4FD3","name":"The Wright Place STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Homestead","elevation_ft":13,"latitude":25.515300750732425,"longitude":-80.51349639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8FA4","iata":"","local":"","name":"Samsula / Coe Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"UNKNOWN","elevation_ft":40,"latitude":29.009948,"longitude":-81.133869,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96FL","iata":"","local":"96FL","name":"Wings Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Williston","elevation_ft":100,"latitude":29.24250030517578,"longitude":-82.54540252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97FL","iata":"","local":"97FL","name":"Love Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Weirsdale","elevation_ft":80,"latitude":28.96190071105957,"longitude":-81.8915023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":100,"surface":"T"},{"id":"N/S","length_ft":3700,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64FA","iata":"","local":"64FA","name":"Naked Lady Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Stuart","elevation_ft":22,"latitude":27.142799377441406,"longitude":-80.33779907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1980,"width_ft":120,"surface":"T"},{"id":"18/36","length_ft":4000,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA54","iata":"","local":"FA54","name":"Coral Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Placida","elevation_ft":4,"latitude":26.85449981689453,"longitude":-82.2511978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA81","iata":"","local":"FA81","name":"Tavernaero Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Tavernier","elevation_ft":10,"latitude":25.004848,"longitude":-80.533279,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2175,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD25","iata":"","local":"FD25","name":"Fly In Ranches Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":25,"latitude":27.5625,"longitude":-80.49980163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD51","iata":"","local":"FD51","name":"Summerland Key Cove Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Summerland Key","elevation_ft":4,"latitude":24.658796,"longitude":-81.445341,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2550,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD70","iata":"","local":"FD70","name":"River Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Okeechobee","elevation_ft":30,"latitude":27.325300216674805,"longitude":-81.02870178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3875,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD72","iata":"","local":"FD72","name":"Kings Port Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Lake Placid","elevation_ft":148,"latitude":27.18280029296875,"longitude":-81.3906021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD20","iata":"","local":"FD20","name":"Sundance Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":50,"latitude":26.80030059814453,"longitude":-81.48509979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD57","iata":"","local":"FD57","name":"Baggett STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":18,"latitude":27.46980094909668,"longitude":-80.41639709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL31","iata":"","local":"FL31","name":"Mjd STOLport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Miami","elevation_ft":6,"latitude":25.55459976196289,"longitude":-80.55390167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL59","iata":"","local":"FL59","name":"Buckingham Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":23,"latitude":26.643400192260746,"longitude":-81.71040344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2726,"width_ft":400,"surface":"C"},{"id":"14/32","length_ft":4046,"width_ft":400,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYLS","iata":"SML","local":"","name":"Stella Maris Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-LI","municipality":"Stella Maris","elevation_ft":10,"latitude":23.582317,"longitude":-75.268621,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4019,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MBAC","iata":"","local":"","name":"Harold Charles International Airport","category":"small_airport","iso_country":"TC","iso_region":"TC-AC","municipality":"Big Ambergris Cay","elevation_ft":9,"latitude":21.302649,"longitude":-71.637168,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5699,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA49","iata":"","local":"FA49","name":"Shady International Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":102,"latitude":29.096099853515625,"longitude":-82.17900085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5280,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA86","iata":"","local":"FA86","name":"Early Bird Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Ocala","elevation_ft":71,"latitude":29.21464,"longitude":-82.371656,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2212,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FL8","iata":"","local":"6FL8","name":"Ames Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Trenton","elevation_ft":64,"latitude":29.587499618530277,"longitude":-82.87120056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73FD","iata":"","local":"73FD","name":"Brookins Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chiefland","elevation_ft":45,"latitude":29.510799407958984,"longitude":-82.86009979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76FD","iata":"","local":"76FD","name":"Peavy Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Havana","elevation_ft":270,"latitude":30.670499801635746,"longitude":-84.41410064697266,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2800,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD37","iata":"","local":"FD37","name":"Gentry Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"St Cloud","elevation_ft":80,"latitude":28.13719940185547,"longitude":-81.26339721679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD88","iata":"","local":"FD88","name":"Aero Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":25,"latitude":27.34199905395508,"longitude":-80.52200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3150,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYEF","iata":"GGT","local":"","name":"Exuma International Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-EX","municipality":"Moss Town","elevation_ft":9,"latitude":23.562599,"longitude":-75.877998,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYLD","iata":"LGI","local":"","name":"Deadman's Cay Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-LI","municipality":"Deadman's Cay","elevation_ft":9,"latitude":23.1790008545,"longitude":-75.09359741210001,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4042,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MTCH","iata":"CAP","local":"","name":"Cap Haitien International Airport","category":"medium_airport","iso_country":"HT","iso_region":"HT-ND","municipality":"Cap Haitien","elevation_ft":10,"latitude":19.726734,"longitude":-72.199576,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8701,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD15","iata":"","local":"FD15","name":"Tailwinds Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Jupiter","elevation_ft":19,"latitude":26.97949981689453,"longitude":-80.21869659423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL29","iata":"","local":"FL29","name":"Hales 700 Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":26,"latitude":27.3612003326416,"longitude":-80.5708999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD96","iata":"","local":"FD96","name":"Hilliard's Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Moore Haven","elevation_ft":13,"latitude":26.832599639892575,"longitude":-81.0801010131836,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL74","iata":"","local":"FL74","name":"Indian River Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Vero Beach","elevation_ft":25,"latitude":27.59860038757324,"longitude":-80.50199890136719,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2567,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL86","iata":"","local":"FL86","name":"Woodstock Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Myers","elevation_ft":5,"latitude":26.582599639892575,"longitude":-82.09839630126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYEM","iata":"GHB","local":"","name":"Governor's Harbour Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-CE","municipality":"Governor's Harbour","elevation_ft":26,"latitude":25.2847,"longitude":-76.331001,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8035,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA42","iata":"","local":"FA42","name":"Sheets Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Groveland","elevation_ft":118,"latitude":28.532899856567383,"longitude":-81.8467025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1780,"width_ft":155,"surface":"T"},{"id":"18/36","length_ft":2000,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AL7","iata":"","local":"7AL7","name":"Pratt Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Madrid","elevation_ft":184,"latitude":31.064693,"longitude":-85.438981,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2382,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL37","iata":"","local":"FL37","name":"Treasure Coast Airpark","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Fort Pierce","elevation_ft":30,"latitude":27.23839950561523,"longitude":-80.49140167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4061,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FL88","iata":"","local":"FL88","name":"Bob Paul Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"La Belle","elevation_ft":28,"latitude":26.68370056152344,"longitude":-81.44979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MBSC","iata":"XSC","local":"","name":"South Caicos Airport","category":"medium_airport","iso_country":"TC","iso_region":"TC-SC","municipality":"South Caicos","elevation_ft":6,"latitude":21.515699,"longitude":-71.528503,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6007,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2FA5","iata":"","local":"2FA5","name":"Thunderbird Air Park","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Crescent City","elevation_ft":67,"latitude":29.47220039367676,"longitude":-81.5719985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2870,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6FL4","iata":"","local":"6FL4","name":"Sylvanmir Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Keaton Beach","elevation_ft":8,"latitude":29.82110023498535,"longitude":-83.57319641113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74FL","iata":"","local":"74FL","name":"Jefferson Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Monticello","elevation_ft":120,"latitude":30.5846004486084,"longitude":-83.70790100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6395,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AL8","iata":"","local":"1AL8","name":"Moore Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Moody","elevation_ft":730,"latitude":33.61109924316406,"longitude":-86.47440338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AL4","iata":"","local":"1AL4","name":"Elsanor Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Robertsdale","elevation_ft":180,"latitude":30.543654,"longitude":-87.560391,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MS9","iata":"","local":"4MS9","name":"Providence Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Canton","elevation_ft":240,"latitude":32.666,"longitude":-90.067596,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66SC","iata":"","local":"66SC","name":"The Flying Few Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greer","elevation_ft":1001,"latitude":35.034057,"longitude":-82.298508,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1695,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2SC5","iata":"","local":"2SC5","name":"Ridgewood Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Waterloo","elevation_ft":560,"latitude":34.29169845581055,"longitude":-82.05390167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FA40","iata":"","local":"FA40","name":"Hidden Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"New Port Richey","elevation_ft":30,"latitude":28.28249931335449,"longitude":-82.64569854736328,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4425,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74FD","iata":"","local":"74FD","name":"Clarksville Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Clarksville","elevation_ft":90,"latitude":30.463706,"longitude":-85.179669,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26AL","iata":"","local":"26AL","name":"Richardson Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Mobile","elevation_ft":180,"latitude":30.62420082092285,"longitude":-88.27860260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02SC","iata":"","local":"02SC","name":"Harpers Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Estill","elevation_ft":111,"latitude":32.760211,"longitude":-81.225872,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TN0","iata":"","local":"0TN0","name":"R & S Buzzard Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Spring Hill","elevation_ft":810,"latitude":35.676700592041016,"longitude":-86.89669799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KY5","iata":"","local":"0KY5","name":"Boyce Wafer Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Alvaton","elevation_ft":600,"latitude":36.812346,"longitude":-86.377427,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26NC","iata":"","local":"26NC","name":"Boonville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Boonville","elevation_ft":1003,"latitude":36.222900390625,"longitude":-80.7155990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NC9","iata":"","local":"3NC9","name":"Womble Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Chapel Hill","elevation_ft":475,"latitude":35.878176,"longitude":-79.086778,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68NC","iata":"","local":"68NC","name":"Winstead '76' Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Leasburg","elevation_ft":615,"latitude":36.399600982666016,"longitude":-79.12809753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AL5","iata":"","local":"7AL5","name":"Liberty Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Pinckard","elevation_ft":363,"latitude":31.2899028,"longitude":-85.5404778,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MS8","iata":"","local":"2MS8","name":"Spencer Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Grenada","elevation_ft":175,"latitude":33.78969955444336,"longitude":-89.87439727783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MS5","iata":"","local":"4MS5","name":"Bird Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Lucedale","elevation_ft":311,"latitude":31.001399993896484,"longitude":-88.51699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TN5","iata":"","local":"0TN5","name":"McDonald Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":600,"latitude":35.867729,"longitude":-86.497907,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TN0","iata":"","local":"3TN0","name":"Indian Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Kingsport","elevation_ft":1580,"latitude":36.535,"longitude":-82.423889,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":750,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10TN","iata":"","local":"10TN","name":"Flatwood Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lebanon","elevation_ft":600,"latitude":36.0718994140625,"longitude":-86.35440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1200,"width_ft":120,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TN0","iata":"","local":"1TN0","name":"Cedar Crest Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lebanon","elevation_ft":540,"latitude":36.246399,"longitude":-86.302803,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19SC","iata":"","local":"19SC","name":"Sexton Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Kinards","elevation_ft":593,"latitude":34.353428,"longitude":-81.809263,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TN4","iata":"","local":"5TN4","name":"Mcgraw's Backyard Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Greenback","elevation_ft":920,"latitude":35.67060089111328,"longitude":-84.11579895019531,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TN0","iata":"","local":"4TN0","name":"Melton Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Blaine","elevation_ft":1060,"latitude":36.15190124511719,"longitude":-83.73280334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KT4","iata":"","local":"2KT4","name":"Eubank Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Fountain Run","elevation_ft":850,"latitude":36.796953,"longitude":-85.966902,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44KY","iata":"","local":"44KY","name":"Duff Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Chavies","elevation_ft":820,"latitude":37.352215,"longitude":-83.342135,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2300,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AL8","iata":"","local":"4AL8","name":"Milton Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Huntsville","elevation_ft":639,"latitude":34.4906005859375,"longitude":-86.67330169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2242,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN5","iata":"","local":"1IN5","name":"Bottoms Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Somerville","elevation_ft":545,"latitude":38.2848014831543,"longitude":-87.38200378417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IL4","iata":"","local":"1IL4","name":"Flight Park Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Millstadt","elevation_ft":631,"latitude":38.418701,"longitude":-90.131203,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27LL","iata":"","local":"27LL","name":"Ralph Jacobs Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Valmeyer","elevation_ft":400,"latitude":38.375099182128906,"longitude":-90.31929779052734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OK7","iata":"","local":"3OK7","name":"Double W Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sand Springs","elevation_ft":790,"latitude":36.241798400878906,"longitude":-96.13420104980467,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NC4","iata":"","local":"6NC4","name":"Brown Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Taylorsville","elevation_ft":1170,"latitude":35.905701,"longitude":-81.139503,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1400,"width_ft":40,"surface":"T"},{"id":"16/34","length_ft":1200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00VA","iata":"","local":"00VA","name":"Vaughan Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Alton","elevation_ft":551,"latitude":36.574964,"longitude":-78.998437,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61GA","iata":"","local":"61GA","name":"Pea Patch Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Blythe","elevation_ft":434,"latitude":33.30179977416992,"longitude":-82.17230224609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TN6","iata":"","local":"3TN6","name":"Wilson Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":435,"latitude":35.0968017578125,"longitude":-89.28060150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TN2","iata":"","local":"2TN2","name":"Wings Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Hickory Valley","elevation_ft":540,"latitude":35.22359848022461,"longitude":-89.18890380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2390,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TN4","iata":"","local":"2TN4","name":"Shoemaker-Shelby Forest Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Millington","elevation_ft":335,"latitude":35.31809997558594,"longitude":-90.0353012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2785,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6VA2","iata":"","local":"6VA2","name":"Loury Lester Airpark","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Martinsville","elevation_ft":1030,"latitude":36.741798400878906,"longitude":-79.8478012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MS9","iata":"","local":"0MS9","name":"Shenandoah Valley Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Houston","elevation_ft":300,"latitude":33.80070114135742,"longitude":-89.02729797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48AR","iata":"","local":"48AR","name":"Whirlwind Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Fisher","elevation_ft":240,"latitude":35.484715,"longitude":-90.841119,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0LL3","iata":"","local":"0LL3","name":"Koenig Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Jerseyville","elevation_ft":614,"latitude":39.05500030517578,"longitude":-90.34210205078124,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MO2","iata":"","local":"2MO2","name":"Northwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Holt","elevation_ft":1000,"latitude":39.46419906616211,"longitude":-94.30799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MU1","iata":"","local":"0MU1","name":"Sunderland Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Avilla","elevation_ft":1027,"latitude":37.246700286865234,"longitude":-94.17389678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MU9","iata":"","local":"0MU9","name":"RPM Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fair Grove","elevation_ft":1282,"latitude":37.337894,"longitude":-93.164084,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":970,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62GA","iata":"","local":"62GA","name":"Seven Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Jackson","elevation_ft":630,"latitude":33.32460021972656,"longitude":-83.91629791259766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2930,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AL9","iata":"","local":"0AL9","name":"Wilson Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Florence","elevation_ft":590,"latitude":34.849998474121094,"longitude":-87.63249969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TN8","iata":"","local":"3TN8","name":"Massingale Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lenoir City","elevation_ft":840,"latitude":35.763999938964844,"longitude":-84.1874008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS9","iata":"","local":"1KS9","name":"Belleair Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bonner Springs","elevation_ft":935,"latitude":39.045601,"longitude":-94.948996,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1II0","iata":"","local":"1II0","name":"Webster Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Homer","elevation_ft":910,"latitude":39.576698303222656,"longitude":-85.58779907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MO4","iata":"","local":"2MO4","name":"Breckenridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rockville","elevation_ft":805,"latitude":38.114199,"longitude":-94.176049,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KY1","iata":"","local":"4KY1","name":"Creek Side Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Glasgow","elevation_ft":727,"latitude":36.89500045776367,"longitude":-85.77279663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34KY","iata":"","local":"34KY","name":"Lone Pine Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Auburn","elevation_ft":720,"latitude":36.91249847412109,"longitude":-86.78279876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1620,"width_ft":50,"surface":"C"},{"id":"18/36","length_ft":2440,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36KY","iata":"","local":"36KY","name":"Arnolds Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Springfield","elevation_ft":843,"latitude":37.65560150146485,"longitude":-85.15380096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2100,"width_ft":100,"surface":"T"},{"id":"14/32","length_ft":2250,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KY3","iata":"","local":"2KY3","name":"Plane-O-Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Bowling Green","elevation_ft":655,"latitude":36.83470153808594,"longitude":-86.45829772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IS3","iata":"","local":"1IS3","name":"Cribbet Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Blue Mound","elevation_ft":620,"latitude":39.69556,"longitude":-89.05953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2280,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1IN1","iata":"","local":"1IN1","name":"Shearer STOLport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lewisville","elevation_ft":750,"latitude":39.488399505615234,"longitude":-86.6530990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11MO","iata":"","local":"11MO","name":"Redgate Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Williamsburg","elevation_ft":820,"latitude":38.90169906616211,"longitude":-91.63520050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KY4","iata":"","local":"2KY4","name":"Oz Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Elizabethtown","elevation_ft":820,"latitude":37.655488,"longitude":-85.813441,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2930,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AL7","iata":"","local":"4AL7","name":"Leon's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Flat Rock","elevation_ft":1430,"latitude":34.74470138549805,"longitude":-85.6897964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AR9","iata":"","local":"","name":"Scudder Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Jonesboro","elevation_ft":238,"latitude":35.776199,"longitude":-90.646797,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2494,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20IN","iata":"","local":"20IN","name":"Canary's Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Franklin","elevation_ft":760,"latitude":39.51390075683594,"longitude":-86.05139923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01IS","iata":"","local":"01IS","name":"William E. Koenig Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Dow","elevation_ft":670,"latitude":39.01620101928711,"longitude":-90.31819915771484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MU2","iata":"","local":"1MU2","name":"Smitty's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ridgely","elevation_ft":800,"latitude":39.444844,"longitude":-94.664104,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25KS","iata":"","local":"25KS","name":"Wyrill Farming Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Kirwin","elevation_ft":1700,"latitude":39.6833000183,"longitude":-99.12840271,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2240,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MO8","iata":"","local":"0MO8","name":"Sloan's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Elsberry","elevation_ft":437,"latitude":39.14059829711914,"longitude":-90.73680114746094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MO8","iata":"","local":"1MO8","name":"Sherlock Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gravois Mills","elevation_ft":800,"latitude":38.25279998779297,"longitude":-92.8030014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MO1","iata":"","local":"0MO1","name":"Flying G Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Creighton","elevation_ft":920,"latitude":38.54449844360352,"longitude":-94.0947036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0KS9","iata":"","local":"0KS9","name":"Lmn 120 Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Douglas","elevation_ft":1330,"latitude":37.515899658203125,"longitude":-96.9197998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MO6","iata":"","local":"3MO6","name":"Kitty Hawk Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kearney","elevation_ft":1000,"latitude":39.33560180664063,"longitude":-94.4835968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA6","iata":"","local":"1XA6","name":"Tailwheel Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Valley View","elevation_ft":702,"latitude":33.47370147705078,"longitude":-97.12239837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2483,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TN3","iata":"","local":"4TN3","name":"Hawks Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Moscow","elevation_ft":410,"latitude":35.11830139160156,"longitude":-89.3677978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13WI","iata":"","local":"13WI","name":"Nowatzski Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Markesan","elevation_ft":920,"latitude":43.6963996887207,"longitude":-88.99960327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":70,"surface":"A"},{"id":"18/36","length_ft":2500,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1KS3","iata":"","local":"1KS3","name":"Leo's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Riley","elevation_ft":1350,"latitude":39.303992,"longitude":-96.759431,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1000,"width_ft":30,"surface":"T"},{"id":"11/29","length_ft":1100,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37MO","iata":"","local":"37MO","name":"Mayes Homestead Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Polo","elevation_ft":1000,"latitude":39.57500076293945,"longitude":-94.18360137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2260,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR7","iata":"","local":"3AR7","name":"Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Lowell","elevation_ft":1315,"latitude":36.26461,"longitude":-94.16545,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1953,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS8","iata":"","local":"3KS8","name":"Reed-Wilsonton Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Altamont","elevation_ft":920,"latitude":37.25650024414063,"longitude":-95.33360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2300,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13KS","iata":"","local":"13KS","name":"Daniel's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Andover","elevation_ft":1325,"latitude":37.69779968261719,"longitude":-97.11029815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26OK","iata":"","local":"OK36","name":"Duck Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mounds","elevation_ft":700,"latitude":35.882198,"longitude":-96.004402,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OK6","iata":"","local":"0OK6","name":"Ellis/Harvey Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guthrie","elevation_ft":1220,"latitude":35.801700592041016,"longitude":-97.38610076904295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OK4","iata":"","local":"2OK4","name":"Ragwing Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mounds","elevation_ft":780,"latitude":35.81679916381836,"longitude":-96.05860137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1325,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18AR","iata":"","local":"18AR","name":"Buck Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Eureka Springs","elevation_ft":1450,"latitude":36.339439,"longitude":-93.825036,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44KS","iata":"","local":"44KS","name":"Vankirk Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Derby","elevation_ft":1350,"latitude":37.610298,"longitude":-97.162498,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1750,"width_ft":75,"surface":"T"},{"id":"08/26","length_ft":1400,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":2455,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14IA","iata":"","local":"14IA","name":"East River Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Armstrong","elevation_ft":1235,"latitude":43.360281,"longitude":-94.442364,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2780,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MN5","iata":"","local":"4MN5","name":"Kapaun-Wilson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Graceville","elevation_ft":1122,"latitude":45.550498962402,"longitude":-96.451400756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR2","iata":"","local":"3AR2","name":"Ridgeway Field","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Harrison","elevation_ft":1400,"latitude":36.321487,"longitude":-93.202236,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":30,"surface":"T"},{"id":"13/31","length_ft":2400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS3","iata":"","local":"3KS3","name":"Rogers Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Udall","elevation_ft":1210,"latitude":37.40272,"longitude":-97.194278,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40AR","iata":"","local":"40AR","name":"Lost Bridge Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Garfield","elevation_ft":1440,"latitude":36.392799377441406,"longitude":-93.9123992919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3150,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40KS","iata":"","local":"40KS","name":"Chanay Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Pomona","elevation_ft":1110,"latitude":38.53165,"longitude":-95.451515,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41KS","iata":"","local":"41KS","name":"Flying Z Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Spring Hill","elevation_ft":1075,"latitude":38.734313,"longitude":-94.798422,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":100,"surface":"T"},{"id":"13/31","length_ft":1600,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AR9","iata":"","local":"1AR9","name":"Country Air Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Lonoke","elevation_ft":250,"latitude":34.816149,"longitude":-91.995769,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2500,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KS5","iata":"","local":"3KS5","name":"High Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Valley Center","elevation_ft":1395,"latitude":37.8427155871,"longitude":-97.3514413834,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MO5","iata":"","local":"3MO5","name":"Nimsick Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Carthage","elevation_ft":1095,"latitude":37.12810134887695,"longitude":-94.21610260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MS8","iata":"","local":"1MS8","name":"Columbus Air Force Base Auxiliary Field (Gunshy)","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Shuqualak","elevation_ft":260,"latitude":32.940102,"longitude":-88.579201,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6302,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TX8","iata":"","local":"2TX8","name":"Eagle's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Krum","elevation_ft":930,"latitude":33.30820083618164,"longitude":-97.37969970703124,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3300,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29MO","iata":"","local":"29MO","name":"Rollert Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Smithville","elevation_ft":1000,"latitude":39.35079956054688,"longitude":-94.5186004638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20AR","iata":"","local":"20AR","name":"Rak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Guy","elevation_ft":660,"latitude":35.30789948,"longitude":-92.32019806,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1OK7","iata":"","local":"1OK7","name":"Grimes Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Maysville","elevation_ft":1035,"latitude":34.80009841918945,"longitude":-97.4822006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2350,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MO4","iata":"","local":"3MO4","name":"Penman Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Portageville","elevation_ft":287,"latitude":36.4506,"longitude":-89.628098,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OK9","iata":"","local":"3OK9","name":"Jazz Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Shawnee","elevation_ft":1080,"latitude":35.321786,"longitude":-97.040084,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA8","iata":"","local":"1XA8","name":"Hackberry Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Chatfield","elevation_ft":433,"latitude":32.23249816894531,"longitude":-96.39749908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2060,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2TX7","iata":"","local":"2TX7","name":"JW Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":875,"latitude":33.093472,"longitude":-97.396338,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XA7","iata":"","local":"2XA7","name":"Tailwheel Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Longview","elevation_ft":360,"latitude":32.6150016784668,"longitude":-94.7656021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AR1","iata":"","local":"4AR1","name":"Shurley Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Cabot","elevation_ft":430,"latitude":35.0411,"longitude":-92.10008,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36NE","iata":"","local":"36NE","name":"Frevert Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wausa","elevation_ft":1800,"latitude":42.514198303222656,"longitude":-97.58090209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28WI","iata":"","local":"28WI","name":"Rutherford Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Arkansaw","elevation_ft":790,"latitude":44.60409927368164,"longitude":-92.04660034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AR5","iata":"","local":"3AR5","name":"Tripp Strip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Griffithville","elevation_ft":210,"latitude":35.11790084838867,"longitude":-91.61190032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XS9","iata":"","local":"0XS9","name":"French Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bullard","elevation_ft":540,"latitude":32.13169,"longitude":-95.33959,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TA4","iata":"","local":"0TA4","name":"Erco Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kaufman","elevation_ft":395,"latitude":32.49789810180664,"longitude":-96.27050018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1742,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02CD","iata":"","local":"02CD","name":"Shannon Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Clarksdale","elevation_ft":165,"latitude":34.129600524902344,"longitude":-90.52400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AR0","iata":"","local":"2AR0","name":"Bully Henry Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Lonoke","elevation_ft":245,"latitude":34.868099212646484,"longitude":-91.97429656982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2505,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AR2","iata":"","local":"4AR2","name":"Red Oak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Cabot","elevation_ft":315,"latitude":34.910462,"longitude":-92.006932,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD1","iata":"","local":"1SD1","name":"Burke Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Scotland","elevation_ft":1352,"latitude":43.16540145874024,"longitude":-97.73090362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NA5","iata":"","local":"6NA5","name":"Chase Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hebron","elevation_ft":2140,"latitude":46.91279983520508,"longitude":-102.00900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9ND2","iata":"","local":"9ND2","name":"Lewis Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hope","elevation_ft":1349,"latitude":47.358333,"longitude":-97.795032,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2432,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2SD7","iata":"","local":"2SD7","name":"Dangel Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hurley","elevation_ft":1284,"latitude":43.33330154418945,"longitude":-97.06279754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NA9","iata":"","local":"8NA9","name":"Hashbarger Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hope","elevation_ft":1195,"latitude":47.32799911499024,"longitude":-97.6790008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":2500,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NA2","iata":"","local":"3NA2","name":"Lorentzen Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Washburn","elevation_ft":1790,"latitude":47.30279922485352,"longitude":-101.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1200,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2ND2","iata":"","local":"2ND2","name":"Makeeff Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Mercer","elevation_ft":1910,"latitude":47.56689834594727,"longitude":-100.72100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NA5","iata":"","local":"8NA5","name":"Liechty Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Montpelier","elevation_ft":1505,"latitude":46.66299819946289,"longitude":-98.63040161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1ND4","iata":"","local":"1ND4","name":"Walkinshaw Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Argusville","elevation_ft":900,"latitude":47.05830001831055,"longitude":-97.01699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69ND","iata":"","local":"69ND","name":"Tengesdal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Maxbass","elevation_ft":1495,"latitude":48.74309921264648,"longitude":-101.04199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6ND3","iata":"","local":"6ND3","name":"Lisburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Argusville","elevation_ft":885,"latitude":47.06969833374024,"longitude":-96.94059753417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":75,"surface":"T"},{"id":"NW/SE","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72ND","iata":"","local":"72ND","name":"Berg Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Northwood","elevation_ft":1111,"latitude":47.66109848022461,"longitude":-97.59200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77MN","iata":"","local":"77MN","name":"Klamar Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Gatzke","elevation_ft":1160,"latitude":48.37139892578125,"longitude":-95.78810119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3600,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MN9","iata":"","local":"5MN9","name":"Chanlin Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Middle River","elevation_ft":1147,"latitude":48.42359924316406,"longitude":-96.12889862060548,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76MN","iata":"","local":"76MN","name":"Hemmingsen Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Erskine","elevation_ft":1246,"latitude":47.59640121459961,"longitude":-96.02169799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81ND","iata":"","local":"81ND","name":"Millers Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Deering","elevation_ft":1545,"latitude":48.38859939575195,"longitude":-101.04499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25MT","iata":"","local":"25MT","name":"Blatter Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Glasgow","elevation_ft":2800,"latitude":48.42219924926758,"longitude":-106.25299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":500,"width_ft":30,"surface":"T"},{"id":"12/30","length_ft":800,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":750,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT04","iata":"","local":"MT04","name":"Olfert Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lustre","elevation_ft":2750,"latitude":48.40420150756836,"longitude":-106.00900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT08","iata":"","local":"MT08","name":"Zortman Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Zortman","elevation_ft":3900,"latitude":47.91669845581055,"longitude":-108.48300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT29","iata":"","local":"MT29","name":"Sunday Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Miles City","elevation_ft":2490,"latitude":46.47890090942383,"longitude":-105.85800170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3500,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA07","iata":"","local":"NA07","name":"Kornkven Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Souris","elevation_ft":1505,"latitude":48.88639831542969,"longitude":-100.69499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND22","iata":"","local":"ND22","name":"Fischer Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Garrison","elevation_ft":2065,"latitude":47.68330001831055,"longitude":-101.5999984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND62","iata":"","local":"ND62","name":"Brands Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Taylor","elevation_ft":2423,"latitude":46.84830093383789,"longitude":-102.45800018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":150,"surface":"T"},{"id":"NW/SE","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND72","iata":"","local":"ND72","name":"Lonetree Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Harvey","elevation_ft":1647,"latitude":47.68439865112305,"longitude":-100.08499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2860,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT38","iata":"","local":"MT38","name":"Swank Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Poplar","elevation_ft":2205,"latitude":48.40340042114258,"longitude":-105.15699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT51","iata":"","local":"MT51","name":"Zerbe Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Frazer","elevation_ft":2720,"latitude":48.277000427246094,"longitude":-105.96199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":50,"surface":"T"},{"id":"16/34","length_ft":2640,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA12","iata":"","local":"NA12","name":"Johnson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Turtle Lake","elevation_ft":1920,"latitude":47.43170166015625,"longitude":-100.84200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA63","iata":"","local":"NA63","name":"Storseth Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grenora","elevation_ft":2200,"latitude":48.66669845581055,"longitude":-103.8560028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND12","iata":"","local":"ND12","name":"Snyders Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hazelton","elevation_ft":2017,"latitude":46.586525,"longitude":-100.472222,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2715,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND26","iata":"","local":"ND26","name":"Gajewski Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Alexander","elevation_ft":2100,"latitude":47.900002,"longitude":-103.658997,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2162,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND85","iata":"","local":"ND85","name":"Humann Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hazelton","elevation_ft":1980,"latitude":46.49309921264648,"longitude":-100.1790008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT06","iata":"","local":"MT06","name":"Duncan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":4260,"latitude":46.570461,"longitude":-112.175274,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1467,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MT1","iata":"","local":"2MT1","name":"Ryan Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"West Glacier","elevation_ft":3660,"latitude":48.483182,"longitude":-113.960853,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT79","iata":"","local":"MT79","name":"Sand Creek Wildlife Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Roy","elevation_ft":2940,"latitude":47.58420181274414,"longitude":-108.70899963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT58","iata":"","local":"MT58","name":"Nelson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Haxby / Fort Peck","elevation_ft":2425,"latitude":47.766700744628906,"longitude":-106.18800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":200,"surface":"T"},{"id":"NW/SE","length_ft":2500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND42","iata":"","local":"ND42","name":"Warren Pietsch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Sawyer","elevation_ft":1550,"latitude":48.10309982299805,"longitude":-101.0780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND29","iata":"","local":"ND29","name":"Swenson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Belfield","elevation_ft":2900,"latitude":46.66669845581055,"longitude":-103.23400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2400,"width_ft":50,"surface":"T"},{"id":"NW/SE","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND96","iata":"","local":"ND96","name":"Sauter Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bismark","elevation_ft":1730,"latitude":46.801700592041016,"longitude":-100.6790008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND82","iata":"","local":"ND82","name":"Y-Rock Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Ray","elevation_ft":2229,"latitude":48.311303,"longitude":-103.148025,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2023,"width_ft":53,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08MT","iata":"","local":"08MT","name":"Matovich Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Grass Range","elevation_ft":3450,"latitude":47.065679,"longitude":-108.809624,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT01","iata":"","local":"MT01","name":"Owen Bros Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Geraldine","elevation_ft":3106,"latitude":47.61800003051758,"longitude":-110.09200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT40","iata":"","local":"MT49","name":"Horner Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Great Falls","elevation_ft":3430,"latitude":47.593655,"longitude":-111.270213,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2350,"width_ft":90,"surface":"T"},{"id":"09/27","length_ft":1300,"width_ft":90,"surface":"T"},{"id":"13/31","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MT2","iata":"","local":"2MT2","name":"Braidwater Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2910,"latitude":48.198535,"longitude":-114.257834,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2390,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93MT","iata":"","local":"93MT","name":"Masonry Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bigfork","elevation_ft":3049,"latitude":48.10104,"longitude":-114.089316,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1372,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA13","iata":"","local":"NA13","name":"Linrud Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Velva","elevation_ft":1605,"latitude":48.12220001220703,"longitude":-100.93699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA88","iata":"","local":"NA88","name":"Regan Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Regan","elevation_ft":2060,"latitude":47.223899841308594,"longitude":-100.4229965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND25","iata":"","local":"ND25","name":"Prop Wash Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Watford City","elevation_ft":2340,"latitude":48.064407,"longitude":-102.907918,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2430,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND43","iata":"","local":"ND43","name":"Flying S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Minot","elevation_ft":1840,"latitude":48.20000076293945,"longitude":-101.40399932861328,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":4000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT02","iata":"","local":"MT02","name":"Hellinger Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Devon","elevation_ft":3215,"latitude":48.53829956054688,"longitude":-111.49700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":75,"surface":"T"},{"id":"NE/SW","length_ft":2400,"width_ft":75,"surface":"T"},{"id":"NW/SE","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT77","iata":"","local":"MT77","name":"Peterson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Highwood","elevation_ft":3340,"latitude":47.608701,"longitude":-110.906535,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":2040,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6ID1","iata":"","local":"6ID1","name":"Regan Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D Alene","elevation_ft":2720,"latitude":47.6436004639,"longitude":-116.698997498,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID21","iata":"","local":"ID21","name":"Smith Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Hauser Lake","elevation_ft":2370,"latitude":47.75630187988281,"longitude":-117.02400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID75","iata":"","local":"ID75","name":"Riverlake Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Clark Fork","elevation_ft":2076,"latitude":48.1259994506836,"longitude":-116.16500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2346,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT18","iata":"","local":"MT18","name":"Torres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Columbia Falls","elevation_ft":3078,"latitude":48.287534,"longitude":-114.183698,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT60","iata":"","local":"MT60","name":"Langton Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Polebridge","elevation_ft":3900,"latitude":48.81439971923828,"longitude":-114.35399627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA23","iata":"","local":"WA23","name":"Pine Bluff Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Springdale","elevation_ft":2021,"latitude":48.02099990844727,"longitude":-117.73899841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AN6","iata":"","local":"8AN6","name":"Isaacson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Medical Lake","elevation_ft":2410,"latitude":47.65919876098633,"longitude":-117.68199920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":750,"width_ft":28,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID01","iata":"","local":"ID01","name":"CX Ranch Number 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Clark Fork","elevation_ft":2071,"latitude":48.137957,"longitude":-116.196681,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID25","iata":"","local":"ID25","name":"Olmstead Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sandpoint","elevation_ft":2140,"latitude":48.35079956054688,"longitude":-116.5540008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID43","iata":"","local":"ID43","name":"Carlin Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2702,"latitude":47.551300048828125,"longitude":-116.76399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2750,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID84","iata":"","local":"ID84","name":"Cptpa Headquarters Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Headquarters","elevation_ft":3314,"latitude":46.61709976196289,"longitude":-115.8000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA21","iata":"","local":"WN04","name":"Elk Heights Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Elk","elevation_ft":2050,"latitude":48.001999,"longitude":-117.263333,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":820,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03WA","iata":"","local":"03WA","name":"Spangle Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spangle","elevation_ft":2440,"latitude":47.408199310302734,"longitude":-117.37200164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96WA","iata":"","local":"96WA","name":"Jim & Julie's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":15,"latitude":47.89810180664063,"longitude":-122.15599822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1100,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37WA","iata":"","local":"37WA","name":"Baumann Farm Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Washtucna","elevation_ft":1600,"latitude":46.8317985534668,"longitude":-118.46199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OR0","iata":"","local":"7OR0","name":"Minam Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Cove","elevation_ft":3589,"latitude":45.35820007324219,"longitude":-117.63400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA61","iata":"","local":"WA61","name":"Thompson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kingston","elevation_ft":50,"latitude":47.798301696777344,"longitude":-122.52999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN35","iata":"","local":"WN35","name":"Meadow Mist Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ferndale","elevation_ft":55,"latitude":48.90869903564453,"longitude":-122.56500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID07","iata":"","local":"ID07","name":"Nichols Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Post Falls","elevation_ft":2430,"latitude":47.6781005859375,"longitude":-117.0250015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID22","iata":"","local":"ID22","name":"Treeport Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Spirit Lake","elevation_ft":2500,"latitude":47.97800064086914,"longitude":-116.79299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID60","iata":"","local":"ID60","name":"Fountains Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Moscow","elevation_ft":2550,"latitude":46.71319961547852,"longitude":-116.99700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":60,"surface":"D"},{"id":"07/25","length_ft":2800,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID65","iata":"","local":"ID65","name":"Driftwood Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Coeur D'Alene","elevation_ft":2775,"latitude":47.581244,"longitude":-116.771997,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1900,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID85","iata":"","local":"ID85","name":"Elk River Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Elk River","elevation_ft":2827,"latitude":46.78739929199219,"longitude":-116.16799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA08","iata":"","local":"WA08","name":"Zwainz Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Reardan","elevation_ft":2795,"latitude":47.720699310302734,"longitude":-117.90899658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA30","iata":"","local":"WA30","name":"LaCrosse Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"LaCrosse","elevation_ft":1491,"latitude":46.791917,"longitude":-117.920686,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3690,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":2400,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA49","iata":"","local":"WA49","name":"Flying R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Cheney","elevation_ft":2450,"latitude":47.50279998779297,"longitude":-117.64800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN18","iata":"","local":"WN18","name":"Becker's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Anacortes","elevation_ft":155,"latitude":48.4567985534668,"longitude":-122.53900146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN51","iata":"","local":"WN51","name":"Bayview Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Burlington","elevation_ft":6,"latitude":48.52090072631836,"longitude":-122.46499633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN87","iata":"","local":"WN87","name":"Bryan Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Enumclaw","elevation_ft":630,"latitude":47.20859909057617,"longitude":-122.09300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33WA","iata":"","local":"33WA","name":"Franz Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Warden","elevation_ft":1478,"latitude":47.04990005493164,"longitude":-118.85099792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID19","iata":"","local":"ID19","name":"Bird Number Two Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Sagle","elevation_ft":2192,"latitude":48.236288,"longitude":-116.383467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"C"},{"id":"N/S","length_ft":1900,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID94","iata":"","local":"ID94","name":"White Pine Flats Ranch LLC Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Troy","elevation_ft":2860,"latitude":46.776667,"longitude":-116.691389,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49WA","iata":"","local":"49WA","name":"Cougar Mountain Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Yelm","elevation_ft":470,"latitude":46.84700012207031,"longitude":-122.52200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3230,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96VE","iata":"","local":"96VE","name":"Beiter Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":1910,"latitude":46.907024,"longitude":-120.43303,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYPK","iata":"","local":"","name":"Pitt Meadows Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Pitt Meadows","elevation_ft":11,"latitude":49.21609878540039,"longitude":-122.70999908447266,"has_tower":true,"has_beacon":false,"runways":[{"id":"08R/26L","length_ft":5003,"width_ft":100,"surface":"A"},{"id":"08L/26R","length_ft":2485,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":2484,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74OR","iata":"","local":"74OR","name":"Stan Jost Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Newberg","elevation_ft":180,"latitude":45.32369995117188,"longitude":-123.0189971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA04","iata":"","local":"WA04","name":"Kyles Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Snohomish","elevation_ft":470,"latitude":47.814902,"longitude":-122.043915,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA59","iata":"","local":"WA59","name":"Rake's Glen Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sequim","elevation_ft":50,"latitude":48.125571,"longitude":-123.150269,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA88","iata":"","local":"WA88","name":"Horse Fly Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ferndale","elevation_ft":70,"latitude":48.892437,"longitude":-122.561277,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA74","iata":"","local":"WA74","name":"Quincy Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Quincy","elevation_ft":1276,"latitude":47.226728,"longitude":-119.908932,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2750,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN76","iata":"","local":"WN76","name":"Bergseth Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Enumclaw","elevation_ft":1100,"latitude":47.243799,"longitude":-121.924317,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67OR","iata":"","local":"67OR","name":"Mc Gee Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Donald","elevation_ft":175,"latitude":45.2336997986,"longitude":-122.856002808,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1960,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID29","iata":"","local":"ID29","name":"Big Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Orofino","elevation_ft":2249,"latitude":46.6973991394043,"longitude":-115.98400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ID48","iata":"","local":"ID48","name":"Western Spur Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Athol","elevation_ft":2350,"latitude":47.92879867553711,"longitude":-116.71099853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2800,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16WA","iata":"","local":"16WA","name":"Tightcliff Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Nine Mile Falls","elevation_ft":1855,"latitude":47.8447,"longitude":-117.694,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1515,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OR6","iata":"","local":"4OR6","name":"Auberge Des Fleurs Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sandy","elevation_ft":510,"latitude":45.449798583984375,"longitude":-122.25399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79WT","iata":"","local":"","name":"Ellensburg (Rotor Ranch) Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"UNKNOWN","elevation_ft":1962,"latitude":47.0914260595,"longitude":-120.589778423,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2223,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97WA","iata":"","local":"97WA","name":"Basin City Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Mesa","elevation_ft":722,"latitude":46.585335,"longitude":-119.153711,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":50,"surface":"A"},{"id":"H1","length_ft":14,"width_ft":16,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76WA","iata":"","local":"76WA","name":"Heineck Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":10,"latitude":48.00510025024414,"longitude":-122.13400268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA22","iata":"","local":"WA22","name":"Mirth Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Hansville","elevation_ft":190,"latitude":47.9385986328125,"longitude":-122.60800170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":600,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WT37","iata":"","local":"WT37","name":"Lockwood Dry Coulee Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Okanogan","elevation_ft":1312,"latitude":48.368734,"longitude":-119.616582,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3830,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA05","iata":"","local":"8W5","name":"Apex Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Silverdale","elevation_ft":525,"latitude":47.656799,"longitude":-122.733002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86WA","iata":"","local":"86WA","name":"Kapowsin Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Graham","elevation_ft":720,"latitude":47.003758,"longitude":-122.234845,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64OG","iata":"","local":"64OG","name":"Antone Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Mitchell","elevation_ft":3908,"latitude":44.493436,"longitude":-119.843686,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5069,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6OR1","iata":"","local":"6OR1","name":"Pointers Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"The Dalles","elevation_ft":1140,"latitude":45.584082,"longitude":-121.268215,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CL3","iata":"","local":"2CL3","name":"Longbell Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Macdoel","elevation_ft":4607,"latitude":41.642101,"longitude":-121.889999,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN21","iata":"","local":"WN21","name":"Lawson Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":650,"latitude":48.08150100708008,"longitude":-123.39800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02WN","iata":"","local":"02WN","name":"Fowler Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Tonasket","elevation_ft":2150,"latitude":48.74580001831055,"longitude":-119.31900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA97","iata":"","local":"WA97","name":"Buena Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Buena","elevation_ft":830,"latitude":46.44286,"longitude":-120.339896,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2600,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OR2","iata":"","local":"8OR2","name":"Kingston Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Stayton","elevation_ft":871,"latitude":44.77849960327149,"longitude":-122.7300033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OR4","iata":"","local":"7OR4","name":"Pineridge Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sisters","elevation_ft":3070,"latitude":44.311211,"longitude":-121.456958,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CA1","iata":"","local":"6CA1","name":"Triple R Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Macdoel","elevation_ft":4380,"latitude":41.7426986694336,"longitude":-121.87799835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88NV","iata":"","local":"88NV","name":"Black Rock City Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Gerlach","elevation_ft":3912,"latitude":40.757303,"longitude":-119.212861,"has_tower":false,"has_beacon":false,"runways":[{"id":"05L/23R","length_ft":5500,"width_ft":75,"surface":"D"},{"id":"05R/23L","length_ft":6000,"width_ft":75,"surface":"D"},{"id":"07/25","length_ft":4000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WT15","iata":"","local":"WT15","name":"Cutty Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Bellingham","elevation_ft":100,"latitude":48.84246,"longitude":-122.514315,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":304,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94WA","iata":"","local":"94WA","name":"Wishkah River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Aberdeen","elevation_ft":36,"latitude":47.084282,"longitude":-123.773067,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1700,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5WA7","iata":"","local":"5WA7","name":"Wild Hair Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Centerville","elevation_ft":1620,"latitude":45.71842,"longitude":-120.985246,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98TE","iata":"","local":"98TE","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Glide","elevation_ft":1320,"latitude":43.32210159301758,"longitude":-123.177001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1040,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN42","iata":"","local":"CN42","name":"Double Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Manton","elevation_ft":2030,"latitude":40.445702,"longitude":-121.882004,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV39","iata":"","local":"NV39","name":"Nevada Airways Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Lovelock","elevation_ft":3904,"latitude":40.121106,"longitude":-118.406528,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3503,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR74","iata":"","local":"OR74","name":"Winkle Bar Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Agness","elevation_ft":450,"latitude":42.701677,"longitude":-123.806412,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA39","iata":"","local":"CA39","name":"Belos Cavalos Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Rosa","elevation_ft":450,"latitude":38.434595,"longitude":-122.563524,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":70,"surface":"D"},{"id":"N/S","length_ft":1500,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA92","iata":"PYS","local":"CA92","name":"Paradise Skypark Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Paradise","elevation_ft":1300,"latitude":39.71029,"longitude":-121.616528,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3017,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57MT","iata":"","local":"57MT","name":"Flying K Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Hamilton","elevation_ft":4085,"latitude":46.201911,"longitude":-114.083029,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1495,"width_ft":75,"surface":"T"},{"id":"12/30","length_ft":1645,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OR7","iata":"","local":"8OR7","name":"Gates Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":220,"latitude":44.6271019,"longitude":-123.2249985,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OR0","iata":"","local":"9OR0","name":"Lafferty Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Brownsville","elevation_ft":360,"latitude":44.31510162353516,"longitude":-123.0250015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA06","iata":"","local":"CA06","name":"Bates Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Alturas","elevation_ft":4400,"latitude":41.421373,"longitude":-120.568657,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR06","iata":"","local":"OR06","name":"Snider Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Medford","elevation_ft":1430,"latitude":42.53900146484375,"longitude":-122.9229965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR10","iata":"","local":"OR10","name":"Roaring Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Frenchglen","elevation_ft":4576,"latitude":42.646272,"longitude":-118.992748,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":6000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65CN","iata":"","local":"65CN","name":"Bottimore Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Galt","elevation_ft":70,"latitude":38.303434,"longitude":-121.250868,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2900,"width_ft":25,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CL8","iata":"","local":"6CL8","name":"Harley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Stockton","elevation_ft":20,"latitude":37.950801849365234,"longitude":-121.24299621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92CL","iata":"","local":"92CL","name":"Moronis Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Meridian","elevation_ft":35,"latitude":39.10319900512695,"longitude":-121.8499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CL8","iata":"","local":"5CL8","name":"Creekside Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Arvin","elevation_ft":335,"latitude":35.17610168457031,"longitude":-118.9229965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OR4","iata":"","local":"2OR4","name":"Heavens Gate Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oakland","elevation_ft":965,"latitude":43.47480010986328,"longitude":-123.34600067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5100,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5OR5","iata":"","local":"5OR5","name":"Juniper Air Park","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3490,"latitude":44.03459930419922,"longitude":-121.11799621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2640,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CL3","iata":"","local":"9CL3","name":"Likely Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Likely","elevation_ft":4420,"latitude":41.239489,"longitude":-120.526121,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1960,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA60","iata":"","local":"CA60","name":"Deer Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Vina","elevation_ft":280,"latitude":39.94990158081055,"longitude":-121.99700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":400,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG53","iata":"","local":"OG53","name":"Wildhorse Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Princeton","elevation_ft":4225,"latitude":42.487669,"longitude":-118.608484,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60CL","iata":"","local":"60CL","name":"California Highway Patrol Academy Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"West Sacramento","elevation_ft":20,"latitude":38.594499,"longitude":-121.568188,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":24,"surface":"A"},{"id":"16/34","length_ft":1200,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA73","iata":"","local":"CA73","name":"Vanderford Ranch Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Yuba City","elevation_ft":42,"latitude":39.095699310302734,"longitude":-121.71600341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3220,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA67","iata":"","local":"CA67","name":"Westley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Westley","elevation_ft":96,"latitude":37.54800033569336,"longitude":-121.20500183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1562,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA04","iata":"","local":"CA04","name":"Flying N Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Cottonwood","elevation_ft":530,"latitude":40.34629821777344,"longitude":-122.33899688720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA53","iata":"","local":"CA53","name":"Tews Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Redding","elevation_ft":740,"latitude":40.67250061035156,"longitude":-122.34200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG25","iata":"","local":"OG25","name":"Firefly Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"White City","elevation_ft":1310,"latitude":42.51119995117188,"longitude":-122.92400360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":20,"surface":"A"},{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG40","iata":"","local":"OG40","name":"Napier Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Roseburg","elevation_ft":485,"latitude":43.237300872802734,"longitude":-123.49299621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53CN","iata":"","local":"53CN","name":"Thayer Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Grimes","elevation_ft":54,"latitude":39.074902,"longitude":-121.917999,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63CL","iata":"","local":"63CL","name":"G3 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Capay","elevation_ft":360,"latitude":38.71659851074219,"longitude":-122.13899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2800,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CL2","iata":"","local":"8CL2","name":"Lucchetti Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Elk Grove","elevation_ft":96,"latitude":38.42350006103516,"longitude":-121.22699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA38","iata":"","local":"CA38","name":"Totem Pole Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Calpine","elevation_ft":4986,"latitude":39.652182,"longitude":-120.439873,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA21","iata":"","local":"CA21","name":"Limberlost Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Penn Valley","elevation_ft":1650,"latitude":39.22046,"longitude":-121.213896,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV06","iata":"","local":"NV06","name":"Soldier Meadow Number 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Gerlach","elevation_ft":4494,"latitude":41.382702,"longitude":-119.168999,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG13","iata":"","local":"OG13","name":"Fly By Night Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jacksonville","elevation_ft":1660,"latitude":42.246678,"longitude":-123.070731,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG06","iata":"","local":"OG06","name":"Table Rock Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Christmas Valley","elevation_ft":4305,"latitude":43.21149826049805,"longitude":-120.84300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG41","iata":"","local":"OG41","name":"Nace Family Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Glendale","elevation_ft":1550,"latitude":42.77119827270508,"longitude":-123.31500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0OR3","iata":"","local":"0OR3","name":"Long Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Merrill","elevation_ft":4090,"latitude":42.01900100708008,"longitude":-121.7040023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1950,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR96","iata":"","local":"OR96","name":"Beagle Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Medford","elevation_ft":1436,"latitude":42.53900146484375,"longitude":-122.90399932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CA2","iata":"","local":"4CA2","name":"Funny Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Brentwood","elevation_ft":29,"latitude":37.9468994140625,"longitude":-121.64700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1880,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CA7","iata":"","local":"4CA7","name":"Johnsen Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Chico","elevation_ft":190,"latitude":39.67070007324219,"longitude":-121.88600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CA8","iata":"","local":"5CA8","name":"Howard Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ione","elevation_ft":480,"latitude":38.256536,"longitude":-120.931845,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1481,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71CL","iata":"","local":"71CL","name":"Gunnersfield Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Delevan","elevation_ft":62,"latitude":39.35269927978516,"longitude":-122.09400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2570,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7CL9","iata":"","local":"7CL9","name":"Perryman Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Placerville","elevation_ft":2600,"latitude":38.696463,"longitude":-120.732858,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8CL6","iata":"","local":"8CL6","name":"Moller Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Maxwell","elevation_ft":85,"latitude":39.28850173950195,"longitude":-122.18900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CL7","iata":"","local":"9CL7","name":"Old Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Marysville","elevation_ft":700,"latitude":39.32490158081055,"longitude":-121.35900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL04","iata":"","local":"CL04","name":"Sky Way Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Elk Grove","elevation_ft":92,"latitude":38.41070175170898,"longitude":-121.23500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1950,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN99","iata":"","local":"CN99","name":"Del Mar Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Patterson","elevation_ft":65,"latitude":37.5464444,"longitude":-121.1585778,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2873,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CA7","iata":"","local":"5CA7","name":"Agro-West Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Five Points","elevation_ft":335,"latitude":36.334538,"longitude":-120.247532,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77CA","iata":"","local":"77CA","name":"Daulton Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Madera","elevation_ft":425,"latitude":37.12080001831055,"longitude":-119.98799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":95,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7CA2","iata":"","local":"7CA2","name":"Paradise Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Bakersfield","elevation_ft":340,"latitude":35.176700592041016,"longitude":-118.927001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52CL","iata":"","local":"52CL","name":"Adelanto Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Adelanto","elevation_ft":3075,"latitude":34.537498474121,"longitude":-117.46099853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":5100,"width_ft":100,"surface":"D"},{"id":"N/S","length_ft":3930,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AZ6","iata":"","local":"5AZ6","name":"Motown Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Mobile","elevation_ft":80,"latitude":32.925,"longitude":-112.259444,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2700,"width_ft":65,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CL1","iata":"","local":"1CL1","name":"Little Buttes Antique Airfield","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lancaster","elevation_ft":2433,"latitude":34.79410171508789,"longitude":-118.27799987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ34","iata":"","local":"AZ34","name":"Massey Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Yucca","elevation_ft":1630,"latitude":34.691428,"longitude":-114.097739,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1320,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ82","iata":"","local":"AZ82","name":"Mogollon Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Overgaard","elevation_ft":6657,"latitude":34.399297,"longitude":-110.529553,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3420,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ46","iata":"","local":"AZ46","name":"Morgan Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Prescott","elevation_ft":5025,"latitude":34.764835,"longitude":-112.546451,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT24","iata":"","local":"UT24","name":"Strawberry Valley Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Alton","elevation_ft":8141,"latitude":37.49330139160156,"longitude":-112.6449966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90CA","iata":"","local":"90CA","name":"Fowler's Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Linden","elevation_ft":77,"latitude":38.00350189208984,"longitude":-121.11900329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA19","iata":"","local":"CA19","name":"Camanche Skypark Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Ione","elevation_ft":520,"latitude":38.263511,"longitude":-120.924006,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL23","iata":"","local":"CL23","name":"Jones/Ag-Viation Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Biggs","elevation_ft":109,"latitude":39.459598541259766,"longitude":-121.6959991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN44","iata":"","local":"CN44","name":"Flying Bull Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Modesto","elevation_ft":40,"latitude":37.620231,"longitude":-121.165331,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN86","iata":"","local":"CN86","name":"River Highlands Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Grass Valley","elevation_ft":880,"latitude":39.182051,"longitude":-121.281526,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2606,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CA4","iata":"","local":"2CA4","name":"Blackinton Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Valley Center","elevation_ft":1156,"latitude":33.2588996887207,"longitude":-117.09200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27CA","iata":"","local":"27CA","name":"Holiday Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Apple Valley","elevation_ft":3260,"latitude":34.56110000610352,"longitude":-117.08100128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":80,"surface":"D"},{"id":"16/34","length_ft":2900,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ85","iata":"","local":"AZ85","name":"Tonopah Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tonopah","elevation_ft":1248,"latitude":33.533561,"longitude":-112.960192,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3075,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25CA","iata":"","local":"25CA","name":"Loma Madera Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ysabel","elevation_ft":3375,"latitude":33.17919921875,"longitude":-116.79299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AZ6","iata":"","local":"1AZ6","name":"Skyline Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Sierra Vista","elevation_ft":4180,"latitude":31.556821,"longitude":-110.107384,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1350,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN19","iata":"","local":"CN19","name":"Las Serpientes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Knightsen","elevation_ft":10,"latitude":37.933101654052734,"longitude":-121.61299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CL0","iata":"","local":"5CL0","name":"Grupe Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mariposa","elevation_ft":1625,"latitude":37.339615,"longitude":-119.857463,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CA7","iata":"","local":"9CA7","name":"Harris River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Sanger","elevation_ft":450,"latitude":36.7672004699707,"longitude":-119.43599700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3018,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA18","iata":"","local":"CA18","name":"Sunrise Dusters Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Robbins","elevation_ft":24,"latitude":38.874987,"longitude":-121.710172,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3100,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL56","iata":"","local":"CL56","name":"Ranchaero Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Chico","elevation_ft":173,"latitude":39.7196006775,"longitude":-121.871002197,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2156,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN38","iata":"","local":"CN38","name":"Flying B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Franklin","elevation_ft":19,"latitude":38.34130096435547,"longitude":-121.43699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1385,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ50","iata":"","local":"AZ50","name":"Triangle Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"White Hills","elevation_ft":2419,"latitude":35.715472,"longitude":-114.47844,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1844,"width_ft":50,"surface":"D"},{"id":"17/35","length_ft":3900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA88","iata":"","local":"CA88","name":"San Ardo Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Ardo","elevation_ft":441,"latitude":36.026074,"longitude":-120.908382,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL84","iata":"","local":"CL84","name":"Ahlem Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hilmar","elevation_ft":73,"latitude":37.388301849365234,"longitude":-120.927001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2617,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68AZ","iata":"","local":"68AZ","name":"Music Mountain Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Hackberry","elevation_ft":3450,"latitude":35.475101470947266,"longitude":-113.7689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":50,"surface":"D"},{"id":"17/35","length_ft":1850,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ97","iata":"","local":"AZ97","name":"X Bar 1 Ranch Lower Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Kingman","elevation_ft":3710,"latitude":35.350132,"longitude":-113.689522,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4250,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AZ2","iata":"","local":"6AZ2","name":"Wisky Ranch/Chevlon Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Heber","elevation_ft":6172,"latitude":34.616798400878906,"longitude":-110.62799835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5000,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CL77","iata":"","local":"CL77","name":"Bonny Doon Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Cruz","elevation_ft":2020,"latitude":37.070499420166016,"longitude":-122.1269989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CA8","iata":"","local":"2CA8","name":"B & E Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Yucca Valley","elevation_ft":2793,"latitude":34.42060089111328,"longitude":-116.61100006103516,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":55,"surface":"D"},{"id":"NW/SE","length_ft":2400,"width_ft":55,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CA4","iata":"","local":"0CA4","name":"Shepherd Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Ynez","elevation_ft":660,"latitude":34.6222,"longitude":-120.065002,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3600,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56CL","iata":"","local":"56CL","name":"Morris Ag Air SW Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Blythe","elevation_ft":263,"latitude":33.591726,"longitude":-114.605663,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56AZ","iata":"","local":"56AZ","name":"Mauldin Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Tonopah","elevation_ft":1193,"latitude":33.482422,"longitude":-113.001729,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2900,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58CL","iata":"","local":"58CL","name":"Borrego Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Borrego Springs","elevation_ft":575,"latitude":33.1917,"longitude":-116.276001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2610,"width_ft":45,"surface":"A"},{"id":"18/36","length_ft":1100,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AZ7","iata":"","local":"5AZ7","name":"Carranza Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Stanfield","elevation_ft":1300,"latitude":32.847181,"longitude":-111.950791,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ21","iata":"","local":"AZ21","name":"Four Pillars Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Huachuca City","elevation_ft":4100,"latitude":31.744592,"longitude":-110.247889,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ61","iata":"","local":"AZ61","name":"G M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Stanfield","elevation_ft":1616,"latitude":32.901699,"longitude":-112.237999,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ78","iata":"","local":"AZ78","name":"Arizona Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1420,"latitude":33.003823,"longitude":-112.276239,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM27","iata":"","local":"NM27","name":"Sanostee Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Gallup","elevation_ft":5950,"latitude":36.422501,"longitude":-108.861,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM41","iata":"","local":"NM41","name":"Happy Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Pie Town","elevation_ft":7250,"latitude":34.06119918823242,"longitude":-108.09600067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3700,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV11","iata":"UCC","local":"","name":"Yucca Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Mercury","elevation_ft":3919,"latitude":36.934661,"longitude":-116.00596,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO11","iata":"","local":"CO11","name":"Granite Mountain Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Salida","elevation_ft":9000,"latitude":38.41609954833984,"longitude":-106.05799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO76","iata":"","local":"CO76","name":"Eden Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6150,"latitude":38.835708,"longitude":-107.867003,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23AZ","iata":"","local":"23AZ","name":"Moreton Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Wickenburg","elevation_ft":2455,"latitude":34.019500732421875,"longitude":-112.82599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"D"},{"id":"13/31","length_ft":4500,"width_ft":75,"surface":"D"},{"id":"17/35","length_ft":2600,"width_ft":72,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM36","iata":"","local":"NM36","name":"Candy Kitchen Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Ramah","elevation_ft":7220,"latitude":34.902801513672,"longitude":-108.51499938965,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM66","iata":"","local":"NM66","name":"Poco Loco Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Pie Town","elevation_ft":7420,"latitude":34.41519927978516,"longitude":-108.0770034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV98","iata":"","local":"NV98","name":"Caas Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Pahrump","elevation_ft":2800,"latitude":36.150299072265625,"longitude":-115.9000015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT54","iata":"","local":"UT54","name":"Crystal Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Leeds","elevation_ft":3671,"latitude":37.253299713134766,"longitude":-113.33399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO20","iata":"","local":"CO20","name":"Flying W Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cedaredge","elevation_ft":6885,"latitude":38.86249923706055,"longitude":-107.8209991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CO6","iata":"","local":"0CO6","name":"Flying M & M Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Norwood","elevation_ft":8000,"latitude":38.2193984985,"longitude":-108.212997437,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4500,"width_ft":150,"surface":"T"},{"id":"10/28","length_ft":4000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT90","iata":"","local":"UT90","name":"CAVOK Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Wellsville","elevation_ft":5155,"latitude":41.585369,"longitude":-111.9037,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":917,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11AZ","iata":"","local":"11AZ","name":"Whetstone Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Huachuca City","elevation_ft":4250,"latitude":31.683588,"longitude":-110.290053,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3850,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CL3","iata":"","local":"0CL3","name":"John Nichols Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Jamul","elevation_ft":490,"latitude":32.633457,"longitude":-116.890565,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2036,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ31","iata":"","local":"AZ31","name":"Serene Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Maricopa","elevation_ft":1456,"latitude":32.996700286865234,"longitude":-112.27200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3960,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ45","iata":"","local":"AZ45","name":"China Peak Observatory Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Klondyke","elevation_ft":4800,"latitude":32.72919845581055,"longitude":-110.2959976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4500,"width_ft":150,"surface":"T"},{"id":"04/22","length_ft":3100,"width_ft":125,"surface":"T"},{"id":"12/30","length_ft":1650,"width_ft":120,"surface":"T"},{"id":"15/33","length_ft":1950,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50AZ","iata":"","local":"50AZ","name":"Rocky Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Rocky Ridge","elevation_ft":5946,"latitude":36.05970001220703,"longitude":-110.58799743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":45,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM88","iata":"","local":"NM88","name":"Skywagon Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Bosque","elevation_ft":4770,"latitude":34.54330063,"longitude":-106.7600021,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1100,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT00","iata":"","local":"UT00","name":"Swains Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Alton","elevation_ft":7780,"latitude":37.472198486328125,"longitude":-112.62200164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT74","iata":"","local":"UT74","name":"Fry Canyon Field","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Hite","elevation_ft":5372,"latitude":37.6483,"longitude":-110.167,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3160,"width_ft":120,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ26","iata":"","local":"AZ26","name":"Evelyn Field","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Palominas","elevation_ft":4242,"latitude":31.368882,"longitude":-110.127468,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3120,"width_ft":50,"surface":"T"},{"id":"08/26","length_ft":2400,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ63","iata":"","local":"AZ63","name":"Twin Hawks Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Redrock","elevation_ft":2290,"latitude":32.528027,"longitude":-111.195974,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":75,"surface":"D"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ64","iata":"","local":"AZ64","name":"Rio Vista Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Wickenburg","elevation_ft":2225,"latitude":33.952301025390625,"longitude":-112.68699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AZ03","iata":"","local":"AZ03","name":"Cliff Dwellers Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Marble Canyon","elevation_ft":4217,"latitude":36.734095,"longitude":-111.753053,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3820,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO27","iata":"","local":"CO27","name":"Tanner Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cortez","elevation_ft":6640,"latitude":37.46780014038086,"longitude":-108.66500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM91","iata":"","local":"NM91","name":"High Lonesome Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Fence Lake","elevation_ft":7474,"latitude":34.62229919,"longitude":-108.7900009,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT47","iata":"","local":"UT47","name":"Grassy Meadows/Sky Ranch Landowners Assn Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Hurricane","elevation_ft":3350,"latitude":37.1018981934,"longitude":-113.314002991,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT82","iata":"","local":"UT82","name":"Beryl Junction Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Beryl","elevation_ft":5181,"latitude":37.709999084472656,"longitude":-113.64600372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4910,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CO0","iata":"","local":"3CO0","name":"Sky Island Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":5300,"latitude":38.738329,"longitude":-108.000614,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2500,"width_ft":40,"surface":"G"},{"id":"12/30","length_ft":2000,"width_ft":30,"surface":"G"},{"id":"18/36","length_ft":2900,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO47","iata":"","local":"CO47","name":"Goldys Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Gypsum","elevation_ft":6720,"latitude":39.599998,"longitude":-106.973999,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT03","iata":"","local":"UT03","name":"Hite Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Hite","elevation_ft":3840,"latitude":37.894702,"longitude":-110.379124,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT75","iata":"","local":"UT75","name":"Mineral Canyon Strip","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":3900,"latitude":38.5315831779,"longitude":-109.995889664,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CO8","iata":"","local":"4CO8","name":"Kelgun Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Castle Rock","elevation_ft":6800,"latitude":39.30690002441406,"longitude":-104.81600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9CO8","iata":"","local":"9CO8","name":"Bijou Bottom Strip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Kiowa","elevation_ft":6000,"latitude":39.276683,"longitude":-104.342093,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1400,"width_ft":40,"surface":"T"},{"id":"15/33","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD23","iata":"","local":"CD23","name":"Aero Bear Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Calhan","elevation_ft":6300,"latitude":39.19829940795898,"longitude":-104.3290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2150,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22UT","iata":"","local":"22UT","name":"Larkspur Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Big Water","elevation_ft":0,"latitude":37.025837,"longitude":-111.629156,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":28,"surface":"A"},{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44CO","iata":"","local":"44CO","name":"Redlands Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6100,"latitude":38.839885,"longitude":-107.792802,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2640,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD32","iata":"","local":"CD32","name":"Castle Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Lake City","elevation_ft":9300,"latitude":37.90919876098633,"longitude":-107.3499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3200,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO89","iata":"","local":"CO89","name":"Barber Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Delta","elevation_ft":5050,"latitude":38.77280044555664,"longitude":-108.04399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT15","iata":"","local":"UT15","name":"Flying Cal Ute Rancheros Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Paragonah","elevation_ft":5764,"latitude":37.9286003112793,"longitude":-112.7689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":5280,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KS8","iata":"","local":"2KS8","name":"Vonada Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Sylvan Grove","elevation_ft":1629,"latitude":39.11669921875,"longitude":-98.40029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MO9","iata":"","local":"4MO9","name":"Friends Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lone Jack","elevation_ft":1100,"latitude":38.893287,"longitude":-94.107277,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54KS","iata":"","local":"54KS","name":"Michael Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Wellsville","elevation_ft":1020,"latitude":38.80279922485352,"longitude":-95.11270141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM56","iata":"","local":"NM56","name":"Mystic Bluffs Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Ramah","elevation_ft":6980,"latitude":35.1652984619,"longitude":-108.458999634,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2870,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CO1","iata":"","local":"3CO1","name":"Cridler Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Hotchkiss","elevation_ft":6460,"latitude":38.849516,"longitude":-107.832739,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2600,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4CO0","iata":"","local":"4CO0","name":"Glen-Aspen Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Carbondale","elevation_ft":6835,"latitude":39.389609,"longitude":-107.163722,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3165,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD01","iata":"","local":"CD01","name":"Lowe Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Cotopaxi","elevation_ft":6200,"latitude":38.39830017089844,"longitude":-105.62000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO43","iata":"","local":"CO43","name":"Pinyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Glade Park","elevation_ft":6980,"latitude":39.00279998779297,"longitude":-108.70999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3400,"width_ft":90,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD69","iata":"","local":"CD69","name":"Morning Shadows Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"South Fork","elevation_ft":8300,"latitude":37.74029922485352,"longitude":-106.5260009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7CO0","iata":"","local":"7CO0","name":"Parkland Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Erie","elevation_ft":5050,"latitude":40.07170104980469,"longitude":-105.03399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4200,"width_ft":50,"surface":"A"},{"id":"17/35","length_ft":2000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NE6","iata":"","local":"2NE6","name":"Coppersmith Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Grainton","elevation_ft":3240,"latitude":40.92079925537109,"longitude":-101.2969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MO2","iata":"","local":"4MO2","name":"Newcomb Hereford Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lancaster","elevation_ft":850,"latitude":40.55839920043945,"longitude":-92.44190216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IS9","iata":"","local":"4IS9","name":"Weidner Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bunker Hill","elevation_ft":667,"latitude":39.085899353027344,"longitude":-89.95890045166016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2769,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE5","iata":"","local":"3TE5","name":"Stamps Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Panhandle","elevation_ft":3445,"latitude":35.33060073852539,"longitude":-101.38500213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":18,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TX1","iata":"","local":"3TX1","name":"Paradise Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Frankston","elevation_ft":345,"latitude":32.082431,"longitude":-95.445039,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CO2","iata":"CSE","local":"0CO2","name":"Crested Butte Airpark","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Crested Butte","elevation_ft":8980,"latitude":38.851918,"longitude":-106.928341,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV08","iata":"","local":"NV08","name":"Petan Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Mountain City","elevation_ft":5616,"latitude":41.73799896240234,"longitude":-116.21600341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":7500,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV67","iata":"","local":"NV67","name":"Pilot Creek Ranches Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Montello","elevation_ft":4980,"latitude":41.11579895019531,"longitude":-114.11399841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":25,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY32","iata":"","local":"WY32","name":"Circle B Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cokeville","elevation_ft":6524,"latitude":42.094206,"longitude":-110.871545,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":36,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD02","iata":"","local":"CD02","name":"Skyote Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Steamboat Springs","elevation_ft":8200,"latitude":40.757999420166016,"longitude":-106.97200012207033,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD15","iata":"","local":"CD15","name":"Schantz Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Simla","elevation_ft":5870,"latitude":39.295794,"longitude":-104.12178,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CO1","iata":"","local":"6CO1","name":"Burnham Field","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Wellington","elevation_ft":5615,"latitude":40.78139877319336,"longitude":-104.91699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7CO8","iata":"","local":"7CO8","name":"West Pueblo Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo West","elevation_ft":5135,"latitude":38.36330032348633,"longitude":-104.73799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1300,"width_ft":30,"surface":"D"},{"id":"14/32","length_ft":2950,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD20","iata":"","local":"CD20","name":"Sprague Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Loveland","elevation_ft":5603,"latitude":40.47499847412109,"longitude":-105.22000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1750,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CO8","iata":"","local":"1CO8","name":"Everitt Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Parker","elevation_ft":6295,"latitude":39.52920150756836,"longitude":-104.65799713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NE7","iata":"","local":"6NE7","name":"Lee Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Bartley","elevation_ft":2450,"latitude":40.24440002441406,"longitude":-100.33799743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2100,"width_ft":125,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64MO","iata":"","local":"64MO","name":"Booze Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"St Joseph","elevation_ft":794,"latitude":39.66529846191406,"longitude":-95.01329803466795,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3260,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CD45","iata":"","local":"CD45","name":"Flyin' B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Elizabeth","elevation_ft":6720,"latitude":39.32329940795898,"longitude":-104.572998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2100,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4KS9","iata":"","local":"4KS9","name":"Dinkel Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Victoria","elevation_ft":1900,"latitude":38.83395,"longitude":-99.062875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2KS9","iata":"","local":"2KS9","name":"Starshire Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Topeka","elevation_ft":990,"latitude":38.900001525878906,"longitude":-95.58360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NE1","iata":"","local":"4NE1","name":"Mc Millan Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Milburn","elevation_ft":2500,"latitude":41.7541999817,"longitude":-99.7546005249,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":60,"surface":"T"},{"id":"12/30","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5KS8","iata":"","local":"5KS8","name":"Jack Poore Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Mc Donald","elevation_ft":3330,"latitude":39.81809997558594,"longitude":-101.3479995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61MU","iata":"","local":"61MU","name":"Farris Strip","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Faucett","elevation_ft":1054,"latitude":39.58819961547852,"longitude":-94.78379821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TS9","iata":"","local":"3TS9","name":"Oak Glen Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cooper","elevation_ft":430,"latitude":33.37929916381836,"longitude":-95.60359954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XA2","iata":"","local":"2XA2","name":"Knape Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Danbury","elevation_ft":20,"latitude":29.220399856567383,"longitude":-95.31089782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TS0","iata":"","local":"8TS0","name":"Hamilton Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Freer","elevation_ft":698,"latitude":27.553545,"longitude":-98.734606,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS94","iata":"","local":"TS94","name":"Rancho Buena Vista Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bay View","elevation_ft":20,"latitude":26.25119972229004,"longitude":-97.30079650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS94","iata":"","local":"XS94","name":"Corralitos Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Ygnacio","elevation_ft":360,"latitude":27.110988,"longitude":-99.423323,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5418,"width_ft":58,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CO18","iata":"","local":"CO18","name":"Chaparral Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Deer Trail","elevation_ft":5930,"latitude":39.464001,"longitude":-104.258003,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3300,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":4000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CD2","iata":"","local":"0CD2","name":"Foxx Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Yoder","elevation_ft":5800,"latitude":38.652500152600005,"longitude":-104.23400116,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":5000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6KS2","iata":"","local":"6KS2","name":"Stevenson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Selden","elevation_ft":2940,"latitude":39.44169998168945,"longitude":-100.62999725341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CO5","iata":"","local":"2CO5","name":"Edenway Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Pueblo","elevation_ft":4970,"latitude":38.347198486328125,"longitude":-104.63200378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MO4","iata":"","local":"4MO4","name":"Liberty Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Liberty","elevation_ft":720,"latitude":39.21670150756836,"longitude":-94.33360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2400,"width_ft":36,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5KS1","iata":"","local":"5KS1","name":"Threshing Bee Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"McLouth","elevation_ft":1150,"latitude":39.191986,"longitude":-95.215931,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07TA","iata":"","local":"07TA","name":"Salaika Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Danbury","elevation_ft":30,"latitude":29.240519,"longitude":-95.344658,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2204,"width_ft":125,"surface":"T"},{"id":"H1","length_ft":200,"width_ft":200,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TE0","iata":"","local":"6TE0","name":"Skalitsky Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Edcouch","elevation_ft":60,"latitude":26.29030036926269,"longitude":-97.94940185546876,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":150,"surface":"T"},{"id":"17/35","length_ft":1350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE2","iata":"","local":"7TE2","name":"Cage Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Falfurrias","elevation_ft":148,"latitude":27.105899810791016,"longitude":-98.20580291748048,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4100,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE32","iata":"","local":"TE32","name":"Rancho Blanco Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Laredo","elevation_ft":385,"latitude":27.3085994720459,"longitude":-99.4813995361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28TX","iata":"","local":"28TX","name":"Lehman Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Vernon","elevation_ft":1275,"latitude":34.085899353027344,"longitude":-99.4551010131836,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35TX","iata":"","local":"35TX","name":"Flying B Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1750,"latitude":32.483972,"longitude":-99.825912,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TA7","iata":"","local":"3TA7","name":"Jim Sears Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paradise","elevation_ft":900,"latitude":33.140104,"longitude":-97.804184,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TX2","iata":"","local":"3TX2","name":"Flying S Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Justin","elevation_ft":780,"latitude":33.0806999206543,"longitude":-97.3488998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3XA0","iata":"","local":"3XA0","name":"Drennan Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Grandview","elevation_ft":726,"latitude":32.313889,"longitude":-97.231111,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1TE9","iata":"","local":"1TE9","name":"Rmr Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Franklin","elevation_ft":420,"latitude":31.271900177001957,"longitude":-96.43920135498048,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1563,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2XS5","iata":"","local":"2XS5","name":"Cross Triangle Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Twin Sisters","elevation_ft":1420,"latitude":30.0104999542,"longitude":-98.4253005981,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3TE1","iata":"","local":"3TE1","name":"Gum Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dayton","elevation_ft":53,"latitude":29.95159912109375,"longitude":-94.90440368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0TS5","iata":"","local":"0TS5","name":"Lake Bay Gall Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cleveland","elevation_ft":230,"latitude":30.4419002532959,"longitude":-95.1863021850586,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3200,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24XA","iata":"","local":"24XA","name":"Cross-B Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":530,"latitude":29.320969,"longitude":-98.370294,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS69","iata":"","local":"TS69","name":"Barronena East Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hebbronville","elevation_ft":576,"latitude":27.482691,"longitude":-98.659915,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS56","iata":"","local":"XS56","name":"Flying W Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Raymondville","elevation_ft":30,"latitude":26.450571,"longitude":-97.791011,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":85,"surface":"T"},{"id":"15/33","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45XA","iata":"","local":"","name":"Beulah Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seguin","elevation_ft":587,"latitude":29.4958,"longitude":-98.0569,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46TX","iata":"","local":"46TX","name":"Phillips Corporation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Angleton","elevation_ft":30,"latitude":29.15080070495605,"longitude":-95.49520111083984,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48TS","iata":"","local":"48TS","name":"Fox Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":650,"latitude":29.6677,"longitude":-98.198898,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA44","iata":"","local":"TA44","name":"Puesta del Sol Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hebbronville","elevation_ft":448,"latitude":27.076169,"longitude":-98.601476,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS66","iata":"","local":"XS66","name":"Rabb Dusting Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Robstown","elevation_ft":83,"latitude":27.80389976501465,"longitude":-97.74359893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":35,"surface":"G"},{"id":"18/36","length_ft":2200,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE7","iata":"","local":"7TE7","name":"Moore Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Edinburg","elevation_ft":219,"latitude":26.383699,"longitude":-98.333603,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":300,"surface":"C"},{"id":"13/31","length_ft":5150,"width_ft":300,"surface":"C"},{"id":"18/36","length_ft":5000,"width_ft":300,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE87","iata":"","local":"TE87","name":"Magee Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Portland","elevation_ft":35,"latitude":27.91580009460449,"longitude":-97.32029724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE62","iata":"","local":"TE62","name":"High Man Tower Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Robstown","elevation_ft":90,"latitude":27.85429954528809,"longitude":-97.68229675292967,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":3300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS64","iata":"","local":"XS64","name":"Farm Services Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rio Hondo","elevation_ft":25,"latitude":26.249000549316406,"longitude":-97.56500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89TE","iata":"","local":"T89","name":"Lajitas International Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lajitas","elevation_ft":2630,"latitude":29.278,"longitude":-103.686997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX56","iata":"","local":"TX56","name":"Douglass Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Freer","elevation_ft":680,"latitude":27.715499877929688,"longitude":-98.70249938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3700,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AZ9","iata":"","local":"2AZ9","name":"Ethnos Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Mcneal","elevation_ft":4200,"latitude":31.606119,"longitude":-109.654263,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4300,"width_ft":100,"surface":"G"},{"id":"17/35","length_ft":3060,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AN01","iata":"","local":"AN01","name":"Av Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AZ","municipality":"Klondyke","elevation_ft":3500,"latitude":32.81669998168945,"longitude":-110.31700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM08","iata":"","local":"NM08","name":"Solo Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Deming","elevation_ft":4200,"latitude":32.262532,"longitude":-107.393332,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":70,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM64","iata":"","local":"NM64","name":"Diamond A Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Animas","elevation_ft":5155,"latitude":31.459365,"longitude":-108.858383,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":30,"surface":"A"},{"id":"12/30","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM70","iata":"","local":"NM70","name":"Rodeo Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Rodeo","elevation_ft":4157,"latitude":31.948484,"longitude":-109.046173,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA89","iata":"","local":"CA89","name":"Skylark Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lake Elsinore","elevation_ft":1253,"latitude":33.632272,"longitude":-117.300868,"has_tower":false,"has_beacon":false,"runways":[{"id":"11L/29R","length_ft":2575,"width_ft":100,"surface":"G"},{"id":"11R/29L","length_ft":2701,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6CA5","iata":"","local":"6CA5","name":"Valley Vista Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Yucca Valley","elevation_ft":3370,"latitude":34.33720016479492,"longitude":-116.58000183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":40,"surface":"-"},{"id":"18/36","length_ft":3000,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CN23","iata":"","local":"CN23","name":"Harvard Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Yermo","elevation_ft":1825,"latitude":34.961700439453125,"longitude":-116.6750030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2640,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM69","iata":"","local":"NM69","name":"Casas Adobes Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Mimbres","elevation_ft":5800,"latitude":32.81420135498047,"longitude":-107.94000244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3400,"width_ft":30,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99CL","iata":"","local":"99CL","name":"El Mirage Field Adelanto Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"El Mirage","elevation_ft":2865,"latitude":34.62438,"longitude":-117.600702,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6386,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRHV","iata":"RHV","local":"RHV","name":"Reid-Hillview Airport of Santa Clara County","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"San Jose","elevation_ft":135,"latitude":37.332901001,"longitude":-121.819000244,"has_tower":true,"has_beacon":true,"runways":[{"id":"13L/31R","length_ft":3100,"width_ft":75,"surface":"A"},{"id":"13R/31L","length_ft":3099,"width_ft":75,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":119.8},{"id":"ATIS","frequency_mhz":125.2},{"id":"LCL/P","frequency_mhz":126.1}],"has_metar":false,"public":true},{"icao":"OG10","iata":"","local":"OG10","name":"Mt Hope Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Lebanon","elevation_ft":400,"latitude":44.557405,"longitude":-122.82717,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG36","iata":"","local":"OG36","name":"Munson Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Junction City","elevation_ft":302,"latitude":44.25040054321289,"longitude":-123.22799682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":825,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR45","iata":"","local":"OR45","name":"West Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Coburg","elevation_ft":378,"latitude":44.19710159301758,"longitude":-123.05599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1100,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG20","iata":"","local":"OG20","name":"Fairways Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon City","elevation_ft":525,"latitude":45.321651,"longitude":-122.55184,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":160,"surface":"T"},{"id":"16/34","length_ft":2900,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7CA1","iata":"","local":"7CA1","name":"Abraham Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lucerne Valley","elevation_ft":2850,"latitude":34.41469955444336,"longitude":-116.6230010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4000,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR65","iata":"","local":"OR65","name":"Eagle Nest Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Estacada","elevation_ft":425,"latitude":45.35480117797852,"longitude":-122.34600067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR87","iata":"","local":"OR87","name":"Blue Skies Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":200,"latitude":44.966111,"longitude":-122.9225,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1345,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA80","iata":"","local":"WA80","name":"McClellan Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Amboy","elevation_ft":840,"latitude":45.893712,"longitude":-122.548327,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CN8","iata":"","local":"2CN8","name":"Lake Arrowhead Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lake Arrowhead","elevation_ft":4610,"latitude":34.304167,"longitude":-117.151389,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3170,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73CL","iata":"","local":"73CL","name":"Julian Hinds Pump Plant Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hayfield","elevation_ft":1335,"latitude":33.698066,"longitude":-115.638185,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00CA","iata":"","local":"00CA","name":"Goldstone (GTS) Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Barstow","elevation_ft":3038,"latitude":35.35474,"longitude":-116.885329,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6000,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00CL","iata":"","local":"00CL","name":"Williams Ag Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Biggs","elevation_ft":87,"latitude":39.427188,"longitude":-121.763427,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3517,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38CL","iata":"","local":"38CL","name":"Riego Flight Strip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Verona","elevation_ft":21,"latitude":38.75410079956055,"longitude":-121.56300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2380,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR22","iata":"","local":"OR22","name":"Roppair Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Albany","elevation_ft":247,"latitude":44.61930084228516,"longitude":-123.03199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR57","iata":"","local":"OR57","name":"Walker Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Creswell","elevation_ft":580,"latitude":43.86869812011719,"longitude":-123.03399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1743,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR34","iata":"","local":"OR34","name":"Whippet Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sisters","elevation_ft":3040,"latitude":44.322703,"longitude":-121.431506,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2450,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR39","iata":"","local":"OR39","name":"Flying Tom Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":300,"latitude":44.65760040283203,"longitude":-123.21199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86CL","iata":"","local":"86CL","name":"Ernst Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Hemet","elevation_ft":2860,"latitude":33.597198486328125,"longitude":-116.88300323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2988,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAPV","iata":"APV","local":"APV","name":"Apple Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Apple Valley","elevation_ft":3062,"latitude":34.575298309299995,"longitude":-117.185997009,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4100,"width_ft":60,"surface":"A"},{"id":"18/36","length_ft":6498,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMIT","iata":"MIT","local":"MIT","name":"Shafter Airport - Minter Field","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Shafter","elevation_ft":424,"latitude":35.507401,"longitude":-119.192002,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3680,"width_ft":60,"surface":"A"},{"id":"12/30","length_ft":4501,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":2972,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CL0","iata":"","local":"0CL0","name":"Yosemite Hidden Lake Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Raymond","elevation_ft":500,"latitude":37.11800003049999,"longitude":-119.913002014,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3720,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3CA9","iata":"","local":"3CA9","name":"Clark Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Soledad","elevation_ft":276,"latitude":36.36330032348633,"longitude":-121.30999755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR54","iata":"","local":"OR54","name":"Winn Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":205,"latitude":44.5984992980957,"longitude":-123.20700073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG29","iata":"","local":"OG29","name":"Mc Kinnon Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sandy","elevation_ft":658,"latitude":45.4306983948,"longitude":-122.241996765,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL05","iata":"","local":"OL05","name":"Skydive Oregon Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Molalla","elevation_ft":360,"latitude":45.145363,"longitude":-122.618544,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR81","iata":"","local":"OR81","name":"Olinger Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Hillsboro","elevation_ft":185,"latitude":45.553261,"longitude":-123.021075,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CA97","iata":"","local":"CA97","name":"Christy Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Santa Cruz Island","elevation_ft":250,"latitude":34.01888,"longitude":-119.851625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2507,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KKIC","iata":"KIC","local":"KIC","name":"Mesa Del Rey Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"King City","elevation_ft":370,"latitude":36.2280006409,"longitude":-121.122001648,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":4479,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CN4","iata":"","local":"2CN4","name":"Wonderful Pistachios & Almonds Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Lost Hills","elevation_ft":617,"latitude":35.664623,"longitude":-119.893518,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5002,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLSN","iata":"LSN","local":"LSN","name":"Los Banos Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Los Banos","elevation_ft":121,"latitude":37.06290054,"longitude":-120.8690033,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3801,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0CN1","iata":"","local":"0CN1","name":"Fiorini Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Delhi","elevation_ft":140,"latitude":37.452178,"longitude":-120.764758,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2229,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMPI","iata":"RMY","local":"MPI","name":"Mariposa Yosemite Airport","category":"small_airport","iso_country":"US","iso_region":"US-CA","municipality":"Mariposa","elevation_ft":2254,"latitude":37.5108985901,"longitude":-120.040000916,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3305,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG01","iata":"","local":"OG01","name":"Dunning Vineyards Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":240,"latitude":44.61464,"longitude":-123.234839,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG16","iata":"","local":"OG16","name":"Jim's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Halsey","elevation_ft":275,"latitude":44.382598876953125,"longitude":-123.21299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR47","iata":"","local":"OR47","name":"Strauch Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Junction City","elevation_ft":335,"latitude":44.188434,"longitude":-123.189916,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR52","iata":"","local":"OR52","name":"Venell Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":246,"latitude":44.4734992980957,"longitude":-123.3030014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2350,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR27","iata":"","local":"OR27","name":"Chadwick Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Banks","elevation_ft":670,"latitude":45.63320159912109,"longitude":-123.16799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR86","iata":"","local":"OR86","name":"Gilmour Ag Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Jefferson","elevation_ft":244,"latitude":44.7554016113,"longitude":-123.04699707,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA66","iata":"","local":"WA66","name":"Spring Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"White Salmon","elevation_ft":475,"latitude":45.808248,"longitude":-121.494758,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1550,"width_ft":38,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR90","iata":"","local":"OR90","name":"Lafayette Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Lafayette","elevation_ft":160,"latitude":45.24430084228516,"longitude":-123.12899780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN59","iata":"","local":"WN59","name":"Nelsons Nitch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Onalaska","elevation_ft":520,"latitude":46.53760147,"longitude":-122.7180023,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1850,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN65","iata":"","local":"WN65","name":"My Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Elma","elevation_ft":80,"latitude":46.97523,"longitude":-123.476737,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN64","iata":"","local":"WN64","name":"J K D Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":1575,"latitude":46.97430038452149,"longitude":-120.46199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CZMT","iata":"ZMT","local":"","name":"Masset Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Masset","elevation_ft":25,"latitude":54.02750015258789,"longitude":-132.125,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4924,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PANT","iata":"ANN","local":"ANN","name":"Annette Island Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Metlakatla","elevation_ft":119,"latitude":55.037026,"longitude":-131.572695,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5709,"width_ft":150,"surface":"G"},{"id":"12/30","length_ft":7493,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10AK","iata":"","local":"10AK","name":"Hunt Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":200,"latitude":61.592052,"longitude":-149.677598,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":800,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL99","iata":"","local":"OL99","name":"Lookout Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Homer","elevation_ft":1310,"latitude":59.703487,"longitude":-151.496787,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":840,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAGS","iata":"GST","local":"GST","name":"Gustavus Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Gustavus","elevation_ft":35,"latitude":58.4253006,"longitude":-135.7070007,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3010,"width_ft":60,"surface":"A"},{"id":"11/29","length_ft":6720,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK76","iata":"","local":"AK76","name":"East Alsek River Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Yakutat","elevation_ft":20,"latitude":59.126338,"longitude":-138.409216,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":10,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK31","iata":"","local":"AK31","name":"Swift Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Mccarthy","elevation_ft":1225,"latitude":61.41120147705078,"longitude":-143.00100708007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFCB","iata":"NCN","local":"C05","name":"Chenega Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chenega","elevation_ft":72,"latitude":60.077602,"longitude":-147.99468,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14AK","iata":"","local":"14AK","name":"Four Corners Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":300,"latitude":61.60150146484375,"longitude":-149.2480010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70AK","iata":"","local":"70AK","name":"Bangerter Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":250,"latitude":60.518313,"longitude":-150.952878,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK24","iata":"","local":"AK24","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chugiak","elevation_ft":420,"latitude":61.41820145,"longitude":-149.4389954,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":22,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7AK2","iata":"","local":"7AK2","name":"Snettisham Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Snettisham","elevation_ft":14,"latitude":58.134516,"longitude":-133.729105,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":3000,"width_ft":270,"surface":"W"},{"id":"15/33","length_ft":2500,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYSQ","iata":"","local":"","name":"Atlin Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Atlin","elevation_ft":2348,"latitude":59.576698,"longitude":-133.669006,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3950,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYHT","iata":"YHT","local":"","name":"Haines Junction Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Haines Junction","elevation_ft":2150,"latitude":60.7892,"longitude":-137.546005,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK6","iata":"","local":"0AK6","name":"Victory Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Victory Bible Camp","elevation_ft":1800,"latitude":61.80108,"longitude":-147.945156,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":70,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK0","iata":"","local":"2AK0","name":"MacKenzie Country Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":120,"latitude":61.255901,"longitude":-149.975006,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1400,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AK2","iata":"","local":"6AK2","name":"Sleepers Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":125,"latitude":61.251579,"longitude":-149.966125,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK8","iata":"","local":"8AK8","name":"North Cubs Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":350,"latitude":61.6300010681,"longitude":-149.682998657,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA10","iata":"","local":"AA10","name":"Eagles Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":330,"latitude":61.532891,"longitude":-149.698768,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CFQ5","iata":"","local":"CFQ5","name":"Silver City Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Kluane Lake","elevation_ft":2570,"latitude":61.030402,"longitude":-138.404903,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK30","iata":"","local":"AK30","name":"Strawberry Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cordova","elevation_ft":50,"latitude":60.391153,"longitude":-146.097464,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK97","iata":"BSW","local":"AK97","name":"Boswell Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Boswell Bay","elevation_ft":230,"latitude":60.4230995178,"longitude":-146.145996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2612,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20AK","iata":"","local":"20AK","name":"Owen Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":150,"latitude":61.504079,"longitude":-149.895591,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13AK","iata":"","local":"13AK","name":"Satterbergs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Houston","elevation_ft":350,"latitude":61.65470123291016,"longitude":-149.89999389648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":980,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16AK","iata":"","local":"16AK","name":"Gattis Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":320,"latitude":61.596643,"longitude":-149.339926,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47AK","iata":"","local":"47AK","name":"Highland Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Eagle River","elevation_ft":650,"latitude":61.29249954223633,"longitude":-149.5330047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK25","iata":"","local":"AK25","name":"Piper Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":350,"latitude":61.61750030517578,"longitude":-149.61500549316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK5","iata":"","local":"9AK5","name":"Sky Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":340,"latitude":61.11650085449219,"longitude":-149.81900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK46","iata":"","local":"AK46","name":"Abi Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":750,"latitude":61.62879943847656,"longitude":-149.04299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1000,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24AK","iata":"","local":"24AK","name":"Toad Lake Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Meadow Lakes","elevation_ft":100,"latitude":61.616313,"longitude":-149.706183,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28AK","iata":"","local":"28AK","name":"Gates Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Glacier View","elevation_ft":1875,"latitude":61.808899,"longitude":-147.858993,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2175,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK7","iata":"","local":"9AK7","name":"Cubdivision Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":250,"latitude":61.58980178833008,"longitude":-149.81700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1200,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK6","iata":"","local":"9AK6","name":"Leisurewood Airstrip Owners Assoc Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":366,"latitude":61.62409973144531,"longitude":-149.6479949951172,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK29","iata":"","local":"AK29","name":"Reids Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Houston","elevation_ft":246,"latitude":61.61259841918945,"longitude":-149.8520050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK50","iata":"","local":"AK50","name":"Sky Ranch At Pioneer Peak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":120,"latitude":61.55459976196289,"longitude":-149.1439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK63","iata":"","local":"AK63","name":"Pat-Mar Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":246,"latitude":61.588600158691406,"longitude":-149.14300537109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK85","iata":"","local":"AK85","name":"Birchwater Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":110,"latitude":61.482333,"longitude":-149.763986,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PASP","iata":"SMU","local":"SMU","name":"Sheep Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sheep Mountain","elevation_ft":2750,"latitude":61.8120002747,"longitude":-147.507003784,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2270,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA06","iata":"","local":"AA06","name":"Sixmile Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":85,"latitude":61.28867,"longitude":-149.808884,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":35,"surface":"G"},{"id":"07W/25W","length_ft":4000,"width_ft":50,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK2","iata":"","local":"8AK2","name":"Carty's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nikiski","elevation_ft":150,"latitude":60.699779,"longitude":-151.294699,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK2","iata":"","local":"3AK2","name":"Niklason Lake Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":410,"latitude":61.62749862670898,"longitude":-149.28700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":700,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK27","iata":"","local":"AK27","name":"Valley Flying Crown Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":400,"latitude":61.6426010131836,"longitude":-149.62399291992188,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK44","iata":"","local":"AK44","name":"Talkeetna Village Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":346,"latitude":62.319441,"longitude":-150.113475,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK53","iata":"","local":"74AK","name":"Maud Road Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":222,"latitude":61.582298,"longitude":-148.996994,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1227,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK86","iata":"","local":"AK86","name":"Kramer Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":150,"latitude":61.573539,"longitude":-149.91135,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":850,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK59","iata":"","local":"AK59","name":"King Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sutton","elevation_ft":1350,"latitude":61.790695,"longitude":-148.352981,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36AK","iata":"","local":"36AK","name":"Flyway Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":150,"latitude":61.346437,"longitude":-150.069781,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":75,"surface":"T"},{"id":"17W/35W","length_ft":2100,"width_ft":100,"surface":"W"},{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AK6","iata":"","local":"5AK6","name":"Colberg Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":125,"latitude":61.55699920654297,"longitude":-149.26800537109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9AK8","iata":"","local":"9AK8","name":"Wolf Track Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":90,"latitude":61.624698638916016,"longitude":-149.6820068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK12","iata":"","local":"AK12","name":"Flying Crown Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":47,"latitude":61.10660171508789,"longitude":-149.86399841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1078,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK6","iata":"","local":"3AK6","name":"B & B Boys Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":300,"latitude":61.592949,"longitude":-149.268939,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":700,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA05","iata":"","local":"AA25","name":"Shelby Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":40,"latitude":61.507867,"longitude":-149.078925,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":988,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA30","iata":"","local":"AA30","name":"Trio Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Houston","elevation_ft":315,"latitude":61.648189,"longitude":-149.870831,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1285,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK47","iata":"","local":"AK47","name":"Shawn Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":300,"latitude":61.58570098876953,"longitude":-149.56300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK65","iata":"","local":"AK65","name":"Green's Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":300,"latitude":61.597900390625,"longitude":-149.3509979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK95","iata":"","local":"AK95","name":"Twin Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":185,"latitude":61.569968,"longitude":-149.778671,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4AK6","iata":"","local":"4AK6","name":"Wolf Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":572,"latitude":61.64099884033203,"longitude":-149.28900146484375,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3800,"width_ft":40,"surface":"A"},{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"G"},{"id":"E/W","length_ft":2800,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AK7","iata":"","local":"6AK7","name":"Rainbow Heights Estates Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":270,"latitude":61.57385,"longitude":-149.641492,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK54","iata":"","local":"AK54","name":"Stro's Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":340,"latitude":61.65710067749024,"longitude":-149.3260040283203,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":900,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK66","iata":"","local":"AK66","name":"Hunter Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":100,"latitude":61.458296,"longitude":-148.798227,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK89","iata":"","local":"AK89","name":"Black Spruce Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Houston","elevation_ft":350,"latitude":61.652322,"longitude":-149.875059,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK93","iata":"","local":"AK93","name":"Grouse Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":535,"latitude":61.65520095825195,"longitude":-149.2729949951172,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA33","iata":"","local":"AA33","name":"Gus Landing","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Houston","elevation_ft":120,"latitude":61.60415,"longitude":-149.770119,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA00","iata":"","local":"AA00","name":"Shump Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":1670,"latitude":62.51015,"longitude":-149.926717,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":650,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK1","iata":"","local":"0AK1","name":"Anderson Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":463,"latitude":61.616966,"longitude":-149.320893,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":2800,"width_ft":500,"surface":"W"},{"id":"08/26","length_ft":1800,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21AK","iata":"","local":"21AK","name":"Montana Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":250,"latitude":62.082611,"longitude":-150.066931,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"30AK","iata":"","local":"30AK","name":"Doyle Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":50,"latitude":60.505807,"longitude":-151.260023,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK92","iata":"","local":"AK92","name":"Martin Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":820,"latitude":61.63800049,"longitude":-149.029007,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK99","iata":"","local":"AK99","name":"Grand Home Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":85,"latitude":61.446667,"longitude":-149.761111,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AK8","iata":"","local":"1AK8","name":"Talaheim Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Skwentna","elevation_ft":610,"latitude":61.67689895629883,"longitude":-151.38699340820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":950,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25AK","iata":"","local":"25AK","name":"Honeybee Lake Aero Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":200,"latitude":61.712699,"longitude":-150.066005,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":30,"surface":"G"},{"id":"15/33","length_ft":1200,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK7","iata":"","local":"3AK7","name":"Laub Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":100,"latitude":61.76559829711914,"longitude":-150.33900451660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1080,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6AK5","iata":"","local":"6AK5","name":"Fire Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":55,"latitude":61.168742,"longitude":-150.160532,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK6","iata":"","local":"8AK6","name":"Little Susitna Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Susitna Station","elevation_ft":70,"latitude":61.37189865112305,"longitude":-150.26199340820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AA09","iata":"","local":"AA09","name":"Busch Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":3984,"latitude":62.477547,"longitude":-147.775972,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2100,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK10","iata":"","local":"AK10","name":"AK-10 Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":210,"latitude":61.71721,"longitude":-150.108992,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1875,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK61","iata":"","local":"AK61","name":"Stephan Lake Lodge Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":1900,"latitude":62.69960021972656,"longitude":-148.90699768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09AK","iata":"","local":"09AK","name":"West Beaver Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":228,"latitude":61.589361,"longitude":-149.847333,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PASW","iata":"SKW","local":"SKW","name":"Skwentna Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Skwentna","elevation_ft":148,"latitude":61.9653015137,"longitude":-151.190994263,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3400,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AK6","iata":"","local":"1AK6","name":"Talachulitna River Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sketna","elevation_ft":282,"latitude":61.856262,"longitude":-151.397521,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0AK2","iata":"","local":"0AK2","name":"Yentna Bend Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":81,"latitude":61.725556,"longitude":-150.678611,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AK4","iata":"","local":"1AK4","name":"Kenai River Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Soldotna","elevation_ft":200,"latitude":60.5242,"longitude":-150.751999,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2100,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33AK","iata":"","local":"33AK","name":"Nugget Bench Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nugget Bench","elevation_ft":2010,"latitude":62.515689,"longitude":-150.945804,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1240,"width_ft":38,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40AK","iata":"","local":"40AK","name":"Sterling Air Park","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":90,"latitude":60.557236,"longitude":-150.836964,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1980,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1AK2","iata":"","local":"1AK2","name":"Crosswind Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Crosswind Lake","elevation_ft":2125,"latitude":62.4009017944336,"longitude":-146.01300048828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1160,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK3","iata":"","local":"3AK3","name":"Songlo Vista Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":825,"latitude":62.56380081176758,"longitude":-150.2209930419922,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2100,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK5","iata":"DRF","local":"3AK5","name":"Drift River Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":30,"latitude":60.5889015198,"longitude":-152.162002563,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4100,"width_ft":150,"surface":"G"},{"id":"H1","length_ft":40,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49AK","iata":"","local":"49AK","name":"Secluded Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":300,"latitude":62.025568,"longitude":-149.979058,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2800,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88AK","iata":"","local":"88AK","name":"Dutch Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":300,"latitude":60.539839,"longitude":-150.869129,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK5","iata":"","local":"8AK5","name":"Fort Crosby Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Trapper Creek","elevation_ft":650,"latitude":62.513888,"longitude":-150.265277,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK01","iata":"","local":"AK01","name":"Alaska Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":320,"latitude":60.528983,"longitude":-150.625133,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1750,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK73","iata":"","local":"AK73","name":"McGahan Industrial Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nikiski","elevation_ft":150,"latitude":60.723125,"longitude":-151.306458,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":1500,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PABM","iata":"BMX","local":"37AK","name":"Big Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Mountain","elevation_ft":663,"latitude":59.362274,"longitude":-155.260148,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4200,"width_ft":145,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3AK4","iata":"","local":"3AK4","name":"Johnson Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":102,"latitude":60.632522,"longitude":-151.337657,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1860,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44AK","iata":"","local":"44AK","name":"West Papoose Lake Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":230,"latitude":61.53340148925781,"longitude":-150.1020050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45AA","iata":"","local":"45AA","name":"Davidson Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":383,"latitude":62.1628972,"longitude":-150.5396083,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":600,"width_ft":74,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78AK","iata":"","local":"78AK","name":"C.T.S. Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":160,"latitude":61.73310089111328,"longitude":-150.5260009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK14","iata":"","local":"AK14","name":"Turinsky Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":100,"latitude":61.3512992859,"longitude":-150.089004517,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":120,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PANO","iata":"NNL","local":"5NN","name":"Nondalton Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nondalton","elevation_ft":314,"latitude":59.980201721191,"longitude":-154.8390045166,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2800,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06AK","iata":"","local":"06AK","name":"June Lake Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wasilla","elevation_ft":425,"latitude":61.627619,"longitude":-149.575331,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1750,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AK3","iata":"","local":"5AK3","name":"Airway Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"North Pole","elevation_ft":480,"latitude":64.7732009888,"longitude":-147.333999634,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2550,"width_ft":45,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83AK","iata":"","local":"83AK","name":"Tolovana Hot Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":800,"latitude":65.25650024414062,"longitude":-148.8300018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1500,"width_ft":80,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50AK","iata":"","local":"50AK","name":"Robin's Landing","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Point Mackenzie","elevation_ft":95,"latitude":61.380461,"longitude":-150.116163,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5AK0","iata":"","local":"5AK0","name":"Trading Bay Production Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Trading Bay","elevation_ft":200,"latitude":60.816338,"longitude":-151.799901,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4500,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75AK","iata":"","local":"75AK","name":"Henley Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kenai","elevation_ft":100,"latitude":60.593067,"longitude":-151.327956,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2640,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK08","iata":"","local":"AK08","name":"Thomas Strip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":190,"latitude":61.78990173339844,"longitude":-150.1060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1650,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08AK","iata":"","local":"08AK","name":"Fisher Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":200,"latitude":61.568743,"longitude":-149.725757,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07AA","iata":"","local":"07AA","name":"Pan Lake Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":357,"latitude":61.695964,"longitude":-149.954903,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2060,"width_ft":52,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0IA4","iata":"","local":"0IA4","name":"Sharar Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Mediapolis","elevation_ft":700,"latitude":41.027897,"longitude":-91.063442,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7KS4","iata":"","local":"7KS4","name":"Bent Nail Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Horton","elevation_ft":1180,"latitude":39.6333007812,"longitude":-95.439201355,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA11","iata":"","local":"IA11","name":"Too Short Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Indianola","elevation_ft":980,"latitude":41.29389953613281,"longitude":-93.66549682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA32","iata":"","local":"IA32","name":"Pierson Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Oskaloosa","elevation_ft":845,"latitude":41.325000762939,"longitude":-92.717102050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32IS","iata":"","local":"32IS","name":"Baker Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kilbourne","elevation_ft":510,"latitude":40.14061,"longitude":-89.99601,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYGQ","iata":"YGQ","local":"","name":"Geraldton Greenstone Regional Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Geraldton","elevation_ft":1144,"latitude":49.77830123901367,"longitude":-86.93939971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5007,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23MT","iata":"","local":"23MT","name":"Waterfall Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":4950,"latitude":45.65719985961914,"longitude":-111.04000091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1725,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51AK","iata":"","local":"51AK","name":"Birch Creek Landing","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Talkeetna","elevation_ft":400,"latitude":62.23883,"longitude":-150.063849,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8AK1","iata":"","local":"8AK1","name":"Jacobus Field","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Gulkana","elevation_ft":1670,"latitude":62.28030014038086,"longitude":-145.36300659179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1200,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK05","iata":"","local":"AK05","name":"Breeden Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":365,"latitude":60.54234,"longitude":-150.598612,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK39","iata":"","local":"AK39","name":"South Gasline Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Sterling","elevation_ft":381,"latitude":60.699567,"longitude":-150.176239,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK67","iata":"","local":"AK67","name":"Skid Marks Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":64,"latitude":61.73860168457031,"longitude":-150.072998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05AK","iata":"","local":"05AK","name":"Wasilla Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Palmer","elevation_ft":620,"latitude":61.66830063,"longitude":-149.1880035,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA27","iata":"","local":"IA27","name":"Antique Airfield","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Blakesburg","elevation_ft":890,"latitude":40.97779846191406,"longitude":-92.58769989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2350,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA66","iata":"","local":"6Z6","name":"Nash Field Indianola Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Indianola","elevation_ft":991,"latitude":41.303902,"longitude":-93.567703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05IL","iata":"","local":"05IL","name":"Classic Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Bonfield","elevation_ft":635,"latitude":41.156700134277344,"longitude":-88.0167007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9KY9","iata":"","local":"9KY9","name":"Paintsville-Prestonsburg-Combs Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paintsville","elevation_ft":624,"latitude":37.745743,"longitude":-82.77797,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3070,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6LL2","iata":"","local":"6LL2","name":"Young Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Viola","elevation_ft":760,"latitude":41.16450119018555,"longitude":-90.55740356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MU5","iata":"","local":"6MU5","name":"Carp Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Norborne","elevation_ft":803,"latitude":39.364317,"longitude":-93.778268,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79IS","iata":"","local":"79IS","name":"Hartwell Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Hillview","elevation_ft":427,"latitude":39.444221,"longitude":-90.557719,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3200,"width_ft":80,"surface":"T"},{"id":"N/S","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA24","iata":"","local":"IA24","name":"Green Castle Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Oxford","elevation_ft":750,"latitude":41.755001068115234,"longitude":-91.72769927978516,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WI3","iata":"","local":"1WI3","name":"Bed-Ah-Wick Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Princeton","elevation_ft":787,"latitude":43.84999847412109,"longitude":-89.1167984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD5","iata":"","local":"1SD5","name":"Drake Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"White Lake","elevation_ft":1659,"latitude":43.76860046386719,"longitude":-98.79869842529295,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYIB","iata":"YIB","local":"","name":"Atikokan Municipal Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-ON","municipality":"Atikokan","elevation_ft":1408,"latitude":48.7738990784,"longitude":-91.6386032104,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN12","iata":"","local":"MN12","name":"Robco Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Laporte","elevation_ft":1380,"latitude":47.19889831542969,"longitude":-94.752197265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":80,"surface":"T"},{"id":"15/33","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND02","iata":"","local":"ND02","name":"Ricketyback Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Aneta","elevation_ft":1510,"latitude":47.81110000610352,"longitude":-97.96009826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28II","iata":"","local":"28II","name":"Cedar Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Laconia","elevation_ft":453,"latitude":37.974700927734375,"longitude":-86.05619812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2IA9","iata":"","local":"2IA9","name":"South 80 Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Crystal Lake","elevation_ft":1210,"latitude":43.190799713134766,"longitude":-93.7707977294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IA7","iata":"","local":"7IA7","name":"Mitchell Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"New Hampton","elevation_ft":1160,"latitude":43.083402,"longitude":-92.311034,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07MN","iata":"","local":"07MN","name":"Dairyview Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hadley","elevation_ft":1680,"latitude":44.05500030517578,"longitude":-95.90950012207033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA01","iata":"","local":"IA01","name":"Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Oakland","elevation_ft":1300,"latitude":41.35139846801758,"longitude":-95.46640014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA41","iata":"","local":"IA41","name":"Laverty Field","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Indianola","elevation_ft":950,"latitude":41.41529846191406,"longitude":-93.5613021850586,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA63","iata":"","local":"IA63","name":"Edgren Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Oskaloosa","elevation_ft":840,"latitude":41.25830078125,"longitude":-92.55159759521484,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2260,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2SD4","iata":"","local":"2SD4","name":"Nicolaisen Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Mount Vernon","elevation_ft":1440,"latitude":43.68330001831055,"longitude":-98.26529693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0SD3","iata":"","local":"0SD3","name":"Bledsoe Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hoover","elevation_ft":2872,"latitude":45.26940155029297,"longitude":-103.21700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3700,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN74","iata":"","local":"MN74","name":"B & D Flyers International Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Minnesota Lake","elevation_ft":1055,"latitude":43.8305015564,"longitude":-93.84049987790002,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS28","iata":"","local":"WS28","name":"Coleman Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Portage","elevation_ft":800,"latitude":43.5536003112793,"longitude":-89.38980102539062,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS96","iata":"","local":"WS96","name":"Hughes Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Monroe","elevation_ft":1010,"latitude":42.62080001831055,"longitude":-89.76730346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA16","iata":"","local":"IA16","name":"Picayune Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Iowa City","elevation_ft":800,"latitude":41.70830154418945,"longitude":-91.5001983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA58","iata":"","local":"IA58","name":"B-8 Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Whiting","elevation_ft":1063,"latitude":42.1150016784668,"longitude":-96.1719970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1SD3","iata":"","local":"1SD3","name":"Turkey Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hurley","elevation_ft":1325,"latitude":43.23329925537109,"longitude":-97.15029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEAG","iata":"","local":"EAG","name":"Eagle Grove Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Eagle Grove","elevation_ft":1133,"latitude":42.709801,"longitude":-93.9161,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":2389,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":3500,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN39","iata":"","local":"WN39","name":"Knutson Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wyoceena","elevation_ft":875,"latitude":43.48189926147461,"longitude":-89.32009887695312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WI7","iata":"","local":"1WI7","name":"Buzzards Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Redgranite","elevation_ft":805,"latitude":44.022385,"longitude":-89.096417,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY56","iata":"","local":"MY56","name":"Robertson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hibbing","elevation_ft":1290,"latitude":47.25239944458008,"longitude":-92.8593978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA75","iata":"","local":"NA75","name":"Lill Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Bremen","elevation_ft":1560,"latitude":47.67639923095703,"longitude":-99.3904037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2640,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS12","iata":"","local":"WS12","name":"Elert Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"De Forest","elevation_ft":972,"latitude":43.26440048217773,"longitude":-89.32319641113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1978,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS51","iata":"","local":"WS51","name":"Leeward Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Soldiers Grove","elevation_ft":1055,"latitude":43.35279846191406,"longitude":-90.68099975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3791,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS91","iata":"","local":"WS91","name":"Sky Hollow Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Boscobel","elevation_ft":707,"latitude":43.20859909057617,"longitude":-90.6636962890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IA70","iata":"","local":"IA70","name":"Friesenborg & Larson Airport","category":"small_airport","iso_country":"US","iso_region":"US-IA","municipality":"Buffalo Center","elevation_ft":1220,"latitude":43.42580032348633,"longitude":-93.83580017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN50","iata":"","local":"MN50","name":"Arthur Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Gatzke","elevation_ft":1150,"latitude":48.37020111083984,"longitude":-95.80690002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI98","iata":"","local":"WI98","name":"Blackburn Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cooksville","elevation_ft":888,"latitude":42.85829925537109,"longitude":-89.19730377197266,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1350,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS15","iata":"","local":"WS15","name":"Mill House Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Wyocena","elevation_ft":820,"latitude":43.49520111083984,"longitude":-89.2654037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS33","iata":"","local":"WS33","name":"Storytown Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oregon","elevation_ft":1000,"latitude":42.90919876098633,"longitude":-89.45099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY54","iata":"","local":"MY54","name":"Cloverleaf-East Bemidji Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1445,"latitude":47.43830108642578,"longitude":-94.81220245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1CD4","iata":"","local":"1CD4","name":"Eagle Soaring Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Steam Boat Springs","elevation_ft":6600,"latitude":40.5093002319336,"longitude":-106.94300079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX79","iata":"","local":"TX79","name":"Crescent C Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":277,"latitude":28.0888881683,"longitude":-99.0488891602,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5020,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2CD4","iata":"","local":"2CD4","name":"West Divide Airport","category":"small_airport","iso_country":"US","iso_region":"US-CO","municipality":"Silt","elevation_ft":6352,"latitude":39.430788,"longitude":-107.623111,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TA8","iata":"","local":"4TA8","name":"Perry Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ozona","elevation_ft":2250,"latitude":30.630137,"longitude":-101.043076,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3300,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA58","iata":"","local":"TA58","name":"Rancho Encantado Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":550,"latitude":28.3214,"longitude":-99.449997,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE29","iata":"","local":"TE29","name":"La Esperanza Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Encinal","elevation_ft":750,"latitude":28.069664,"longitude":-99.568771,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5220,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA08","iata":"","local":"XA08","name":"Los Cuernos Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cotulla","elevation_ft":340,"latitude":28.157362,"longitude":-99.095463,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4740,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA66","iata":"","local":"XA66","name":"El Jardin Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Encinal","elevation_ft":482,"latitude":28.075000762939453,"longitude":-99.2863998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6302,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA89","iata":"","local":"XA89","name":"Faith Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Carrizo Springs","elevation_ft":773,"latitude":28.20870018,"longitude":-100.0189972,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5305,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TE5","iata":"","local":"9TE5","name":"Kalt Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fulton","elevation_ft":15,"latitude":28.15449905395508,"longitude":-96.97689819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2200,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":1650,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVLO","iata":"","local":"","name":"La Orchila Airport","category":"small_airport","iso_country":"VE","iso_region":"VE-W","municipality":"Isla La Orchila","elevation_ft":5,"latitude":11.80823,"longitude":-66.180768,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9746,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MGSJ","iata":"GSJ","local":"","name":"San José Airport","category":"medium_airport","iso_country":"GT","iso_region":"GT-ES","municipality":"Puerto San José","elevation_ft":29,"latitude":13.9362001419,"longitude":-90.8358001709,"has_tower":true,"has_beacon":false,"runways":[{"id":"5/33","length_ft":6598,"width_ft":144,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVPA","iata":"PYH","local":"","name":"Cacique Aramare Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-Z","municipality":"Puerto Ayacucho","elevation_ft":245,"latitude":5.6199898719788,"longitude":-67.606101989746,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8268,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVBM","iata":"BRM","local":"","name":"Barquisimeto International Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-K","municipality":"Barquisimeto","elevation_ft":2042,"latitude":10.042746543884276,"longitude":-69.3586196899414,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9186,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SBMY","iata":"MNX","local":"AM0015","name":"Manicoré Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AM","municipality":"Manicoré","elevation_ft":174,"latitude":-5.81138,"longitude":-61.278301,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4150,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MHSC","iata":"XPL","local":"","name":"Palmerola International Airport / José Enrique Soto Cano Air Base","category":"medium_airport","iso_country":"HN","iso_region":"HN-CM","municipality":"Palmerola","elevation_ft":2061,"latitude":14.3824,"longitude":-87.621201,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8008,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVSA","iata":"SVZ","local":"","name":"San Antonio Del Tachira Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-S","municipality":"UNKNOWN","elevation_ft":1312,"latitude":7.840829849243164,"longitude":-72.439697265625,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6070,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVCB","iata":"CBL","local":"","name":"Aeropuerto \"General Tomas de Heres\". Ciudad Bolivar","category":"medium_airport","iso_country":"VE","iso_region":"VE-F","municipality":"UNKNOWN","elevation_ft":197,"latitude":8.12216091156,"longitude":-63.5369567871,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4892,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SLJE","iata":"SJS","local":"","name":"San José De Chiquitos Airport","category":"small_airport","iso_country":"BO","iso_region":"BO-S","municipality":"San José de Chiquitos","elevation_ft":974,"latitude":-17.830799102783203,"longitude":-60.74309921264648,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3937,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SANU","iata":"UAQ","local":"JUA","name":"Domingo Faustino Sarmiento Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-J","municipality":"San Juan","elevation_ft":1958,"latitude":-31.571501,"longitude":-68.418198,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":8071,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SYMB","iata":"USI","local":"","name":"Mabaruma Airport","category":"small_airport","iso_country":"GY","iso_region":"GY-BA","municipality":"Mabaruma","elevation_ft":45,"latitude":8.20017,"longitude":-59.777965,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1650,"width_ft":65,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FBKE","iata":"BBK","local":"","name":"Kasane Airport","category":"medium_airport","iso_country":"BW","iso_region":"BW-CH","municipality":"Kasane","elevation_ft":3289,"latitude":-17.832899,"longitude":25.162399,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVMT","iata":"MUN","local":"","name":"Maturín Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-N","municipality":"Maturín","elevation_ft":224,"latitude":9.749023,"longitude":-63.153348,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SETN","iata":"ESM","local":"","name":"Carlos Concha Torres International Airport","category":"medium_airport","iso_country":"EC","iso_region":"EC-E","municipality":"Tachina","elevation_ft":32,"latitude":0.978519,"longitude":-79.626602,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8373,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVPR","iata":"PZO","local":"","name":"General Manuel Carlos Piar International Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-F","municipality":"Puerto Ordaz-Ciudad Guayana","elevation_ft":472,"latitude":8.288530349731445,"longitude":-62.760398864746094,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6726,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FMCH","iata":"HAH","local":"","name":"Prince Said Ibrahim International Airport","category":"medium_airport","iso_country":"KM","iso_region":"KM-G","municipality":"Moroni","elevation_ft":93,"latitude":-11.5337,"longitude":43.2719,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9514,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SAVE","iata":"EQS","local":"ESQ","name":"Brigadier Antonio Parodi Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-U","municipality":"Esquel","elevation_ft":2621,"latitude":-42.908000946,"longitude":-71.139503479,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7851,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SBUA","iata":"SJL","local":"AM0003","name":"São Gabriel da Cachoeira Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AM","municipality":"São Gabriel da Cachoeira","elevation_ft":249,"latitude":-0.14835,"longitude":-66.9855,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SAOU","iata":"LUQ","local":"UIS","name":"Brigadier Mayor D Cesar Raul Ojeda Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-D","municipality":"San Luis","elevation_ft":2328,"latitude":-33.2732009888,"longitude":-66.3563995361,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9695,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FDMS","iata":"MTS","local":"","name":"Matsapha Airport","category":"medium_airport","iso_country":"SZ","iso_region":"SZ-MA","municipality":"Manzini","elevation_ft":2075,"latitude":-26.528999,"longitude":31.307501,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FQIN","iata":"INH","local":"","name":"Inhambane Airport","category":"medium_airport","iso_country":"MZ","iso_region":"MZ-I","municipality":"Inhambane","elevation_ft":30,"latitude":-23.8764,"longitude":35.408501,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4921,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SBLP","iata":"LAZ","local":"BA0037","name":"Bom Jesus da Lapa Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-BA","municipality":"Bom Jesus da Lapa","elevation_ft":1454,"latitude":-13.2621,"longitude":-43.4081,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3973,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GATB","iata":"TOM","local":"","name":"Timbuktu Airport","category":"medium_airport","iso_country":"ML","iso_region":"ML-7","municipality":"Timbuktu","elevation_ft":863,"latitude":16.730499,"longitude":-3.00758,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7119,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNKU","iata":"SVP","local":"","name":"Kuito Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-BIE","municipality":"Kuito","elevation_ft":5618,"latitude":-12.404600143433,"longitude":16.947399139404,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8793,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FAKM","iata":"KIM","local":"","name":"Kimberley Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-NC","municipality":"Kimberley","elevation_ft":3950,"latitude":-28.802799224900003,"longitude":24.7651996613,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9849,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":7995,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNMO","iata":"MSZ","local":"","name":"Welwitschia Mirabilis International Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-NAM","municipality":"Moçâmedes","elevation_ft":210,"latitude":-15.2612,"longitude":12.1468,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FWKI","iata":"LLW","local":"","name":"Lilongwe International Airport","category":"medium_airport","iso_country":"MW","iso_region":"MW-LI","municipality":"Lilongwe","elevation_ft":4035,"latitude":-13.7894001007,"longitude":33.78099823,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":11614,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FLMF","iata":"MFU","local":"","name":"Mfuwe Airport","category":"medium_airport","iso_country":"ZM","iso_region":"ZM-03","municipality":"Mfuwe","elevation_ft":1853,"latitude":-13.258899688720703,"longitude":31.936599731445312,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7182,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTMT","iata":"MYW","local":"","name":"Mtwara Airport","category":"medium_airport","iso_country":"TZ","iso_region":"TZ-17","municipality":"Mtwara","elevation_ft":371,"latitude":-10.336204,"longitude":40.181997,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7408,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNMN","iata":"MXJ","local":"","name":"Minna Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-NI","municipality":"Minna","elevation_ft":834,"latitude":9.652170181274414,"longitude":6.462259769439697,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FQVL","iata":"VNX","local":"","name":"Vilankulo Airport","category":"medium_airport","iso_country":"MZ","iso_region":"MZ-I","municipality":"Vilanculo","elevation_ft":46,"latitude":-22.018400192260746,"longitude":35.31330108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4823,"width_ft":98,"surface":"H"},{"id":"10/28","length_ft":2461,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EGPU","iata":"TRE","local":"","name":"Tiree Airport","category":"medium_airport","iso_country":"GB","iso_region":"GB-SCT","municipality":"Balemartine","elevation_ft":38,"latitude":56.49919891357422,"longitude":-6.869170188903809,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4829,"width_ft":98,"surface":"H"},{"id":"11/29","length_ft":2621,"width_ft":62,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SANR","iata":"RHD","local":"TRH","name":"Termas de Río Hondo international Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-G","municipality":"Termas de Río Hondo","elevation_ft":935,"latitude":-27.4966,"longitude":-64.93595,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SAWC","iata":"FTE","local":"ECA","name":"El Calafate - Commander Armando Tola International Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-Z","municipality":"El Calafate","elevation_ft":669,"latitude":-50.2803,"longitude":-72.053101,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8366,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FMMS","iata":"SMS","local":"","name":"Sainte Marie Airport","category":"medium_airport","iso_country":"MG","iso_region":"MG-A","municipality":"Vohilava","elevation_ft":7,"latitude":-17.093901,"longitude":49.8158,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4639,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FMNN","iata":"NOS","local":"","name":"Fascene Airport","category":"medium_airport","iso_country":"MG","iso_region":"MG-D","municipality":"Nosy Be","elevation_ft":36,"latitude":-13.3121,"longitude":48.3148,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7316,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNMA","iata":"MEG","local":"","name":"Malanje Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-MAL","municipality":"Malanje","elevation_ft":3868,"latitude":-9.525090217590332,"longitude":16.312400817871094,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":7200,"width_ft":100,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SAVT","iata":"REL","local":"TRE","name":"Almirante Marco Andres Zar Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-U","municipality":"Rawson","elevation_ft":141,"latitude":-43.2105,"longitude":-65.2703,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8399,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SBNM","iata":"GEL","local":"RS0008","name":"Santo Ângelo Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RS","municipality":"Santo Ângelo","elevation_ft":1056,"latitude":-28.282503,"longitude":-54.169623,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5331,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FASB","iata":"SBU","local":"","name":"Springbok Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-NC","municipality":"Springbok","elevation_ft":2690,"latitude":-29.68930053710937,"longitude":17.939599990844727,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5213,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FAOB","iata":"OVG","local":"","name":"Overberg Airport","category":"small_airport","iso_country":"ZA","iso_region":"ZA-WC","municipality":"Overberg","elevation_ft":52,"latitude":-34.563474,"longitude":20.252438,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":10203,"width_ft":144,"surface":"H"},{"id":"10/28","length_ft":6926,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FZQA","iata":"FBM","local":"","name":"Lubumbashi International Airport","category":"medium_airport","iso_country":"CD","iso_region":"CD-HK","municipality":"Lubumbashi","elevation_ft":4295,"latitude":-11.5913000107,"longitude":27.5308990479,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":10499,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FYWH","iata":"WDH","local":"","name":"Hosea Kutako International Airport","category":"large_airport","iso_country":"UNKNOWN","iso_region":"NA-KH","municipality":"Windhoek","elevation_ft":5640,"latitude":-22.4799,"longitude":17.4709,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":14990,"width_ft":148,"surface":"H"},{"id":"16/34","length_ft":5003,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FQNC","iata":"MNC","local":"","name":"Nacala Airport","category":"small_airport","iso_country":"MZ","iso_region":"MZ-N","municipality":"Nacala","elevation_ft":410,"latitude":-14.488200187683104,"longitude":40.71220016479492,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FMNA","iata":"DIE","local":"","name":"Arrachart Airport","category":"medium_airport","iso_country":"MG","iso_region":"MG-D","municipality":"Antisiranana","elevation_ft":374,"latitude":-12.3494,"longitude":49.291698,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4921,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HBBA","iata":"BJM","local":"","name":"Bujumbura Melchior Ndadaye International Airport","category":"medium_airport","iso_country":"BI","iso_region":"BI-BM","municipality":"Bujumbura","elevation_ft":2582,"latitude":-3.32402,"longitude":29.318501,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNME","iata":"SPP","local":"","name":"Menongue Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-CCU","municipality":"Menongue","elevation_ft":4469,"latitude":-14.657600402832031,"longitude":17.71980094909668,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FVMV","iata":"MVZ","local":"","name":"Masvingo International Airport","category":"medium_airport","iso_country":"ZW","iso_region":"ZW-MV","municipality":"Masvingo","elevation_ft":3595,"latitude":-20.055299758911133,"longitude":30.859100341796875,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5663,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FVWN","iata":"HWN","local":"","name":"Hwange National Park Airport","category":"medium_airport","iso_country":"ZW","iso_region":"ZW-MN","municipality":"Hwange","elevation_ft":3543,"latitude":-18.62989997863769,"longitude":27.020999908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":15092,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HJJJ","iata":"JUB","local":"","name":"Juba International Airport","category":"large_airport","iso_country":"SS","iso_region":"SS-17","municipality":"Juba","elevation_ft":1513,"latitude":4.87201,"longitude":31.601101,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FQPB","iata":"POL","local":"","name":"Pemba Airport","category":"medium_airport","iso_country":"MZ","iso_region":"MZ-P","municipality":"Pemba / Porto Amelia","elevation_ft":331,"latitude":-12.991762161254885,"longitude":40.52401351928711,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5906,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HCMH","iata":"HGA","local":"","name":"Egal International Airport","category":"medium_airport","iso_country":"SO","iso_region":"SO-WO","municipality":"Hargeisa","elevation_ft":4471,"latitude":9.513207,"longitude":44.082389,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":12139,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HSNN","iata":"UYL","local":"","name":"Nyala Airport","category":"medium_airport","iso_country":"SD","iso_region":"SD-11","municipality":"Nyala","elevation_ft":2106,"latitude":12.0535,"longitude":24.9562,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":9846,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FAEL","iata":"ELS","local":"","name":"Ben Schoeman Airport","category":"medium_airport","iso_country":"ZA","iso_region":"ZA-EC","municipality":"East London","elevation_ft":435,"latitude":-33.035599,"longitude":27.825899,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6362,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":5197,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FNSA","iata":"VHC","local":"","name":"Saurimo Airport","category":"medium_airport","iso_country":"AO","iso_region":"AO-LSU","municipality":"Saurimo","elevation_ft":3584,"latitude":-9.689069747924805,"longitude":20.431900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FYRU","iata":"NDU","local":"","name":"Rundu Airport","category":"medium_airport","iso_country":"UNKNOWN","iso_region":"NA-KE","municipality":"Rundu","elevation_ft":3627,"latitude":-17.956499099731,"longitude":19.719400405884,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":11004,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HTSO","iata":"SGX","local":"","name":"Songea Airport","category":"small_airport","iso_country":"TZ","iso_region":"TZ-21","municipality":"Songea","elevation_ft":3445,"latitude":-10.68299961090088,"longitude":35.58300018310547,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5709,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DGTK","iata":"TKD","local":"","name":"Takoradi Airport","category":"medium_airport","iso_country":"GH","iso_region":"GH-WP","municipality":"Sekondi-Takoradi","elevation_ft":21,"latitude":4.896059989929199,"longitude":-1.7747600078582764,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5745,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HKML","iata":"MYD","local":"","name":"Malindi Airport","category":"medium_airport","iso_country":"KE","iso_region":"KE-300","municipality":"Malindi","elevation_ft":80,"latitude":-3.2293100357055664,"longitude":40.10169982910156,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4600,"width_ft":98,"surface":"H"},{"id":"08/26","length_ft":3346,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FKKN","iata":"NGE","local":"","name":"N'Gaoundéré Airport","category":"medium_airport","iso_country":"CM","iso_region":"CM-AD","municipality":"N'Gaoundéré","elevation_ft":3655,"latitude":7.357009887695312,"longitude":13.559200286865234,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FVTL","iata":"GWE","local":"","name":"Gweru - Thornhill Air Base","category":"medium_airport","iso_country":"ZW","iso_region":"ZW-MI","municipality":"Gweru","elevation_ft":4680,"latitude":-19.436718,"longitude":29.861945,"has_tower":true,"has_beacon":false,"runways":[{"id":"13L/31R","length_ft":8766,"width_ft":100,"surface":"H"},{"id":"13R/31L","length_ft":7826,"width_ft":93,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FXMM","iata":"MSU","local":"","name":"Moshoeshoe I International Airport","category":"medium_airport","iso_country":"LS","iso_region":"LS-A","municipality":"Maseru","elevation_ft":5348,"latitude":-29.462299346923828,"longitude":27.552499771118164,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":10476,"width_ft":148,"surface":"H"},{"id":"11/29","length_ft":3307,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HLKF","iata":"AKF","local":"","name":"Kufra Airport","category":"medium_airport","iso_country":"LY","iso_region":"LY-KF","municipality":"Kufra","elevation_ft":1367,"latitude":24.178699493408203,"longitude":23.31399917602539,"has_tower":true,"has_beacon":false,"runways":[{"id":"02L/20R","length_ft":12057,"width_ft":148,"surface":"H"},{"id":"02R/20L","length_ft":12007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HHAS","iata":"ASM","local":"","name":"Asmara International Airport","category":"medium_airport","iso_country":"ER","iso_region":"ER-SK","municipality":"Asmara","elevation_ft":7661,"latitude":15.291899681091309,"longitude":38.91070175170898,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9842,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HSPN","iata":"PZU","local":"","name":"Port Sudan New International Airport","category":"medium_airport","iso_country":"SD","iso_region":"SD-26","municipality":"Port Sudan","elevation_ft":135,"latitude":19.4335994720459,"longitude":37.23410034179688,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8205,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DRZR","iata":"ZND","local":"","name":"Zinder Airport","category":"medium_airport","iso_country":"NE","iso_region":"NE-7","municipality":"Zinder","elevation_ft":1516,"latitude":13.779000282287598,"longitude":8.983759880065918,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6890,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UKLL","iata":"LWO","local":"","name":"Lviv International Airport","category":"large_airport","iso_country":"UA","iso_region":"UA-46","municipality":"Lviv","elevation_ft":1071,"latitude":49.8125,"longitude":23.9561,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":10843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LIPK","iata":"FRL","local":"FC03","name":"Forlì Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-45","municipality":"Forlì (FC)","elevation_ft":97,"latitude":44.194801,"longitude":12.0701,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8402,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FWCL","iata":"BLZ","local":"","name":"Chileka International Airport","category":"medium_airport","iso_country":"MW","iso_region":"MW-BL","municipality":"Blantyre","elevation_ft":2555,"latitude":-15.679100036621094,"longitude":34.9739990234375,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7628,"width_ft":98,"surface":"H"},{"id":"15/33","length_ft":4501,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FQQL","iata":"UEL","local":"","name":"Quelimane Airport","category":"medium_airport","iso_country":"MZ","iso_region":"MZ-Q","municipality":"Quelimane","elevation_ft":36,"latitude":-17.855499267578125,"longitude":36.86909866333008,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5906,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HADR","iata":"DIR","local":"","name":"Aba Tenna Dejazmach Yilma International Airport","category":"medium_airport","iso_country":"ET","iso_region":"ET-DD","municipality":"Dire Dawa","elevation_ft":3827,"latitude":9.624699592590332,"longitude":41.85419845581055,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HSDN","iata":"DOG","local":"","name":"Dongola Airport","category":"medium_airport","iso_country":"SD","iso_region":"SD-01","municipality":"Dongola","elevation_ft":772,"latitude":19.1539001465,"longitude":30.4300994873,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9839,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HCMM","iata":"MGQ","local":"","name":"Aden Adde International Airport","category":"medium_airport","iso_country":"SO","iso_region":"SO-BN","municipality":"Mogadishu","elevation_ft":29,"latitude":2.014440059661865,"longitude":45.3046989440918,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":10446,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"HSFS","iata":"ELF","local":"","name":"El Fasher Airport","category":"medium_airport","iso_country":"SD","iso_region":"SD-02","municipality":"El Fasher","elevation_ft":2393,"latitude":13.61489963531494,"longitude":25.32460021972656,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9705,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNBE","iata":"BNI","local":"","name":"Benin Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-ED","municipality":"Benin","elevation_ft":258,"latitude":6.316979885101318,"longitude":5.599500179290772,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNAK","iata":"AKR","local":"","name":"Akure Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-ON","municipality":"Akure","elevation_ft":1100,"latitude":7.246739864349365,"longitude":5.3010101318359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DNJO","iata":"JOS","local":"","name":"Yakubu Gowon Airport","category":"medium_airport","iso_country":"NG","iso_region":"NG-PL","municipality":"Jos","elevation_ft":4232,"latitude":9.639829635620115,"longitude":8.869050025939941,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LIPB","iata":"BZO","local":"BZ01","name":"Bolzano Airport","category":"medium_airport","iso_country":"IT","iso_region":"IT-32","municipality":"Bolzano (BZ)","elevation_ft":789,"latitude":46.460201,"longitude":11.3264,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4698,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DXNG","iata":"LRL","local":"","name":"Niamtougou International Airport","category":"medium_airport","iso_country":"TG","iso_region":"TG-K","municipality":"Niamtougou","elevation_ft":1515,"latitude":9.767330169677734,"longitude":1.091249942779541,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGEO","iata":"","local":"GEO","name":"Brown County Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Georgetown","elevation_ft":958,"latitude":38.88190078735352,"longitude":-83.88269805908203,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3530,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UKBB","iata":"KBP","local":"","name":"Boryspil International Airport","category":"large_airport","iso_country":"UA","iso_region":"UA-32","municipality":"Boryspil","elevation_ft":427,"latitude":50.345001,"longitude":30.894699,"has_tower":true,"has_beacon":true,"runways":[{"id":"18L/36R","length_ft":13123,"width_ft":197,"surface":"H"},{"id":"18R/36L","length_ft":11483,"width_ft":207,"surface":"H"}],"frequencies":[{"id":"TWR","frequency_mhz":119.3}],"has_metar":false,"public":true},{"icao":"LESU","iata":"LEU","local":"","name":"Pirineus - la Seu d'Urgel Airport","category":"small_airport","iso_country":"ES","iso_region":"ES-CT","municipality":"La Seu d'Urgell Pyrenees and Andorra","elevation_ft":2625,"latitude":42.3386,"longitude":1.40917,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4157,"width_ft":92,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EPZG","iata":"IEG","local":"","name":"Zielona Góra-Babimost Airport","category":"medium_airport","iso_country":"PL","iso_region":"PL-LB","municipality":"Babimost","elevation_ft":194,"latitude":52.1385002136,"longitude":15.7986001968,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UMBB","iata":"BQT","local":"","name":"Brest Airport","category":"medium_airport","iso_country":"BY","iso_region":"BY-BR","municipality":"Brest","elevation_ft":468,"latitude":52.108299,"longitude":23.8981,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8596,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UMOO","iata":"MVQ","local":"","name":"Mogilev Airport","category":"medium_airport","iso_country":"BY","iso_region":"BY-MA","municipality":"Mogilev","elevation_ft":637,"latitude":53.95489883422852,"longitude":30.09510040283203,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8419,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KJVY","iata":"","local":"JVY","name":"Clark Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Jeffersonville","elevation_ft":474,"latitude":38.36539840698242,"longitude":-85.73819732666016,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3899,"width_ft":75,"surface":"A"},{"id":"18/36","length_ft":7000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH64","iata":"","local":"OH64","name":"Hummel Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Germantown","elevation_ft":695,"latitude":39.59310150146485,"longitude":-84.34380340576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":150,"surface":"T"},{"id":"12/30","length_ft":1600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN03","iata":"","local":"IN03","name":"Alford Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Petersburg","elevation_ft":500,"latitude":38.46390151977539,"longitude":-87.25,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IN7","iata":"","local":"4IN7","name":"Riley Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Attica","elevation_ft":608,"latitude":40.300899505615234,"longitude":-87.22920227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4030,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58KY","iata":"","local":"58KY","name":"Willow Island Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Finchville","elevation_ft":740,"latitude":38.12089920043945,"longitude":-85.33190155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":65,"surface":"T"},{"id":"11/29","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UMMG","iata":"GNA","local":"","name":"Hrodna Airport","category":"medium_airport","iso_country":"BY","iso_region":"BY-HR","municipality":"Hrodna","elevation_ft":443,"latitude":53.60200119018555,"longitude":24.053800582885746,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8399,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KY6","iata":"","local":"8KY6","name":"Caintuckee Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Independence","elevation_ft":930,"latitude":38.93441,"longitude":-84.566488,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3KY9","iata":"","local":"3KY9","name":"Miles Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Waddy","elevation_ft":850,"latitude":38.122265,"longitude":-85.126166,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5II1","iata":"","local":"5II1","name":"Layne Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"New Winchester","elevation_ft":905,"latitude":39.78279876708984,"longitude":-86.61750030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43OA","iata":"","local":"43OA","name":"Anderson Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Waynesville","elevation_ft":940,"latitude":39.581422,"longitude":-84.092783,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70II","iata":"","local":"70II","name":"Nasby Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Shelbyville","elevation_ft":830,"latitude":39.522238,"longitude":-85.686053,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II09","iata":"","local":"II09","name":"Patrum Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Stilesville","elevation_ft":760,"latitude":39.573113,"longitude":-86.618671,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8IN7","iata":"","local":"8IN7","name":"Brush Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Butlerville","elevation_ft":825,"latitude":39.0452995300293,"longitude":-85.51529693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40KY","iata":"","local":"40KY","name":"Rooster Field","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Shelbyville","elevation_ft":840,"latitude":38.2934,"longitude":-85.205002,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN05","iata":"","local":"IN05","name":"Stevens Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Rushville","elevation_ft":930,"latitude":39.66059875488281,"longitude":-85.54830169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IN9","iata":"","local":"7IN9","name":"The Last Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Springport","elevation_ft":1070,"latitude":40.03749847412109,"longitude":-85.41059875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09IN","iata":"","local":"09IN","name":"Gordon Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Columbia City","elevation_ft":850,"latitude":41.12089920043945,"longitude":-85.42500305175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":70,"surface":"T"},{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IS2","iata":"","local":"9IS2","name":"Schertz Field","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Gibson City","elevation_ft":758,"latitude":40.482878,"longitude":-88.267529,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3177,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II26","iata":"","local":"II26","name":"Ashby Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Remington","elevation_ft":750,"latitude":40.70389938354492,"longitude":-87.18779754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH65","iata":"","local":"OH65","name":"Hickory Grove Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Goshen","elevation_ft":895,"latitude":39.240251,"longitude":-84.098915,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH28","iata":"","local":"OH28","name":"Donner Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Leesburg","elevation_ft":990,"latitude":39.36669921875,"longitude":-83.5999984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5II8","iata":"","local":"5II8","name":"Jacobi Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Palmyra","elevation_ft":750,"latitude":38.410099029541016,"longitude":-86.12889862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52KY","iata":"","local":"52KY","name":"Air Castle Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Paris","elevation_ft":900,"latitude":38.117441,"longitude":-84.301658,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IN8","iata":"","local":"6IN8","name":"Mcminn Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Rushville","elevation_ft":1065,"latitude":39.52859878540039,"longitude":-85.31670379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8KT8","iata":"","local":"8KT8","name":"Cherry Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Pleasureville","elevation_ft":879,"latitude":38.3319167,"longitude":-85.077972,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1494,"width_ft":88,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN44","iata":"","local":"IN44","name":"Habermel Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Salem","elevation_ft":800,"latitude":38.564201,"longitude":-86.057503,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IN7","iata":"","local":"7IN7","name":"Gary Johnson Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"West Lebanon","elevation_ft":570,"latitude":40.235801696777344,"longitude":-87.35079956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":685,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"99II","iata":"","local":"99II","name":"Cooper Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Reelsville","elevation_ft":880,"latitude":39.5835,"longitude":-86.952527,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5KY8","iata":"","local":"5KY8","name":"Harold Reynolds Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Harrodsburg","elevation_ft":860,"latitude":37.889722,"longitude":-84.927778,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6KY3","iata":"","local":"6KY3","name":"Flying C Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Shelbyville","elevation_ft":850,"latitude":38.328611,"longitude":-85.214167,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2250,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8II2","iata":"","local":"8II2","name":"Norris Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Liberty","elevation_ft":1085,"latitude":39.652607,"longitude":-84.866417,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI40","iata":"","local":"OI40","name":"Hallelujah Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Goshen","elevation_ft":890,"latitude":39.202598571777344,"longitude":-84.10469818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1875,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IN7","iata":"","local":"9IN7","name":"Zupancic Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Morgantown","elevation_ft":660,"latitude":39.354771,"longitude":-86.307371,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN81","iata":"","local":"IN81","name":"Small Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Carthage","elevation_ft":920,"latitude":39.75189971923828,"longitude":-85.55750274658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL2","iata":"","local":"5LL2","name":"Paul E. Kroenlein Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Moweaqua","elevation_ft":710,"latitude":39.6083984375,"longitude":-88.8583984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":70,"surface":"T"},{"id":"N/S","length_ft":1300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4IN5","iata":"","local":"4IN5","name":"Ball Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Bourbon","elevation_ft":825,"latitude":41.344200134277344,"longitude":-86.14830017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6IN4","iata":"","local":"6IN4","name":"Fischer Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Waldron","elevation_ft":835,"latitude":39.466009,"longitude":-85.699303,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7KY3","iata":"","local":"7KY3","name":"Little Mount International Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Tarylorsville","elevation_ft":750,"latitude":38.07609939575195,"longitude":-85.23670196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN14","iata":"","local":"IN14","name":"Greenridge Restricted Landing Area","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Lanesville","elevation_ft":858,"latitude":38.238998,"longitude":-86.019402,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN43","iata":"","local":"IN43","name":"Spring Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Pekin","elevation_ft":830,"latitude":38.47510147094727,"longitude":-85.99720001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5LL8","iata":"","local":"5LL8","name":"Hugh Van Voorst Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Union Hill","elevation_ft":617,"latitude":41.112300872802734,"longitude":-88.14009857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3450,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7IS3","iata":"","local":"7IS3","name":"Hooterville Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Clinton","elevation_ft":730,"latitude":40.142911,"longitude":-89.092276,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":2300,"width_ft":102,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3II3","iata":"","local":"3II3","name":"Basting Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Woodburn","elevation_ft":755,"latitude":41.090865,"longitude":-84.831126,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54IL","iata":"","local":"54IL","name":"Rothrock Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Streator","elevation_ft":653,"latitude":41.126271,"longitude":-88.801848,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2407,"width_ft":18,"surface":"A"},{"id":"18/36","length_ft":1800,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53II","iata":"","local":"53II","name":"Steinman Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Woodburn","elevation_ft":760,"latitude":41.073101,"longitude":-84.840797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83IN","iata":"","local":"83IN","name":"Goodenough Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Peru","elevation_ft":685,"latitude":40.740505,"longitude":-86.004166,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3300,"width_ft":75,"surface":"T"},{"id":"N/S","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9IS9","iata":"","local":"9IS9","name":"Johnston Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Heyworth","elevation_ft":785,"latitude":40.3344993591,"longitude":-88.9553985596,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II74","iata":"","local":"II74","name":"Eby Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Wakarusa","elevation_ft":825,"latitude":41.559799,"longitude":-86.053101,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II79","iata":"","local":"II79","name":"Sommers Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Winamac","elevation_ft":710,"latitude":41.07699966430664,"longitude":-86.72450256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN33","iata":"","local":"IN33","name":"Robison Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Peru","elevation_ft":735,"latitude":40.73619842529297,"longitude":-86.11530303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IL78","iata":"","local":"IL78","name":"Benoit Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Kankakee","elevation_ft":660,"latitude":41.13109970092773,"longitude":-87.79229736328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN72","iata":"","local":"IN72","name":"Mayer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Union Dale","elevation_ft":820,"latitude":40.7859001159668,"longitude":-85.24420166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1060,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN65","iata":"","local":"IN65","name":"Wolfe Field","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Shipshewana","elevation_ft":896,"latitude":41.69139862060547,"longitude":-85.59549713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI11","iata":"","local":"MI11","name":"Crippen Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Charlotte","elevation_ft":890,"latitude":42.541542,"longitude":-84.808964,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI13","iata":"","local":"MI13","name":"Minikey Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Sheridan","elevation_ft":900,"latitude":43.16170120239258,"longitude":-85.06169891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II70","iata":"","local":"II70","name":"Salsbery Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Sharpsville","elevation_ft":870,"latitude":40.384932,"longitude":-86.063204,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1680,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU88","iata":"","local":"MU88","name":"Yarbro Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Poplar Bluff","elevation_ft":518,"latitude":36.858356,"longitude":-90.399869,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN23","iata":"","local":"TN23","name":"Titan Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":385,"latitude":36.49025,"longitude":-87.33421,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO33","iata":"","local":"MO33","name":"Barlet's Base Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Carthage","elevation_ft":1068,"latitude":37.12919998168945,"longitude":-94.25379943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2380,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN83","iata":"","local":"IN83","name":"Lautzenhiser Airpark","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Hamilton","elevation_ft":928,"latitude":41.50230026245117,"longitude":-84.9301986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IS02","iata":"","local":"IS02","name":"Dietchweiler Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"Watseka","elevation_ft":640,"latitude":40.7784,"longitude":-87.791702,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI05","iata":"","local":"MI05","name":"Crompton's Private Strip","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Clio","elevation_ft":680,"latitude":43.165707,"longitude":-83.788233,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI56","iata":"","local":"56C","name":"Boulder Canyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Belding","elevation_ft":987,"latitude":43.075769,"longitude":-85.268283,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":880,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI80","iata":"","local":"MI80","name":"Wabasis Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Greenville","elevation_ft":892,"latitude":43.12839889526367,"longitude":-85.39920043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2140,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI83","iata":"","local":"MI83","name":"Maple Grove Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Chesaning","elevation_ft":698,"latitude":43.137722,"longitude":-84.045589,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2476,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83OH","iata":"","local":"83OH","name":"Adams Strip","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Pleasant Hill","elevation_ft":973,"latitude":40.062302,"longitude":-84.379402,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TN0","iata":"","local":"7TN0","name":"Blue Bird Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Pleasantview","elevation_ft":705,"latitude":36.43560028076172,"longitude":-87.09140014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU65","iata":"","local":"MU65","name":"Lakeside Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Farmington","elevation_ft":910,"latitude":37.76950073242188,"longitude":-90.4656982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO66","iata":"","local":"MO66","name":"Linden Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ozark","elevation_ft":1280,"latitude":37.059167,"longitude":-93.145556,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2850,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TA9","iata":"","local":"5TA9","name":"Seagoville Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seagoville","elevation_ft":415,"latitude":32.609901428222656,"longitude":-96.5269012451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2675,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI82","iata":"","local":"MI82","name":"Harry's Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Hudsonville","elevation_ft":662,"latitude":42.87639999389648,"longitude":-85.95559692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"96KY","iata":"","local":"96KY","name":"Woosley Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Calhoun","elevation_ft":465,"latitude":37.552652,"longitude":-87.272544,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"IN30","iata":"","local":"IN30","name":"Hull Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Patoka","elevation_ft":423,"latitude":38.402235,"longitude":-87.599251,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2722,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU07","iata":"","local":"MU07","name":"Angle Bar M Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Adrian","elevation_ft":900,"latitude":38.39469909667969,"longitude":-94.3102035522461,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU73","iata":"","local":"MU73","name":"Spencer Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Highlandville","elevation_ft":1322,"latitude":36.926394,"longitude":-93.289389,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61AR","iata":"","local":"61AR","name":"The Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Cotter","elevation_ft":450,"latitude":36.3083992,"longitude":-92.53070068,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK18","iata":"","local":"OK18","name":"Grand Isle Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Big Cabin","elevation_ft":636,"latitude":36.423401,"longitude":-95.171097,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK58","iata":"","local":"OK58","name":"Bluestem Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Collinsville","elevation_ft":660,"latitude":36.39730072021485,"longitude":-95.90499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK01","iata":"","local":"OK01","name":"Sky Haven Airpark/Sellmeyer Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Vera","elevation_ft":675,"latitude":36.42900085449219,"longitude":-95.9032974243164,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL30","iata":"","local":"OL30","name":"Flying S Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Wanette","elevation_ft":1052,"latitude":35.001991,"longitude":-97.061613,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1116,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK44","iata":"","local":"","name":"Canyon Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bokchito","elevation_ft":625,"latitude":34.146198,"longitude":-96.076897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TS4","iata":"","local":"74T","name":"Hicks Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ponder","elevation_ft":725,"latitude":33.183201,"longitude":-97.2545,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI88","iata":"","local":"MI88","name":"Bakers Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Burnips","elevation_ft":680,"latitude":42.7322998046875,"longitude":-85.9052963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"II67","iata":"","local":"II67","name":"Hickory Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-IN","municipality":"Hartford City","elevation_ft":900,"latitude":40.427349,"longitude":-85.373694,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1100,"width_ft":125,"surface":"T"},{"id":"18/36","length_ft":626,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5KY5","iata":"","local":"5KY5","name":"Lowe Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Cadiz","elevation_ft":498,"latitude":36.86249923706055,"longitude":-87.79029846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN5","iata":"","local":"8TN5","name":"Nobuzzn Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Springfield","elevation_ft":650,"latitude":36.48640060424805,"longitude":-86.91110229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO72","iata":"","local":"MO72","name":"Flying 'J' Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Van Buren","elevation_ft":690,"latitude":37.04029846191406,"longitude":-90.8667984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR93","iata":"","local":"AR93","name":"Ark-Mo Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Pollard","elevation_ft":308,"latitude":36.48613,"longitude":-90.27755,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN77","iata":"","local":"TN77","name":"Whifferdill Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Chapmansboro","elevation_ft":622,"latitude":36.32180023,"longitude":-87.15070343,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3200,"width_ft":200,"surface":"T"},{"id":"15/33","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN53","iata":"","local":"TN53","name":"Parr Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Clarksville","elevation_ft":590,"latitude":36.555083,"longitude":-87.448558,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MO3","iata":"","local":"6MO3","name":"Flying 'E' Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Houston","elevation_ft":1510,"latitude":37.34920120239258,"longitude":-92.12830352783205,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"83LL","iata":"","local":"83LL","name":"Lindauer Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"New Athens","elevation_ft":437,"latitude":38.3036003112793,"longitude":-89.8551025390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU14","iata":"","local":"MU14","name":"Pepper Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Belle","elevation_ft":1043,"latitude":38.299363,"longitude":-91.689781,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU57","iata":"","local":"MU57","name":"Flib Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Conway","elevation_ft":1418,"latitude":37.518574,"longitude":-92.816926,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2185,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO58","iata":"","local":"MO58","name":"Waldemer Flying W Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fairdealing","elevation_ft":460,"latitude":36.65840148925781,"longitude":-90.6404037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2370,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO84","iata":"","local":"MO84","name":"Viburnum Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Viburnum","elevation_ft":1272,"latitude":37.719099,"longitude":-91.127515,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3195,"width_ft":47,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU25","iata":"","local":"MU25","name":"Piney Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Houston","elevation_ft":950,"latitude":37.437801361083984,"longitude":-91.94930267333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU48","iata":"","local":"MU48","name":"Sunburst Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gainesville","elevation_ft":820,"latitude":36.648399353027344,"longitude":-92.22039794921876,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO23","iata":"","local":"MO23","name":"Phillips Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"California","elevation_ft":820,"latitude":38.640581,"longitude":-92.529229,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR43","iata":"","local":"AR43","name":"Brickey Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Oppelo","elevation_ft":320,"latitude":35.097628,"longitude":-92.779082,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS74","iata":"","local":"TS74","name":"Glass Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sanger","elevation_ft":810,"latitude":33.36259841918945,"longitude":-97.29450225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX19","iata":"","local":"TX19","name":"Russells Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Annona","elevation_ft":400,"latitude":33.538499,"longitude":-94.90479,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2175,"width_ft":75,"surface":"A"},{"id":"17/35","length_ft":2700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA16","iata":"","local":"XA16","name":"Tightwaad Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rosston","elevation_ft":875,"latitude":33.49420166015625,"longitude":-97.4655990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66TE","iata":"","local":"66TE","name":"The Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":684,"latitude":32.365267,"longitude":-97.644989,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO75","iata":"","local":"MO75","name":"Brownsberger Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Montrose","elevation_ft":794,"latitude":38.302662,"longitude":-94.051339,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK21","iata":"","local":"OK21","name":"Longs Airport North Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Pryor","elevation_ft":650,"latitude":36.33340072631836,"longitude":-95.3043975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR27","iata":"","local":"AR27","name":"Lollars Creek Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Wesley","elevation_ft":1430,"latitude":35.93899917602539,"longitude":-93.845703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK06","iata":"","local":"OK06","name":"Snake Creek Wilderness Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Cookson","elevation_ft":1130,"latitude":35.64780044555664,"longitude":-94.9499969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2840,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK78","iata":"","local":"OK78","name":"Delozier Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chelsea","elevation_ft":750,"latitude":36.559107,"longitude":-95.431694,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL37","iata":"","local":"OL37","name":"Cooper Coles Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Connerville","elevation_ft":954,"latitude":34.439535,"longitude":-96.607723,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":50,"surface":"T"},{"id":"14/32","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL20","iata":"","local":"OL20","name":"Whitehorn Cove Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Wagoner","elevation_ft":568,"latitude":35.99729919433594,"longitude":-95.25890350341795,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE39","iata":"","local":"TE39","name":"Bucker Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Era","elevation_ft":877,"latitude":33.443199157714844,"longitude":-97.27339935302734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX47","iata":"","local":"TX47","name":"Sandy Creek Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Revenna","elevation_ft":547,"latitude":33.7076835632,"longitude":-96.2238464355,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT98","iata":"","local":"TT98","name":"Kelly Air Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bells","elevation_ft":630,"latitude":33.658808,"longitude":-96.467672,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2584,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX96","iata":"","local":"TX96","name":"Maxwell Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sanger","elevation_ft":825,"latitude":33.39929962158203,"longitude":-97.25700378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR11","iata":"","local":"AR11","name":"Ozark Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Rogers","elevation_ft":1270,"latitude":36.287487,"longitude":-94.08774,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AR03","iata":"","local":"AR03","name":"Centerville Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AR","municipality":"Centerville","elevation_ft":350,"latitude":35.11869812011719,"longitude":-93.20159912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL32","iata":"","local":"OL32","name":"Flat Rock Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chouteau","elevation_ft":612,"latitude":36.071632,"longitude":-95.36274,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2550,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41TX","iata":"","local":"41TX","name":"Henington Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wolfe City","elevation_ft":645,"latitude":33.37480163574219,"longitude":-96.08219909667967,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA93","iata":"","local":"TA93","name":"Lm Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sherman","elevation_ft":770,"latitude":33.63330078125,"longitude":-96.7335968017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE06","iata":"","local":"TE06","name":"Casey Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Leonard","elevation_ft":670,"latitude":33.37929916381836,"longitude":-96.31690216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX35","iata":"","local":"TX35","name":"Key's Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Boxelder/Lydia","elevation_ft":345,"latitude":33.443199157714844,"longitude":-94.81410217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX81","iata":"","local":"TX81","name":"Robotek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Gainesville","elevation_ft":775,"latitude":33.54999923706055,"longitude":-97.03810119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1238,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA48","iata":"","local":"XA48","name":"Dreamland Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Muenster","elevation_ft":945,"latitude":33.641703,"longitude":-97.315708,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TX4","iata":"","local":"4TX4","name":"Birk Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kennedale","elevation_ft":700,"latitude":32.627899169921875,"longitude":-97.19200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TS7","iata":"","local":"8TS7","name":"Wyatt 3-Rivers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Glen Rose","elevation_ft":615,"latitude":32.2449,"longitude":-97.726097,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91XA","iata":"","local":"91XA","name":"Crosscut Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Big Sandy","elevation_ft":420,"latitude":32.623816,"longitude":-95.113937,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3200,"width_ft":28,"surface":"D"},{"id":"16/34","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XA3","iata":"","local":"4XA3","name":"Owen Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Clyde","elevation_ft":1971,"latitude":32.253436,"longitude":-99.498823,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK34","iata":"","local":"OK34","name":"Gustafson Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Sallisaw","elevation_ft":855,"latitude":35.48429870605469,"longitude":-94.84190368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL19","iata":"","local":"OL19","name":"Stuart Mountain Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Stuart","elevation_ft":990,"latitude":34.91540145874,"longitude":-96.129402160645,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK74","iata":"","local":"OK74","name":"Flying H Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ashland","elevation_ft":850,"latitude":34.829498291015625,"longitude":-96.0342025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL31","iata":"","local":"OL31","name":"Red Baron Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Coweta","elevation_ft":660,"latitude":35.940357,"longitude":-95.727607,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TX2","iata":"","local":"5TX2","name":"Grove Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Leonard","elevation_ft":721,"latitude":33.422298431396484,"longitude":-96.21690368652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK17","iata":"","local":"OK17","name":"Bass Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ardmore","elevation_ft":840,"latitude":34.21825,"longitude":-97.052567,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE81","iata":"","local":"TE81","name":"Smither Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":655,"latitude":33.30970001220703,"longitude":-97.0927963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT44","iata":"","local":"TT44","name":"Flying H Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paris","elevation_ft":574,"latitude":33.665146,"longitude":-95.611258,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX94","iata":"","local":"TX94","name":"Flying D Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Era","elevation_ft":880,"latitude":33.4529,"longitude":-97.276703,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61TA","iata":"","local":"61TA","name":"Eagle Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Avinger","elevation_ft":380,"latitude":32.88399887084961,"longitude":-94.60769653320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TX4","iata":"","local":"7TX4","name":"Hillcrest Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Keller","elevation_ft":710,"latitude":32.966800689697266,"longitude":-97.27529907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TX0","iata":"","local":"5TX0","name":"Hidden Valley Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lake Dallas","elevation_ft":611,"latitude":33.17350006103516,"longitude":-97.05139923095705,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA7","iata":"","local":"8TA7","name":"Stark Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":900,"latitude":32.569599151611,"longitude":-97.75309753418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0XS2","iata":"","local":"0XS2","name":"John Fields Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sonora","elevation_ft":2342,"latitude":30.555675,"longitude":-100.53084,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3700,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"85TX","iata":"","local":"85TX","name":"Rutherford Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Buda","elevation_ft":983,"latitude":30.077699661254883,"longitude":-97.9655990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AK96","iata":"","local":"BSZ","name":"Bartletts Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Egegik","elevation_ft":50,"latitude":58.235664,"longitude":-157.366397,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TA8","iata":"","local":"5TA8","name":"Deer Meadow Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":520,"latitude":32.013301849365234,"longitude":-95.92829895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TS4","iata":"","local":"6TS4","name":"Stampede Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Moffat","elevation_ft":670,"latitude":31.18630027770996,"longitude":-97.3906021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TS3","iata":"","local":"8TS3","name":"Bruner Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Latexo","elevation_ft":387,"latitude":31.390199661254883,"longitude":-95.47329711914062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TS6","iata":"","local":"9TS6","name":"Goodlett Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvarado","elevation_ft":690,"latitude":32.37889862060547,"longitude":-97.17829895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7TE9","iata":"","local":"7TE9","name":"Boening Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":407,"latitude":29.02720069885254,"longitude":-98.28669738769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3400,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA34","iata":"","local":"TA34","name":"Flying G Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crystal City","elevation_ft":675,"latitude":28.767302,"longitude":-100.081329,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06ID","iata":"","local":"06ID","name":"Larkin Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Kuna","elevation_ft":2750,"latitude":43.46269989013672,"longitude":-116.35900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CZFM","iata":"ZFM","local":"","name":"Fort Mcpherson Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-NT","municipality":"Fort Mcpherson","elevation_ft":116,"latitude":67.40750122070312,"longitude":-134.86099243164062,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3934,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CEZ2","iata":"","local":"CEZ2","name":"Chapman Lake Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Chapman Lake","elevation_ft":3100,"latitude":64.903561,"longitude":-138.277255,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15AK","iata":"","local":"15AK","name":"Golden North Airfield","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cantwell","elevation_ft":2250,"latitude":63.371995,"longitude":-148.846915,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2095,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TA8","iata":"","local":"8TA8","name":"Bufords Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Huntington","elevation_ft":200,"latitude":31.169099807739254,"longitude":-94.53240203857422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4TE7","iata":"","local":"4TE7","name":"Devil's River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1680,"latitude":29.740800857543945,"longitude":-100.96499633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3800,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TE3","iata":"","local":"5TE3","name":"Alexander Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dripping Springs","elevation_ft":1250,"latitude":30.275084,"longitude":-98.122689,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAWT","iata":"","local":"AK03","name":"Wainwright Air Station","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wainwright","elevation_ft":35,"latitude":70.61340332,"longitude":-159.8600006,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1XA4","iata":"","local":"1XA4","name":"Mikeska Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brookshire","elevation_ft":161,"latitude":29.87380027770996,"longitude":-96.00440216064452,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1970,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08XS","iata":"","local":"08XS","name":"Peterson Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Old Ocean","elevation_ft":45,"latitude":29.10810089111328,"longitude":-95.77749633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2350,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PACI","iata":"CIK","local":"CIK","name":"Chalkyitsik Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chalkyitsik","elevation_ft":544,"latitude":66.6449966431,"longitude":-143.740005493,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PACR","iata":"IRC","local":"CRC","name":"Circle City (New) Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Circle","elevation_ft":613,"latitude":65.827673,"longitude":-144.076195,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2979,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"76AK","iata":"","local":"76AK","name":"Pogo Mine Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Delta Junction","elevation_ft":1350,"latitude":64.46749877929688,"longitude":-144.92100524902344,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TS5","iata":"","local":"8TS5","name":"Stol Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Joshua","elevation_ft":908,"latitude":32.467899322509766,"longitude":-97.36830139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1200,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50XS","iata":"","local":"50XS","name":"Hughes Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Quemado","elevation_ft":905,"latitude":29.04330062866211,"longitude":-100.58499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4608,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS40","iata":"","local":"XS40","name":"Jay Kay Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pearsall","elevation_ft":666,"latitude":28.80030059814453,"longitude":-99.00029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV30","iata":"","local":"NV30","name":"Dixie Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Fallon","elevation_ft":3443,"latitude":39.964672,"longitude":-117.827371,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9TE4","iata":"","local":"9TE4","name":"Tanner's Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Port Lavaca","elevation_ft":15,"latitude":28.569700241088867,"longitude":-96.62969970703124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":10000,"width_ft":1000,"surface":"W"},{"id":"09/27","length_ft":2300,"width_ft":105,"surface":"T"},{"id":"17/35","length_ft":1800,"width_ft":105,"surface":"T"},{"id":"17W/35W","length_ft":1900,"width_ft":4000,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NE1","iata":"","local":"0NE1","name":"Runner Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ashby","elevation_ft":3760,"latitude":42.40719985961914,"longitude":-101.93199920654295,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08XA","iata":"","local":"08XA","name":"Knolle Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Snook","elevation_ft":280,"latitude":30.479253,"longitude":-96.504031,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYPZ","iata":"YPZ","local":"YPZ","name":"Burns Lake Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-BC","municipality":"Burns Lake","elevation_ft":2343,"latitude":54.3764,"longitude":-125.950996,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5060,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYOC","iata":"YOC","local":"","name":"Old Crow Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Old Crow","elevation_ft":824,"latitude":67.57060241699219,"longitude":-139.83900451660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5019,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CEX4","iata":"","local":"CEX4","name":"Carmacks Airport","category":"small_airport","iso_country":"CA","iso_region":"CA-YT","municipality":"Carmacks","elevation_ft":1770,"latitude":62.11063,"longitude":-136.179993,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAWI","iata":"AIN","local":"AWI","name":"Wainwright Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Wainwright","elevation_ft":41,"latitude":70.638,"longitude":-159.994995,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4494,"width_ft":110,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK8","iata":"","local":"2AK8","name":"Icy Cape Air Force Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Icy Cape","elevation_ft":48,"latitude":70.293545,"longitude":-161.907151,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3200,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK9","iata":"","local":"2AK9","name":"Independence Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Independence Creek","elevation_ft":250,"latitude":65.673376,"longitude":-162.46007,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAPR","iata":"PPC","local":"PPC","name":"Prospect Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Prospect Creek","elevation_ft":1095,"latitude":66.814102172852,"longitude":-150.64399719238,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4968,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ID7","iata":"","local":"0ID7","name":"Z X Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ID","municipality":"Murphy","elevation_ft":3820,"latitude":43.230308,"longitude":-116.763192,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CYMJ","iata":"YMJ","local":"","name":"Moose Jaw Air Vice Marshal C. M. McEwen Airport","category":"medium_airport","iso_country":"CA","iso_region":"CA-SK","municipality":"Moose Jaw","elevation_ft":1892,"latitude":50.330299377441406,"longitude":-105.55899810791016,"has_tower":true,"has_beacon":false,"runways":[{"id":"11L/29R","length_ft":8320,"width_ft":150,"surface":"A"},{"id":"11R/29L","length_ft":7280,"width_ft":150,"surface":"A"},{"id":"03/21","length_ft":3460,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2AK6","iata":"HGZ","local":"2AK6","name":"Hog River Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Hogatza","elevation_ft":534,"latitude":66.2161026,"longitude":-155.6690063,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5500,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PABP","iata":"","local":"AK78","name":"Badami Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Deadhorse","elevation_ft":26,"latitude":70.13749694824219,"longitude":-147.02999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5100,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PASK","iata":"WLK","local":"WLK","name":"Selawik Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Selawik","elevation_ft":17,"latitude":66.600098,"longitude":-159.985992,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3002,"width_ft":60,"surface":"G"},{"id":"09/27","length_ft":2659,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAAL","iata":"PML","local":"1AK3","name":"Port Moller Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cold Bay","elevation_ft":20,"latitude":56.0060005188,"longitude":-160.561004639,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3500,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ZKPY","iata":"FNJ","local":"","name":"Pyongyang Sunan International Airport","category":"medium_airport","iso_country":"KP","iso_region":"KP-01","municipality":"Pyongyang","elevation_ft":117,"latitude":39.224098,"longitude":125.669998,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":11237,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ZSJN","iata":"TNA","local":"","name":"Jinan Yaoqiang International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-37","municipality":"Jinan","elevation_ft":76,"latitude":36.857201,"longitude":117.216003,"has_tower":true,"has_beacon":true,"runways":[{"id":"01/19","length_ft":11811,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.05},{"id":"TWR","frequency_mhz":118.55}],"has_metar":false,"public":true},{"icao":"PFKT","iata":"KTS","local":"KTS","name":"Brevig Mission Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Brevig Mission","elevation_ft":38,"latitude":65.3312988281,"longitude":-166.466003418,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2110,"width_ft":75,"surface":"G"},{"id":"12/30","length_ft":2990,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFAL","iata":"AET","local":"6A8","name":"Allakaket Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Allakaket","elevation_ft":441,"latitude":66.5518035889,"longitude":-152.621994019,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFNO","iata":"ORV","local":"D76","name":"Robert (Bob) Curtis Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Noorvik","elevation_ft":55,"latitude":66.817902,"longitude":-161.018997,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PADY","iata":"KKH","local":"DUY","name":"Kongiganak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kongiganak","elevation_ft":30,"latitude":59.9608001709,"longitude":-162.880996704,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAJC","iata":"","local":"AJC","name":"Chignik Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chignik","elevation_ft":18,"latitude":56.311501,"longitude":-158.373001,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ZKWS","iata":"WOS","local":"","name":"Wonsan Kalma International Airport","category":"medium_airport","iso_country":"KP","iso_region":"KP-07","municipality":"Wonsan","elevation_ft":7,"latitude":39.166801,"longitude":127.486,"has_tower":true,"has_beacon":false,"runways":[{"id":"15L/33R","length_ft":11483,"width_ft":197,"surface":"H"},{"id":"15R/33L","length_ft":10253,"width_ft":164,"surface":"H"},{"id":"02/20","length_ft":1640,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OPGD","iata":"GWD","local":"","name":"Gwadar International Airport","category":"medium_airport","iso_country":"PK","iso_region":"PK-BA","municipality":"Gwadar","elevation_ft":36,"latitude":25.232391,"longitude":62.327671,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6503,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOSM","iata":"SXV","local":"","name":"Salem Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-TN","municipality":"Salem","elevation_ft":1008,"latitude":11.78330039978,"longitude":78.06559753418,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6001,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ENST","iata":"SSJ","local":"","name":"Sandnessjøen Airport, Stokka","category":"medium_airport","iso_country":"NO","iso_region":"NO-18","municipality":"Alstahaug","elevation_ft":56,"latitude":65.956802,"longitude":12.4689,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4619,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VIBK","iata":"BKB","local":"","name":"Nal Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-RJ","municipality":"Bikaner","elevation_ft":750,"latitude":28.070600509643555,"longitude":73.20719909667969,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8960,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VIPT","iata":"PGH","local":"","name":"Pantnagar Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-UP","municipality":"Pantnagar","elevation_ft":769,"latitude":29.0334,"longitude":79.473701,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4501,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VEBI","iata":"SHL","local":"","name":"Shillong Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-ML","municipality":"Shillong","elevation_ft":2910,"latitude":25.70359992980957,"longitude":91.97869873046876,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6001,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VECO","iata":"COH","local":"","name":"Cooch Behar Airport","category":"small_airport","iso_country":"IN","iso_region":"IN-WB","municipality":"Cooch Behar","elevation_ft":138,"latitude":26.3305,"longitude":89.467201,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3507,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OPRN","iata":"","local":"","name":"PAF Base Nur Khan","category":"small_airport","iso_country":"PK","iso_region":"PK-PB","municipality":"Rawalpindi","elevation_ft":1668,"latitude":33.616699,"longitude":73.099197,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10809,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VEPG","iata":"IXT","local":"","name":"Pasighat Airport","category":"small_airport","iso_country":"IN","iso_region":"IN-AR","municipality":"Pasighat","elevation_ft":477,"latitude":28.064786,"longitude":95.336952,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6760,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOGB","iata":"GBI","local":"","name":"Kalaburagi Airport","category":"small_airport","iso_country":"IN","iso_region":"IN-KA","municipality":"Kalaburagi","elevation_ft":1571,"latitude":17.308154,"longitude":76.965246,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":10417,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VAKE","iata":"IXY","local":"","name":"Kandla Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-GJ","municipality":"Kandla","elevation_ft":96,"latitude":23.1127,"longitude":70.100304,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OAUZ","iata":"UND","local":"","name":"Kunduz Airport","category":"medium_airport","iso_country":"AF","iso_region":"AF-KDZ","municipality":"Kunduz","elevation_ft":1457,"latitude":36.6651,"longitude":68.910797,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8100,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK01","iata":"","local":"NK01","name":"Countryman's Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Carthage","elevation_ft":790,"latitude":43.9995002746582,"longitude":-75.60489654541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PR25","iata":"","local":"PR25","name":"Lajas Airpark","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Lajas","elevation_ft":30,"latitude":18.0125007629,"longitude":-67.0691986084,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2866,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJRV","iata":"NRR","local":"RVR","name":"José Aponte de la Torre Airport","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Ceiba","elevation_ft":38,"latitude":18.2453,"longitude":-65.643402,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":11000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VIAM","iata":"","local":"VI18","name":"Ambala Air Force Station","category":"medium_airport","iso_country":"IN","iso_region":"IN-HR","municipality":"Ambala","elevation_ft":909,"latitude":30.368099,"longitude":76.816704,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9224,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VIPK","iata":"IXP","local":"","name":"Pathankot Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-PB","municipality":"Pathankot","elevation_ft":1017,"latitude":32.233611,"longitude":75.634444,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9000,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VABV","iata":"BHU","local":"","name":"Bhavnagar Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-GJ","municipality":"Bhavnagar","elevation_ft":44,"latitude":21.752199173,"longitude":72.1852035522,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6302,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VAKS","iata":"IXK","local":"","name":"Keshod Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-GJ","municipality":"Keshod","elevation_ft":167,"latitude":21.317101,"longitude":70.270401,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4498,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VAPR","iata":"PBD","local":"","name":"Porbandar Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-GJ","municipality":"Porbandar","elevation_ft":23,"latitude":21.649524,"longitude":69.656405,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4498,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VARK","iata":"RAJ","local":"","name":"Rajkot Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-GJ","municipality":"Rajkot","elevation_ft":441,"latitude":22.3092002869,"longitude":70.77950286869999,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6047,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OAFZ","iata":"FBD","local":"","name":"Fayzabad Airport","category":"small_airport","iso_country":"AF","iso_region":"AF-BDS","municipality":"Fayzabad","elevation_ft":3872,"latitude":37.122148,"longitude":70.5201,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/26","length_ft":6049,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UUBP","iata":"BZK","local":"","name":"Bryansk Airport","category":"medium_airport","iso_country":"RU","iso_region":"RU-BRY","municipality":"Bryansk","elevation_ft":663,"latitude":53.214199,"longitude":34.176399,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7874,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BIVM","iata":"VEY","local":"","name":"Vestmannaeyjar Airport","category":"medium_airport","iso_country":"IS","iso_region":"IS-8","municipality":"Vestmannaeyjar","elevation_ft":326,"latitude":63.42430114746094,"longitude":-20.27890014648437,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3934,"width_ft":148,"surface":"H"},{"id":"03/21","length_ft":3806,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BGUK","iata":"JUV","local":"","name":"Upernavik Airport","category":"small_airport","iso_country":"GL","iso_region":"GL-AV","municipality":"Upernavik","elevation_ft":414,"latitude":72.790199,"longitude":-56.1306,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2621,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"BIVO","iata":"VPN","local":"","name":"Vopnafjörður Airport","category":"small_airport","iso_country":"IS","iso_region":"IS-7","municipality":"Vopnafjörður","elevation_ft":16,"latitude":65.72059631347656,"longitude":-14.850600242614746,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2904,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TRPG","iata":"MNI","local":"","name":"John A. Osborne Airport","category":"medium_airport","iso_country":"MS","iso_region":"MS-SP","municipality":"Gerald's Park","elevation_ft":550,"latitude":16.791401,"longitude":-62.193298,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1955,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YCBA","iata":"CAZ","local":"","name":"Cobar Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NSW","municipality":"UNKNOWN","elevation_ft":724,"latitude":-31.538299560546875,"longitude":145.79400634765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5564,"width_ft":98,"surface":"H"},{"id":"17/35","length_ft":2949,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YCDU","iata":"CED","local":"","name":"Ceduna Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-SA","municipality":"UNKNOWN","elevation_ft":77,"latitude":-32.13059997558594,"longitude":133.7100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5709,"width_ft":98,"surface":"H"},{"id":"17/35","length_ft":3327,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YMOR","iata":"MRZ","local":"","name":"Moree Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NSW","municipality":"Moree","elevation_ft":701,"latitude":-29.4988994598,"longitude":149.845001221,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5292,"width_ft":98,"surface":"H"},{"id":"05/23","length_ft":3205,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TGPY","iata":"GND","local":"","name":"Maurice Bishop International Airport","category":"medium_airport","iso_country":"GD","iso_region":"GD-GE","municipality":"Saint George's","elevation_ft":41,"latitude":12.0042,"longitude":-61.786201,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8967,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TDPD","iata":"DOM","local":"","name":"Douglas-Charles Airport","category":"medium_airport","iso_country":"DM","iso_region":"DM-02","municipality":"Marigot","elevation_ft":73,"latitude":15.547,"longitude":-61.299999,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5761,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TLPC","iata":"SLU","local":"","name":"George F. L. Charles Airport","category":"medium_airport","iso_country":"LC","iso_region":"LC-02","municipality":"Castries","elevation_ft":22,"latitude":14.0202,"longitude":-60.992901,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6227,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TQPF","iata":"AXA","local":"","name":"Clayton J Lloyd International Airport","category":"medium_airport","iso_country":"AI","iso_region":"AI-U-A","municipality":"The Valley","elevation_ft":127,"latitude":18.204773,"longitude":-63.05383,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5462,"width_ft":98,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.5}],"has_metar":false,"public":true},{"icao":"YESP","iata":"EPR","local":"","name":"Esperance Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"Esperance","elevation_ft":470,"latitude":-33.684399,"longitude":121.822998,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5905,"width_ft":98,"surface":"H"},{"id":"03/21","length_ft":3865,"width_ft":59,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJMZ","iata":"MAZ","local":"MAZ","name":"Eugenio Maria De Hostos Airport","category":"medium_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Mayaguez","elevation_ft":28,"latitude":18.255699157714844,"longitude":-67.14849853515625,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4998,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJAB","iata":"ARE","local":"ABO","name":"Antonio Nery Juarbe Pol Airport","category":"medium_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Arecibo","elevation_ft":23,"latitude":18.45085,"longitude":-66.675768,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3964,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJVQ","iata":"VQS","local":"VQS","name":"Antonio Rivera Rodriguez Airport","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Vieques","elevation_ft":49,"latitude":18.1348,"longitude":-65.493599,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4301,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PR10","iata":"","local":"PR10","name":"Boqueron Airport","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Cabo Rojo","elevation_ft":3,"latitude":18.010700225830078,"longitude":-67.14129638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02PR","iata":"","local":"02PR","name":"Cuylers Airport","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Vega Baja","elevation_ft":15,"latitude":18.464924,"longitude":-66.363773,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YLRE","iata":"LRE","local":"","name":"Longreach Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Longreach","elevation_ft":627,"latitude":-23.4342002869,"longitude":144.279998779,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6352,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PR20","iata":"","local":"PR20","name":"Adjuntas Airport","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Adjuntas","elevation_ft":2340,"latitude":18.1802,"longitude":-66.756897,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJCP","iata":"CPX","local":"CPX","name":"Benjamin Rivera Noriega Airport","category":"small_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Culebra","elevation_ft":49,"latitude":18.312954,"longitude":-65.303893,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AYWK","iata":"WWK","local":"","name":"Wewak International Airport","category":"medium_airport","iso_country":"PG","iso_region":"PG-ESW","municipality":"Wewak","elevation_ft":19,"latitude":-3.58383011818,"longitude":143.669006348,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5249,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TFFG","iata":"SFG","local":"","name":"Grand Case-Espérance Airport","category":"medium_airport","iso_country":"MF","iso_region":"MF-U-A","municipality":"Grand Case","elevation_ft":7,"latitude":18.099899,"longitude":-63.047199,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3937,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NZQN","iata":"ZQN","local":"","name":"Queenstown International Airport","category":"medium_airport","iso_country":"NZ","iso_region":"NZ-OTA","municipality":"Queenstown","elevation_ft":1171,"latitude":-45.021099,"longitude":168.738998,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6198,"width_ft":148,"surface":"H"},{"id":"14/32","length_ft":2920,"width_ft":33,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YCBP","iata":"CPD","local":"","name":"Coober Pedy Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-SA","municipality":"Coober Pedy","elevation_ft":740,"latitude":-29.038312,"longitude":134.722166,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4685,"width_ft":98,"surface":"H"},{"id":"14/32","length_ft":2720,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YBHI","iata":"BHQ","local":"","name":"Broken Hill Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NSW","municipality":"Broken Hill","elevation_ft":958,"latitude":-32.0013999939,"longitude":141.472000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8241,"width_ft":98,"surface":"H"},{"id":"14/32","length_ft":3281,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YMTG","iata":"MGB","local":"","name":"Mount Gambier Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-SA","municipality":"Mount Gambier","elevation_ft":0,"latitude":-37.744382,"longitude":140.780561,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5394,"width_ft":98,"surface":"H"},{"id":"11/29","length_ft":3025,"width_ft":98,"surface":"H"},{"id":"06/24","length_ft":2776,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YBDV","iata":"BVI","local":"","name":"Birdsville Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"UNKNOWN","elevation_ft":159,"latitude":-25.897499084472656,"longitude":139.34800720214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5682,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EGHE","iata":"ISC","local":"","name":"St. Mary's Airport","category":"small_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"St. Mary's","elevation_ft":116,"latitude":49.9133,"longitude":-6.29167,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2280,"width_ft":75,"surface":"H"},{"id":"09/27","length_ft":1716,"width_ft":59,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UMII","iata":"VTB","local":"","name":"Vitebsk Vostochny Airport","category":"medium_airport","iso_country":"BY","iso_region":"BY-VI","municipality":"Vitebsk","elevation_ft":682,"latitude":55.126499176025,"longitude":30.349599838257,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8550,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AGGC","iata":"CHY","local":"","name":"Choiseul Bay Airport","category":"small_airport","iso_country":"SB","iso_region":"SB-CH","municipality":"UNKNOWN","elevation_ft":0,"latitude":-6.711944,"longitude":156.396111,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2700,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YGTH","iata":"GFF","local":"","name":"Griffith Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NSW","municipality":"Griffith","elevation_ft":439,"latitude":-34.2508010864,"longitude":146.067001343,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4931,"width_ft":98,"surface":"H"},{"id":"18/36","length_ft":1970,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YMIA","iata":"MQL","local":"","name":"Mildura Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-VIC","municipality":"Mildura","elevation_ft":167,"latitude":-34.229198455799995,"longitude":142.085998535,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6004,"width_ft":148,"surface":"H"},{"id":"18/36","length_ft":3737,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YWHA","iata":"WYA","local":"","name":"Whyalla Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-SA","municipality":"Whyalla","elevation_ft":41,"latitude":-33.05889892578125,"longitude":137.51400756835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5531,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YAYE","iata":"AYQ","local":"","name":"Ayers Rock Connellan Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NT","municipality":"Yulara","elevation_ft":1626,"latitude":-25.185913,"longitude":130.97703,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8527,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"EGHC","iata":"LEQ","local":"","name":"Land's End Airport","category":"small_airport","iso_country":"GB","iso_region":"GB-ENG","municipality":"Land's End","elevation_ft":398,"latitude":50.102798,"longitude":-5.67056,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2572,"width_ft":59,"surface":"H"},{"id":"07/25","length_ft":2274,"width_ft":59,"surface":"H"},{"id":"02/20","length_ft":1585,"width_ft":62,"surface":"S"},{"id":"11/29","length_ft":1568,"width_ft":59,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WALS","iata":"AAP","local":"","name":"Aji Pangeran Tumenggung Pranoto International Airport","category":"medium_airport","iso_country":"ID","iso_region":"ID-KI","municipality":"Samarinda","elevation_ft":82,"latitude":-0.374478,"longitude":117.250128,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7382,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YBCV","iata":"CTL","local":"","name":"Charleville Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Charleville","elevation_ft":1003,"latitude":-26.4132995605,"longitude":146.261993408,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5000,"width_ft":98,"surface":"H"},{"id":"18/36","length_ft":3501,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65TN","iata":"","local":"65TN","name":"Roach Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Fall Branch","elevation_ft":1750,"latitude":36.33420181274414,"longitude":-82.66169738769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82NR","iata":"","local":"82NR","name":"Big Sandy Landing","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Canton","elevation_ft":2210,"latitude":35.673812,"longitude":-82.806628,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC2","iata":"","local":"8NC2","name":"Twin Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Caroleen","elevation_ft":1000,"latitude":35.289202,"longitude":-81.785746,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NC9","iata":"","local":"9NC9","name":"Meylor Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Greensboro","elevation_ft":910,"latitude":36.209085,"longitude":-79.894182,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NC9","iata":"","local":"8NC9","name":"Western North Carolina Air Museum Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hendersonville","elevation_ft":2083,"latitude":35.307855,"longitude":-82.434263,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NR0","iata":"","local":"9NR0","name":"Smoke and Wings Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hillsborough","elevation_ft":741,"latitude":36.218055,"longitude":-79.177222,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1416,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA18","iata":"","local":"GA18","name":"Big Creek Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Clayton","elevation_ft":1650,"latitude":34.832381,"longitude":-83.409226,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC14","iata":"","local":"NC14","name":"Boone Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Boone","elevation_ft":3120,"latitude":36.1968002319336,"longitude":-81.6395034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2700,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC27","iata":"","local":"NC27","name":"Lower Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lenoir","elevation_ft":1195,"latitude":35.94459915161133,"longitude":-81.49009704589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC29","iata":"","local":"NC29","name":"Bradley Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"China Grove","elevation_ft":795,"latitude":35.62009811401367,"longitude":-80.59760284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MS5","iata":"","local":"5MS5","name":"Mint Julep Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Picayune","elevation_ft":100,"latitude":30.54520034790039,"longitude":-89.46279907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9GA1","iata":"","local":"9GA1","name":"Briar Patch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Clyo","elevation_ft":100,"latitude":32.449315,"longitude":-81.337781,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL51","iata":"","local":"AL51","name":"Flying C's Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Crawford","elevation_ft":395,"latitude":32.416099548339844,"longitude":-85.29920196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1860,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC32","iata":"","local":"NC32","name":"Rivercliff Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Clemmons","elevation_ft":690,"latitude":36.025799,"longitude":-80.436402,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC93","iata":"","local":"NC93","name":"South River Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Salisbury","elevation_ft":650,"latitude":35.777801513671875,"longitude":-80.50140380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1850,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98TN","iata":"","local":"98TN","name":"Landing At River'S Edge","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Blaine","elevation_ft":1019,"latitude":36.1425,"longitude":-83.604167,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC24","iata":"","local":"SC24","name":"Eagle Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Seneca","elevation_ft":850,"latitude":34.67169952392578,"longitude":-82.9135971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC07","iata":"","local":"SC07","name":"Alan's Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Orangeburg","elevation_ft":369,"latitude":33.675328,"longitude":-80.950098,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2675,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA44","iata":"","local":"GA44","name":"Richards Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Lagrange","elevation_ft":650,"latitude":33.081113,"longitude":-85.018559,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL09","iata":"","local":"AL09","name":"Cloudmont Airpark","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Mentone","elevation_ft":1692,"latitude":34.53340148925781,"longitude":-85.59020233154297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2450,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN52","iata":"","local":"TN52","name":"King Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Winchester","elevation_ft":1050,"latitude":35.13809967041016,"longitude":-86.08110046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE72","iata":"","local":"GE72","name":"Hannah Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Royston","elevation_ft":728,"latitude":34.235313,"longitude":-83.153018,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":834,"width_ft":50,"surface":"T"},{"id":"12/30","length_ft":1002,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL18","iata":"","local":"AL18","name":"Parker Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Gardendale","elevation_ft":590,"latitude":33.67620086669922,"longitude":-86.86750030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS82","iata":"","local":"MS82","name":"Shade Tree Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Lyman","elevation_ft":113,"latitude":30.510499954223636,"longitude":-89.14730072021484,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82GA","iata":"","local":"82GA","name":"Paces South Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Wadley","elevation_ft":275,"latitude":32.808799743652344,"longitude":-82.38529968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC30","iata":"","local":"NC30","name":"Miller Air Park","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mooresville","elevation_ft":864,"latitude":35.61399841308594,"longitude":-80.74150085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2060,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NR70","iata":"","local":"NR70","name":"Soaring Q Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Salisbury","elevation_ft":765,"latitude":35.7773,"longitude":-80.520705,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1638,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC97","iata":"","local":"NC97","name":"Dirt Dobber's Grass Strip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Shelby","elevation_ft":930,"latitude":35.3689,"longitude":-81.522499,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC39","iata":"","local":"SC39","name":"Green Pond Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Woodruff","elevation_ft":788,"latitude":34.808553,"longitude":-82.077377,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2850,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC56","iata":"","local":"SC56","name":"Thomason Airfield","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Mountville","elevation_ft":642,"latitude":34.36349868774414,"longitude":-81.99320220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL71","iata":"","local":"AL71","name":"Willow Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Our Town","elevation_ft":551,"latitude":32.8036994934082,"longitude":-85.98049926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GA6","iata":"","local":"8GA6","name":"S & S Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Griffin","elevation_ft":900,"latitude":33.161388,"longitude":-84.320517,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":145,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL27","iata":"","local":"AL27","name":"Headquarters Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Centre","elevation_ft":610,"latitude":34.1057014465332,"longitude":-85.56580352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"66TN","iata":"","local":"66TN","name":"Basham Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Morrison","elevation_ft":1099,"latitude":35.523383,"longitude":-85.846472,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2679,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN96","iata":"","local":"TN96","name":"Fall Creek Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lebanon","elevation_ft":675,"latitude":36.04119873046875,"longitude":-86.3582992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN09","iata":"","local":"TN09","name":"Fergusons Flying Circus Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Philadelphia","elevation_ft":910,"latitude":35.7140007019043,"longitude":-84.41100311279297,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN49","iata":"","local":"TN49","name":"Bellwood Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lebanon","elevation_ft":589,"latitude":36.262208,"longitude":-86.162139,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2718,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7GE5","iata":"","local":"7GE5","name":"Sunset Strip","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Centralhatchee","elevation_ft":740,"latitude":33.35919952392578,"longitude":-85.11750030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC13","iata":"","local":"NC13","name":"Yorks Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Ramseur","elevation_ft":571,"latitude":35.753566,"longitude":-79.667933,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NR94","iata":"","local":"NR94","name":"Heavenly Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Lawsonville","elevation_ft":1050,"latitude":36.522324,"longitude":-80.27755,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC75","iata":"","local":"SC75","name":"Oolenoy Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Pickens","elevation_ft":1000,"latitude":34.998199462890625,"longitude":-82.73490142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC00","iata":"","local":"SC00","name":"Triple Tree Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Woodruff","elevation_ft":680,"latitude":34.667949,"longitude":-81.999979,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7000,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA81","iata":"","local":"GA81","name":"Cameron Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Valley","elevation_ft":380,"latitude":32.549836,"longitude":-83.827425,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4GA7","iata":"","local":"4GA7","name":"Kitchens Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Griffin","elevation_ft":800,"latitude":33.134568,"longitude":-84.253287,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA73","iata":"","local":"GA73","name":"Shade Tree Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":850,"latitude":33.16283,"longitude":-84.445239,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL32","iata":"","local":"AL32","name":"Flying BK Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Cedar Bluff","elevation_ft":670,"latitude":34.322601,"longitude":-85.6437,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGAD","iata":"GAD","local":"GAD","name":"Northeast Alabama Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Gadsden","elevation_ft":569,"latitude":33.972599,"longitude":-86.088996,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":6802,"width_ft":150,"surface":"A"},{"id":"18/36","length_ft":4806,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8TN3","iata":"","local":"8TN3","name":"Raby Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Farragut","elevation_ft":830,"latitude":35.84170150756836,"longitude":-84.18109893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN64","iata":"","local":"TN64","name":"West Wind Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sweetwater","elevation_ft":1000,"latitude":35.5442008972168,"longitude":-84.53279876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE99","iata":"","local":"GE99","name":"Heaven's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Clayton","elevation_ft":2724,"latitude":34.914398193400004,"longitude":-83.4597015381,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5062,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC88","iata":"","local":"SC88","name":"Turner Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Chesnee","elevation_ft":935,"latitude":35.147301,"longitude":-81.794268,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC26","iata":"","local":"SC26","name":"Hawks Nest Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"West Union","elevation_ft":1050,"latitude":34.808101654052734,"longitude":-82.99859619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE30","iata":"","local":"GE30","name":"Sandy Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Waynesboro","elevation_ft":310,"latitude":33.221099853515625,"longitude":-81.99530029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5GE1","iata":"","local":"5GE1","name":"Peachtree Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fort Valley","elevation_ft":447,"latitude":32.5703010559082,"longitude":-83.7219009399414,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA74","iata":"","local":"GA74","name":"Takle Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Concord","elevation_ft":850,"latitude":33.04180145263672,"longitude":-84.41239929199219,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6GA8","iata":"","local":"6GA8","name":"Flying W Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Carrollton","elevation_ft":1010,"latitude":33.5078010559082,"longitude":-85.18560028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA95","iata":"","local":"GA95","name":"Coleman Field","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Fayetteville","elevation_ft":1010,"latitude":33.526199,"longitude":-84.502197,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97GA","iata":"","local":"97GA","name":"B Tree Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Gillsville","elevation_ft":1000,"latitude":34.2681999206543,"longitude":-83.6720962524414,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55GE","iata":"","local":"55GE","name":"Rostex Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Crandall","elevation_ft":887,"latitude":34.979764,"longitude":-84.741926,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TN4","iata":"","local":"6TN4","name":"The Aviation Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Tullahoma","elevation_ft":890,"latitude":35.42190170288086,"longitude":-86.29029846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN12","iata":"","local":"TN12","name":"Hudgin Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lewisburg","elevation_ft":725,"latitude":35.47359848022461,"longitude":-86.68000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC86","iata":"","local":"SC86","name":"Williamsport Airpark","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Easley","elevation_ft":1100,"latitude":34.861826,"longitude":-82.58145,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2380,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC72","iata":"","local":"SC72","name":"Chandelle Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Greer","elevation_ft":850,"latitude":34.824161,"longitude":-82.14632,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3700,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC47","iata":"","local":"SC47","name":"Parker Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Simpsonville","elevation_ft":860,"latitude":34.76139831542969,"longitude":-82.1613998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC03","iata":"","local":"SC03","name":"Mc Neil Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Cameron","elevation_ft":170,"latitude":33.5570983887,"longitude":-80.648399353,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC48","iata":"","local":"SC48","name":"Byrd Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Turbeville","elevation_ft":110,"latitude":33.884300231933594,"longitude":-79.99980163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA39","iata":"","local":"GA39","name":"Hodges Airpark","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Savannah","elevation_ft":10,"latitude":31.984399795532227,"longitude":-81.24620056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2640,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GE26","iata":"","local":"GE26","name":"Duke Strip 2","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Dublin","elevation_ft":340,"latitude":32.381667,"longitude":-83.059722,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL89","iata":"","local":"AL89","name":"Sommerset Strip","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Opelika","elevation_ft":820,"latitude":32.71870040893555,"longitude":-85.36689758300781,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA86","iata":"","local":"GA86","name":"Little Tobesofkee Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Barnesville","elevation_ft":755,"latitude":32.9838981628418,"longitude":-84.09559631347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8GA9","iata":"","local":"8GA9","name":"Brook Bridge Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Vaughn","elevation_ft":820,"latitude":33.276798248291016,"longitude":-84.41079711914062,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2970,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"GA62","iata":"","local":"GA62","name":"Cedar Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-GA","municipality":"Griffin","elevation_ft":820,"latitude":33.25510025024414,"longitude":-84.40019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18L/36R","length_ft":3000,"width_ft":40,"surface":"A"},{"id":"18R/36L","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN39","iata":"","local":"TN39","name":"Amacher Strip","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Tullahoma","elevation_ft":1080,"latitude":35.305599212646484,"longitude":-86.23670196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN67","iata":"","local":"TN67","name":"Myers-Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Estill Springs","elevation_ft":900,"latitude":35.24789810180664,"longitude":-86.12860107421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA26","iata":"","local":"LA26","name":"Unicorn Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Folsom","elevation_ft":147,"latitude":30.66110038757324,"longitude":-90.2332992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2375,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN08","iata":"","local":"TN08","name":"Oliver Springs Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Oliver Springs","elevation_ft":790,"latitude":36.03760147094727,"longitude":-84.30690002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRKW","iata":"RKW","local":"RKW","name":"Rockwood Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Rockwood","elevation_ft":1664,"latitude":35.9222984314,"longitude":-84.6896972656,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL77","iata":"","local":"AL77","name":"Smart Road Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Troy","elevation_ft":425,"latitude":31.7406005859375,"longitude":-86.00700378417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22MS","iata":"","local":"22MS","name":"Sky Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Lucedale","elevation_ft":260,"latitude":30.836486,"longitude":-88.57056,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS48","iata":"","local":"MS48","name":"George Ford Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Picayune","elevation_ft":60,"latitude":30.62190055847168,"longitude":-89.69650268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2735,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN07","iata":"","local":"TN07","name":"Hawk Haven Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Eagleville","elevation_ft":775,"latitude":35.687198638916016,"longitude":-86.60639953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN83","iata":"","local":"TN83","name":"Cedar Glade Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":770,"latitude":35.720789,"longitude":-86.275016,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN17","iata":"","local":"TN17","name":"Vintage Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sweetwater","elevation_ft":990,"latitude":35.582298278808594,"longitude":-84.48799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL60","iata":"","local":"AL60","name":"Dugger's Field","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Ashville","elevation_ft":560,"latitude":33.83869934082031,"longitude":-86.2114028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS26","iata":"","local":"MS26","name":"Cedar Creek Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Lucedale","elevation_ft":165,"latitude":30.80220031738281,"longitude":-88.54750061035156,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":4080,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA79","iata":"","local":"LA79","name":"Sycamore Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Amite","elevation_ft":180,"latitude":30.7185001373291,"longitude":-90.35790252685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL16","iata":"","local":"AL16","name":"Turkey Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Pinson","elevation_ft":640,"latitude":33.72679901123047,"longitude":-86.72360229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"AL35","iata":"","local":"AL35","name":"Mc Ginnis Airport","category":"small_airport","iso_country":"US","iso_region":"US-AL","municipality":"Loxley","elevation_ft":125,"latitude":30.619600296,"longitude":-87.7043991089,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1450,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"FD94","iata":"","local":"FD94","name":"Hartzog Field","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Chipley","elevation_ft":125,"latitude":30.718900680541992,"longitude":-85.60669708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNRQ","iata":"","local":"NRQ","name":"Spencer Nolf Airport","category":"small_airport","iso_country":"US","iso_region":"US-FL","municipality":"Pace","elevation_ft":151,"latitude":30.62529945373535,"longitude":-87.13999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"04L/22R","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"09L/27R","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"09R/27L","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"13L/31R","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"13R/31L","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"18L/36R","length_ft":1800,"width_ft":150,"surface":"A"},{"id":"18R/36L","length_ft":1800,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA13","iata":"","local":"LA13","name":"Shaw Crop Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hammond","elevation_ft":95,"latitude":30.57819938659668,"longitude":-90.31590270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS92","iata":"","local":"LS92","name":"Koenig Airpark","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Robert","elevation_ft":100,"latitude":30.597400665283203,"longitude":-90.31590270996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS76","iata":"","local":"LS76","name":"Hickham Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Covington","elevation_ft":25,"latitude":30.46269989013672,"longitude":-90.17009735107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS86","iata":"","local":"LS86","name":"Le Blanc Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hammond","elevation_ft":158,"latitude":30.681900024414062,"longitude":-90.41929626464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS61","iata":"","local":"MS61","name":"Simpson Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Picayune","elevation_ft":175,"latitude":30.625200271606445,"longitude":-89.7333984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS50","iata":"","local":"MS50","name":"Clay Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Monticello","elevation_ft":201,"latitude":31.57929992675781,"longitude":-90.11119842529295,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA46","iata":"","local":"LA46","name":"Omni Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Port Allen","elevation_ft":24,"latitude":30.505669,"longitude":-91.308618,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3500,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA40","iata":"","local":"LA40","name":"F L Braughton Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Vidalia","elevation_ft":50,"latitude":31.338428,"longitude":-91.593332,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":30,"surface":"A"},{"id":"N/S","length_ft":3300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS35","iata":"","local":"LS35","name":"Nauga Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"St Francisville","elevation_ft":38,"latitude":30.762500762939453,"longitude":-91.2772979736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1550,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA67","iata":"","local":"LA67","name":"Angola Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Angola","elevation_ft":45,"latitude":30.95159912109375,"longitude":-91.58480072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":40,"surface":"C"},{"id":"N/S","length_ft":2800,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA42","iata":"","local":"6LA2","name":"Capozzoli Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Prairieville","elevation_ft":24,"latitude":30.3503,"longitude":-90.922203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS34","iata":"","local":"LS34","name":"Bordelon Airpark","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Breaux Bridge","elevation_ft":22,"latitude":30.30644,"longitude":-91.85955,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2985,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1LA1","iata":"","local":"1LA1","name":"Triche Field","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Hahnville","elevation_ft":10,"latitude":29.98349952697754,"longitude":-90.43479919433594,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33LA","iata":"","local":"33LA","name":"Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Youngsville","elevation_ft":25,"latitude":30.069599151611328,"longitude":-91.98619842529295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35LA","iata":"","local":"35LA","name":"Ms Pats Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Abbeville","elevation_ft":10,"latitude":29.97450065612793,"longitude":-92.17610168457033,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS14","iata":"","local":"LS14","name":"Lyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Thornwell","elevation_ft":6,"latitude":30.070999,"longitude":-92.825104,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT19","iata":"","local":"TT19","name":"Circle C Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hardin","elevation_ft":72,"latitude":30.157615,"longitude":-94.709893,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2280,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65XA","iata":"","local":"65XA","name":"Barnes Air Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Barnes","elevation_ft":240,"latitude":30.903575,"longitude":-94.695836,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1665,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS18","iata":"","local":"LS18","name":"Ag Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Welsh","elevation_ft":21,"latitude":30.223899841308597,"longitude":-92.77860260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":140,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS70","iata":"","local":"LS70","name":"Lake Air Service-Pine Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Jennings","elevation_ft":39,"latitude":30.340649,"longitude":-92.736958,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3875,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LS59","iata":"","local":"","name":"La Petite Airdrome Ultralightport","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Opelousas","elevation_ft":63,"latitude":30.629232,"longitude":-92.189079,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":2325,"width_ft":200,"surface":"W"},{"id":"17/35","length_ft":3031,"width_ft":210,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68LA","iata":"","local":"68LA","name":"Pilkinton Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Bossier City","elevation_ft":148,"latitude":32.329938,"longitude":-93.518169,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS35","iata":"","local":"TS35","name":"West Liberty Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dayton","elevation_ft":80,"latitude":30.057005,"longitude":-94.980175,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS44","iata":"","local":"TS44","name":"Dry Branch Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pattison","elevation_ft":130,"latitude":29.84000015258789,"longitude":-96.02330017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68TE","iata":"","local":"68TE","name":"Norris Raun Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":108,"latitude":29.19610023498535,"longitude":-96.4918975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2630,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS21","iata":"","local":"XS21","name":"H & S Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Damon","elevation_ft":100,"latitude":29.331100463867188,"longitude":-95.70469665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS86","iata":"","local":"XS86","name":"T-Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Devine","elevation_ft":880,"latitude":29.266123,"longitude":-98.923859,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84XS","iata":"","local":"84XS","name":"Lang Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Home","elevation_ft":2200,"latitude":30.255,"longitude":-99.398889,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1820,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS00","iata":"","local":"XS00","name":"Flying D Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Llano","elevation_ft":1460,"latitude":30.63719940185547,"longitude":-98.74829864501952,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS77","iata":"","local":"XS77","name":"Seafood Warehouse Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crystal Beach","elevation_ft":9,"latitude":29.465499877929688,"longitude":-94.62740325927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"LA51","iata":"","local":"LA51","name":"Stuart Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-LA","municipality":"Coushatta","elevation_ft":130,"latitude":32.017444,"longitude":-93.431792,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA61","iata":"","local":"TA61","name":"Kay Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Winona","elevation_ft":315,"latitude":32.4734992980957,"longitude":-95.16580200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE91","iata":"","local":"TE91","name":"Harrison Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Troup","elevation_ft":445,"latitude":32.03929901123047,"longitude":-95.08280181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA71","iata":"","local":"XA71","name":"North Cedar Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Apple Springs","elevation_ft":250,"latitude":31.277299880981445,"longitude":-94.9739990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS09","iata":"","local":"XS09","name":"Estates Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Waverly","elevation_ft":325,"latitude":30.537500381469727,"longitude":-95.4364013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4XS0","iata":"","local":"4XS0","name":"Pfeffer & Son Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waller","elevation_ft":210,"latitude":29.931357,"longitude":-95.95871,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5200,"width_ft":200,"surface":"T"},{"id":"17/35","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72TA","iata":"","local":"72TA","name":"Pierce Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Port O'Connor","elevation_ft":5,"latitude":28.45859909057617,"longitude":-96.29190063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3763,"width_ft":30,"surface":"A"},{"id":"18/36","length_ft":2913,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA66","iata":"","local":"TA66","name":"Freedom Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pipe Creek","elevation_ft":1400,"latitude":29.715421,"longitude":-98.858834,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2150,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE21","iata":"","local":"TE21","name":"Lobo Mountain Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bandera","elevation_ft":1540,"latitude":29.6513,"longitude":-99.086403,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE51","iata":"","local":"TE51","name":"Lackorn Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Seguin","elevation_ft":420,"latitude":29.539100646972656,"longitude":-97.83499908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS18","iata":"","local":"TS18","name":"Kingsland Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kingsland","elevation_ft":873,"latitude":30.654956,"longitude":-98.484928,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3233,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS18","iata":"","local":"XS18","name":"Tom J Moore Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Millican","elevation_ft":198,"latitude":30.384700775146484,"longitude":-96.22470092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA47","iata":"","local":"XA47","name":"Tick Hill Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Moody","elevation_ft":645,"latitude":31.30970001220703,"longitude":-97.48480224609376,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE52","iata":"","local":"TE52","name":"Chigger Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cresson","elevation_ft":950,"latitude":32.5359992980957,"longitude":-97.5886001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3050,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA33","iata":"","local":"XA33","name":"Thorny Woods Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Caddo Mills","elevation_ft":540,"latitude":32.95869827270508,"longitude":-96.26439666748048,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS57","iata":"","local":"TS57","name":"Red Ace Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":900,"latitude":33.241798400878906,"longitude":-97.62110137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4750,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5TE7","iata":"","local":"5TE7","name":"Renz Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Lake","elevation_ft":220,"latitude":29.71940040588379,"longitude":-96.30940246582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":40,"surface":"T"},{"id":"18/36","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6TE5","iata":"","local":"6TE5","name":"Kubecka Flying Service Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Edna","elevation_ft":65,"latitude":28.98080062866211,"longitude":-96.62190246582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5440,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS43","iata":"","local":"XS43","name":"Medina River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pipe Creek","elevation_ft":1216,"latitude":29.66114,"longitude":-98.956561,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":100,"surface":"T"},{"id":"14/32","length_ft":1600,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA24","iata":"","local":"TA24","name":"Smoky Bend Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mullin","elevation_ft":1320,"latitude":31.472514,"longitude":-98.702014,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4075,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE17","iata":"","local":"TE17","name":"Heathrow Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Robinson","elevation_ft":525,"latitude":31.438513,"longitude":-97.145842,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX48","iata":"","local":"TX48","name":"Talley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Clifton","elevation_ft":880,"latitude":31.832222,"longitude":-97.718889,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2418,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA18","iata":"","local":"TA18","name":"Sunset Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Forney","elevation_ft":444,"latitude":32.70709991455078,"longitude":-96.47940063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX78","iata":"","local":"TX78","name":"Block Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvarado","elevation_ft":755,"latitude":32.329200744628906,"longitude":-97.23190307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA36","iata":"","local":"XA36","name":"Cook Children's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":641,"latitude":32.738138,"longitude":-97.341534,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA72","iata":"","local":"XA72","name":"Stocker Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Krum","elevation_ft":770,"latitude":33.27690124511719,"longitude":-97.28939819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":30,"surface":"T"},{"id":"17/35","length_ft":1900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA34","iata":"","local":"XA34","name":"Allison Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":850,"latitude":33.24169921875,"longitude":-97.4280014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA37","iata":"","local":"XA37","name":"Plaza Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":607,"latitude":32.734742,"longitude":-97.34421,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA38","iata":"","local":"XA38","name":"Mickler Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Friendswood","elevation_ft":38,"latitude":29.48530006408692,"longitude":-95.2082977294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA40","iata":"","local":"XA40","name":"Richardson Regional Heliport - Bush Highway","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Richardson","elevation_ft":615,"latitude":32.996194,"longitude":-96.665619,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA45","iata":"","local":"","name":"Weedfalls Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lone Oak","elevation_ft":560,"latitude":33.021198,"longitude":-95.930801,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":992,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA46","iata":"","local":"XA46","name":"Creekside Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineola","elevation_ft":450,"latitude":32.693599700927734,"longitude":-95.45439910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA49","iata":"","local":"","name":"Oso Canyon Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Langtry","elevation_ft":1820,"latitude":29.897575,"longitude":-101.579628,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1637,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA50","iata":"","local":"XA50","name":"UT Health East Texas Quitman Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Quitman","elevation_ft":400,"latitude":32.797133,"longitude":-95.443831,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA43","iata":"","local":"XA43","name":"Fall Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kerrville","elevation_ft":2030,"latitude":29.908100128173828,"longitude":-99.20690155029295,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2350,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA41","iata":"","local":"XA41","name":"Lone Star Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Harper","elevation_ft":2220,"latitude":30.354999542236328,"longitude":-99.24749755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA44","iata":"","local":"XA44","name":"Birchfield Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lometa","elevation_ft":1550,"latitude":31.26609992980957,"longitude":-98.42389678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA42","iata":"","local":"XA42","name":"Connies Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kaufman","elevation_ft":340,"latitude":32.375718,"longitude":-96.385668,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2387,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA53","iata":"","local":"XA53","name":"Texas Health Presbyterian Hospital Allen Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Allen","elevation_ft":664,"latitude":33.117067,"longitude":-96.67232,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA54","iata":"","local":"XA54","name":"Glen Rose Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Glen Rose","elevation_ft":619,"latitude":32.241882,"longitude":-97.746321,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA56","iata":"","local":"XA56","name":"Hunt Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Greenville","elevation_ft":561,"latitude":33.122295,"longitude":-96.125103,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA57","iata":"","local":"XA57","name":"Wise Regional Health System Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":957,"latitude":33.216458,"longitude":-97.593487,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA59","iata":"","local":"XA59","name":"Medical City Lewisville Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lewisville","elevation_ft":546,"latitude":33.044145,"longitude":-97.005358,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA61","iata":"","local":"XA61","name":"Baylor University Medical Center Dallas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":551,"latitude":32.788331,"longitude":-96.7801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA62","iata":"","local":"XA62","name":"Methodist Dallas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":600,"latitude":32.7605018616,"longitude":-96.8246994019,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA63","iata":"","local":"XA63","name":"AAF Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lucas","elevation_ft":615,"latitude":33.0890007019043,"longitude":-96.59210205078124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA64","iata":"","local":"","name":"Nash Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Batesville","elevation_ft":780,"latitude":28.9617,"longitude":-99.3853,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA65","iata":"","local":"X65","name":"TXAeroSport Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dorchester","elevation_ft":855,"latitude":33.53611,"longitude":-96.680331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA52","iata":"","local":"XA52","name":"Ehni Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Trinity","elevation_ft":225,"latitude":30.92350006103516,"longitude":-95.2935028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA51","iata":"","local":"XA51","name":"Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Robinson","elevation_ft":525,"latitude":31.41830062866211,"longitude":-97.12580108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA67","iata":"","local":"XA67","name":"St. Joseph Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":90,"latitude":29.747806,"longitude":-95.367672,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA69","iata":"","local":"XA69","name":"Shelton Private Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tolar","elevation_ft":1070,"latitude":32.33610153198242,"longitude":-97.96939849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA70","iata":"","local":"XA70","name":"DeTar Hospital Navarro Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Victoria","elevation_ft":102,"latitude":28.8083,"longitude":-96.996696,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA77","iata":"","local":"XA77","name":"Benny White Flying Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lamesa","elevation_ft":2943,"latitude":32.751188,"longitude":-101.780391,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4150,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA73","iata":"","local":"XA73","name":"Galveston Helipad Area Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":10,"latitude":29.322778,"longitude":-94.78611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA74","iata":"","local":"XA74","name":"Midstream Galveston Helipad Area Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Galveston","elevation_ft":10,"latitude":29.325119,"longitude":-94.784559,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA76","iata":"","local":"XA76","name":"Kriv Fox 26 Television Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":62,"latitude":29.72769927978516,"longitude":-95.44719696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA75","iata":"","local":"XA75","name":"Double A Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Grandview","elevation_ft":635,"latitude":32.32400131225586,"longitude":-97.09970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA78","iata":"","local":"XA78","name":"Melody Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Springs","elevation_ft":729,"latitude":33.46229934692383,"longitude":-97.0709991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1600,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA68","iata":"","local":"3TX","name":"Akroville Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Slidell","elevation_ft":895,"latitude":33.3918,"longitude":-97.355301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA79","iata":"","local":"XA79","name":"Baylor Regional Medical Center At Plano Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":688,"latitude":33.014233,"longitude":-96.789967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA80","iata":"","local":"XA80","name":"Martin Energy Services Harbor Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Aransas","elevation_ft":8,"latitude":27.846726,"longitude":-97.063127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA83","iata":"","local":"","name":"South Padre Island Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"South Padre Island","elevation_ft":10,"latitude":26.070411,"longitude":-97.15725,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA84","iata":"","local":"","name":"Stoney Fork Landing Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Valley View","elevation_ft":680,"latitude":33.482754,"longitude":-97.11981,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA87","iata":"","local":"XA87","name":"Coon Creek Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":370,"latitude":32.078399658203125,"longitude":-95.85030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA94","iata":"","local":"XA94","name":"Rick's Hilltop Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Burnet","elevation_ft":1300,"latitude":30.758539,"longitude":-98.248864,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA95","iata":"","local":"XA95","name":"Candelaria Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Candelaria","elevation_ft":2913,"latitude":30.14940071105957,"longitude":-104.68299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA88","iata":"","local":"XA88","name":"DM Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Batesville","elevation_ft":750,"latitude":28.978673,"longitude":-99.56214,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA93","iata":"","local":"XA93","name":"Tortuga Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brundage","elevation_ft":550,"latitude":28.618546,"longitude":-99.653755,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4700,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA91","iata":"","local":"XA91","name":"Wildwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Village Mills","elevation_ft":118,"latitude":30.533333,"longitude":-94.438056,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA85","iata":"","local":"XA85","name":"Cougar Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":595,"latitude":31.63330078,"longitude":-97.3167038,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA86","iata":"","local":"XA86","name":"Driftwood Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":710,"latitude":32.56700134277344,"longitude":-97.80480194091795,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2975,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA96","iata":"","local":"XA96","name":"En Gedi Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canadian","elevation_ft":2800,"latitude":35.662498474121094,"longitude":-100.3239974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":35,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA97","iata":"","local":"XA97","name":"Mother Frances-Canton Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Canton","elevation_ft":509,"latitude":32.587237,"longitude":-95.873705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS02","iata":"","local":"","name":"Tarrant County Water Control Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":540,"latitude":32.7551,"longitude":-97.343597,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":745,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS04","iata":"","local":"","name":"Crockett Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Crockett","elevation_ft":368,"latitude":31.32523,"longitude":-95.438994,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS05","iata":"","local":"","name":"H M Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Marion","elevation_ft":751,"latitude":29.598801,"longitude":-98.171097,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS06","iata":"","local":"","name":"Flying B Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Grandview","elevation_ft":665,"latitude":32.298501,"longitude":-97.149498,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1360,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS07","iata":"","local":"XS07","name":"W D Cornelius Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Markham","elevation_ft":47,"latitude":28.9503,"longitude":-96.059998,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA99","iata":"","local":"XA99","name":"Flat Bush Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":862,"latitude":33.1343994140625,"longitude":-97.60700225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS01","iata":"","local":"XS01","name":"Tschirhart Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":2060,"latitude":30.450199127197266,"longitude":-98.88619995117188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS03","iata":"","local":"XS03","name":"Herbert Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marble Falls","elevation_ft":1140,"latitude":30.486573,"longitude":-98.284951,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA98","iata":"","local":"XA98","name":"Jbj Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":890,"latitude":33.30270004272461,"longitude":-97.45809936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS19","iata":"","local":"XS19","name":"Cedar Park Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Cedar Park","elevation_ft":921,"latitude":30.532611,"longitude":-97.813445,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS22","iata":"","local":"","name":"Y O Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Home","elevation_ft":2136,"latitude":30.203326,"longitude":-99.67682,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1170,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS24","iata":"","local":"XS24","name":"Cherry Spraying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Muldoon","elevation_ft":370,"latitude":29.829700469970703,"longitude":-97.09919738769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2700,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS26","iata":"","local":"XS26","name":"Graco Mechanical Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":50,"latitude":29.726900100708008,"longitude":-95.4832992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS27","iata":"","local":"","name":"Farm Air Service Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Nome","elevation_ft":45,"latitude":30.037248,"longitude":-94.397303,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1660,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS28","iata":"","local":"","name":"North Willis Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Nome","elevation_ft":42,"latitude":30.0266,"longitude":-94.4627,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1390,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":3294,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS23","iata":"","local":"XS23","name":"Priour Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Home","elevation_ft":2200,"latitude":30.12660026550293,"longitude":-99.47119903564452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS25","iata":"","local":"XS25","name":"Flying C Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Needville","elevation_ft":70,"latitude":29.384700775146484,"longitude":-95.68299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS20","iata":"","local":"XS20","name":"Dos Arroyos Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mountain Home","elevation_ft":2058,"latitude":30.15410041809082,"longitude":-99.29779815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3700,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS12","iata":"","local":"XS12","name":"Liberty Hill Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Liberty Hill","elevation_ft":1161,"latitude":30.678058,"longitude":-98.017294,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":25,"surface":"A"},{"id":"H1","length_ft":200,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS14","iata":"","local":"XS14","name":"Weese International Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Greenville","elevation_ft":487,"latitude":32.96939849853516,"longitude":-96.0706024169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS29","iata":"","local":"","name":"Sonny Broussard Landing Strip","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Nome","elevation_ft":35,"latitude":29.990801,"longitude":-94.422401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS30","iata":"","local":"XS30","name":"Burress Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paris","elevation_ft":484,"latitude":33.605098724365234,"longitude":-95.48190307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS32","iata":"","local":"XS32","name":"Nucor Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Jewett","elevation_ft":443,"latitude":31.34499931335449,"longitude":-96.16500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS38","iata":"","local":"XS38","name":"3321 Westside Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pasadena","elevation_ft":36,"latitude":29.66101,"longitude":-95.201908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS39","iata":"","local":"","name":"A&A Flying Service Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Pearland","elevation_ft":49,"latitude":29.536301,"longitude":-95.264099,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2478,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS41","iata":"","local":"XS41","name":"Heart Hospital of Austin Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":667,"latitude":30.306,"longitude":-97.741402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS42","iata":"","local":"","name":"Agricultural Supplies Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Pearsall","elevation_ft":651,"latitude":28.929399,"longitude":-99.080299,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2188,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS44","iata":"","local":"XS44","name":"Rancho del Cielo Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Davis","elevation_ft":4408,"latitude":31.015301,"longitude":-104.211998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6280,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS45","iata":"","local":"XS45","name":"Mustang Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port Aransas","elevation_ft":10,"latitude":27.715900421142575,"longitude":-97.1729965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS33","iata":"","local":"XS33","name":"Chesson Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Orange","elevation_ft":10,"latitude":30.062557,"longitude":-93.865664,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":43,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS31","iata":"","local":"XS31","name":"Graham Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sadler","elevation_ft":695,"latitude":33.70180130004883,"longitude":-96.83190155029295,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS46","iata":"","local":"","name":"Port O'Connor Private Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Port O'Connor","elevation_ft":8,"latitude":28.430002,"longitude":-96.44299,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3291,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS48","iata":"","local":"XS48","name":"Marlin's Meadow Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Yantis","elevation_ft":490,"latitude":32.953889,"longitude":-95.5775,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2840,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS53","iata":"","local":"","name":"Price Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Big Wells","elevation_ft":532,"latitude":28.5961,"longitude":-99.571404,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2277,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS54","iata":"","local":"XS54","name":"Sheraton Arlington Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Arlington","elevation_ft":535,"latitude":32.757801,"longitude":-97.0811,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS62","iata":"","local":"","name":"Casey Three Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Rio Frio","elevation_ft":1586,"latitude":29.633301,"longitude":-99.728699,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS59","iata":"","local":"XS59","name":"Mellon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Refugio","elevation_ft":38,"latitude":28.280799865722656,"longitude":-97.2114028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4650,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS47","iata":"","local":"XS47","name":"Maurice Dauwe Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Poteet","elevation_ft":447,"latitude":29.000200271606445,"longitude":-98.57109832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS58","iata":"","local":"XS58","name":"Tri-County Air Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Raywood","elevation_ft":70,"latitude":30.044323,"longitude":-94.706059,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS57","iata":"","local":"XS57","name":"Havelka Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mc Gregor","elevation_ft":711,"latitude":31.464969,"longitude":-97.404658,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2250,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS55","iata":"","local":"XS55","name":"Gizmo Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Malone","elevation_ft":551,"latitude":31.92930030822754,"longitude":-96.93890380859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS60","iata":"","local":"XS60","name":"Mustang Community Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Aubrey","elevation_ft":605,"latitude":33.31840133666992,"longitude":-96.90599822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS65","iata":"","local":"XS65","name":"Kitching Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":620,"latitude":30.147563,"longitude":-97.765161,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS68","iata":"","local":"XS68","name":"Sky Lane Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Chappell Hill","elevation_ft":290,"latitude":30.256859,"longitude":-96.328824,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS69","iata":"","local":"XS69","name":"Hackberry Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Barksdale","elevation_ft":1829,"latitude":29.892696,"longitude":-100.016799,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS70","iata":"","local":"XS70","name":"Glover Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mount Pleasant","elevation_ft":400,"latitude":33.13460159301758,"longitude":-95.01799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS73","iata":"","local":"","name":"Double D Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Rosanky","elevation_ft":520,"latitude":29.877044,"longitude":-97.290004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS74","iata":"","local":"","name":"Diamondaire Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":424,"latitude":31.6082,"longitude":-97.162804,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS67","iata":"","local":"XS67","name":"San Jose Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rockport","elevation_ft":10,"latitude":27.944499969482425,"longitude":-96.98500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4901,"width_ft":88,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS71","iata":"","local":"XS71","name":"San Christoval Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pawnee","elevation_ft":385,"latitude":28.74810028076172,"longitude":-98.04499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3955,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS76","iata":"","local":"XS76","name":"Texas Menhaden Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":6,"latitude":29.72410011291504,"longitude":-93.87039947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS72","iata":"","local":"XS72","name":"F R Duke Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Romayor.","elevation_ft":85,"latitude":30.481744,"longitude":-94.83055,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS75","iata":"","local":"XS75","name":"West Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Round Mountain","elevation_ft":1470,"latitude":30.45439910888672,"longitude":-98.48919677734376,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5561,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS79","iata":"","local":"","name":"A W Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":540,"latitude":29.250685,"longitude":-98.459829,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS81","iata":"","local":"XS81","name":"Santa Rosa Helistop","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":820,"latitude":29.426847,"longitude":-98.499151,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":69,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS82","iata":"","local":"XS82","name":"Del Rio Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":707,"latitude":29.42250061035156,"longitude":-98.48390197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS83","iata":"","local":"XS83","name":"Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":1078,"latitude":29.507652,"longitude":-98.571306,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS84","iata":"","local":"XS84","name":"Department of Public Safety Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":650,"latitude":29.361299514770508,"longitude":-98.44920349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS85","iata":"","local":"XS85","name":"University Health System Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":994,"latitude":29.508919,"longitude":-98.58022,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS87","iata":"","local":"XS87","name":"Industrial Helicopters Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Port O'Connor","elevation_ft":10,"latitude":28.44499969482422,"longitude":-96.44830322265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS88","iata":"","local":"XS88","name":"Parson Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Paris","elevation_ft":475,"latitude":33.857398986816406,"longitude":-95.70480346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS91","iata":"","local":"XS91","name":"Pickle Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Poynor","elevation_ft":580,"latitude":32.08649826049805,"longitude":-95.59929656982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS80","iata":"","local":"XS80","name":"Scout Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Comfort","elevation_ft":1497,"latitude":29.972556,"longitude":-98.934637,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS90","iata":"","local":"XS90","name":"Fentress Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fentress","elevation_ft":460,"latitude":29.769042,"longitude":-97.775037,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS78","iata":"","local":"XS78","name":"Santiago Cattle Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brady","elevation_ft":1387,"latitude":31.388051,"longitude":-99.099905,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS92","iata":"","local":"","name":"Jackson /Bill/ Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Paradise","elevation_ft":800,"latitude":33.146,"longitude":-97.712502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS95","iata":"","local":"","name":"Marty Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Schulenburg","elevation_ft":365,"latitude":29.676901,"longitude":-96.970497,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1810,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS96","iata":"","local":"XS96","name":"Hillwood Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":650,"latitude":32.976389,"longitude":-97.308611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS97","iata":"","local":"XS97","name":"Charlton Methodist Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":710,"latitude":32.645999908447266,"longitude":-96.89420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS98","iata":"","local":"XS98","name":"Guadalupe Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Seguin","elevation_ft":530,"latitude":29.567219,"longitude":-97.946967,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XS93","iata":"","local":"XS93","name":"Diamond O Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Santa Elena","elevation_ft":420,"latitude":26.720645,"longitude":-98.560439,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4259,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XS99","iata":"","local":"XS99","name":"Lake Water Wheel Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Shepherd","elevation_ft":80,"latitude":30.47100067138672,"longitude":-94.9126968383789,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YABA","iata":"ALH","local":"","name":"Albany Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"Albany","elevation_ft":233,"latitude":-34.94329833984375,"longitude":117.80899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5906,"width_ft":98,"surface":"H"},{"id":"05/23","length_ft":3596,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YBUD","iata":"BDB","local":"","name":"Bundaberg Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Bundaberg","elevation_ft":107,"latitude":-24.905039,"longitude":152.322612,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YBWP","iata":"WEI","local":"","name":"Weipa Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Weipa","elevation_ft":63,"latitude":-12.677493,"longitude":141.922618,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5397,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YCAR","iata":"CVQ","local":"","name":"Carnarvon Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"Carnarvon","elevation_ft":13,"latitude":-24.880091,"longitude":113.670752,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5312,"width_ft":98,"surface":"H"},{"id":"18/36","length_ft":3740,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YMEK","iata":"MKR","local":"","name":"Meekatharra Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"UNKNOWN","elevation_ft":1713,"latitude":-26.6117000579834,"longitude":118.5479965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7156,"width_ft":98,"surface":"H"},{"id":"15/33","length_ft":3494,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YPCC","iata":"CCK","local":"","name":"Cocos (Keeling) Islands Airport","category":"medium_airport","iso_country":"CC","iso_region":"CC-U-A","municipality":"West Island","elevation_ft":10,"latitude":-12.19134,"longitude":96.833696,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":8009,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"YPBO","iata":"PBO","local":"","name":"Paraburdoo Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"Paraburdoo","elevation_ft":1406,"latitude":-23.1711006165,"longitude":117.745002747,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6995,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YNTN","iata":"NTN","local":"","name":"Normanton Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"Normanton","elevation_ft":73,"latitude":-17.68409,"longitude":141.069664,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5499,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YTEF","iata":"TEF","local":"","name":"Telfer Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-WA","municipality":"UNKNOWN","elevation_ft":970,"latitude":-21.71500015258789,"longitude":122.22899627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YRMD","iata":"RCM","local":"","name":"Richmond Airport","category":"small_airport","iso_country":"AU","iso_region":"AU-QLD","municipality":"UNKNOWN","elevation_ft":676,"latitude":-20.70190048217773,"longitude":143.11500549316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"YTNK","iata":"TCA","local":"","name":"Tennant Creek Airport","category":"medium_airport","iso_country":"AU","iso_region":"AU-NT","municipality":"Tennant Creek","elevation_ft":1236,"latitude":-19.6343994140625,"longitude":134.18299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6427,"width_ft":98,"surface":"H"},{"id":"11/29","length_ft":3458,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ZGSD","iata":"ZUH","local":"","name":"Zhuhai Jinwan Airport","category":"medium_airport","iso_country":"CN","iso_region":"CN-44","municipality":"Zhuhai (Jinwan)","elevation_ft":23,"latitude":22.006399,"longitude":113.375999,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":13124,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.82},{"id":"TWR","frequency_mhz":118.65}],"has_metar":true,"public":true},{"icao":"ZSCN","iata":"KHN","local":"","name":"Nanchang Changbei International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-36","municipality":"Nanchang","elevation_ft":143,"latitude":28.864815,"longitude":115.90271,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":11155,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":128.4},{"id":"TWR","frequency_mhz":118.65}],"has_metar":false,"public":true},{"icao":"ZSWZ","iata":"WNZ","local":"","name":"Wenzhou Longwan International Airport","category":"large_airport","iso_country":"CN","iso_region":"CN-33","municipality":"Wenzhou","elevation_ft":0,"latitude":27.912201,"longitude":120.851997,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":127.05},{"id":"TWR","frequency_mhz":118.2}],"has_metar":false,"public":true},{"icao":"VA66","iata":"","local":"VA66","name":"Breeden Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Catlett","elevation_ft":210,"latitude":38.60760116577149,"longitude":-77.56939697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG57","iata":"","local":"VG57","name":"Maples Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Catlett","elevation_ft":225,"latitude":38.605701,"longitude":-77.584702,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2450,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"58VA","iata":"","local":"58VA","name":"Walnut Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Calverton","elevation_ft":285,"latitude":38.59510040283203,"longitude":-77.64610290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2490,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53VA","iata":"","local":"53VA","name":"Horse Feathers Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Midland","elevation_ft":390,"latitude":38.63399887084961,"longitude":-77.75749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA2","iata":"","local":"3VA2","name":"Aviacres Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warrenton","elevation_ft":435,"latitude":38.624298095703125,"longitude":-77.78610229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7VG0","iata":"","local":"7VG0","name":"Warrenton Air Park","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warrenton","elevation_ft":442,"latitude":38.65570068359375,"longitude":-77.78720092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2215,"width_ft":70,"surface":"T"},{"id":"15/33","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02MD","iata":"","local":"02MD","name":"Garner Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Brandywine","elevation_ft":141,"latitude":38.672544,"longitude":-76.709739,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KANP","iata":"ANP","local":"ANP","name":"Lee Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Annapolis","elevation_ft":34,"latitude":38.942902,"longitude":-76.568398,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2500,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD22","iata":"","local":"MD22","name":"Deale Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Deale","elevation_ft":15,"latitude":38.78340148925781,"longitude":-76.564697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MD4","iata":"","local":"3MD4","name":"Fairview Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Annapolis","elevation_ft":150,"latitude":38.97760009765625,"longitude":-76.63939666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1570,"width_ft":37,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23DE","iata":"","local":"23DE","name":"Full Throttle Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Clayton","elevation_ft":81,"latitude":39.312567,"longitude":-75.728983,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"22MD","iata":"","local":"22MD","name":"Laura's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Hagerstown","elevation_ft":550,"latitude":39.58689880371094,"longitude":-77.6449966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1180,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"36OH","iata":"","local":"36OH","name":"Wright's Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Conesville","elevation_ft":770,"latitude":40.19029998779297,"longitude":-81.9739990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38WV","iata":"","local":"38WV","name":"River's Edge Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Capon Bridge","elevation_ft":810,"latitude":39.32529830932617,"longitude":-78.42559814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01VA","iata":"","local":"01VA","name":"Pickles Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Berryville","elevation_ft":500,"latitude":39.125,"longitude":-77.9250030518,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MD6","iata":"","local":"0MD6","name":"Walters Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Mount Airy","elevation_ft":750,"latitude":39.38119888305664,"longitude":-77.10579681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"10VA","iata":"","local":"10VA","name":"Nashs Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Appomattox","elevation_ft":785,"latitude":37.38629913330078,"longitude":-78.81310272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24VA","iata":"","local":"24VA","name":"Cherrystone Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":14,"latitude":37.287951,"longitude":-75.999835,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25VA","iata":"","local":"25VA","name":"Toddsbury Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Aylett","elevation_ft":50,"latitude":37.821377,"longitude":-77.112522,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05OH","iata":"","local":"05OH","name":"Eaglecrest Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Conesville","elevation_ft":968,"latitude":40.184513,"longitude":-81.920564,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1271,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27MD","iata":"","local":"27MD","name":"Myles Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Church Hill","elevation_ft":70,"latitude":39.098332,"longitude":-75.895029,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3250,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11MD","iata":"","local":"11MD","name":"Tim's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Salisbury","elevation_ft":42,"latitude":38.42002,"longitude":-75.63168,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21VA","iata":"","local":"21VA","name":"Eagles Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":40,"latitude":37.303382,"longitude":-75.93574,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20VG","iata":"","local":"20VG","name":"Hawk Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bedford","elevation_ft":760,"latitude":37.288700103759766,"longitude":-79.4468994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"20VA","iata":"","local":"20VA","name":"Woodford Airpark","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Woodford","elevation_ft":245,"latitude":38.082401,"longitude":-77.488297,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23PA","iata":"","local":"23PA","name":"Cedar Acres Private Group Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Revere","elevation_ft":500,"latitude":40.500099182128906,"longitude":-75.14679718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"25MD","iata":"","local":"25MD","name":"Whalen Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Sudlersville","elevation_ft":70,"latitude":39.16749954223633,"longitude":-75.84020233154297,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23NJ","iata":"","local":"23NJ","name":"Alliance Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Pittsgrove","elevation_ft":110,"latitude":39.50469970703125,"longitude":-75.09310150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":860,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"23VA","iata":"","local":"23VA","name":"Wheatland Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Buckingham","elevation_ft":490,"latitude":37.556894,"longitude":-78.620181,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VI1","iata":"","local":"0VI1","name":"Brooklyn Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"King William","elevation_ft":145,"latitude":37.6889,"longitude":-77.101402,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VA9","iata":"","local":"0VA9","name":"Handy Strip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Gloucester Court House","elevation_ft":8,"latitude":37.4473991394043,"longitude":-76.45379638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VA3","iata":"","local":"0VA3","name":"Hunt Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"King William","elevation_ft":150,"latitude":37.698799,"longitude":-77.095299,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VA2","iata":"","local":"0VA2","name":"Riverwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Iron Gate","elevation_ft":1020,"latitude":37.79650115966797,"longitude":-79.7667007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1VA0","iata":"","local":"1VA0","name":"Sabot Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Manakin-Sabot","elevation_ft":255,"latitude":37.629299,"longitude":-77.747498,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PS0","iata":"","local":"1PS0","name":"Ickes Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Osterburg","elevation_ft":1320,"latitude":40.19189834594727,"longitude":-78.564697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2064,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WV3","iata":"","local":"2WV3","name":"Hales Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Elizabeth","elevation_ft":650,"latitude":39.11631,"longitude":-81.392512,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31VA","iata":"","local":"31VA","name":"Aberdeen Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Smithfield","elevation_ft":33,"latitude":37.02379989624024,"longitude":-76.5886001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5921,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34PN","iata":"","local":"34PN","name":"Fox Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Newport","elevation_ft":730,"latitude":40.485556,"longitude":-77.220556,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1230,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"38PA","iata":"","local":"38PA","name":"Aerequus Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Solebury","elevation_ft":390,"latitude":40.390899658203125,"longitude":-75.01409912109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MD2","iata":"","local":"0MD2","name":"Squier Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Newburg","elevation_ft":16,"latitude":38.287781,"longitude":-76.867575,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VA4","iata":"","local":"0VA4","name":"Worley Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rocky Mount","elevation_ft":1219,"latitude":36.95009994506836,"longitude":-79.87950134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1VA8","iata":"","local":"1VA8","name":"Hazelswart Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Chase City","elevation_ft":485,"latitude":36.862249,"longitude":-78.410025,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0VA1","iata":"","local":"0VA1","name":"Johnson Fox Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bedford","elevation_ft":900,"latitude":37.23350143432617,"longitude":-79.58529663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09VA","iata":"","local":"09VA","name":"Alum Ridge STOLport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Floyd","elevation_ft":2375,"latitude":36.97650146484375,"longitude":-80.493896484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PS7","iata":"","local":"0PS7","name":"Harman Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Elizabethville","elevation_ft":720,"latitude":40.522396,"longitude":-76.846297,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MD5","iata":"","local":"3MD5","name":"Hidden Hills Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Hurlock","elevation_ft":20,"latitude":38.62120056152344,"longitude":-75.84130096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PA3","iata":"","local":"1PA3","name":"Ridgeview Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Kellers Church","elevation_ft":520,"latitude":40.45009994506836,"longitude":-75.19960021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32MD","iata":"","local":"32MD","name":"Roseland Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Sudlersville","elevation_ft":70,"latitude":39.18939971923828,"longitude":-75.87680053710938,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1VG2","iata":"","local":"1VG2","name":"Whithall Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Montross","elevation_ft":23,"latitude":38.12466,"longitude":-76.68858,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1VA3","iata":"","local":"1VA3","name":"Tye River Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lovingston","elevation_ft":650,"latitude":37.658199310302734,"longitude":-78.94560241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2WV5","iata":"","local":"2WV5","name":"Willow Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Union","elevation_ft":2150,"latitude":37.54669952392578,"longitude":-80.51830291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1540,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VG8","iata":"","local":"2VG8","name":"Folly Neck Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warsaw","elevation_ft":12,"latitude":37.870653,"longitude":-76.73235,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39MD","iata":"","local":"39MD","name":"Barton Hall Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Leonardtown","elevation_ft":21,"latitude":38.274989,"longitude":-76.724047,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VG7","iata":"","local":"2VG7","name":"Seven Gables Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Orange","elevation_ft":411,"latitude":38.16389846801758,"longitude":-77.8499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PS9","iata":"","local":"1PS9","name":"Wicker & Wings Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Quakertown","elevation_ft":590,"latitude":40.4034,"longitude":-75.370499,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1761,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"02VA","iata":"","local":"02VA","name":"The Greenhouse Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Culpeper","elevation_ft":320,"latitude":38.43569946289063,"longitude":-77.8572006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MD9","iata":"","local":"3MD9","name":"Chandler Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Ridge","elevation_ft":17,"latitude":38.11819839477539,"longitude":-76.39129638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VG3","iata":"","local":"2VG3","name":"Cub Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Harrisonburg","elevation_ft":1350,"latitude":38.54859924316406,"longitude":-78.87110137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84PN","iata":"","local":"84PN","name":"Draco STOLport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Stewartstown","elevation_ft":625,"latitude":39.75260162353516,"longitude":-76.5354995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PA8","iata":"","local":"3PA8","name":"Harris Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lincoln University","elevation_ft":575,"latitude":39.82040023803711,"longitude":-75.92579650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NJ6","iata":"","local":"0NJ6","name":"Dix Field","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Linwood","elevation_ft":8,"latitude":39.31679916381836,"longitude":-74.63289642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"87VA","iata":"","local":"87VA","name":"Cottonwood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Crozet","elevation_ft":690,"latitude":38.08110046386719,"longitude":-78.69560241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04NJ","iata":"","local":"04NJ","name":"Emmanuel Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Elmer","elevation_ft":155,"latitude":39.5968017578,"longitude":-75.2334976196,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9MD9","iata":"","local":"9MD9","name":"G W Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Denton","elevation_ft":50,"latitude":38.85200119018555,"longitude":-75.68930053710938,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMJX","iata":"MJX","local":"MJX","name":"Ocean County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Toms River","elevation_ft":82,"latitude":39.92750168,"longitude":-74.29239655,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5950,"width_ft":100,"surface":"A"},{"id":"14/32","length_ft":3599,"width_ft":75,"surface":"A"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ59","iata":"","local":"NJ59","name":"Ekdahl Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold","elevation_ft":118,"latitude":40.182899475097656,"longitude":-74.27880096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE25","iata":"","local":"DE25","name":"Eagle Crest-Hudson Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Milton","elevation_ft":28,"latitude":38.776100158691406,"longitude":-75.23359680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2DE8","iata":"","local":"2DE8","name":"Murphy's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Milford","elevation_ft":10,"latitude":38.91357,"longitude":-75.345334,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2350,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE34","iata":"","local":"DE34","name":"Townsend A Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Townsend","elevation_ft":65,"latitude":39.41429901123047,"longitude":-75.66300201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MD6","iata":"","local":"3MD6","name":"West St Mary's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Drayden","elevation_ft":50,"latitude":38.18899917602539,"longitude":-76.4468994140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PN2","iata":"","local":"3PN2","name":"Karlindo Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Fairfield","elevation_ft":530,"latitude":39.75899887084961,"longitude":-77.34750366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MD6","iata":"","local":"2MD6","name":"Cherry Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Lexington Park","elevation_ft":8,"latitude":38.14400100708008,"longitude":-76.47219848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07MD","iata":"","local":"07MD","name":"Baugher's Orchard Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Westminster","elevation_ft":700,"latitude":39.60829925537109,"longitude":-77.0519027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1035,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE20","iata":"","local":"DE20","name":"Spirit Airpark","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Townsend","elevation_ft":80,"latitude":39.37360000610352,"longitude":-75.74579620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA0","iata":"","local":"3VA0","name":"Ayres-Aicp Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warrenton","elevation_ft":530,"latitude":38.7759017944336,"longitude":-77.91059875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MD1","iata":"","local":"1MD1","name":"Big Oak Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Cambridge","elevation_ft":4,"latitude":38.569126,"longitude":-76.286189,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1DE5","iata":"","local":"1DE5","name":"Mckeown Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Middletown","elevation_ft":60,"latitude":39.495601654052734,"longitude":-75.7332992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD8","iata":"","local":"4MD8","name":"Ijamsville Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Frederick","elevation_ft":490,"latitude":39.35829925537109,"longitude":-77.3396987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2513,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MD0","iata":"","local":"3MD0","name":"Burhans Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Frederick","elevation_ft":490,"latitude":39.34820175170898,"longitude":-77.33609771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD2","iata":"","local":"4MD2","name":"Ward's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Oakland","elevation_ft":2500,"latitude":39.430384,"longitude":-79.454311,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1883,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD4","iata":"","local":"4MD4","name":"Clements Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Clements","elevation_ft":105,"latitude":38.340599060058594,"longitude":-76.73719787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1750,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD7","iata":"","local":"4MD7","name":"Catoctin Crosswind Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Thurmont","elevation_ft":451,"latitude":39.645255,"longitude":-77.367826,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MD3","iata":"","local":"2MD3","name":"Fly Away Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Boyds","elevation_ft":501,"latitude":39.229,"longitude":-77.345333,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MD8","iata":"","local":"3MD8","name":"Pokety Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Cambridge","elevation_ft":10,"latitude":38.612300872802734,"longitude":-76.17109680175781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MD4","iata":"","local":"2MD4","name":"Ennis Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Salisbury","elevation_ft":44,"latitude":38.39459991455078,"longitude":-75.55740356445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61VA","iata":"","local":"61VA","name":"High View Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Berryville","elevation_ft":595,"latitude":39.23540115356445,"longitude":-78.01190185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MD1","iata":"","local":"7MD1","name":"Magennis Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Federalsburg","elevation_ft":40,"latitude":38.703399658203125,"longitude":-75.85099792480469,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88MD","iata":"","local":"88MD","name":"Beaven Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Easton","elevation_ft":50,"latitude":38.804372,"longitude":-75.953413,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2628,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD0","iata":"","local":"4MD0","name":"Mears Creek Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Lusby","elevation_ft":27,"latitude":38.374298095703125,"longitude":-76.48300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MD8","iata":"","local":"2MD8","name":"Greater Gortner Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Oakland","elevation_ft":2500,"latitude":39.33340072631836,"longitude":-79.44139862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2034,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18WV","iata":"","local":"18WV","name":"Lynn Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Independence","elevation_ft":1680,"latitude":39.41,"longitude":-79.856667,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD9","iata":"","local":"4MD9","name":"St John Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Owings Mills","elevation_ft":461,"latitude":39.48059844970703,"longitude":-76.7605972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4VG8","iata":"","local":"4VG8","name":"Robbie Campbell Memorial Airfield","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fredricksburg","elevation_ft":277,"latitude":38.14225,"longitude":-77.527689,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2384,"width_ft":70,"surface":"T"},{"id":"18/36","length_ft":958,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4WV4","iata":"","local":"4WV4","name":"Heaven's Landing Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Medley","elevation_ft":1220,"latitude":39.176342,"longitude":-79.068142,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4VA9","iata":"","local":"4VA9","name":"Pleasantdale Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rixeyville","elevation_ft":420,"latitude":38.569218,"longitude":-77.92001,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MD5","iata":"","local":"5MD5","name":"Arcadia Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Princess Anne","elevation_ft":18,"latitude":38.196476,"longitude":-75.709641,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD1","iata":"","local":"4MD1","name":"Bunting's Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Berlin","elevation_ft":5,"latitude":38.36819839477539,"longitude":-75.23069763183594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4MD6","iata":"","local":"4MD6","name":"Moxley's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Dublin","elevation_ft":410,"latitude":39.625,"longitude":-76.26249694824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"97VA","iata":"","local":"97VA","name":"Singleton Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warm Springs","elevation_ft":2060,"latitude":38.21070098876953,"longitude":-79.7134017944336,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE09","iata":"","local":"DE09","name":"Johnsons Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Magnolia","elevation_ft":43,"latitude":39.06819915771485,"longitude":-75.4885025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2243,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67MD","iata":"","local":"67MD","name":"Willows Landing","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Union Bridge","elevation_ft":576,"latitude":39.554722,"longitude":-77.230556,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MD0","iata":"","local":"2MD0","name":"Anderson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Marion","elevation_ft":8,"latitude":38.04897,"longitude":-75.704169,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2590,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MD8","iata":"","local":"1MD8","name":"Mayberry Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Westminster/Silver Run","elevation_ft":580,"latitude":39.682899475097656,"longitude":-77.09719848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5VA5","iata":"","local":"5VA5","name":"Chimney View Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fredericksburg","elevation_ft":25,"latitude":38.40349960327149,"longitude":-77.31580352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MD8","iata":"","local":"6MD8","name":"Delmarvair Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Pittsville","elevation_ft":55,"latitude":38.441456,"longitude":-75.403075,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2750,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48MD","iata":"","local":"48MD","name":"Le Champ Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Princess Anne","elevation_ft":14,"latitude":38.149062,"longitude":-75.662161,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2050,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2MD1","iata":"","local":"2MD1","name":"Recompense Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Clements","elevation_ft":30,"latitude":38.30435,"longitude":-76.7288,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MD4","iata":"","local":"8MD4","name":"Spiering Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Greensboro","elevation_ft":55,"latitude":38.98059844970703,"longitude":-75.77780151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MD3","iata":"","local":"6MD3","name":"Harp Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Wolfsville","elevation_ft":1360,"latitude":39.596900939941406,"longitude":-77.54669952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9VA4","iata":"","local":"9VA4","name":"Franwood Farms Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"New Market","elevation_ft":990,"latitude":38.69089889526367,"longitude":-78.62950134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1550,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MD4","iata":"","local":"6MD4","name":"Pembroke Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Conowingo","elevation_ft":380,"latitude":39.71939849853516,"longitude":-76.2083969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2292,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88VA","iata":"","local":"88VA","name":"Belmont Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Culpeper","elevation_ft":305,"latitude":38.37419891357422,"longitude":-77.99189758300781,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"42MD","iata":"","local":"42MD","name":"Herrington Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Oakland","elevation_ft":2470,"latitude":39.46829987,"longitude":-79.4253006,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9VA0","iata":"","local":"9VA0","name":"Bath Alum Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warm Springs","elevation_ft":1779,"latitude":38.0526008605957,"longitude":-79.72889709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"48VA","iata":"","local":"48VA","name":"Al's Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Gore","elevation_ft":1120,"latitude":39.291265,"longitude":-78.351445,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":50,"surface":"T"},{"id":"10/28","length_ft":900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89VA","iata":"","local":"89VA","name":"Hidden River Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Edinburg","elevation_ft":780,"latitude":38.52230072021485,"longitude":-78.52420043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MD6","iata":"","local":"8MD6","name":"Burgess Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Riverside","elevation_ft":35,"latitude":38.397098541259766,"longitude":-77.14689636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MD7","iata":"","local":"7MD7","name":"Boomers Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Pocomoke","elevation_ft":22,"latitude":38.00040054321289,"longitude":-75.58300018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":75,"surface":"T"},{"id":"13/31","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9PS8","iata":"","local":"9PS8","name":"Manor Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":560,"latitude":39.81268,"longitude":-77.30273,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06VA","iata":"","local":"06VA","name":"Mount Horeb Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Grottoes","elevation_ft":1160,"latitude":38.249000549316406,"longitude":-78.85530090332031,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MD1","iata":"","local":"6MD1","name":"Dileo Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Denton","elevation_ft":50,"latitude":38.842446,"longitude":-75.915742,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1488,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"65MD","iata":"","local":"65MD","name":"Willow Bee Farm Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Piney Point","elevation_ft":7,"latitude":38.170033,"longitude":-76.520942,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1123,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62MD","iata":"","local":"62MD","name":"Sandy Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Prince Frederick","elevation_ft":20,"latitude":38.488806,"longitude":-76.643633,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE00","iata":"","local":"DE00","name":"Doyle's Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Felton","elevation_ft":51,"latitude":39.02069854736328,"longitude":-75.57710266113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"29VA","iata":"","local":"29VA","name":"Rhynalds Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Remington","elevation_ft":285,"latitude":38.52930068969727,"longitude":-77.73889923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90VA","iata":"","local":"90VA","name":"Hen & Bacon Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Orange","elevation_ft":430,"latitude":38.21810150146485,"longitude":-78.21189880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"DE32","iata":"","local":"DE32","name":"Belfair Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Felton","elevation_ft":64,"latitude":38.97499847412109,"longitude":-75.61669921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2335,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA46","iata":"","local":"VA46","name":"Timber Ridge Airpark","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Gore","elevation_ft":1024,"latitude":39.2962,"longitude":-78.362198,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA79","iata":"","local":"VA79","name":"Hickory Tree Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"The Plains","elevation_ft":544,"latitude":38.9529,"longitude":-77.746902,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9PA7","iata":"","local":"9PA7","name":"Keystone Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Fort Hill","elevation_ft":2531,"latitude":39.77280044555664,"longitude":-79.21109771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1825,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD78","iata":"","local":"MD78","name":"Woodbine Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Woodbine","elevation_ft":720,"latitude":39.383399963378906,"longitude":-77.07029724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11VG","iata":"","local":"11VG","name":"Devil's Reach Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Oak Grove","elevation_ft":28,"latitude":38.20940017700195,"longitude":-77.00060272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD47","iata":"","local":"MD47","name":"Barnes Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Lisbon","elevation_ft":780,"latitude":39.33290100097656,"longitude":-77.0969009399414,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":75,"surface":"T"},{"id":"13/31","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD56","iata":"","local":"MD56","name":"Three J Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"New Windsor","elevation_ft":510,"latitude":39.56900024414063,"longitude":-77.12139892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1060,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD64","iata":"","local":"MD64","name":"Stewart Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"McDaniel","elevation_ft":10,"latitude":38.799599,"longitude":-76.2724,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MD7","iata":"","local":"8MD7","name":"Deerfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Leonardtown","elevation_ft":25,"latitude":38.23860168457031,"longitude":-76.65969848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD75","iata":"","local":"MD75","name":"Stolcrest STOLport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Urbana","elevation_ft":530,"latitude":39.34180068969727,"longitude":-77.30359649658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"61NJ","iata":"","local":"61NJ","name":"Thomas Browne Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Glassboro","elevation_ft":145,"latitude":39.69150161743164,"longitude":-75.14320373535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8MD0","iata":"","local":"8MD0","name":"Suzie Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Woodbine","elevation_ft":560,"latitude":39.376996,"longitude":-77.017164,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1785,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD48","iata":"","local":"MD48","name":"Albrecht Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Long Green","elevation_ft":325,"latitude":39.4734001159668,"longitude":-76.50019836425781,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD95","iata":"","local":"MD95","name":"Reservoir Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Finksburg","elevation_ft":550,"latitude":39.48199844360352,"longitude":-76.88159942626953,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA58","iata":"","local":"VA58","name":"River Bend Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Maurertown","elevation_ft":606,"latitude":38.90610122680664,"longitude":-78.44439697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV17","iata":"","local":"WV17","name":"Michaels Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Martinsburg","elevation_ft":510,"latitude":39.39339828491211,"longitude":-78.15579986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51VA","iata":"","local":"51VA","name":"Skyview Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Manassas","elevation_ft":340,"latitude":38.71620178222656,"longitude":-77.63390350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9VG9","iata":"","local":"9VG9","name":"Jucapa Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Winchester","elevation_ft":1160,"latitude":39.371381,"longitude":-78.306277,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA7","iata":"","local":"3VA7","name":"White Post Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"White Post","elevation_ft":610,"latitude":39.061816,"longitude":-78.092365,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD46","iata":"","local":"MD46","name":"Glenair Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Dayton","elevation_ft":590,"latitude":39.26959991455078,"longitude":-77.00530242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA61","iata":"","local":"VA61","name":"Lovettsville Airfield","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lovettsville","elevation_ft":529,"latitude":39.26532,"longitude":-77.653598,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD74","iata":"","local":"MD74","name":"Good Neighbor Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Mount Airy","elevation_ft":580,"latitude":39.4743,"longitude":-77.195297,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA17","iata":"","local":"VA17","name":"Mulberry Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Strasburg","elevation_ft":820,"latitude":39.0359,"longitude":-78.392197,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV22","iata":"","local":"WV22","name":"Green Landings Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Hedgesville","elevation_ft":510,"latitude":39.57469940185547,"longitude":-77.97149658203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15VA","iata":"","local":"15VA","name":"Fox Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warrenton","elevation_ft":450,"latitude":38.7223014831543,"longitude":-77.89969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1950,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MD8","iata":"","local":"7MD8","name":"Kent Fort Manor Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Stevensville","elevation_ft":10,"latitude":38.85649871826172,"longitude":-76.36160278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA62","iata":"","local":"VA62","name":"The Grass Patch Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lovettsville","elevation_ft":530,"latitude":39.257856,"longitude":-77.65407,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ24","iata":"","local":"NJ24","name":"Warren Grove Range Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Bass River","elevation_ft":105,"latitude":39.701138,"longitude":-74.404382,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1800,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73MD","iata":"","local":"73MD","name":"Swan Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Rock Hall","elevation_ft":26,"latitude":39.175278,"longitude":-76.2425,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2024,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7MD9","iata":"","local":"7MD9","name":"Tilghman Whipp Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Tilghman","elevation_ft":5,"latitude":38.73609924316406,"longitude":-76.31670379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1920,"width_ft":86,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"16MD","iata":"","local":"16MD","name":"High Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"North East","elevation_ft":363,"latitude":39.668611,"longitude":-75.960278,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"JY08","iata":"","local":"JY08","name":"Var-Sky Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Pilesgrove","elevation_ft":135,"latitude":39.650541,"longitude":-75.285594,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1165,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD11","iata":"","local":"MD11","name":"Wright Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Chestertown","elevation_ft":80,"latitude":39.277099609375,"longitude":-76.06269836425781,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2735,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV21","iata":"","local":"WV21","name":"Needwood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Harpers Ferry","elevation_ft":440,"latitude":39.329756,"longitude":-77.796221,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA5","iata":"","local":"3VA5","name":"Goose Hunt Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Leesburg","elevation_ft":340,"latitude":39.028889,"longitude":-77.625,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3VA1","iata":"","local":"3VA1","name":"The Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warrenton","elevation_ft":584,"latitude":38.770587,"longitude":-77.797278,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2100,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KRJD","iata":"","local":"RJD","name":"Ridgely Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Ridgely","elevation_ft":64,"latitude":38.97010040283203,"longitude":-75.86630249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3214,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14VA","iata":"","local":"14VA","name":"Krens Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hillsboro","elevation_ft":790,"latitude":39.229000091552734,"longitude":-77.74669647216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NJ0","iata":"","local":"4NJ0","name":"Windward Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Rosemont","elevation_ft":425,"latitude":40.44929885864258,"longitude":-75.0177001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEDG","iata":"","local":"EDG","name":"Weide (Aberdeen Proving Ground) Army Heliport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Gunpowder","elevation_ft":21,"latitude":39.391602,"longitude":-76.2911,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1704,"width_ft":85,"surface":"A"},{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NJ5","iata":"","local":"0NJ5","name":"Fla-Net Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Netcong","elevation_ft":1040,"latitude":40.88589859008789,"longitude":-74.70570373535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS03","iata":"","local":"PS03","name":"Elephant Path Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Perkasie","elevation_ft":370,"latitude":40.410400390625,"longitude":-75.22930145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2750,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD93","iata":"","local":"MD93","name":"Hexton Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Cecilton","elevation_ft":65,"latitude":39.375099182128906,"longitude":-75.90660095214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6MD7","iata":"","local":"6MD7","name":"D'Angelo Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Golts","elevation_ft":82,"latitude":39.33919906616211,"longitude":-75.7667007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2450,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"JY31","iata":"","local":"JY31","name":"Wide Sky Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgeton","elevation_ft":100,"latitude":39.4468002319336,"longitude":-75.31320190429688,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2550,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NJ6","iata":"","local":"9NJ6","name":"Halka Nurseries Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Fairton","elevation_ft":10,"latitude":39.36640167236328,"longitude":-75.26830291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ84","iata":"","local":"NJ84","name":"Hidden Acres Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Bridgeton","elevation_ft":60,"latitude":39.433101654052734,"longitude":-75.39669799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NJ9","iata":"","local":"7NJ9","name":"Dave's Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Cedarville","elevation_ft":8,"latitude":39.31819915771485,"longitude":-75.206298828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEVY","iata":"","local":"EVY","name":"Summit Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Middletown","elevation_ft":70,"latitude":39.520401,"longitude":-75.720398,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3601,"width_ft":200,"surface":"T"},{"id":"17/35","length_ft":4488,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NJ2","iata":"","local":"7NJ2","name":"Stoe Creek Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Canton","elevation_ft":15,"latitude":39.48130035400391,"longitude":-75.4052963256836,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1725,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ60","iata":"","local":"NJ60","name":"Cuddihy Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Freehold","elevation_ft":105,"latitude":40.18709945678711,"longitude":-74.26709747314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93MD","iata":"","local":"93MD","name":"Knollwood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Elkton","elevation_ft":100,"latitude":39.561833,"longitude":-75.834833,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"JY04","iata":"","local":"JY04","name":"Paramount Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Cape May Court House","elevation_ft":8,"latitude":39.064365,"longitude":-74.907116,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"89NJ","iata":"","local":"89NJ","name":"Strawberry Fields Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Mays Landing","elevation_ft":45,"latitude":39.489200592041016,"longitude":-74.72360229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03NY","iata":"","local":"03NY","name":"Talmage Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Riverhead","elevation_ft":95,"latitude":40.958308,"longitude":-72.717326,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"59PA","iata":"","local":"59PA","name":"Erkes Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Upper Black Eddy","elevation_ft":340,"latitude":40.53760147094727,"longitude":-75.08709716796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN00","iata":"","local":"PN00","name":"Crosswinds Airfield","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Sassamansville","elevation_ft":300,"latitude":40.34320068359375,"longitude":-75.57270050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2550,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"52PA","iata":"","local":"52PA","name":"Wildcat Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tamaqua","elevation_ft":980,"latitude":40.76253,"longitude":-76.00487,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"50PA","iata":"","local":"50PA","name":"Pegasus Air Park","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Stroudsburg","elevation_ft":620,"latitude":40.93339920043945,"longitude":-75.34960174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN98","iata":"","local":"PN98","name":"Dream Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Berlin","elevation_ft":2321,"latitude":39.933483,"longitude":-78.934101,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2240,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN73","iata":"","local":"PN73","name":"Beers Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Orbisona/Rockhill","elevation_ft":630,"latitude":40.230098724365234,"longitude":-77.92060089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS39","iata":"","local":"PS39","name":"Downes Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Clymer","elevation_ft":1590,"latitude":40.628299713134766,"longitude":-78.96029663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1200,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"37PA","iata":"","local":"37PA","name":"Roadcap Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Middleburg","elevation_ft":731,"latitude":40.78839874267578,"longitude":-77.1061019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47PA","iata":"","local":"47PA","name":"Homan Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"State College","elevation_ft":1200,"latitude":40.71670150756836,"longitude":-77.98310089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2300,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NJ3","iata":"","local":"2NJ3","name":"Weidel/Private/ Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Pennington","elevation_ft":301,"latitude":40.3404006958,"longitude":-74.8543014526,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8PN2","iata":"","local":"8PN2","name":"Hallett's Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bangor","elevation_ft":700,"latitude":40.91049957275391,"longitude":-75.16510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS82","iata":"","local":"PS82","name":"Lazy J. Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Springbrook","elevation_ft":1650,"latitude":41.2958984375,"longitude":-75.59770202636719,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1480,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS12","iata":"","local":"PS12","name":"Grover Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Weatherly","elevation_ft":1223,"latitude":40.91680145263672,"longitude":-75.86630249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2360,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"67NJ","iata":"","local":"67NJ","name":"Mount Pleasant Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Columbia","elevation_ft":800,"latitude":40.969799,"longitude":-75.066803,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8PA3","iata":"","local":"8PA3","name":"Deer Meadows Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Weatherly","elevation_ft":1210,"latitude":40.99589920043945,"longitude":-75.7405014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NJ5","iata":"","local":"3NJ5","name":"Mock Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Quakertown","elevation_ft":560,"latitude":40.53340148925781,"longitude":-74.91629791259766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ65","iata":"","local":"NJ65","name":"John E. Rogers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Great Meadows","elevation_ft":500,"latitude":40.854501,"longitude":-74.928005,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2250,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NJ1","iata":"","local":"2NJ1","name":"Jugtown Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Pattenburg","elevation_ft":600,"latitude":40.633399963378906,"longitude":-75.06629943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"69PA","iata":"","local":"69PA","name":"Hurst Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Newmanstown","elevation_ft":540,"latitude":40.343404,"longitude":-76.208382,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1165,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA77","iata":"","local":"PA77","name":"Erwinna Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Erwinna","elevation_ft":350,"latitude":40.500099182128906,"longitude":-75.06629943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2377,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PA0","iata":"","local":"3PA2","name":"Philadelphia Gliderport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Hilltown","elevation_ft":670,"latitude":40.331227,"longitude":-75.248125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18PA","iata":"","local":"18PA","name":"Slack Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Forest Grove","elevation_ft":275,"latitude":40.30009841918945,"longitude":-75.08290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"49PA","iata":"","local":"49PA","name":"Gap View Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Stone Church","elevation_ft":780,"latitude":40.85929870605469,"longitude":-75.13379669189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"43PA","iata":"","local":"43PA","name":"Kolb Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Spring City","elevation_ft":290,"latitude":40.160099029541016,"longitude":-75.54630279541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2683,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92NJ","iata":"","local":"92NJ","name":"Flying B Farm Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Kingwood Township","elevation_ft":530,"latitude":40.468399,"longitude":-75.002403,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA30","iata":"","local":"PA30","name":"East Penn Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Andreas","elevation_ft":885,"latitude":40.76679992675781,"longitude":-75.77459716796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1320,"width_ft":300,"surface":"T"},{"id":"10/28","length_ft":1340,"width_ft":150,"surface":"T"},{"id":"16/34","length_ft":1250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS99","iata":"","local":"PS99","name":"West Penn Township Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tamaqua","elevation_ft":1200,"latitude":40.74625,"longitude":-75.932608,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ09","iata":"","local":"NJ09","name":"Matthews Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Belvidere","elevation_ft":750,"latitude":40.79180145263672,"longitude":-75.07039642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ95","iata":"","local":"NJ95","name":"Herr Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Milford","elevation_ft":330,"latitude":40.55569839477539,"longitude":-75.07240295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA92","iata":"","local":"PA92","name":"Blue Mountain Academy (Private) Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Hamburg","elevation_ft":531,"latitude":40.55289840698242,"longitude":-76.02880096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2730,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KNEL","iata":"NEL","local":"NEL","name":"Lakehurst Maxfield Field Airport","category":"medium_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Lakehurst","elevation_ft":101,"latitude":40.03329849,"longitude":-74.353302,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5002,"width_ft":150,"surface":"A"},{"id":"063/243","length_ft":3500,"width_ft":90,"surface":"C"},{"id":"15/33","length_ft":5002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":127.775}],"has_metar":false,"public":true},{"icao":"55PA","iata":"","local":"55PA","name":"Sency Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Treskow","elevation_ft":1350,"latitude":40.895599365234375,"longitude":-75.94409942626953,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PN9","iata":"","local":"6PN9","name":"Mc Donald's Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Brandonville","elevation_ft":1200,"latitude":40.886199951200005,"longitude":-76.153503418,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"60NJ","iata":"","local":"60NJ","name":"O'Dwyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Flemington","elevation_ft":200,"latitude":40.46680068969727,"longitude":-74.83290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA36","iata":"","local":"PA36","name":"Stefanik Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bedminster","elevation_ft":520,"latitude":40.45289993286133,"longitude":-75.20379638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PA2","iata":"","local":"5PA2","name":"Double D Skyranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Drums","elevation_ft":1140,"latitude":41.034883,"longitude":-76.02185,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1835,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NJ2","iata":"","local":"5NJ2","name":"Herr Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Stanton","elevation_ft":560,"latitude":40.592752,"longitude":-74.840405,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NJ9","iata":"","local":"3NJ9","name":"Allen Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Vincentown","elevation_ft":51,"latitude":39.9411125183,"longitude":-74.77083587650002,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1965,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63PA","iata":"","local":"28PA","name":"Boyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Wernersville","elevation_ft":510,"latitude":40.322173,"longitude":-76.100664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA65","iata":"","local":"PA65","name":"Hi-Vu Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Coplay","elevation_ft":685,"latitude":40.698012,"longitude":-75.541592,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PA8","iata":"","local":"4PA8","name":"Russo Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Pipersville","elevation_ft":400,"latitude":40.432899475097656,"longitude":-75.14959716796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ20","iata":"","local":"NJ20","name":"Coyle Field","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Chatsworth","elevation_ft":190,"latitude":39.812599182128906,"longitude":-74.42459869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":100,"surface":"G"},{"id":"NE/SW","length_ft":1800,"width_ft":100,"surface":"G"},{"id":"NW/SE","length_ft":1800,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PN7","iata":"","local":"5PN7","name":"Jarrett Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Ivyland","elevation_ft":210,"latitude":40.23329925537109,"longitude":-75.07499694824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PA6","iata":"","local":"2PA6","name":"The Old Commonwealth Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Shartlesville","elevation_ft":540,"latitude":40.4911994934082,"longitude":-76.09770202636719,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA25","iata":"","local":"PA25","name":"Cuatros Vientos Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Quaker City","elevation_ft":500,"latitude":40.6593017578125,"longitude":-75.8738021850586,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS46","iata":"","local":"PS46","name":"Graystrip Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Dublin","elevation_ft":642,"latitude":40.362300872802734,"longitude":-75.1801986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA61","iata":"","local":"PA61","name":"Kunda Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Collegeville","elevation_ft":252,"latitude":40.16680145263672,"longitude":-75.44960021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7PN0","iata":"","local":"7PN0","name":"Tidmore Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Minersville","elevation_ft":930,"latitude":40.70500183105469,"longitude":-76.23639678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NJ6","iata":"","local":"2NJ6","name":"Markle Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Phillipsburg","elevation_ft":320,"latitude":40.77370071411133,"longitude":-75.1593017578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56PA","iata":"","local":"56PA","name":"Hoge Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tinicum","elevation_ft":430,"latitude":40.46950149536133,"longitude":-75.08209991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":100,"surface":"T"},{"id":"15/33","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ50","iata":"","local":"NJ50","name":"The Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Flemington","elevation_ft":470,"latitude":40.4807014465,"longitude":-74.96179962160001,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"68PA","iata":"","local":"68PA","name":"Don's Place Airpark","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Hamburg","elevation_ft":510,"latitude":40.5181999206543,"longitude":-75.91629791259766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PA9","iata":"","local":"3PA9","name":"Moyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Line Lexington","elevation_ft":330,"latitude":40.29679870605469,"longitude":-75.24800109863281,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":100,"surface":"T"},{"id":"13/31","length_ft":1820,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70NJ","iata":"","local":"70NJ","name":"Parker Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Asbury","elevation_ft":307,"latitude":40.67756,"longitude":-75.024629,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD23","iata":"","local":"MD23","name":"Kennersley Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Church Hill","elevation_ft":30,"latitude":39.144798,"longitude":-76.040497,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2750,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"JY39","iata":"","local":"JY39","name":"Rainbow's End Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Salem","elevation_ft":11,"latitude":39.661111,"longitude":-75.465278,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN50","iata":"","local":"PN50","name":"Skyline Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Shoemakersville","elevation_ft":580,"latitude":40.50650024414063,"longitude":-75.94329833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2DE3","iata":"","local":"2DE3","name":"Hrupsa Airport","category":"small_airport","iso_country":"US","iso_region":"US-DE","municipality":"Felton","elevation_ft":55,"latitude":39.002044,"longitude":-75.682175,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05MD","iata":"","local":"05MD","name":"Breezecroft Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Chestertown","elevation_ft":20,"latitude":39.244232,"longitude":-76.198661,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NJ1","iata":"","local":"3NJ1","name":"Pemberton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Pemberton","elevation_ft":65,"latitude":39.98210144042969,"longitude":-74.69270324707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2568,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ74","iata":"","local":"NJ74","name":"Salem Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Salem","elevation_ft":15,"latitude":39.562599182128906,"longitude":-75.44960021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4VA0","iata":"","local":"4VA0","name":"Wood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Wingina","elevation_ft":350,"latitude":37.636501312256,"longitude":-78.730003356934,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"46VA","iata":"","local":"46VA","name":"Byrd Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Columbia","elevation_ft":315,"latitude":37.817467,"longitude":-78.048547,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1450,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOBI","iata":"","local":"OBI","name":"Woodbine Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Woodbine","elevation_ft":42,"latitude":39.219200134277344,"longitude":-74.7947998046875,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3304,"width_ft":75,"surface":"A"},{"id":"13/31","length_ft":3074,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0MD1","iata":"","local":"0MD1","name":"Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Sudlersville","elevation_ft":75,"latitude":39.18730163574219,"longitude":-75.7927017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD21","iata":"","local":"MD21","name":"Ashland Landing Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Centreville","elevation_ft":10,"latitude":39.11809921264648,"longitude":-76.09639739990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80VA","iata":"","local":"80VA","name":"Holly Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":250,"latitude":37.79130172729492,"longitude":-77.82469940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7OI9","iata":"","local":"7OI9","name":"Massengill Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Nashport","elevation_ft":955,"latitude":40.06900024414063,"longitude":-82.13600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"79VG","iata":"","local":"79VG","name":"Perkey Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Eagle Rock","elevation_ft":1200,"latitude":37.663873,"longitude":-79.810749,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2250,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71PN","iata":"","local":"71PN","name":"Schulteis Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Oxford","elevation_ft":550,"latitude":39.91815,"longitude":-77.045533,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00MD","iata":"","local":"00MD","name":"Slater Field","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Federalsburg","elevation_ft":45,"latitude":38.75709915161133,"longitude":-75.75379943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9PS2","iata":"","local":"9PS2","name":"J T Willie Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Worthington","elevation_ft":1200,"latitude":40.80870056152344,"longitude":-79.6697998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80PN","iata":"","local":"80PN","name":"Hanny Beaver Airpark Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Hookstown","elevation_ft":1220,"latitude":40.54169845581055,"longitude":-80.45259857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2719,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77PN","iata":"","local":"77PN","name":"Gilfert Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Benfer","elevation_ft":630,"latitude":40.78400039672852,"longitude":-77.20659637451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44PA","iata":"","local":"44PA","name":"Pennfield Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Spring Mills","elevation_ft":1200,"latitude":40.85010147094727,"longitude":-77.61640167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7VA9","iata":"","local":"7VA9","name":"Hannah Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Monterey","elevation_ft":3049,"latitude":38.398333,"longitude":-79.600278,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PS9","iata":"","local":"3PS9","name":"Risker Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bulger","elevation_ft":1100,"latitude":40.37839889526367,"longitude":-80.34950256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1855,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2OA6","iata":"","local":"2OA6","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cambridge","elevation_ft":1000,"latitude":40.08649826049805,"longitude":-81.58820343017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2090,"width_ft":52,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3PS8","iata":"","local":"3PS8","name":"Yingst Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":701,"latitude":40.39580154418945,"longitude":-76.74579620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN46","iata":"","local":"PN46","name":"River Hill Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Apollo","elevation_ft":1250,"latitude":40.56439971923828,"longitude":-79.5457992553711,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"86PN","iata":"","local":"86PN","name":"Seesholtz Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bloomsburg","elevation_ft":730,"latitude":41.04449844360352,"longitude":-76.3552017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1535,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18PN","iata":"","local":"18PN","name":"Spud View Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Upper Strasburg","elevation_ft":733,"latitude":40.06539916992188,"longitude":-77.69280242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PN8","iata":"","local":"5PN8","name":"Lincoln Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Calvin","elevation_ft":1200,"latitude":40.32889938354492,"longitude":-78.04499816894531,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1420,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PS5","iata":"","local":"5PS5","name":"Chestnut Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Duncannon","elevation_ft":620,"latitude":40.39680099487305,"longitude":-77.0740966796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"75WV","iata":"","local":"75WV","name":"Nicholson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"West Union","elevation_ft":1008,"latitude":39.1659,"longitude":-80.650806,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"70VA","iata":"","local":"70VA","name":"Burnt Chimney Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Wirtz","elevation_ft":1034,"latitude":37.075027,"longitude":-79.827193,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"62PA","iata":"","local":"62PA","name":"Shreveport North Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Wellsville","elevation_ft":550,"latitude":40.03620147705078,"longitude":-76.99549865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73PA","iata":"","local":"73PA","name":"Gilbert Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"York","elevation_ft":530,"latitude":39.929500579833984,"longitude":-76.77079772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2220,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5VG2","iata":"","local":"5VG2","name":"Foster Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Mathews","elevation_ft":13,"latitude":37.454436,"longitude":-76.372191,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2VA6","iata":"","local":"2VA6","name":"Nimcock Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Saluda","elevation_ft":85,"latitude":37.623342,"longitude":-76.600027,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"44VA","iata":"","local":"44VA","name":"Big Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Eagle Rock","elevation_ft":1620,"latitude":37.731201171875,"longitude":-79.81120300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PS5","iata":"","local":"4PS5","name":"Muddy Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Carmichaels","elevation_ft":1080,"latitude":39.920502,"longitude":-79.948198,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2110,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3OH8","iata":"","local":"3OH8","name":"Gnadenhutten Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Gnadenhutten","elevation_ft":842,"latitude":40.360802,"longitude":-81.423302,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"05VA","iata":"","local":"05VA","name":"Providence Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Farmville","elevation_ft":445,"latitude":37.22420120239258,"longitude":-78.4186019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6VA4","iata":"","local":"6VA4","name":"Summit Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Salem","elevation_ft":1030,"latitude":37.284355,"longitude":-80.068882,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PN7","iata":"","local":"0PN7","name":"Drillmore Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Newburg","elevation_ft":680,"latitude":40.128299713134766,"longitude":-77.63140106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"27WV","iata":"","local":"27WV","name":"Kurt's Field","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Poca","elevation_ft":670,"latitude":38.4788193,"longitude":-81.8036944,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1628,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"53VG","iata":"","local":"53VG","name":"The Salmon Farm Airport (Pvt)","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Painter","elevation_ft":41,"latitude":37.6138889,"longitude":-75.8011111,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57KY","iata":"","local":"57KY","name":"Belcher Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-KY","municipality":"Belcher","elevation_ft":1700,"latitude":37.36940002441406,"longitude":-82.32420349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9OI3","iata":"","local":"9OI3","name":"Johns Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Zanesville","elevation_ft":1000,"latitude":39.89860153198242,"longitude":-82.11029815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92VA","iata":"","local":"92VA","name":"New Quarter Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Gloucester","elevation_ft":38,"latitude":37.34469985961914,"longitude":-76.56439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3100,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"91VA","iata":"","local":"91VA","name":"Miller Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bedford","elevation_ft":760,"latitude":37.327598571777344,"longitude":-79.40480041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1850,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0PN6","iata":"","local":"0PN6","name":"Memmi Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Three Springs","elevation_ft":1138,"latitude":40.16899871826172,"longitude":-77.99250030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1730,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41PA","iata":"","local":"41PA","name":"Deitch Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Kingstown","elevation_ft":420,"latitude":40.25790023803711,"longitude":-77.0813980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":1276,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"93VA","iata":"","local":"93VA","name":"Timberdoodle Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Amherst","elevation_ft":810,"latitude":37.53630065917969,"longitude":-79.02339935302734,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"45OI","iata":"","local":"45OI","name":"Plane Country Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Strasburg","elevation_ft":920,"latitude":40.56119918823242,"longitude":-81.54570007324219,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OA7","iata":"","local":"8OA7","name":"Bald Eagle Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Malta","elevation_ft":680,"latitude":39.557083,"longitude":-81.780553,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2260,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV57","iata":"","local":"WV57","name":"Mckee Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Terra Alta","elevation_ft":2757,"latitude":39.46310043334961,"longitude":-79.5425033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD01","iata":"","local":"MD01","name":"Wingfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Dameron","elevation_ft":20,"latitude":38.143254,"longitude":-76.357244,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":4200,"width_ft":500,"surface":"W"},{"id":"11/29","length_ft":1200,"width_ft":50,"surface":"T"},{"id":"14W/32W","length_ft":3600,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV28","iata":"","local":"WV28","name":"Ruth Field STOLport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Clarksburg","elevation_ft":1200,"latitude":39.324306,"longitude":-80.397627,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1315,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG12","iata":"","local":"VG12","name":"Simpsonville Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rhoadesville","elevation_ft":400,"latitude":38.317796,"longitude":-77.867402,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG55","iata":"","local":"VG55","name":"Woodstock Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Woodstock","elevation_ft":965,"latitude":38.881078,"longitude":-78.55815,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12WV","iata":"","local":"12WV","name":"Crazy Horse Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Hamlin","elevation_ft":603,"latitude":38.343301,"longitude":-82.112149,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1053,"width_ft":40,"surface":"T"},{"id":"18/36","length_ft":1292,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8VG4","iata":"","local":"8VG4","name":"Buffalo Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Amherst","elevation_ft":660,"latitude":37.605522,"longitude":-79.016903,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1200,"width_ft":50,"surface":"T"},{"id":"16/34","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGAS","iata":"","local":"GAS","name":"Gallia Meigs Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Gallipolis","elevation_ft":566,"latitude":38.834099,"longitude":-82.163399,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":3999,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5PA0","iata":"","local":"5PA0","name":"Blomster Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Carmichaels","elevation_ft":1050,"latitude":39.872849,"longitude":-79.95533,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KAPH","iata":"APH","local":"APH","name":"Mary Walker LZ Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bowling Green","elevation_ft":220,"latitude":38.068631,"longitude":-77.319318,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2202,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19VA","iata":"","local":"19VA","name":"Flying W Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Castlewood","elevation_ft":1760,"latitude":36.88882,"longitude":-82.300558,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA58","iata":"","local":"PA58","name":"Rocktop Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Chambersburg","elevation_ft":770,"latitude":39.97499847412109,"longitude":-77.55780029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN62","iata":"","local":"PN62","name":"Cataney Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Midway","elevation_ft":1200,"latitude":40.375099182128906,"longitude":-80.29979705810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG43","iata":"","local":"VG43","name":"Arrowpoint Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Madison","elevation_ft":315,"latitude":38.307079,"longitude":-78.098953,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1125,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV65","iata":"","local":"WV65","name":"Carr Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Fairmont","elevation_ft":1670,"latitude":39.449036,"longitude":-80.011775,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS43","iata":"","local":"PS43","name":"Barnes Farmland Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Volant","elevation_ft":1280,"latitude":41.07867,"longitude":-80.25504,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2250,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KFWQ","iata":"","local":"FWQ","name":"Rostraver Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Monongahela","elevation_ft":1228,"latitude":40.20970153808594,"longitude":-79.8313980102539,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PA5","iata":"","local":"6PA5","name":"Botsford Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Shippensburg","elevation_ft":615,"latitude":40.113399505615234,"longitude":-77.4542007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2400,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81VA","iata":"","local":"81VA","name":"Ferguson Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Wirtz","elevation_ft":1050,"latitude":37.117221,"longitude":-79.787048,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"88PA","iata":"","local":"88PA","name":"Mc Coy Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Clinton","elevation_ft":1200,"latitude":40.539199829100006,"longitude":-80.4131011963,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV70","iata":"","local":"WV70","name":"Fairview Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Elkins","elevation_ft":2600,"latitude":38.956199645996094,"longitude":-79.7886962890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV00","iata":"","local":"WV00","name":"Deer Creek Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Arbovale","elevation_ft":2650,"latitude":38.47079849243164,"longitude":-79.80059814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG07","iata":"","local":"VG07","name":"Rular Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Remington","elevation_ft":305,"latitude":38.53889846801758,"longitude":-77.82830047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG29","iata":"","local":"VG29","name":"Branham Mill Airpark","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Warsaw","elevation_ft":100,"latitude":37.969847,"longitude":-76.70886,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"00WV","iata":"","local":"00WV","name":"Lazy J. Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Beverly","elevation_ft":2060,"latitude":38.82889938354492,"longitude":-79.86609649658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14VG","iata":"","local":"14VG","name":"Abilene Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Keysville","elevation_ft":590,"latitude":37.16913,"longitude":-78.52092,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82VA","iata":"","local":"82VA","name":"Root Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Verona","elevation_ft":1290,"latitude":38.17319869995117,"longitude":-78.96920013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"77PA","iata":"","local":"77PA","name":"Nardo Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Allison Park","elevation_ft":1140,"latitude":40.58340072631836,"longitude":-79.8998031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8OI5","iata":"","local":"8OI5","name":"Clum Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Thornville","elevation_ft":1115,"latitude":39.88169860839844,"longitude":-82.41459655761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA52","iata":"","local":"VA52","name":"Frank Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Harrisonburg","elevation_ft":1650,"latitude":38.4851,"longitude":-78.945297,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1800,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA30","iata":"","local":"VA30","name":"Berryvale Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Culpeper","elevation_ft":470,"latitude":38.526798248291016,"longitude":-77.9563980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA93","iata":"","local":"VA93","name":"Ayers Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Columbia Furnace","elevation_ft":1340,"latitude":38.90510177612305,"longitude":-78.65470123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV53","iata":"","local":"WV53","name":"Larew Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Newburg","elevation_ft":1790,"latitude":39.37200164794922,"longitude":-79.8927993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KTHV","iata":"THV","local":"THV","name":"York Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Thomasville","elevation_ft":495,"latitude":39.917,"longitude":-76.873001,"has_tower":false,"has_beacon":true,"runways":[{"id":"17/35","length_ft":5188,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"32PN","iata":"","local":"32PN","name":"Black Rock Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Brighton","elevation_ft":1150,"latitude":40.73400115966797,"longitude":-80.2759017944336,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV62","iata":"","local":"WV62","name":"Windwood Fly-In Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Davis","elevation_ft":3210,"latitude":39.055099487300005,"longitude":-79.43139648440001,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV67","iata":"","local":"WV67","name":"Eastview Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Romney","elevation_ft":1590,"latitude":39.39469909667969,"longitude":-78.67939758300781,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA08","iata":"","local":"PA08","name":"JJ & PK Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Greencastle","elevation_ft":542,"latitude":39.7934,"longitude":-77.778099,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1750,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"73PN","iata":"","local":"73PN","name":"Finkhaven Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Trout Run","elevation_ft":640,"latitude":41.36840057373047,"longitude":-77.07109832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"92PN","iata":"","local":"92PN","name":"Bartsch Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Wilmington","elevation_ft":1150,"latitude":41.067761,"longitude":-80.294727,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS66","iata":"","local":"PS66","name":"Parker-Cramer Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Clarion","elevation_ft":1480,"latitude":41.21149826049805,"longitude":-79.36090087890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40PN","iata":"","local":"40PN","name":"Eagles Mere Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Muncy Valley","elevation_ft":1900,"latitude":41.391438,"longitude":-76.611179,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN90","iata":"","local":"PN90","name":"Ranch-Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Roulette","elevation_ft":1575,"latitude":41.74869918823242,"longitude":-78.09970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD97","iata":"","local":"MD97","name":"Lanseair Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"La Plata","elevation_ft":40,"latitude":38.46149826049805,"longitude":-77.04640197753906,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2900,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS27","iata":"","local":"PS27","name":"Juergensen Airpark and Maritime Facility Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Addison","elevation_ft":1890,"latitude":39.73139953613281,"longitude":-79.375,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA88","iata":"","local":"PA88","name":"Nemacolin Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Farmington","elevation_ft":2010,"latitude":39.80559921264648,"longitude":-79.54889678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3845,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN30","iata":"","local":"PN30","name":"Schrenkel Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Cassville","elevation_ft":1200,"latitude":40.26279830932617,"longitude":-78.10250091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN71","iata":"","local":"PN71","name":"Jansen Vineyards Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Richfield","elevation_ft":860,"latitude":40.650001525878906,"longitude":-77.05750274658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPSB","iata":"","local":"PSB","name":"Mid-State Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Philipsburg","elevation_ft":1948,"latitude":40.884399414062,"longitude":-78.087303161621,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5006,"width_ft":100,"surface":"A"},{"id":"16/34","length_ft":5711,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09PA","iata":"","local":"09PA","name":"Eagle Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Port Matilda","elevation_ft":1780,"latitude":40.82699966430664,"longitude":-77.98809814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1PA0","iata":"","local":"1PA0","name":"Hinaman Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Jersey Shore","elevation_ft":800,"latitude":41.133399963378906,"longitude":-77.19969940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"47NY","iata":"","local":"47NY","name":"Elk Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Borden","elevation_ft":1540,"latitude":42.04499816894531,"longitude":-77.3499984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PA4","iata":"","local":"2PA4","name":"Boden Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lakewood","elevation_ft":2120,"latitude":41.84669876098633,"longitude":-75.44629669189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5NY5","iata":"","local":"5NY5","name":"Gardiner Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Gardiner","elevation_ft":340,"latitude":41.66680145263672,"longitude":-74.14959716796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2400,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"82NY","iata":"","local":"82NY","name":"Silvernails Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Gallatin","elevation_ft":571,"latitude":42.001389,"longitude":-73.67111,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT42","iata":"","local":"CT42","name":"Wings Ago Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Goshen","elevation_ft":1585,"latitude":41.85010147094727,"longitude":-73.26619720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33CT","iata":"","local":"33CT","name":"Irish Hills Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Bethlehem","elevation_ft":830,"latitude":41.609444,"longitude":-73.239722,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT96","iata":"","local":"CT96","name":"Green Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Bristol","elevation_ft":950,"latitude":41.709355,"longitude":-72.971253,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"28MA","iata":"","local":"28MA","name":"Cannizzaro Field","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Southwick","elevation_ft":250,"latitude":42.078238,"longitude":-72.818792,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5MA3","iata":"","local":"5MA3","name":"Pasport Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"West Brookfield","elevation_ft":1010,"latitude":42.187599182128906,"longitude":-72.14309692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN84","iata":"","local":"PN84","name":"Lake Arthur Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Portersville","elevation_ft":1240,"latitude":40.984191,"longitude":-80.16243,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08NY","iata":"","local":"08NY","name":"Md1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Middletown","elevation_ft":650,"latitude":41.36809921264648,"longitude":-74.50559997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":500,"width_ft":60,"surface":"T"},{"id":"15/33","length_ft":450,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA40","iata":"","local":"PA40","name":"Benton Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Benton","elevation_ft":780,"latitude":41.20009994506836,"longitude":-76.38719940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07PN","iata":"","local":"07PN","name":"Folmar Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Grassflat","elevation_ft":1690,"latitude":40.998889,"longitude":-78.125278,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PN7","iata":"","local":"4PN7","name":"Merritt Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Sonestown","elevation_ft":2000,"latitude":41.418098,"longitude":-76.534401,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3400,"width_ft":100,"surface":"T"},{"id":"06/24","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"19PA","iata":"","local":"19PA","name":"Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Millville","elevation_ft":750,"latitude":41.117000579833984,"longitude":-76.52079772949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18NY","iata":"","local":"18NY","name":"Strip in the Woods Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Woodstock","elevation_ft":500,"latitude":42.017362,"longitude":-74.047593,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY35","iata":"","local":"NY35","name":"Stanton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"New Paltz","elevation_ft":303,"latitude":41.750099182128906,"longitude":-74.11630249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":23,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT01","iata":"","local":"CT01","name":"Whelan Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Bethlehem","elevation_ft":1020,"latitude":41.66619873046875,"longitude":-73.18900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2050,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLHV","iata":"LHV","local":"LHV","name":"William T. Piper Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lock Haven","elevation_ft":556,"latitude":41.13560104,"longitude":-77.42230225,"has_tower":false,"has_beacon":true,"runways":[{"id":"09L/27R","length_ft":3799,"width_ft":75,"surface":"A"},{"id":"09R/27L","length_ft":2179,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6PA3","iata":"","local":"6PA3","name":"Hackenburg-Penny Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Montoursville","elevation_ft":1000,"latitude":41.15010070800781,"longitude":-76.89969635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2273,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KMSV","iata":"MSV","local":"MSV","name":"Sullivan County International Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Monticello","elevation_ft":1403,"latitude":41.701596,"longitude":-74.794997,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":6298,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK68","iata":"","local":"NK68","name":"White Birch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Hancock","elevation_ft":1860,"latitude":42.051627,"longitude":-75.316823,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1910,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NY7","iata":"","local":"6NY7","name":"Piolis Brookside Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Kerhonkson","elevation_ft":1060,"latitude":41.86539840698242,"longitude":-74.33290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41NK","iata":"","local":"41NK","name":"Winchell Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Millerton","elevation_ft":1141,"latitude":41.947778,"longitude":-73.518055,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA43","iata":"","local":"MA43","name":"Morehaven Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Granville","elevation_ft":1120,"latitude":42.072173,"longitude":-72.899963,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1170,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2PA3","iata":"","local":"2PA3","name":"Reed Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Lake Ariel","elevation_ft":1400,"latitude":41.497394,"longitude":-75.40947,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK08","iata":"","local":"NK08","name":"Sheeley's Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"High Falls","elevation_ft":260,"latitude":41.8317985534668,"longitude":-74.12989807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT24","iata":"","local":"CT24","name":"North Canaan Aviation Facilities Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"North Canaan","elevation_ft":658,"latitude":42.0453987121582,"longitude":-73.33869934082031,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA80","iata":"","local":"MA80","name":"Mundale Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Westfield","elevation_ft":280,"latitude":42.121431,"longitude":-72.812046,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT80","iata":"","local":"CT80","name":"Stonington Airpark","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Stonington","elevation_ft":7,"latitude":41.3473014831543,"longitude":-71.88590240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4PA6","iata":"","local":"4PA6","name":"Hiawatha Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Starlight","elevation_ft":1670,"latitude":41.91510009765625,"longitude":-75.3644027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NY1","iata":"","local":"4NY1","name":"Orange Poultry Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Chester","elevation_ft":420,"latitude":41.32789993286133,"longitude":-74.32460021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY94","iata":"","local":"NY94","name":"Old Rhinebeck Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Rhinebeck","elevation_ft":323,"latitude":41.9715,"longitude":-73.8629,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CT5","iata":"","local":"5CT5","name":"Thomson Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Bethlehem","elevation_ft":820,"latitude":41.632301330566406,"longitude":-73.21620178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT66","iata":"","local":"CT66","name":"Long View Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Washington","elevation_ft":940,"latitude":41.66680145263672,"longitude":-73.28289794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA18","iata":"","local":"MA18","name":"Cmelak Field","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Sheffield","elevation_ft":980,"latitude":42.0791015625,"longitude":-73.30719757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1250,"width_ft":80,"surface":"T"},{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT59","iata":"","local":"CT59","name":"Good Hill Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Roxbury","elevation_ft":949,"latitude":41.55009841918945,"longitude":-73.26619720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2700,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT19","iata":"","local":"CT19","name":"Laurie Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Hazardville","elevation_ft":129,"latitude":41.968201,"longitude":-72.539803,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT48","iata":"","local":"CT48","name":"Wychwood Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Mystic","elevation_ft":316,"latitude":41.436798095703125,"longitude":-71.92539978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA44","iata":"","local":"MA44","name":"Trade Wind Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Oak Bluffs","elevation_ft":43,"latitude":41.44179916381836,"longitude":-70.57029724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"31MA","iata":"","local":"31MA","name":"Norm's Field","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Belchertown","elevation_ft":460,"latitude":42.26242,"longitude":-72.409308,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT14","iata":"","local":"CT14","name":"Bancroft Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"East Windsor Hill","elevation_ft":52,"latitude":41.866798400878906,"longitude":-72.61620330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KLZD","iata":"","local":"LZD","name":"Danielson Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Danielson","elevation_ft":238,"latitude":41.81969833374024,"longitude":-71.9010009765625,"has_tower":false,"has_beacon":true,"runways":[{"id":"13/31","length_ft":2700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"64CT","iata":"","local":"64CT","name":"Woodstock Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Woodstock","elevation_ft":465,"latitude":41.920956,"longitude":-71.953117,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA64","iata":"","local":"MA64","name":"Pheasant Field","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Pembroke","elevation_ft":40,"latitude":42.07540130615234,"longitude":-70.81529998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT11","iata":"","local":"CT11","name":"Devils Hopyard Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"East Haddam","elevation_ft":125,"latitude":41.444,"longitude":-72.338997,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1250,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"CT43","iata":"","local":"CT43","name":"Spruce Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Jewett City","elevation_ft":200,"latitude":41.59370040893555,"longitude":-71.93119812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1725,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA30","iata":"","local":"MA30","name":"Dresser Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Charlton","elevation_ft":810,"latitude":42.10217,"longitude":-71.969118,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA63","iata":"","local":"MA63","name":"Sherman-Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Pembroke","elevation_ft":34,"latitude":42.07400131225586,"longitude":-70.79810333251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"RI11","iata":"","local":"RI11","name":"Riconn Airport","category":"small_airport","iso_country":"US","iso_region":"US-RI","municipality":"Greene","elevation_ft":385,"latitude":41.6968,"longitude":-71.783699,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":100,"surface":"T"},{"id":"14/32","length_ft":1576,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"15MA","iata":"","local":"15MA","name":"Canapitsit Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Gosnold","elevation_ft":10,"latitude":41.42251,"longitude":-70.909295,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":700,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24CT","iata":"","local":"24CT","name":"Bee Field","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Jewett City","elevation_ft":280,"latitude":41.582234,"longitude":-71.968226,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"5CT7","iata":"","local":"5CT7","name":"Mile Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-CT","municipality":"Old Lyme","elevation_ft":30,"latitude":41.30229949951172,"longitude":-72.29620361328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1MA5","iata":"","local":"1MA5","name":"Unknown Field","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Southborough","elevation_ft":432,"latitude":42.27899932861328,"longitude":-71.54779815673828,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04NY","iata":"","local":"04NY","name":"Klaverack Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Hudson","elevation_ft":250,"latitude":42.262298584,"longitude":-73.6961975098,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21NK","iata":"","local":"21NK","name":"Don Kichote-Quixote Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Morris","elevation_ft":1750,"latitude":42.552799,"longitude":-75.191102,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2112,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33NY","iata":"","local":"33NY","name":"Wayne Delp Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"West Coxsackie","elevation_ft":800,"latitude":42.393243,"longitude":-73.867779,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"2NY0","iata":"","local":"2NY0","name":"Catskill Valley Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"South Cairo","elevation_ft":190,"latitude":42.28060150146485,"longitude":-73.9529037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1475,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NK0","iata":"","local":"6NK0","name":"Knapp Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Schenevus","elevation_ft":1300,"latitude":42.595618,"longitude":-74.820607,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":54,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"74NK","iata":"","local":"74NK","name":"Sunside Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Cairo","elevation_ft":360,"latitude":42.327207,"longitude":-74.063501,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"9NY6","iata":"","local":"9NY6","name":"Mason Airway Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Treadwell","elevation_ft":2170,"latitude":42.324798583984375,"longitude":-74.98629760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1600,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"8NY3","iata":"","local":"8NY3","name":"North Fork Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Afton","elevation_ft":1455,"latitude":42.268699645996094,"longitude":-75.55970001220703,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK43","iata":"","local":"NK43","name":"Jerry Phibbs Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Schenectady","elevation_ft":340,"latitude":42.753296,"longitude":-73.916528,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NY3","iata":"","local":"3NY3","name":"De Ronda Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Springfield","elevation_ft":1650,"latitude":42.85979843139648,"longitude":-74.82430267333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY02","iata":"","local":"NY02","name":"Mountain Top Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Davenport","elevation_ft":1960,"latitude":42.487300872802734,"longitude":-74.78019714355469,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2290,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MA86","iata":"","local":"MA86","name":"Kendalls Lndg Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Windsor","elevation_ft":2102,"latitude":42.5055999756,"longitude":-73.0597991943,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NY6","iata":"","local":"3NY6","name":"Six Ponds Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Duanesburg","elevation_ft":1125,"latitude":42.84120178222656,"longitude":-74.17870330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY50","iata":"","local":"NY50","name":"Johnson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Amsterdam","elevation_ft":760,"latitude":42.992144,"longitude":-74.137459,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2810,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT47","iata":"","local":"VT47","name":"Miller Farm Airfield","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Vernon","elevation_ft":285,"latitude":42.778599,"longitude":-72.527802,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KGDM","iata":"GDM","local":"GDM","name":"Gardner Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Gardner","elevation_ft":955,"latitude":42.5499992371,"longitude":-72.0160980225,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"26MA","iata":"","local":"26MA","name":"Pepperell Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Pepperell","elevation_ft":176,"latitude":42.69620132446289,"longitude":-71.55010223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2820,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04MA","iata":"","local":"04MA","name":"Goddard Field","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Haverhill","elevation_ft":200,"latitude":42.810908,"longitude":-71.140959,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"06NH","iata":"","local":"06NH","name":"Cole Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Kensington","elevation_ft":160,"latitude":42.92839813232422,"longitude":-70.97309875488281,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME46","iata":"","local":"ME46","name":"Back Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Kennebunkport","elevation_ft":60,"latitude":43.41230010986328,"longitude":-70.44670104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12NH","iata":"","local":"12NH","name":"Gile Pond Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Sanbornton","elevation_ft":485,"latitude":43.495278,"longitude":-71.654444,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NK6","iata":"","local":"7NK6","name":"Blueberry Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Treadwell","elevation_ft":2100,"latitude":42.29169845581055,"longitude":-75.06670379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY74","iata":"","local":"NY74","name":"Deer Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Coxsackie","elevation_ft":320,"latitude":42.32369995117188,"longitude":-73.87319946289062,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2450,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"6NY4","iata":"","local":"6NY4","name":"West Township Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Delanson","elevation_ft":1260,"latitude":42.700401,"longitude":-74.155098,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3NY0","iata":"","local":"3NY0","name":"The Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Sprakers","elevation_ft":1110,"latitude":42.827301,"longitude":-74.403999,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"7NY6","iata":"","local":"7NY6","name":"Sherwood Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Johnsonville","elevation_ft":530,"latitude":42.893699645996094,"longitude":-73.50789642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK91","iata":"","local":"NK91","name":"Boyle's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Sharon Springs","elevation_ft":1300,"latitude":42.816200256347656,"longitude":-74.62460327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1650,"width_ft":42,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY20","iata":"","local":"NY20","name":"Nellis Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Plain","elevation_ft":700,"latitude":42.962592,"longitude":-74.681904,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/32","length_ft":2750,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT43","iata":"","local":"VT43","name":"Onyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Townshend","elevation_ft":427,"latitude":43.01919937133789,"longitude":-72.65290069580078,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3MA2","iata":"","local":"3MA2","name":"Baines Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Middlefield","elevation_ft":1160,"latitude":42.316200256347656,"longitude":-73.03199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY88","iata":"","local":"NY88","name":"Hickory Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Plain","elevation_ft":970,"latitude":42.883399963378906,"longitude":-74.69129943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03MA","iata":"","local":"03MA","name":"Hadley Airport","category":"small_airport","iso_country":"US","iso_region":"US-MA","municipality":"Hadley","elevation_ft":150,"latitude":42.393431,"longitude":-72.551553,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH17","iata":"","local":"NH17","name":"Zim Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Mason","elevation_ft":520,"latitude":42.72760009765625,"longitude":-71.71759796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"94NH","iata":"","local":"94NH","name":"Tucker Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Andover","elevation_ft":620,"latitude":43.47645,"longitude":-71.7474,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH07","iata":"","local":"NH07","name":"Cooper Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Loudon","elevation_ft":485,"latitude":43.280399322509766,"longitude":-71.45659637451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"57ME","iata":"","local":"57ME","name":"Dyer's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Fryeburg","elevation_ft":441,"latitude":43.91780090332031,"longitude":-70.85440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":950,"width_ft":100,"surface":"T"},{"id":"18W/36W","length_ft":3000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"71ME","iata":"","local":"71ME","name":"Twin Eagles Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Naples","elevation_ft":280,"latitude":43.9668998718,"longitude":-70.6010971069,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME75","iata":"","local":"ME75","name":"Margerison Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Durham","elevation_ft":220,"latitude":43.953999,"longitude":-70.141403,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":100,"surface":"T"},{"id":"15/33","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME32","iata":"","local":"ME32","name":"Ruby Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Sangerville","elevation_ft":500,"latitude":45.089204,"longitude":-69.260635,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT06","iata":"","local":"VT06","name":"Santa's Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Putney","elevation_ft":673,"latitude":43.00439834594727,"longitude":-72.47370147705078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NY8","iata":"","local":"0NY8","name":"Wenskoski Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Perth","elevation_ft":800,"latitude":42.99729919433594,"longitude":-74.24539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH76","iata":"","local":"NH76","name":"Mason Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Mason","elevation_ft":740,"latitude":42.729000091552734,"longitude":-71.7842025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT34","iata":"","local":"VT34","name":"Major W. Guth STOLport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Westminster","elevation_ft":819,"latitude":43.059486,"longitude":-72.492144,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"21NH","iata":"","local":"21NH","name":"Propwash Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Kensington","elevation_ft":190,"latitude":42.916900634765625,"longitude":-70.935302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1450,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0NY7","iata":"","local":"0NY7","name":"Murphys Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Amsterdam","elevation_ft":940,"latitude":43.026623,"longitude":-74.177055,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"11NK","iata":"","local":"11NK","name":"Hop House Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Plain","elevation_ft":530,"latitude":42.91389846801758,"longitude":-74.61170196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH61","iata":"","local":"NH61","name":"Heaton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Chester","elevation_ft":188,"latitude":42.96810150146485,"longitude":-71.18119812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1740,"width_ft":28,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH39","iata":"","local":"NH39","name":"Frank D. Comerford Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Walpole","elevation_ft":640,"latitude":43.03340148925781,"longitude":-72.42980194091797,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1300,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KCNH","iata":"CNH","local":"CNH","name":"Claremont Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Claremont","elevation_ft":545,"latitude":43.3703994751,"longitude":-72.36869812009999,"has_tower":false,"has_beacon":true,"runways":[{"id":"11/29","length_ft":3098,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51NH","iata":"","local":"51NH","name":"Blue Puffin Farm Heliport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Deerfield","elevation_ft":863,"latitude":43.174782,"longitude":-71.282843,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME91","iata":"","local":"ME91","name":"Webster Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Gorham","elevation_ft":200,"latitude":43.67509841918945,"longitude":-70.49559783935547,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"54ME","iata":"","local":"54ME","name":"Cliff Dow Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"New Gloucester","elevation_ft":415,"latitude":43.949444,"longitude":-70.320278,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"90ME","iata":"","local":"90ME","name":"Zinck Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Rumford","elevation_ft":620,"latitude":44.523056,"longitude":-70.545556,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1600,"width_ft":80,"surface":"T"},{"id":"11W/29W","length_ft":5000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME20","iata":"","local":"ME20","name":"Bob-Mar Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Fairfield","elevation_ft":310,"latitude":44.59920120239258,"longitude":-69.6239013671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH16","iata":"","local":"NH16","name":"Brookline Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Brookline","elevation_ft":415,"latitude":42.741798,"longitude":-71.707603,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1926,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH60","iata":"","local":"NH60","name":"Huff Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"New Boston","elevation_ft":840,"latitude":42.958877,"longitude":-71.653126,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":940,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH88","iata":"","local":"NH88","name":"Country Club Air Park","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Goffstown","elevation_ft":780,"latitude":43.06729888916016,"longitude":-71.61119842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1275,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"24ME","iata":"","local":"24ME","name":"Slip Knot Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Windham","elevation_ft":310,"latitude":43.82220077514648,"longitude":-70.44280242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME45","iata":"","local":"ME45","name":"Goosefair Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Kennebunkport","elevation_ft":40,"latitude":43.40560150146485,"longitude":-70.43229675292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1600,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME64","iata":"","local":"ME64","name":"Skydive Lebanon Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"West Lebanon","elevation_ft":365,"latitude":43.375,"longitude":-70.92919921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH40","iata":"","local":"NH40","name":"Eagles Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"New London","elevation_ft":998,"latitude":43.40459,"longitude":-71.94878,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2800,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"56NH","iata":"","local":"56NH","name":"Therriaults Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Middleton","elevation_ft":675,"latitude":43.481111,"longitude":-71.056861,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"09ME","iata":"","local":"09ME","name":"Perrotti Skyranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Berwick","elevation_ft":260,"latitude":43.34080123901367,"longitude":-70.85469818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME33","iata":"","local":"ME33","name":"Farr Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Harpswell","elevation_ft":70,"latitude":43.77870178222656,"longitude":-70.01309967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"98ME","iata":"","local":"98M","name":"Greaton Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Saco","elevation_ft":170,"latitude":43.572013,"longitude":-70.525362,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"01NH","iata":"","local":"01NH","name":"Moore Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Canaan","elevation_ft":835,"latitude":43.6445,"longitude":-72.086998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME89","iata":"","local":"ME89","name":"Buzzy's Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Acton","elevation_ft":650,"latitude":43.608792,"longitude":-70.972149,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"18ME","iata":"","local":"18ME","name":"Ruby Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Bristol","elevation_ft":216,"latitude":43.893597,"longitude":-69.495406,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"40ME","iata":"","local":"40ME","name":"Tib Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Fryeburg","elevation_ft":450,"latitude":44.107519,"longitude":-70.956454,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"12ME","iata":"","local":"12ME","name":"Ridgeview Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Searsmont","elevation_ft":240,"latitude":44.32229995727539,"longitude":-69.2072982788086,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"78ME","iata":"","local":"78ME","name":"Eric's Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Falmouth","elevation_ft":97,"latitude":43.753056,"longitude":-70.259167,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KIZG","iata":"FRY","local":"IZG","name":"Eastern Slopes Regional Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Fryeburg","elevation_ft":454,"latitude":43.9911003113,"longitude":-70.9478988647,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":4200,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME14","iata":"","local":"ME14","name":"Bald Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Camden","elevation_ft":570,"latitude":44.23059844970703,"longitude":-69.12310028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":150,"surface":"T"},{"id":"13/31","length_ft":700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"35ME","iata":"","local":"35ME","name":"Matinicus Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Matinicus Island","elevation_ft":15,"latitude":43.87110137939453,"longitude":-68.89330291748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1645,"width_ft":30,"surface":"G"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04ME","iata":"","local":"04ME","name":"Beech Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Mercer","elevation_ft":625,"latitude":44.66669845581055,"longitude":-69.8938980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1950,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KPNN","iata":"PNN","local":"PNN","name":"Princeton Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Princeton","elevation_ft":266,"latitude":45.200698852539,"longitude":-67.564399719238,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":3998,"width_ft":150,"surface":"A"},{"id":"15/33","length_ft":4007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"03ME","iata":"","local":"03ME","name":"Maple Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Harrison","elevation_ft":556,"latitude":44.084251,"longitude":-70.626905,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"81ME","iata":"","local":"81ME","name":"French Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Ellsworth","elevation_ft":338,"latitude":44.619892,"longitude":-68.594611,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1668,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"14ME","iata":"","local":"14ME","name":"Ring Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Carmel","elevation_ft":340,"latitude":44.79125,"longitude":-69.071479,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"84ME","iata":"","local":"84ME","name":"Cowboys Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Brookton","elevation_ft":504,"latitude":45.551929,"longitude":-67.746085,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOWK","iata":"OWK","local":"OWK","name":"Central Maine/Norridgewock Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Norridgewock","elevation_ft":270,"latitude":44.7155,"longitude":-69.866501,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3998,"width_ft":80,"surface":"A"},{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT56","iata":"","local":"VT56","name":"West Burke Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"West Burke","elevation_ft":1285,"latitude":44.61309814453125,"longitude":-71.98090362548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4NY0","iata":"","local":"4NY0","name":"Mountain View Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Beekmantown","elevation_ft":500,"latitude":44.66889953613281,"longitude":-73.54620361328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT22","iata":"","local":"VT22","name":"Shelburne Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Shelburne","elevation_ft":130,"latitude":44.40140151977539,"longitude":-73.26709747314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"41NY","iata":"","local":"41NY","name":"Bonebender Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Essex","elevation_ft":336,"latitude":44.31240081787109,"longitude":-73.38490295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"55ME","iata":"","local":"55ME","name":"HIghland View Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Searsmont","elevation_ft":600,"latitude":44.318056,"longitude":-69.138333,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"51ME","iata":"","local":"51ME","name":"Beaver Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Chesterville","elevation_ft":600,"latitude":44.503854,"longitude":-70.071815,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2350,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"72ME","iata":"","local":"72ME","name":"Philbrick Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Ellsworth","elevation_ft":667,"latitude":44.635278,"longitude":-68.6325,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"0ME4","iata":"","local":"0ME4","name":"Peasley Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Otis","elevation_ft":271,"latitude":44.742469,"longitude":-68.474403,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME74","iata":"","local":"ME74","name":"Miller's Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Newburgh","elevation_ft":160,"latitude":44.7495002746582,"longitude":-68.98139953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"1WN1","iata":"","local":"1WN1","name":"Kettle Moraine Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Campbellsport","elevation_ft":1040,"latitude":43.668912,"longitude":-88.19428,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"34WI","iata":"","local":"34WI","name":"Thiessen Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Baraboo","elevation_ft":1200,"latitude":43.417758,"longitude":-89.766201,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI07","iata":"","local":"WI07","name":"Waupun Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Waupun","elevation_ft":940,"latitude":43.619723,"longitude":-88.767693,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3075,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":3400,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"3LL0","iata":"","local":"3LL0","name":"Miller Airport","category":"small_airport","iso_country":"US","iso_region":"US-IL","municipality":"South Beloit","elevation_ft":760,"latitude":42.49169921875,"longitude":-89.09590148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1320,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KOLD","iata":"OLD","local":"OLD","name":"Dewitt Field - Old Town Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Old Town","elevation_ft":126,"latitude":44.952801,"longitude":-68.674301,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":2802,"width_ft":75,"surface":"A"},{"id":"12/30","length_ft":4001,"width_ft":75,"surface":"A"},{"id":"17W/35W","length_ft":8400,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"63ME","iata":"","local":"63ME","name":"Milo Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Milo","elevation_ft":293,"latitude":45.239167,"longitude":-68.961528,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1834,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"39PN","iata":"","local":"39PN","name":"Nelson's Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Mercer","elevation_ft":1305,"latitude":41.21590042114258,"longitude":-80.19760131835938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"80OH","iata":"","local":"80OH","name":"Griffin-Sloas Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Warren","elevation_ft":885,"latitude":41.269031,"longitude":-80.753508,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OH1","iata":"","local":"4OH1","name":"Sky Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Madison","elevation_ft":940,"latitude":41.71699905395508,"longitude":-81.10679626464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"4OH3","iata":"","local":"4OH3","name":"Bieber Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"North Lima","elevation_ft":1035,"latitude":40.98310089111328,"longitude":-80.70110321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH29","iata":"","local":"OH29","name":"Petersburg Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Petersburg","elevation_ft":1174,"latitude":40.90060043334961,"longitude":-80.5553970336914,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"KEPM","iata":"","local":"EPM","name":"Eastport Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Eastport","elevation_ft":45,"latitude":44.910099029541016,"longitude":-67.01270294189453,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":4002,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"13ME","iata":"","local":"13ME","name":"Socatean Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Rockwood","elevation_ft":1179,"latitude":45.77640151977539,"longitude":-69.8093032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"08ME","iata":"","local":"08ME","name":"Lindbergh Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Avon","elevation_ft":554,"latitude":44.81539,"longitude":-70.34851,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"04VT","iata":"","local":"04VT","name":"Lightning Bolt Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Cabot","elevation_ft":2156,"latitude":44.4011001587,"longitude":-72.26360321039999,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT23","iata":"","local":"VT23","name":"Bostwick Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Shelburne","elevation_ft":220,"latitude":44.369147,"longitude":-73.250656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"07VT","iata":"","local":"07VT","name":"Meadow STOLport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Jericho","elevation_ft":801,"latitude":44.44720077514648,"longitude":-72.91470336914062,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":526,"width_ft":20,"surface":"T"},{"id":"14/32","length_ft":595,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME03","iata":"","local":"ME03","name":"Webber Jones Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Brownville","elevation_ft":400,"latitude":45.33620071411133,"longitude":-69.0509033203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"33VT","iata":"","local":"33VT","name":"Sky View Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Williamstown","elevation_ft":1350,"latitude":44.118333,"longitude":-72.565833,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1722,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC89","iata":"","local":"NC89","name":"Pungo District Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Belhaven","elevation_ft":11,"latitude":35.54290008544922,"longitude":-76.61720275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC90","iata":"","local":"NC90","name":"WBTV Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":630,"latitude":35.22661,"longitude":-80.872496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC91","iata":"","local":"NC91","name":"ECU Health Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Greenville","elevation_ft":76,"latitude":35.608751,"longitude":-77.40717,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC92","iata":"","local":"NC92","name":"Duke University North Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Durham","elevation_ft":395,"latitude":36.006500244140625,"longitude":-78.9385986328125,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC94","iata":"","local":"NC94","name":"Bladen County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabethtown","elevation_ft":120,"latitude":34.619598388671875,"longitude":-78.62529754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC95","iata":"","local":"NC95","name":"Mission Hospitals Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Asheville","elevation_ft":2200,"latitude":35.575298,"longitude":-82.548501,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC96","iata":"","local":"NC96","name":"Betsy Johnson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Dunn","elevation_ft":208,"latitude":35.313201904296875,"longitude":-78.63580322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC98","iata":"","local":"NC98","name":"Sentara Albemarle Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Elizabeth City","elevation_ft":12,"latitude":36.324462,"longitude":-76.216881,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC99","iata":"","local":"NC99","name":"Bagwell Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Garner","elevation_ft":300,"latitude":35.67430114746094,"longitude":-78.6072006225586,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCAI","iata":"AIT","local":"","name":"Aitutaki Airport","category":"small_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Aitutaki","elevation_ft":14,"latitude":-18.8309,"longitude":-159.764008,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5984,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCMG","iata":"MGS","local":"","name":"Mangaia Island Airport","category":"small_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Mangaia Island","elevation_ft":45,"latitude":-21.89598655700684,"longitude":-157.9066619873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3317,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCMH","iata":"MHX","local":"","name":"Manihiki Island Airport","category":"small_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Manihiki Island","elevation_ft":0,"latitude":-10.376700401306152,"longitude":-161.0019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5577,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCMK","iata":"MUK","local":"","name":"Mauke Airport","category":"small_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Mauke Island","elevation_ft":26,"latitude":-20.13610076904297,"longitude":-157.34500122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5223,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCPK","iata":"PZK","local":"","name":"Pukapuka Island Airport","category":"small_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Pukapuka Atoll","elevation_ft":20,"latitude":-10.9145,"longitude":-165.8393,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4544,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCPY","iata":"PYE","local":"","name":"Tongareva Airport","category":"small_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Penrhyn Island","elevation_ft":8,"latitude":-9.01436996459961,"longitude":-158.03240966796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7077,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NCRG","iata":"RAR","local":"","name":"Rarotonga International Airport","category":"medium_airport","iso_country":"CK","iso_region":"CK-U-A","municipality":"Avarua","elevation_ft":19,"latitude":-21.2027,"longitude":-159.806,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":7641,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND01","iata":"","local":"ND01","name":"Nelson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Amenia","elevation_ft":950,"latitude":47.04579925537109,"longitude":-97.1865005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2440,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND05","iata":"","local":"ND05","name":"MCHS Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Watford City","elevation_ft":2083,"latitude":47.803969,"longitude":-103.26915,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND07","iata":"","local":"ND07","name":"Punton Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Absaraka","elevation_ft":1105,"latitude":47.00279998779297,"longitude":-97.4072036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND08","iata":"","local":"ND08","name":"Gator Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ND","municipality":"Anamoose","elevation_ft":1588,"latitude":47.767136,"longitude":-100.310061,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":4165,"width_ft":850,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND10","iata":"","local":"","name":"Flying-N-Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-ND","municipality":"Christine","elevation_ft":930,"latitude":46.548901,"longitude":-96.786498,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1891,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND11","iata":"","local":"ND11","name":"R J Bohn Armory Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Bismarck","elevation_ft":1768,"latitude":46.83110046386719,"longitude":-100.72000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND16","iata":"","local":"ND16","name":"Frei Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Halliday","elevation_ft":2100,"latitude":47.44169998168945,"longitude":-102.24199676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND18","iata":"","local":"ND18","name":"Judy Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Glenburn","elevation_ft":1570,"latitude":48.50640106201172,"longitude":-101.21700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND14","iata":"","local":"ND14","name":"Fordville Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Fordville","elevation_ft":1154,"latitude":48.23469924926758,"longitude":-97.8018035888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2234,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":2533,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND19","iata":"","local":"ND19","name":"Stokka Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Sutton","elevation_ft":1450,"latitude":47.433589,"longitude":-98.417904,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4053,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND09","iata":"","local":"ND09","name":"Bryn Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Dazey","elevation_ft":1431,"latitude":47.19110107421875,"longitude":-98.16899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND21","iata":"","local":"ND21","name":"Standing Rock Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Fort Yates","elevation_ft":1637,"latitude":46.095475,"longitude":-100.627486,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND23","iata":"","local":"ND23","name":"Sanford Fargo Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Fargo","elevation_ft":952,"latitude":46.846284,"longitude":-96.87495,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND35","iata":"","local":"ND35","name":"Lindemann Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Lucca","elevation_ft":1199,"latitude":46.70000076293945,"longitude":-97.70040130615234,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND27","iata":"","local":"ND27","name":"St Aloisius Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Harvey","elevation_ft":1595,"latitude":47.76689910888672,"longitude":-99.931396484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND28","iata":"","local":"ND28","name":"Towner County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Cando","elevation_ft":1480,"latitude":48.49309921,"longitude":-99.21150208,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND30","iata":"","local":"ND30","name":"Sanford Health-Bismark Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Bismarck","elevation_ft":1705,"latitude":46.808252,"longitude":-100.782562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND33","iata":"","local":"ND33","name":"Dawson Mediport Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Dawson","elevation_ft":1750,"latitude":46.87670135498047,"longitude":-99.7522964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND20","iata":"","local":"ND20","name":"Gensrich Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hatton","elevation_ft":1021,"latitude":47.704200744628906,"longitude":-97.35009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND24","iata":"","local":"ND24","name":"Inkster Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Inkster","elevation_ft":1092,"latitude":48.14030075073242,"longitude":-97.67259979248048,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND45","iata":"","local":"ND45","name":"Essentia Health Fargo Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Fargo","elevation_ft":908,"latitude":46.831501,"longitude":-96.829201,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND46","iata":"","local":"ND46","name":"St Alexius Med-I-Port Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Bismarck","elevation_ft":1697,"latitude":46.807498931884766,"longitude":-100.7770004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND47","iata":"","local":"ND47","name":"Geske Airfield","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Enderlin","elevation_ft":1103,"latitude":46.64080047607422,"longitude":-97.55110168457033,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND48","iata":"","local":"ND48","name":"St. Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Fargo","elevation_ft":975,"latitude":46.88359832763672,"longitude":-96.7855987548828,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND49","iata":"","local":"ND49","name":"Krause Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wyndmere","elevation_ft":1060,"latitude":46.22359848022461,"longitude":-97.13040161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2310,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND50","iata":"","local":"ND50","name":"Sakakawea Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Hazen","elevation_ft":1756,"latitude":47.298301696777344,"longitude":-101.61299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND52","iata":"","local":"ND52","name":"True North Airpark","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"West Fargo","elevation_ft":913,"latitude":46.80279922485352,"longitude":-97.01219940185548,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2244,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND53","iata":"","local":"ND53","name":"Pueppke Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Ayr","elevation_ft":1099,"latitude":47.046388,"longitude":-97.388055,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2635,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND40","iata":"","local":"ND40","name":"Rau Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Medina","elevation_ft":1855,"latitude":46.81669998168945,"longitude":-99.25039672851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND44","iata":"","local":"ND44","name":"Underwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Underwood","elevation_ft":2035,"latitude":47.46670151,"longitude":-101.1340027,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND41","iata":"","local":"ND41","name":"Voller Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Strasburg","elevation_ft":1900,"latitude":46.13470077514648,"longitude":-100.11299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND59","iata":"","local":"ND59","name":"Grieve Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Buffalo","elevation_ft":1208,"latitude":46.98749923706055,"longitude":-97.52950286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND55","iata":"","local":"ND55","name":"Sperr Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Ypsilanti","elevation_ft":1465,"latitude":46.788111,"longitude":-98.536965,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND68","iata":"","local":"ND68","name":"Vining Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wheatland","elevation_ft":980,"latitude":46.9557991027832,"longitude":-97.30120086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND73","iata":"","local":"ND73","name":"Peterson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Amenia","elevation_ft":999,"latitude":47.048301696777344,"longitude":-97.25559997558594,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND74","iata":"","local":"ND74","name":"Smith Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Amenia","elevation_ft":940,"latitude":47.0166015625,"longitude":-97.16290283203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND78","iata":"","local":"ND78","name":"Wilcox Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Ayr","elevation_ft":1210,"latitude":47.040000915527344,"longitude":-97.53700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND81","iata":"","local":"ND81","name":"Grand Forks Par Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-ND","municipality":"Cavalier","elevation_ft":1182,"latitude":48.72124,"longitude":-97.908152,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND54","iata":"","local":"ND54","name":"Whitman Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Robinson","elevation_ft":1783,"latitude":47.12919998168945,"longitude":-99.73040008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND75","iata":"","local":"ND75","name":"Pete's Tractor Salvage Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Anamoose","elevation_ft":1655,"latitude":47.720001220703125,"longitude":-100.2689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND60","iata":"","local":"ND60","name":"Douglas Portage Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Arvilla","elevation_ft":953,"latitude":47.956616,"longitude":-97.481738,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND90","iata":"","local":"ND90","name":"Dahl Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Cogswell/Brampton/","elevation_ft":1285,"latitude":45.96659851074219,"longitude":-97.73370361328124,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND92","iata":"","local":"","name":"Schroeder Airport","category":"closed","iso_country":"US","iso_region":"US-ND","municipality":"Davenport","elevation_ft":920,"latitude":46.708302,"longitude":-97.116997,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":645,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND99","iata":"","local":"ND99","name":"Ellig Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hickson","elevation_ft":910,"latitude":46.72019958496094,"longitude":-96.80950164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE01","iata":"","local":"NE01","name":"Schutte Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Guide Rock","elevation_ft":1876,"latitude":40.19469833374024,"longitude":-98.35199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2500,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE02","iata":"","local":"NE02","name":"Pender Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Pender","elevation_ft":1348,"latitude":42.10609817504883,"longitude":-96.71109771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE03","iata":"","local":"NE03","name":"Cherry County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Valentine","elevation_ft":2575,"latitude":42.878673,"longitude":-100.537761,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE05","iata":"","local":"NE05","name":"Cherry Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Firth","elevation_ft":1370,"latitude":40.56529998779297,"longitude":-96.6613998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ND98","iata":"","local":"ND98","name":"Cloud Nine Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Lincoln","elevation_ft":1830,"latitude":46.76079940795898,"longitude":-100.65499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND89","iata":"","local":"ND89","name":"Mutschler Field","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Clementsville","elevation_ft":1490,"latitude":47.05580139160156,"longitude":-98.50700378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ND86","iata":"","local":"ND86","name":"Peterson Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grendra","elevation_ft":2190,"latitude":48.56389999389648,"longitude":-103.96299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2178,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE06","iata":"","local":"NE06","name":"Woolf Brothers Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lynch","elevation_ft":1395,"latitude":42.82500076293945,"longitude":-98.42539978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":150,"surface":"T"},{"id":"N/S","length_ft":2500,"width_ft":150,"surface":"T"},{"id":"NW/SE","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE08","iata":"","local":"NE08","name":"Larrabee Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lamar","elevation_ft":3518,"latitude":40.547877,"longitude":-101.978284,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE10","iata":"","local":"NE10","name":"Flying C Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Elkhorn","elevation_ft":1227,"latitude":41.25690078735352,"longitude":-96.24359893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE14","iata":"","local":"NE14","name":"Ogallala Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Ogallala","elevation_ft":3326,"latitude":41.1505012512207,"longitude":-101.72000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE15","iata":"","local":"","name":"Starns Auxiliary Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Ashland","elevation_ft":1080,"latitude":41.049999,"longitude":-96.382797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE16","iata":"","local":"NE16","name":"Gothenburg Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Gothenburg","elevation_ft":2680,"latitude":40.939753,"longitude":-100.154251,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE21","iata":"","local":"NE21","name":"Clyde Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Oxford","elevation_ft":2250,"latitude":40.286401,"longitude":-99.593554,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":120,"surface":"T"},{"id":"18/36","length_ft":4000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE22","iata":"","local":"NE22","name":"Great Plains Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"North Platte","elevation_ft":2851,"latitude":41.122238,"longitude":-100.771183,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE24","iata":"","local":"","name":"Polaks Sky Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Valparaiso","elevation_ft":1268,"latitude":41.033298,"longitude":-96.817001,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE26","iata":"","local":"NE26","name":"Treadway Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Ashland","elevation_ft":1096,"latitude":41.022319,"longitude":-96.434558,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE09","iata":"","local":"NE09","name":"Simpson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Norfolk","elevation_ft":1650,"latitude":41.96329879760742,"longitude":-97.46730041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE12","iata":"","local":"NE12","name":"Sullivan Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Palmer","elevation_ft":1745,"latitude":41.23889923095703,"longitude":-98.22810363769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1238,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE25","iata":"","local":"NE25","name":"Orr Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"North Platte","elevation_ft":2860,"latitude":41.18190002441406,"longitude":-100.86000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1940,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE29","iata":"","local":"NE29","name":"Cavanaugh Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Minden","elevation_ft":2175,"latitude":40.51390075683594,"longitude":-99.01200103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":4000,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE30","iata":"","local":"NE30","name":"Olson Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Holdrege","elevation_ft":2330,"latitude":40.57360076904297,"longitude":-99.42040252685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE32","iata":"","local":"NE32","name":"Box Butte General Hospital Med-I-Port Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Alliance","elevation_ft":3929,"latitude":42.11439895629883,"longitude":-102.87100219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE33","iata":"","local":"","name":"Clearidge Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Bennet","elevation_ft":1320,"latitude":40.709702,"longitude":-96.4767,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2662,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE35","iata":"","local":"NE35","name":"Sutton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Chester","elevation_ft":1583,"latitude":40.05830001831055,"longitude":-97.54119873046876,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE40","iata":"","local":"NE40","name":"Denton Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Denton","elevation_ft":1270,"latitude":40.71580123901367,"longitude":-96.8677978515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE41","iata":"","local":"NE41","name":"Rgnl West Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Scottsbluff","elevation_ft":3985,"latitude":41.88759994506836,"longitude":-103.66400146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE42","iata":"","local":"NE42","name":"Dream Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lincoln","elevation_ft":1194,"latitude":40.93330001831055,"longitude":-96.70059967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE45","iata":"","local":"","name":"Stewart Field","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Bennet","elevation_ft":1380,"latitude":40.694401,"longitude":-96.577795,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1996,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE38","iata":"","local":"NE38","name":"Aknux Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Prosser","elevation_ft":2025,"latitude":40.709518,"longitude":-98.559545,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3545,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE43","iata":"","local":"NE43","name":"Musiel Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Morse Bluff","elevation_ft":1230,"latitude":41.439701080322266,"longitude":-96.75420379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1175,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE34","iata":"","local":"NE34","name":"Fehringer Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Sidney","elevation_ft":4300,"latitude":41.038643,"longitude":-102.955027,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE46","iata":"","local":"NE46","name":"Gemini Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1150,"latitude":41.25419998168945,"longitude":-96.06700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE48","iata":"","local":"NE48","name":"Childrens Hospital & Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1216,"latitude":41.260779,"longitude":-96.042003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE49","iata":"","local":"NE49","name":"Koke Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Gretna","elevation_ft":1265,"latitude":41.06669998168945,"longitude":-96.25029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2280,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE51","iata":"","local":"","name":"Kohles Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Martell","elevation_ft":1320,"latitude":40.657203,"longitude":-96.757797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE52","iata":"","local":"","name":"Easton Field","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Hebron","elevation_ft":1578,"latitude":40.077801,"longitude":-97.614998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE56","iata":"","local":"NE56","name":"Werner Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Valley","elevation_ft":1157,"latitude":41.341400146484375,"longitude":-96.3949966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2680,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE57","iata":"","local":"NE57","name":"Thomas Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Liberty","elevation_ft":1350,"latitude":40.09220123291016,"longitude":-96.47810363769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"},{"id":"NE/SW","length_ft":3400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE59","iata":"","local":"NE59","name":"Pester Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Lincoln","elevation_ft":1150,"latitude":40.83330154418945,"longitude":-96.56700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1680,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE60","iata":"","local":"NE60","name":"St Elizabeth Community Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Lincoln","elevation_ft":1252,"latitude":40.80780029,"longitude":-96.63079834,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE62","iata":"","local":"NE62","name":"Ochsner Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Madison","elevation_ft":1630,"latitude":41.84360122680664,"longitude":-97.41699981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE64","iata":"","local":"","name":"Luetkenhaus Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Memphis","elevation_ft":1120,"latitude":41.105301,"longitude":-96.4095,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE65","iata":"","local":"NE65","name":"Roth Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Milford","elevation_ft":1485,"latitude":40.766998291015625,"longitude":-97.07779693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE68","iata":"","local":"NE68","name":"Faith Regional Health Services West Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Norfolk","elevation_ft":1500,"latitude":42.03409957885742,"longitude":-97.45269775390624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE69","iata":"EPG","local":"NE69","name":"Browns Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Weeping Water","elevation_ft":1183,"latitude":40.8675003052,"longitude":-96.1100006104,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1200,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE71","iata":"","local":"NE71","name":"Immanuel Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Omaha","elevation_ft":1246,"latitude":41.32220077514648,"longitude":-96.02110290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE73","iata":"","local":"","name":"Stinking Water Creek Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Elsie","elevation_ft":3165,"latitude":40.723301,"longitude":-101.457001,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":72,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE76","iata":"","local":"NE76","name":"St Francis Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Grand Island","elevation_ft":2106,"latitude":40.92499924,"longitude":-98.37259674,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE77","iata":"","local":"NE77","name":"Kearney Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Kearney","elevation_ft":2157,"latitude":40.681659,"longitude":-99.111593,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE79","iata":"","local":"NE79","name":"Mueller Field","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Roca","elevation_ft":1405,"latitude":40.65280151367188,"longitude":-96.62110137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1660,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE80","iata":"","local":"NE80","name":"Chambers Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Roca","elevation_ft":1364,"latitude":40.673066,"longitude":-96.637813,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3257,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE82","iata":"","local":"NE82","name":"Nolte Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Murray","elevation_ft":1245,"latitude":40.932498931884766,"longitude":-95.99949645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE83","iata":"","local":"","name":"Moab Heliport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Shelby","elevation_ft":1640,"latitude":41.120603,"longitude":-97.431395,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE78","iata":"","local":"NE78","name":"Kohles Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Norfolk","elevation_ft":1686,"latitude":42.074738,"longitude":-97.318895,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1217,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NE84","iata":"","local":"NE84","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Aurora","elevation_ft":1802,"latitude":40.86830139160156,"longitude":-98.0145034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE89","iata":"","local":"","name":"Herberts Farm Airport","category":"closed","iso_country":"US","iso_region":"US-NE","municipality":"Winnetoon","elevation_ft":1658,"latitude":42.543303,"longitude":-97.968699,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE90","iata":"","local":"NE90","name":"Mary Lanning Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NE","municipality":"Hastings","elevation_ft":1925,"latitude":40.591400146484375,"longitude":-98.3874969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE92","iata":"","local":"NE92","name":"Thomsen Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Wymore","elevation_ft":1405,"latitude":40.04940032958984,"longitude":-96.66609954833984,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NE95","iata":"","local":"NE95","name":"Frenchman Airport","category":"small_airport","iso_country":"US","iso_region":"US-NE","municipality":"Culbertson","elevation_ft":2590,"latitude":40.229334,"longitude":-100.856841,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NFTF","iata":"TBU","local":"","name":"Fua'amotu International Airport","category":"medium_airport","iso_country":"TO","iso_region":"TO-04","municipality":"Nuku'alofa","elevation_ft":126,"latitude":-21.241199493408203,"longitude":-175.14999389648438,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8763,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NFTL","iata":"HPA","local":"","name":"Lifuka Island Airport","category":"medium_airport","iso_country":"TO","iso_region":"TO-02","municipality":"Lifuka","elevation_ft":31,"latitude":-19.777000427246097,"longitude":-174.34100341796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3937,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NFTV","iata":"VAV","local":"","name":"Vava'u International Airport","category":"medium_airport","iso_country":"TO","iso_region":"TO-05","municipality":"Vava'u Island","elevation_ft":236,"latitude":-18.58530044555664,"longitude":-173.96200561523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":5577,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH01","iata":"","local":"NH01","name":"Bellamy River Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Dover","elevation_ft":0,"latitude":43.1417917,"longitude":-70.8462612,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":5280,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH02","iata":"","local":"NH02","name":"Puzzo-Lakewood Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Alton","elevation_ft":700,"latitude":43.482416,"longitude":-71.2453056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH03","iata":"","local":"NH03","name":"Granite Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hudson","elevation_ft":217,"latitude":42.794167,"longitude":-71.367778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH04","iata":"","local":"NH04","name":"Ciardelli Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Milford","elevation_ft":458,"latitude":42.8057966,"longitude":-71.618797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH05","iata":"","local":"NH05","name":"Seacoast Helicopters West Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Mont Vernon","elevation_ft":600,"latitude":42.899444,"longitude":-71.646666,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH06","iata":"","local":"NH06","name":"Dynasty Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Salem","elevation_ft":295,"latitude":42.80339813232422,"longitude":-71.18280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH08","iata":"","local":"NH08","name":"Marbina Woods Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"North Stratford","elevation_ft":1429,"latitude":44.693292,"longitude":-71.575008,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH09","iata":"","local":"NH09","name":"Seabrook Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Seabrook","elevation_ft":41,"latitude":42.89590072631836,"longitude":-70.86119842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH10","iata":"","local":"NH10","name":"Springfield Cove Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Wolfeboro","elevation_ft":528,"latitude":43.560239,"longitude":-71.194936,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH11","iata":"","local":"NH11","name":"Swain Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Warren","elevation_ft":1110,"latitude":43.961,"longitude":-71.8888333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH12","iata":"","local":"NH12","name":"Evans Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Manchester","elevation_ft":182,"latitude":43.038295,"longitude":-71.468561,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH13","iata":"","local":"NH13","name":"Concord Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Concord","elevation_ft":400,"latitude":43.19729995727539,"longitude":-71.56060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH14","iata":"","local":"NH14","name":"Parker International Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Greenfield","elevation_ft":1065,"latitude":42.929442,"longitude":-71.860833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH19","iata":"","local":"NH19","name":"Air-Wood Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Plainfield","elevation_ft":540,"latitude":43.54309844970703,"longitude":-72.35230255126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH21","iata":"","local":"NH21","name":"Abbott Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Jackson","elevation_ft":1300,"latitude":44.14810180664063,"longitude":-71.16809844970703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH22","iata":"","local":"NH22","name":"Lancaster Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Lancaster","elevation_ft":860,"latitude":44.503700256347656,"longitude":-71.56929779052734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH23","iata":"","local":"NH23","name":"Cottage Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Woodsville","elevation_ft":551,"latitude":44.135409,"longitude":-72.024478,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH24","iata":"","local":"NH24","name":"Prescott Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Grafton","elevation_ft":1460,"latitude":43.5452995300293,"longitude":-71.99610137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH25","iata":"","local":"","name":"Flying H Skyport Airport","category":"closed","iso_country":"US","iso_region":"US-NH","municipality":"Melvin Village","elevation_ft":620,"latitude":43.686699,"longitude":-71.2892,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH26","iata":"","local":"NH26","name":"Dragonwings Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Bedford","elevation_ft":630,"latitude":42.96730041503906,"longitude":-71.57279968261719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH18","iata":"","local":"NH18","name":"Chickville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Center Ossipee","elevation_ft":560,"latitude":43.73339844,"longitude":-71.15119934,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH20","iata":"","local":"NH20","name":"Ward Field","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Sanbornton","elevation_ft":440,"latitude":43.4922981262207,"longitude":-71.6458969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1100,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH15","iata":"","local":"NH15","name":"Locke Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Barnstead","elevation_ft":702,"latitude":43.38669967651367,"longitude":-71.2333984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH27","iata":"","local":"NH27","name":"Huggins Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Wolfeboro","elevation_ft":570,"latitude":43.582252,"longitude":-71.201706,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH28","iata":"","local":"NH28","name":"Hillsboro Ford Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hillsboro","elevation_ft":551,"latitude":43.1100006104,"longitude":-71.9172973633,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH29","iata":"","local":"NH29","name":"Hollander's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Plainfield","elevation_ft":1300,"latitude":43.58200073242188,"longitude":-72.2031021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH30","iata":"","local":"NH30","name":"Avery Point Airport","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"Moultonborough","elevation_ft":505,"latitude":43.675523,"longitude":-71.402759,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":2500,"width_ft":100,"surface":"W"},{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH32","iata":"","local":"NH32","name":"Bentley Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Exeter","elevation_ft":66,"latitude":42.98149871826172,"longitude":-70.918701171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH33","iata":"","local":"NH33","name":"Brigham Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Pembroke","elevation_ft":360,"latitude":43.195899963378906,"longitude":-71.47730255126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH34","iata":"","local":"","name":"Wharf Heliport","category":"closed","iso_country":"US","iso_region":"US-NH","municipality":"Portsmouth","elevation_ft":14,"latitude":43.084,"longitude":-70.761398,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH35","iata":"","local":"NH35","name":"Liberty Lane Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hampton","elevation_ft":60,"latitude":42.950389,"longitude":-70.85659,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH36","iata":"","local":"NH36","name":"Weeks Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Lancaster","elevation_ft":1009,"latitude":44.4865,"longitude":-71.554,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH37","iata":"","local":"NH37","name":"Southern Nh Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Nashua","elevation_ft":96,"latitude":42.75579833984375,"longitude":-71.46199798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH31","iata":"","local":"NH31","name":"Mountain View Field","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Wolfeboro","elevation_ft":965,"latitude":43.65010070800781,"longitude":-71.14949798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":105,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH38","iata":"","local":"NH38","name":"Leavitt Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Albany","elevation_ft":860,"latitude":43.972599029541016,"longitude":-71.1697998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH41","iata":"","local":"NH41","name":"Merrimack Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Merrimack","elevation_ft":209,"latitude":42.81700134277344,"longitude":-71.50530242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH42","iata":"","local":"NH42","name":"C.S.S. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Nashua","elevation_ft":212,"latitude":42.73680114746094,"longitude":-71.48149871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH44","iata":"","local":"NH44","name":"Dean Kamen Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Bedford","elevation_ft":250,"latitude":42.91669845581055,"longitude":-71.51210021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH45","iata":"","local":"NH45","name":"Foss Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hampton","elevation_ft":20,"latitude":42.937599182128906,"longitude":-70.84259796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH46","iata":"","local":"NH46","name":"Austin's Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"New Boston","elevation_ft":620,"latitude":42.97980117797852,"longitude":-71.69560241699219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH47","iata":"","local":"NH47","name":"Monadnock Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Peterborough","elevation_ft":806,"latitude":42.892515,"longitude":-71.941116,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH48","iata":"","local":"","name":"Springfield Point Heliport","category":"closed","iso_country":"US","iso_region":"US-NH","municipality":"Wolfeboro","elevation_ft":504,"latitude":43.557898,"longitude":-71.191704,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH50","iata":"","local":"NH50","name":"Gordon Brown Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Atkinson","elevation_ft":330,"latitude":42.84180068969727,"longitude":-71.15950012207031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":370,"width_ft":95,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH51","iata":"","local":"NH51","name":"Wickson Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Jackson","elevation_ft":1650,"latitude":44.15589904785156,"longitude":-71.15689849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH52","iata":"","local":"NH52","name":"Waste Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Concord","elevation_ft":332,"latitude":43.2051010131836,"longitude":-71.48419952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH43","iata":"","local":"NH43","name":"Murphy-Sherwood Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"West Nottingham","elevation_ft":200,"latitude":43.179501,"longitude":-71.137001,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1750,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH49","iata":"","local":"NH49","name":"Bradley Field","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Woodstock","elevation_ft":650,"latitude":43.969262,"longitude":-71.680758,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH53","iata":"","local":"NH53","name":"Norden Systems Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Merrimack","elevation_ft":200,"latitude":42.83089828491211,"longitude":-71.51090240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH54","iata":"","local":"NH54","name":"Parkland Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Derry","elevation_ft":274,"latitude":42.877169,"longitude":-71.315345,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH55","iata":"","local":"NH55","name":"Chopper One Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Derry","elevation_ft":240,"latitude":42.84700012207031,"longitude":-71.21890258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH56","iata":"","local":"NH56","name":"Wentworth-Douglass Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Dover","elevation_ft":149,"latitude":43.21289825439453,"longitude":-70.87339782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH57","iata":"","local":"NH57","name":"Exeter Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Exeter","elevation_ft":83,"latitude":42.98199844360352,"longitude":-70.93620300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH58","iata":"","local":"NH58","name":"D.W. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Franklin","elevation_ft":440,"latitude":43.41790008544922,"longitude":-71.6447982788086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH62","iata":"","local":"","name":"Millipore Heliport","category":"closed","iso_country":"US","iso_region":"US-NH","municipality":"Jaffrey","elevation_ft":1132,"latitude":42.798698,"longitude":-71.982903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH63","iata":"","local":"NH63","name":"Weston Street Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Derry","elevation_ft":224,"latitude":42.8667984009,"longitude":-71.2180023193,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":10,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH64","iata":"","local":"","name":"Pow-Wow Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-NH","municipality":"Kingston","elevation_ft":115,"latitude":42.9112,"longitude":-71.033391,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":4061,"width_ft":150,"surface":"W"},{"id":"16W/34W","length_ft":3691,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH65","iata":"","local":"NH65","name":"Dean Kamen Ii Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Bedford","elevation_ft":500,"latitude":42.92229843139648,"longitude":-71.5083999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH67","iata":"","local":"NH67","name":"Winterwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Brentwood","elevation_ft":130,"latitude":42.97840118408203,"longitude":-71.0094985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH68","iata":"","local":"NH68","name":"Merrymeeting Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NH","municipality":"New Durham","elevation_ft":647,"latitude":43.47999954223633,"longitude":-71.17019653320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":4000,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH70","iata":"","local":"NH70","name":"Forbes Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"North Conway","elevation_ft":540,"latitude":44.04529953,"longitude":-71.15779877,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":17,"width_ft":17,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH73","iata":"","local":"NH73","name":"Meader's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Center Ossipee","elevation_ft":420,"latitude":43.79290008544922,"longitude":-71.17729949951172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH74","iata":"","local":"NH74","name":"Crowley Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Loudon","elevation_ft":570,"latitude":43.34090042114258,"longitude":-71.47090148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH77","iata":"","local":"NH77","name":"Smiling Jack Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Meredith","elevation_ft":730,"latitude":43.62536,"longitude":-71.56541,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH79","iata":"","local":"NH79","name":"Falcon Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"West Epping","elevation_ft":160,"latitude":43.04059982299805,"longitude":-71.12560272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH80","iata":"","local":"NH80","name":"Shanklin Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Wilton","elevation_ft":820,"latitude":42.82559967041016,"longitude":-71.74169921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH81","iata":"","local":"NH81","name":"Franklin Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Franklin","elevation_ft":480,"latitude":43.44839859008789,"longitude":-71.64620208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH82","iata":"","local":"NH82","name":"Dartmouth Hitchcock Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Lebanon","elevation_ft":730,"latitude":43.67670059,"longitude":-72.270401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH83","iata":"","local":"NH83","name":"Chiefs Hut Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Dunbarton","elevation_ft":616,"latitude":43.109500885009766,"longitude":-71.63839721679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH78","iata":"","local":"NH78","name":"Steck Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Pelham","elevation_ft":460,"latitude":42.74720001220703,"longitude":-71.36920166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH69","iata":"","local":"NH69","name":"Windsock Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"West Ossipee","elevation_ft":460,"latitude":43.825303,"longitude":-71.183368,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":225,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH85","iata":"","local":"NH85","name":"Sutton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"North Conway","elevation_ft":760,"latitude":44.033401,"longitude":-71.1462,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH87","iata":"","local":"NH87","name":"Blue Light Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Plymouth","elevation_ft":825,"latitude":43.7338981628418,"longitude":-71.6791000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH91","iata":"","local":"NH91","name":"Cheney Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Hales Location","elevation_ft":600,"latitude":44.05030059814453,"longitude":-71.17620086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH92","iata":"","local":"NH92","name":"Littleton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Littleton","elevation_ft":1155,"latitude":44.31740189,"longitude":-71.82649994,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH93","iata":"","local":"NH93","name":"Sean Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Pelham","elevation_ft":150,"latitude":42.76290130615234,"longitude":-71.31529998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH94","iata":"","local":"NH94","name":"Spring Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Milford","elevation_ft":400,"latitude":42.80780029296875,"longitude":-71.68579864501953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH98","iata":"","local":"NH98","name":"Brady-Candia Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"Candia","elevation_ft":470,"latitude":43.044063,"longitude":-71.316667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH99","iata":"","local":"NH99","name":"New London Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NH","municipality":"New London","elevation_ft":1288,"latitude":43.4200806,"longitude":-71.9988583,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NIUE","iata":"IUE","local":"","name":"Niue International Airport","category":"medium_airport","iso_country":"NU","iso_region":"NU-U-A","municipality":"Alofi","elevation_ft":209,"latitude":-19.079030990600582,"longitude":-169.92559814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7661,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NH86","iata":"","local":"NH86","name":"Intervale Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Henniker","elevation_ft":425,"latitude":43.17509841918945,"longitude":-71.78730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2100,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH84","iata":"","local":"NH84","name":"Northwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Northwood","elevation_ft":640,"latitude":43.20759963989258,"longitude":-71.22119903564453,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NH96","iata":"","local":"NH96","name":"Wentworth Aerodrome Airport","category":"small_airport","iso_country":"US","iso_region":"US-NH","municipality":"Wentworth","elevation_ft":610,"latitude":43.872344,"longitude":-71.90496,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ00","iata":"","local":"NJ00","name":"Ridgefield Park Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NJ","municipality":"Ridgefield Park","elevation_ft":0,"latitude":40.84590148925781,"longitude":-74.02870178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":5500,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ01","iata":"","local":"NJ01","name":"Campbell's Soup Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Camden","elevation_ft":1,"latitude":39.940467,"longitude":-75.10668,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ02","iata":"","local":"","name":"Alloway Airfield","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Alloway","elevation_ft":140,"latitude":39.541803,"longitude":-75.304397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ03","iata":"","local":"","name":"S and C Echelon Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Ashland","elevation_ft":126,"latitude":39.852901,"longitude":-74.999603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ04","iata":"","local":"NJ04","name":"At&T Cedarbrook Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Atco","elevation_ft":185,"latitude":39.74589920043945,"longitude":-74.92040252685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ05","iata":"","local":"NJ05","name":"Jersey Shore Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Neptune","elevation_ft":104,"latitude":40.209776,"longitude":-74.041067,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ08","iata":"","local":"NJ08","name":"Stone Harbor Golf Club Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Cape May Court House","elevation_ft":14,"latitude":39.1068000793457,"longitude":-74.80789947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ10","iata":"","local":"NJ10","name":"Dayton Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"South Brunswick","elevation_ft":104,"latitude":40.372811,"longitude":-74.517375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ12","iata":"","local":"NJ12","name":"New Jersey State Police Bloomfield Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Bloomfield","elevation_ft":185,"latitude":40.838153,"longitude":-74.178625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ17","iata":"","local":"NJ17","name":"Cooper University Hospital Kelemen Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Camden","elevation_ft":172,"latitude":39.940771,"longitude":-75.116272,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":105,"width_ft":105,"surface":"-"},{"id":"H2","length_ft":105,"width_ft":105,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ19","iata":"","local":"NJ19","name":"Deborah Heart & Lung Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Browns Mills","elevation_ft":103,"latitude":39.978588,"longitude":-74.584149,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ40","iata":"","local":"NJ40","name":"Hovtown Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Tinton Falls","elevation_ft":82,"latitude":40.21929931640625,"longitude":-74.09400177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ22","iata":"","local":"NJ22","name":"Hackensack Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Hackensack","elevation_ft":159,"latitude":40.883673,"longitude":-74.056542,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ23","iata":"","local":"NJ23","name":"Colgate Palmolive Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Willingboro","elevation_ft":50,"latitude":40.03710174560547,"longitude":-74.84320068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ26","iata":"","local":"NJ26","name":"Hoffmann-La Roche Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Clifton","elevation_ft":210,"latitude":40.83480072021485,"longitude":-74.15260314941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ27","iata":"","local":"NJ27","name":"Wrnj Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Long Valley","elevation_ft":620,"latitude":40.84650039672852,"longitude":-74.8041000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ28","iata":"","local":"NJ28","name":"Nws Earle Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Colts Neck","elevation_ft":210,"latitude":40.25429916381836,"longitude":-74.16899871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ29","iata":"","local":"NJ29","name":"South County Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Cranbury","elevation_ft":100,"latitude":40.30009841918945,"longitude":-74.53289794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ33","iata":"","local":"NJ33","name":"Darst Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Blairstown","elevation_ft":480,"latitude":40.96979904174805,"longitude":-74.9573974609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ36","iata":"","local":"NJ36","name":"Soverel Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"East Orange","elevation_ft":150,"latitude":40.782901763916016,"longitude":-74.21820068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":360,"width_ft":280,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ37","iata":"","local":"NJ37","name":"Elmwood Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"East Orange","elevation_ft":160,"latitude":40.75339889526367,"longitude":-74.21710205078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":285,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ38","iata":"","local":"NJ38","name":"Martens Stadium Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"East Orange","elevation_ft":145,"latitude":40.77399826049805,"longitude":-74.20929718017578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":360,"width_ft":210,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ25","iata":"","local":"NJ25","name":"Peaslees Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Clarksboro","elevation_ft":99,"latitude":39.78929901123047,"longitude":-75.2291030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2207,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ41","iata":"","local":"NJ41","name":"Hudson Farm West Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Andover","elevation_ft":870,"latitude":40.9879,"longitude":-74.725197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ44","iata":"","local":"NJ44","name":"Liberty Hall Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Elizabeth","elevation_ft":43,"latitude":40.67509841918945,"longitude":-74.24539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ48","iata":"","local":"NJ48","name":"Golden Nugget Atlantic City Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":104,"latitude":39.379908,"longitude":-74.426806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ51","iata":"","local":"NJ51","name":"Florham Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Florham Park","elevation_ft":186,"latitude":40.7918,"longitude":-74.382894,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ53","iata":"","local":"NJ53","name":"NJ Hwy Auth-Admin Bldg Helispot","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Fords","elevation_ft":112,"latitude":40.5373001099,"longitude":-74.2982025146,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ54","iata":"","local":"NJ54","name":"George Washington Bridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Fort Lee","elevation_ft":330,"latitude":40.85010147094727,"longitude":-73.96620178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ55","iata":"","local":"NJ55","name":"Greely Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Fort Monmouth","elevation_ft":25,"latitude":40.31679916381836,"longitude":-74.03289794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ57","iata":"","local":"","name":"Steeplechase Pier Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Atlantic City","elevation_ft":17,"latitude":39.357101,"longitude":-74.420197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ46","iata":"","local":"NJ46","name":"Mar Bar L Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Manalapan Township","elevation_ft":80,"latitude":40.276995,"longitude":-74.387874,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ61","iata":"","local":"NJ61","name":"Malone Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Frenchtown","elevation_ft":480,"latitude":40.541116,"longitude":-75.024292,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ62","iata":"","local":"NJ62","name":"Lz 1 Nldc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"New Lisbon","elevation_ft":113,"latitude":39.890098571777344,"longitude":-74.58209991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ66","iata":"","local":"","name":"Hackettstown Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-NJ","municipality":"Hackettstown","elevation_ft":612,"latitude":40.865398,"longitude":-74.816299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ71","iata":"","local":"NJ71","name":"Holmansville Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Holmansville","elevation_ft":110,"latitude":40.10010147094727,"longitude":-74.31759643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":475,"width_ft":465,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ73","iata":"","local":"NJ73","name":"State Police Holmdel Helispot Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Holmdel","elevation_ft":240,"latitude":40.3942985534668,"longitude":-74.1792984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ76","iata":"","local":"NJ76","name":"Hq 78th Division Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Edison","elevation_ft":115,"latitude":40.52450180053711,"longitude":-74.42569732666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ77","iata":"","local":"NJ77","name":"Warren County Public Safety Department","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Franklin","elevation_ft":411,"latitude":40.74100113,"longitude":-75.02149963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ82","iata":"","local":"NJ82","name":"Bayway Refinery Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Linden","elevation_ft":20,"latitude":40.63619995117188,"longitude":-74.23429870605469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1300,"width_ft":700,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ72","iata":"","local":"NJ72","name":"Hop Brook Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Holmdel","elevation_ft":140,"latitude":40.351200103759766,"longitude":-74.1812973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ79","iata":"","local":"NJ79","name":"Goat Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Lambertville","elevation_ft":350,"latitude":40.35150146484375,"longitude":-74.9093017578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ63","iata":"","local":"NJ63","name":"Eagles Lair Airport","category":"small_airport","iso_country":"US","iso_region":"US-NJ","municipality":"Frenchtown","elevation_ft":460,"latitude":40.467899322509766,"longitude":-75.05039978027344,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NJ85","iata":"","local":"NJ85","name":"Atrium At Somerset Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Franklin","elevation_ft":68,"latitude":40.53680038452149,"longitude":-74.52239990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ87","iata":"","local":"NJ87","name":"University Hospital Rooftop Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newark","elevation_ft":237,"latitude":40.7408471,"longitude":-74.1908417,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":64,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ89","iata":"","local":"NJ89","name":"Southern Ocean Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Manahawkin","elevation_ft":55,"latitude":39.72087,"longitude":-74.28312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ90","iata":"","local":"NJ90","name":"Iff R & D Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Union Beach","elevation_ft":10,"latitude":40.44029998779297,"longitude":-74.15670013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ92","iata":"","local":"NJ92","name":"St Benedict's Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Newark","elevation_ft":90,"latitude":40.73590087890625,"longitude":-74.1771011352539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ93","iata":"","local":"NJ93","name":"Alexanders-Menlo Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Menlo Park","elevation_ft":82,"latitude":40.54729843139648,"longitude":-74.34130096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ94","iata":"","local":"NJ94","name":"C and T Helistop","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Merchantville","elevation_ft":28,"latitude":39.95009994506836,"longitude":-75.04959869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ97","iata":"","local":"NJ97","name":"New Jersey Turnpike Authority Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Mount Laurel Township","elevation_ft":42,"latitude":39.956094,"longitude":-74.919714,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NJ99","iata":"","local":"NJ99","name":"Vonage Heliport","category":"heliport","iso_country":"US","iso_region":"US-NJ","municipality":"Holmdel","elevation_ft":110,"latitude":40.349527,"longitude":-74.190584,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK04","iata":"","local":"NK04","name":"Shepard Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Constantia","elevation_ft":463,"latitude":43.250099182128906,"longitude":-75.99960327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK05","iata":"","local":"NK05","name":"Tom N' Jerry Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Danby","elevation_ft":1490,"latitude":42.35480117797852,"longitude":-76.51609802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK11","iata":"","local":"NK11","name":"Troop B. Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Saranac Lake","elevation_ft":1663,"latitude":44.30120086669922,"longitude":-74.08070373535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK12","iata":"","local":"","name":"Donnelly Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Wales Center","elevation_ft":1030,"latitude":42.770518,"longitude":-78.542258,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1600,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK13","iata":"","local":"NK13","name":"Snyder's Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Wynantskill","elevation_ft":488,"latitude":42.65840148925781,"longitude":-73.63849639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":3000,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK14","iata":"","local":"NK14","name":"Little Falls Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Little Falls","elevation_ft":900,"latitude":42.04090118408203,"longitude":-74.83679962158203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK15","iata":"","local":"NK15","name":"Seventh Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Inlet","elevation_ft":1785,"latitude":43.742801666259766,"longitude":-74.76190185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":7000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK18","iata":"","local":"NK18","name":"Peconic Bay Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Riverhead","elevation_ft":85,"latitude":40.935262,"longitude":-72.673348,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK23","iata":"","local":"NK23","name":"Tetz Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Bloomingburg","elevation_ft":961,"latitude":41.548667,"longitude":-74.469722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK17","iata":"","local":"NK17","name":"August Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Gansevoort","elevation_ft":131,"latitude":43.209361,"longitude":-73.581711,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK19","iata":"","local":"NK19","name":"Potoczak Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Clarence Center","elevation_ft":582,"latitude":43.06119918823242,"longitude":-78.6613998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2230,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK09","iata":"","local":"NK09","name":"Eagle Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Burdett","elevation_ft":1480,"latitude":42.405999,"longitude":-76.820011,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK24","iata":"","local":"NK24","name":"Tilden Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Montour Falls","elevation_ft":900,"latitude":42.34775,"longitude":-76.87035,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK16","iata":"","local":"NK16","name":"Hendricks Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Gouverneur","elevation_ft":480,"latitude":44.36809921264648,"longitude":-75.40239715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2520,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK30","iata":"","local":"NK30","name":"Private Sealanes-Jamaica Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Brooklyn","elevation_ft":0,"latitude":40.60530090332031,"longitude":-73.90229797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"17W/35W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK32","iata":"","local":"","name":"New York ARNG Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Albany","elevation_ft":280,"latitude":42.666698,"longitude":-73.832901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK33","iata":"","local":"NK33","name":"Ny State Police - Troop T Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Albany","elevation_ft":250,"latitude":42.6166992188,"longitude":-73.7828979492,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK34","iata":"","local":"NK34","name":"St Luke's Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Utica","elevation_ft":575,"latitude":43.09619903564453,"longitude":-75.27629852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK37","iata":"","local":"NK37","name":"Winthrop University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Mineola","elevation_ft":156,"latitude":40.741798400878906,"longitude":-73.64399719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK38","iata":"","local":"NK38","name":"Parker's Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Gardiner","elevation_ft":350,"latitude":41.65449905395508,"longitude":-74.1404037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK39","iata":"","local":"NK39","name":"One Police Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"New York","elevation_ft":244,"latitude":40.712239,"longitude":-74.001703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":96,"width_ft":96,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK40","iata":"","local":"NK40","name":"Regeneron Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"North Tarrytown","elevation_ft":150,"latitude":41.112805,"longitude":-73.862833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK47","iata":"","local":"","name":"Dalrymples Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Elmira","elevation_ft":900,"latitude":42.041698,"longitude":-76.833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK26","iata":"","local":"NK26","name":"Old Forge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Old Forge","elevation_ft":1753,"latitude":43.725183,"longitude":-74.976217,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK27","iata":"","local":"NK27","name":"Hedge Hop Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Springville","elevation_ft":1400,"latitude":42.488666,"longitude":-78.634923,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK48","iata":"","local":"NK48","name":"Eastern Long Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Greenport","elevation_ft":6,"latitude":41.10969924926758,"longitude":-72.36000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK49","iata":"","local":"NK49","name":"IBM Owego Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Owego","elevation_ft":907,"latitude":42.102442,"longitude":-76.222945,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":480,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK50","iata":"","local":"NK50","name":"St Mary's Hospital Elevated Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Amsterdam","elevation_ft":335,"latitude":42.954200744628906,"longitude":-74.21540069580078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK55","iata":"","local":"NK55","name":"Onondaga County Sheriff's Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Warners","elevation_ft":400,"latitude":43.085046,"longitude":-76.286897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK56","iata":"","local":"NK56","name":"IBM Fishkill Plant Number 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Hopewell Junction","elevation_ft":250,"latitude":41.5434,"longitude":-73.819,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK57","iata":"","local":"NK57","name":"Ross Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Niagara Falls","elevation_ft":635,"latitude":43.11949920654297,"longitude":-78.93589782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK58","iata":"","local":"NK58","name":"Gibraltar Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Hamburg","elevation_ft":770,"latitude":42.52840042114258,"longitude":-78.90730285644531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK61","iata":"","local":"NK61","name":"General Electric R&D Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Schenectady","elevation_ft":354,"latitude":42.82699966430664,"longitude":-73.87460327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":167,"width_ft":93,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK63","iata":"","local":"","name":"Mercy Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Buffalo","elevation_ft":595,"latitude":42.841702,"longitude":-78.799797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK64","iata":"","local":"NK64","name":"Albany Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Albany","elevation_ft":209,"latitude":42.653692,"longitude":-73.775366,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK65","iata":"","local":"NK65","name":"H & H Aviation Service Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Forestville","elevation_ft":1000,"latitude":42.4833984375,"longitude":-79.07749938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK73","iata":"","local":"","name":"Ciba-Geigy Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Suffern","elevation_ft":310,"latitude":41.118401,"longitude":-74.1343,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK75","iata":"","local":"NK75","name":"Thomas E. Perdue Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Massena","elevation_ft":260,"latitude":44.93669891357422,"longitude":-74.90969848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK77","iata":"","local":"NK77","name":"Niagara Falls Memorial Parking Ramp Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Niagara Falls","elevation_ft":670,"latitude":43.09389877319336,"longitude":-79.05120086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK78","iata":"","local":"NK78","name":"GE Management Development Institute Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Ossining","elevation_ft":181,"latitude":41.187813,"longitude":-73.86817,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK80","iata":"","local":"NK80","name":"Rainbow Air Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Niagara Falls","elevation_ft":583,"latitude":43.08890151977539,"longitude":-79.06230163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":78,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK84","iata":"","local":"NK84","name":"Safe Flight Instrument Corporation Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"White Plains","elevation_ft":415,"latitude":41.081568,"longitude":-73.712997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK86","iata":"","local":"","name":"Doms Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Chester","elevation_ft":480,"latitude":41.367163,"longitude":-74.249414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK74","iata":"","local":"NK74","name":"Match Mate Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Aurora","elevation_ft":840,"latitude":42.74449920654297,"longitude":-76.6635971069336,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK79","iata":"","local":"NK79","name":"Lewis Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Slate Hill","elevation_ft":880,"latitude":41.418399810791016,"longitude":-74.53240203857422,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK71","iata":"","local":"NK71","name":"Marcellus Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Marcellus","elevation_ft":850,"latitude":43.01119995117188,"longitude":-76.34970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK72","iata":"","local":"NK72","name":"James Henion Private Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ithaca","elevation_ft":1300,"latitude":42.37620162963867,"longitude":-76.53240203857422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK90","iata":"","local":"NK90","name":"TLI Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Ossining","elevation_ft":9,"latitude":41.14725,"longitude":-73.86931,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK92","iata":"","local":"NK92","name":"Eab Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Uniondale","elevation_ft":95,"latitude":40.71950149536133,"longitude":-73.58290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK95","iata":"","local":"NK95","name":"Bastek Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Pine Island","elevation_ft":450,"latitude":41.320899963378906,"longitude":-74.50430297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NK96","iata":"","local":"NK96","name":"St Francis Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Poughkeepsie","elevation_ft":163,"latitude":41.71856,"longitude":-73.928587,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NLWW","iata":"WLS","local":"","name":"Hihifo Airport","category":"medium_airport","iso_country":"WF","iso_region":"WF-U-A","municipality":"Wallis Island","elevation_ft":79,"latitude":-13.2383003235,"longitude":-176.199005127,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6890,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM00","iata":"","local":"NM00","name":"Albuquerque Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5037,"latitude":35.088842,"longitude":-106.636362,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM03","iata":"","local":"","name":"K-D Field","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Dexter","elevation_ft":3465,"latitude":33.275101,"longitude":-104.369003,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM04","iata":"","local":"","name":"Keller Field","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Farmington","elevation_ft":5345,"latitude":36.685047,"longitude":-108.08301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM05","iata":"","local":"","name":"Williams Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Farmington","elevation_ft":5500,"latitude":36.744523,"longitude":-108.149092,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM02","iata":"","local":"NM02","name":"Biplane Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Moriarty","elevation_ft":6500,"latitude":34.929303,"longitude":-106.174279,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NK87","iata":"","local":"NK87","name":"Merkle Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Clarence Center","elevation_ft":590,"latitude":43.06669998168945,"longitude":-78.59970092773438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM01","iata":"","local":"NM01","name":"Rancho Magdalena Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Magdalena","elevation_ft":6676,"latitude":34.098283,"longitude":-107.297466,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2200,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM06","iata":"","local":"NM06","name":"Saint Vincent Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Santa Fe","elevation_ft":7012,"latitude":35.660103,"longitude":-105.946555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":68,"width_ft":68,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM07","iata":"","local":"NM07","name":"Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Peralta","elevation_ft":4860,"latitude":34.83060073852539,"longitude":-106.677001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":150,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM11","iata":"","local":"NM11","name":"University of New Mexico Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5273,"latitude":35.087979,"longitude":-106.618491,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":28,"width_ft":28,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM12","iata":"","local":"","name":"Chowning Heliport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5750,"latitude":35.187801,"longitude":-106.522003,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2870,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM13","iata":"","local":"","name":"Burris E Station Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Las Cruces","elevation_ft":4300,"latitude":32.247797,"longitude":-107.187767,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM14","iata":"","local":"","name":"Burris E Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Deming","elevation_ft":4400,"latitude":32.310198,"longitude":-107.295885,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4300,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM15","iata":"","local":"","name":"Clavel Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Roy","elevation_ft":5534,"latitude":36.045947,"longitude":-103.888085,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM16","iata":"","local":"","name":"Chama Land and Cattle Company Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Chama","elevation_ft":8025,"latitude":36.88026,"longitude":-106.571388,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3989,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM19","iata":"","local":"NM19","name":"Ruidoso Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Ruidoso","elevation_ft":6838,"latitude":33.35150146484375,"longitude":-105.66300201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM09","iata":"","local":"NM09","name":"First Aero Squadron Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Columbus","elevation_ft":4140,"latitude":31.867300033569336,"longitude":-107.63600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM17","iata":"","local":"NM17","name":"Ray Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Roy","elevation_ft":5850,"latitude":35.929797,"longitude":-104.180488,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3580,"width_ft":44,"surface":"T"},{"id":"09/27","length_ft":2300,"width_ft":44,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM21","iata":"","local":"","name":"Patterson Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Stanley","elevation_ft":6696,"latitude":35.174999,"longitude":-105.870003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM22","iata":"","local":"NM22","name":"Sierra Vista Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Truth or Consequences","elevation_ft":4250,"latitude":33.140661,"longitude":-107.24096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM23","iata":"","local":"","name":"IHS Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Mescalero","elevation_ft":6660,"latitude":33.162662,"longitude":-105.763932,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":148,"width_ft":282,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM32","iata":"","local":"NM32","name":"Bell Ranch Waggoner Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Bell Ranch","elevation_ft":4725,"latitude":35.70191,"longitude":-104.06211,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM30","iata":"","local":"","name":"Mitchell Farms Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Bellview","elevation_ft":4475,"latitude":34.874261,"longitude":-103.067456,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1900,"width_ft":55,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM34","iata":"","local":"NM34","name":"Keelin Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4500,"latitude":32.97529983520508,"longitude":-105.98200225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM35","iata":"","local":"NM35","name":"Socorro General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Socorro","elevation_ft":4803,"latitude":34.036935,"longitude":-106.910884,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM24","iata":"","local":"NM24","name":"Eastside Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Chama","elevation_ft":8030,"latitude":36.922244,"longitude":-106.560173,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM26","iata":"","local":"NM26","name":"Luna Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Deming","elevation_ft":4250,"latitude":32.100101470947266,"longitude":-107.822998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM29","iata":"","local":"NM29","name":"Rosebud Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Amistad","elevation_ft":4820,"latitude":35.83393,"longitude":-103.43241,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM33","iata":"","local":"NM33","name":"Bell Ranch Headquarters Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Bell Ranch","elevation_ft":4400,"latitude":35.529058,"longitude":-104.097378,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM25","iata":"","local":"NM25","name":"Lincoln Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Corona","elevation_ft":6655,"latitude":34.12139,"longitude":-105.6777,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4900,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM49","iata":"","local":"NM49","name":"J & M Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Willard","elevation_ft":6135,"latitude":34.58150100708008,"longitude":-106.0749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM39","iata":"","local":"","name":"Davenport Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Farmington","elevation_ft":5720,"latitude":36.632801,"longitude":-108.310997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM40","iata":"","local":"","name":"Gorby Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Alamogordo","elevation_ft":4400,"latitude":32.963402,"longitude":-105.999,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1120,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM42","iata":"","local":"NM42","name":"Aero Tech Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Clovis","elevation_ft":4250,"latitude":34.415372,"longitude":-103.134595,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2640,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM43","iata":"","local":"NM43","name":"Southwell Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Hachita","elevation_ft":4495,"latitude":31.994401,"longitude":-108.370317,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":50,"surface":"D"},{"id":"H1","length_ft":75,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM45","iata":"","local":"NM45","name":"Pay Jay Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Artesia","elevation_ft":3386,"latitude":32.839298248291016,"longitude":-104.4020004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":115,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM46","iata":"","local":"NM46","name":"Pay Jay Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Artesia","elevation_ft":3385,"latitude":32.84040069580078,"longitude":-104.4010009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM48","iata":"","local":"NM48","name":"Ensenada Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Tierra Amarilla","elevation_ft":7640,"latitude":36.728808,"longitude":-106.493897,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM38","iata":"","local":"NM38","name":"Double V Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Fort Sumner","elevation_ft":4114,"latitude":34.1172981262207,"longitude":-104.427001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":4300,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM47","iata":"","local":"NM47","name":"2x4 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Artesia","elevation_ft":3360,"latitude":32.779012,"longitude":-104.38028,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":60,"surface":"D"},{"id":"NE/SW","length_ft":2400,"width_ft":60,"surface":"D"},{"id":"NW/SE","length_ft":2400,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM50","iata":"","local":"NM50","name":"Lovelace Westside Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5218,"latitude":35.206811,"longitude":-106.676181,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM54","iata":"","local":"","name":"District 5 Headquarters Heliport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":5180,"latitude":35.108495,"longitude":-106.605282,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5397,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM57","iata":"","local":"NM57","name":"Governor's Residence Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Santa Fe","elevation_ft":7200,"latitude":35.70640182495117,"longitude":-105.93000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM58","iata":"","local":"NM58","name":"Emergency Operations Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Truth or Consequences","elevation_ft":4320,"latitude":33.140167,"longitude":-107.247916,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM59","iata":"","local":"","name":"Price's Dairy Airport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Albuquerque","elevation_ft":4921,"latitude":34.98569,"longitude":-106.6708,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM60","iata":"","local":"","name":"Hoffmann Helicopters Heliport","category":"closed","iso_country":"US","iso_region":"US-NM","municipality":"Texico","elevation_ft":4158,"latitude":33.403999,"longitude":-103.087997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM62","iata":"","local":"NM62","name":"Sjrmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Farmington","elevation_ft":5280,"latitude":36.72420120239258,"longitude":-108.21800231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM53","iata":"","local":"NM53","name":"San Miguel Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Las Vegas","elevation_ft":6300,"latitude":35.5099983215332,"longitude":-104.58399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5600,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM52","iata":"","local":"NM52","name":"Camco Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Nara Visa","elevation_ft":4255,"latitude":35.574822,"longitude":-103.281956,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM51","iata":"","local":"NM51","name":"Chloride Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Chloride","elevation_ft":6202,"latitude":33.328399658203125,"longitude":-107.66200256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM55","iata":"","local":"NM55","name":"Whitewater Mesa Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Glenwood","elevation_ft":5460,"latitude":33.363584,"longitude":-108.86186,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":2300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM65","iata":"","local":"NM65","name":"Taos County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Taos","elevation_ft":7064,"latitude":36.3677,"longitude":-105.5774,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM73","iata":"","local":"NM73","name":"Akin and Akin Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Mc Alister","elevation_ft":4858,"latitude":34.77734,"longitude":-103.855448,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2640,"width_ft":30,"surface":"T"},{"id":"09/27","length_ft":2600,"width_ft":30,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM77","iata":"","local":"NM77","name":"Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Las Cruces","elevation_ft":4028,"latitude":32.291717,"longitude":-106.735407,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":145,"width_ft":115,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM85","iata":"","local":"NM85","name":"Gila Regional Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Silver City","elevation_ft":6097,"latitude":32.798099517822266,"longitude":-108.26100158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR06","iata":"","local":"NR06","name":"Hunter Construction Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Mooresville","elevation_ft":850,"latitude":35.56308,"longitude":-80.830761,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM86","iata":"","local":"NM86","name":"Playas Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Playas","elevation_ft":4519,"latitude":31.93680000305176,"longitude":-108.53700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4865,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM80","iata":"","local":"NM80","name":"Quemado Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Quemado","elevation_ft":6917,"latitude":34.340301513671875,"longitude":-108.51499938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":5000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM83","iata":"HBB","local":"NM83","name":"Industrial Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Hobbs","elevation_ft":3707,"latitude":32.7668,"longitude":-103.209,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7000,"width_ft":150,"surface":"A"},{"id":"12/30","length_ft":8810,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM78","iata":"","local":"NM78","name":"Hacienda Sur Luna Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Columbus","elevation_ft":4150,"latitude":31.877899169921875,"longitude":-107.64600372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4800,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM84","iata":"","local":"NM84","name":"G Bar F Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Capitan","elevation_ft":6505,"latitude":33.54449844360352,"longitude":-105.3759994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3670,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM89","iata":"","local":"NM89","name":"Manzano-Mountain Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Los Lunas","elevation_ft":5630,"latitude":34.7796,"longitude":-106.5159,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":7300,"width_ft":50,"surface":"G"},{"id":"14/32","length_ft":5280,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM93","iata":"","local":"NM93","name":"Lovelace Regional Hospital - Roswell Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Roswell","elevation_ft":3599,"latitude":33.41762,"longitude":-104.521378,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM94","iata":"","local":"NM94","name":"Nor-Lea Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Lovington","elevation_ft":3925,"latitude":32.965524,"longitude":-103.346345,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM95","iata":"","local":"NM95","name":"Careflight 25 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NM","municipality":"Carlsbad","elevation_ft":3297,"latitude":32.350397,"longitude":-104.251475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR00","iata":"","local":"NR00","name":"Valley Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":232,"latitude":35.081111,"longitude":-78.945833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR02","iata":"","local":"NR02","name":"Jordan Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Mount Gilead","elevation_ft":600,"latitude":35.237778,"longitude":-79.995556,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR03","iata":"","local":"NR03","name":"Highlands - Cashiers Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Highlands","elevation_ft":3960,"latitude":35.086006,"longitude":-83.186867,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NM92","iata":"","local":"NM92","name":"Tierra de Dios Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Rowe","elevation_ft":7050,"latitude":35.295478,"longitude":-105.614405,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM90","iata":"","local":"NM90","name":"Amigos Del Cielo Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Rodeo","elevation_ft":4107,"latitude":31.902736,"longitude":-109.024479,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NR04","iata":"","local":"NR04","name":"Southern Skies Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Taylorsville","elevation_ft":1180,"latitude":35.960278,"longitude":-81.173056,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1100,"width_ft":60,"surface":"T"},{"id":"07/25","length_ft":1600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NM87","iata":"","local":"NM87","name":"Jenkins Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Roswell","elevation_ft":3600,"latitude":33.239231,"longitude":-104.474158,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":100,"surface":"D"},{"id":"H1","length_ft":2300,"width_ft":2300,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NR07","iata":"","local":"NR07","name":"Yancey EMS Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Burnsville","elevation_ft":2820,"latitude":35.917007,"longitude":-82.33268,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR15","iata":"","local":"NR15","name":"Brunswick Nuclear Plant Helipad","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Southport","elevation_ft":13,"latitude":33.953409,"longitude":-78.012394,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR17","iata":"","local":"","name":"Wilson Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Wilson","elevation_ft":147,"latitude":35.71741,"longitude":-77.944361,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR20","iata":"","local":"NR20","name":"Raeford West Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Raeford","elevation_ft":280,"latitude":35.030554,"longitude":-79.236649,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR25","iata":"","local":"NR25","name":"Vidant Multispecialty Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Belhaven","elevation_ft":10,"latitude":35.550277,"longitude":-76.623888,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR27","iata":"","local":"NR27","name":"Saw Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Rocky Mount","elevation_ft":158,"latitude":35.970895,"longitude":-77.850451,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR28","iata":"","local":"NR28","name":"Sampson County Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Dunn","elevation_ft":192,"latitude":35.196975,"longitude":-78.484692,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR30","iata":"","local":"NR30","name":"Atrium Health Harrisburg Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":723,"latitude":35.285888,"longitude":-80.666383,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR35","iata":"","local":"NR35","name":"Central Carolina Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Sanford","elevation_ft":328,"latitude":35.468936,"longitude":-79.186234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR37","iata":"","local":"NR37","name":"Suter Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Trenton","elevation_ft":35,"latitude":35.057099,"longitude":-77.462266,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2117,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR51","iata":"","local":"NR51","name":"Firing Range Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Pinetops","elevation_ft":48,"latitude":35.799285,"longitude":-77.603479,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR21","iata":"","local":"NR21","name":"Hardaway Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Burlington","elevation_ft":600,"latitude":36.041042,"longitude":-79.558417,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1207,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NR66","iata":"","local":"NR66","name":"JLW Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Rocky Mount","elevation_ft":158,"latitude":35.964722,"longitude":-77.860833,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR72","iata":"","local":"NR72","name":"Blackhawk Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Gold Hill","elevation_ft":746,"latitude":35.459001,"longitude":-80.37182,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1746,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR80","iata":"","local":"NR80","name":"CaroMont Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Gastonia","elevation_ft":789,"latitude":35.274038,"longitude":-81.139183,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR84","iata":"","local":"NR84","name":"Warren Recreational Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Warrenton","elevation_ft":438,"latitude":36.434486,"longitude":-78.129989,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR88","iata":"","local":"NR88","name":"Tobacco Road Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Carthage","elevation_ft":478,"latitude":35.280564,"longitude":-79.387797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR89","iata":"","local":"NR89","name":"Steve's Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Whitakers","elevation_ft":104,"latitude":36.044722,"longitude":-77.601667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR91","iata":"","local":"NR91","name":"Lumberton Emergency Rescue Unit Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Lumberton","elevation_ft":125,"latitude":34.639047,"longitude":-79.004408,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NR99","iata":"","local":"NR99","name":"Corolla Fire Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Corolla","elevation_ft":11,"latitude":36.331436,"longitude":-75.813566,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NSAS","iata":"OFU","local":"Z08","name":"Ofu Airport","category":"small_airport","iso_country":"AS","iso_region":"AS-MA","municipality":"Ofu","elevation_ft":9,"latitude":-14.1844,"longitude":-169.669998,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1980,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NSFA","iata":"APW","local":"","name":"Faleolo International Airport","category":"medium_airport","iso_country":"WS","iso_region":"WS-AA","municipality":"Apia","elevation_ft":58,"latitude":-13.829999923706056,"longitude":-172.00799560546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NSFQ","iata":"FTI","local":"FAQ","name":"Fitiuta Airport","category":"medium_airport","iso_country":"AS","iso_region":"AS-MA","municipality":"Fitiuta Village","elevation_ft":110,"latitude":-14.215622,"longitude":-169.424254,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":3200,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NSTU","iata":"PPG","local":"PPG","name":"Pago Pago International Airport","category":"medium_airport","iso_country":"AS","iso_region":"AS-WT","municipality":"Pago Pago","elevation_ft":32,"latitude":-14.331,"longitude":-170.710007,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":10001,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":3801,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NTAA","iata":"PPT","local":"","name":"Faa'a International Airport","category":"large_airport","iso_country":"PF","iso_region":"PF-U-A","municipality":"Papeete","elevation_ft":5,"latitude":-17.553699,"longitude":-149.606995,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":11220,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV01","iata":"","local":"NV01","name":"Echo Bay Marina Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"UNKNOWN","elevation_ft":1217,"latitude":36.299117,"longitude":-114.403655,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV03","iata":"","local":"","name":"Las Vegas Helicopters Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2133,"latitude":36.108101,"longitude":-115.174004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV09","iata":"","local":"NV09","name":"H Bar H Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":5220,"latitude":39.72439956665039,"longitude":-119.89900207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV05","iata":"","local":"NV05","name":"Soldier Meadow Number 2 Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Gerlach","elevation_ft":4150,"latitude":41.123501,"longitude":-119.139,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":40,"surface":"D"},{"id":"18/36","length_ft":4000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV00","iata":"","local":"NV00","name":"Valley View Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Pahrump","elevation_ft":2740,"latitude":36.257954,"longitude":-115.992379,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2520,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV04","iata":"","local":"NV04","name":"Marys River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Deeth","elevation_ft":5600,"latitude":41.317737,"longitude":-115.249608,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2480,"width_ft":80,"surface":"D"},{"id":"06/24","length_ft":1120,"width_ft":60,"surface":"D"},{"id":"14/32","length_ft":880,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV02","iata":"","local":"NV02","name":"O'Toole Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Austin","elevation_ft":6520,"latitude":39.0669,"longitude":-117.420312,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV07","iata":"","local":"NV07","name":"Sunnyside / Kirch Wildlife Management Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Lund","elevation_ft":5288,"latitude":38.4147,"longitude":-115.037003,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV10","iata":"","local":"","name":"Car Country Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Henderson","elevation_ft":2300,"latitude":35.987999,"longitude":-114.926003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV15","iata":"","local":"NV15","name":"Carson-Tahoe Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Carson City","elevation_ft":4850,"latitude":39.20280075073242,"longitude":-119.78399658203124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV16","iata":"","local":"","name":"Lackerman Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Gerlach","elevation_ft":4706,"latitude":40.999298,"longitude":-119.936996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV18","iata":"","local":"NV18","name":"Logandale Fire/EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Logandale","elevation_ft":1798,"latitude":36.673281,"longitude":-114.524639,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV19","iata":"","local":"","name":"Nevada Dept of Wildlife State Headquarters Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":4500,"latitude":39.5396,"longitude":-119.806999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV20","iata":"","local":"","name":"Topaz Ranch Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Wellington","elevation_ft":580,"latitude":38.761002,"longitude":-119.533997,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV21","iata":"","local":"NV21","name":"Sky Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Sandy Valley","elevation_ft":2600,"latitude":35.7952995300293,"longitude":-115.6269989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV24","iata":"","local":"","name":"Fort Ruby Ranch Airstrip","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Ruby Valley","elevation_ft":6006,"latitude":40.057999,"longitude":-115.505997,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV14","iata":"","local":"NV14","name":"Juniper Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Montello","elevation_ft":5400,"latitude":41.355499,"longitude":-114.230003,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2100,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV22","iata":"","local":"NV22","name":"Red Rock Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Elko","elevation_ft":6158,"latitude":40.31269836425781,"longitude":-115.89700317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV12","iata":"","local":"NV12","name":"I-L Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Tuscarora","elevation_ft":5368,"latitude":41.56261,"longitude":-116.409545,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5200,"width_ft":200,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV17","iata":"","local":"NV17","name":"Youngberg Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Lemmon Valley","elevation_ft":4960,"latitude":39.67319869995117,"longitude":-119.81300354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1580,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV25","iata":"","local":"NV25","name":"St Rose de Lima Dominican Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Henderson","elevation_ft":1890,"latitude":36.038126,"longitude":-114.984623,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV26","iata":"","local":"","name":"Voc Tech Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Henderson","elevation_ft":1913,"latitude":36.079102,"longitude":-115.069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV28","iata":"","local":"","name":"RLB Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":5707,"latitude":39.392399,"longitude":-119.820999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV29","iata":"","local":"","name":"Excalibur Hotel/Casino Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2375,"latitude":36.09814,"longitude":-115.175405,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV31","iata":"","local":"NV31","name":"Barker Creek Ranch Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Round Mountain","elevation_ft":6620,"latitude":38.80580139160156,"longitude":-117.03099822998048,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1350,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV34","iata":"","local":"NV34","name":"University Medical Center Southern Nevada Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2096,"latitude":36.159752,"longitude":-115.166088,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV36","iata":"","local":"","name":"Imvite Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Amargosa Valley","elevation_ft":2250,"latitude":36.447701,"longitude":-116.454002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV37","iata":"","local":"NV37","name":"El Dorado Substation Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Searchlight","elevation_ft":1800,"latitude":35.795355,"longitude":-115.007613,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV38","iata":"","local":"NV38","name":"KLAS-TV Channel 8 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2100,"latitude":36.130658,"longitude":-115.161729,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV35","iata":"","local":"NV35","name":"Hudson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Austin","elevation_ft":5180,"latitude":39.54439926147461,"longitude":-117.7509994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5050,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV33","iata":"","local":"NV33","name":"Farias Wheel Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Wellington","elevation_ft":4848,"latitude":38.833199,"longitude":-119.396004,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3391,"width_ft":22,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV27","iata":"","local":"NV27","name":"Circle L Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Dyer","elevation_ft":4835,"latitude":37.71659851074219,"longitude":-118.08399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4400,"width_ft":60,"surface":"A"},{"id":"13/31","length_ft":4400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV40","iata":"","local":"NV40","name":"Action Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2460,"latitude":35.95000076293945,"longitude":-115.16699981689452,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV44","iata":"","local":"","name":"Justover Field","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Sparks","elevation_ft":4480,"latitude":39.754584,"longitude":-119.598167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV45","iata":"","local":"NV45","name":"Planet 13 EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Beatty","elevation_ft":3134,"latitude":36.864494,"longitude":-116.762419,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV47","iata":"","local":"","name":"Palomino Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Sparks","elevation_ft":4240,"latitude":39.832519,"longitude":-119.682648,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4233,"width_ft":20,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV48","iata":"","local":"NV48","name":"Circus Circus Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2122,"latitude":36.137421,"longitude":-115.16821,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV49","iata":"","local":"","name":"Hacienda Hotel Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2172,"latitude":36.091599,"longitude":-115.174004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV53","iata":"","local":"NV53","name":"Valley Hospital Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2055,"latitude":36.162806,"longitude":-115.168089,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV56","iata":"","local":"","name":"Wine Glass Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Round Mountain","elevation_ft":5568,"latitude":38.7994,"longitude":-117.175003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV57","iata":"","local":"NV57","name":"Renown Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":4504,"latitude":39.525248,"longitude":-119.795741,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"},{"id":"H3","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV58","iata":"","local":"NV58","name":"St Mary's Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":4600,"latitude":39.53295,"longitude":-119.818379,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV60","iata":"","local":"NV60","name":"Carson-Tahoe Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Carson City","elevation_ft":4710,"latitude":39.17129898071289,"longitude":-119.77200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV55","iata":"","local":"NV55","name":"Pinenut Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Gardnerville","elevation_ft":5260,"latitude":38.89889907836914,"longitude":-119.64900207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":45,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV61","iata":"","local":"NV61","name":"Gilbert Development Corporation Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"North Las Vegas","elevation_ft":1981,"latitude":36.218791,"longitude":-115.133528,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV68","iata":"","local":"","name":"Pine Grove Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Orovada","elevation_ft":4250,"latitude":41.5635,"longitude":-117.80961,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3428,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV69","iata":"","local":"NV69","name":"Northern Nevada Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Sparks","elevation_ft":4460,"latitude":39.50550079345703,"longitude":-119.69300079345705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV73","iata":"","local":"","name":"Precious Materials Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Pahrump","elevation_ft":2850,"latitude":36.341599,"longitude":-116.049004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV77","iata":"","local":"","name":"Empire Farms Airport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Empire","elevation_ft":4085,"latitude":40.435699,"longitude":-119.461998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV78","iata":"","local":"NV78","name":"Remsa/Care Flight Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Reno","elevation_ft":4400,"latitude":39.5009994506836,"longitude":-119.7519989013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV80","iata":"","local":"NV80","name":"Ruby 360 Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Lamoille","elevation_ft":6820,"latitude":40.716936,"longitude":-115.415686,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV81","iata":"","local":"NV81","name":"Beatty Medical Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Beatty","elevation_ft":3333,"latitude":36.904583,"longitude":-116.760099,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV82","iata":"","local":"NV82","name":"Dils Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Caliente","elevation_ft":4419,"latitude":37.622375,"longitude":-114.513264,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV64","iata":"","local":"NV64","name":"Swanson Ranch 3 Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Battle Mountain","elevation_ft":4940,"latitude":40.00830078125,"longitude":-117.39199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV72","iata":"","local":"NV72","name":"Sweetwater (USMC) Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Wellington","elevation_ft":6837,"latitude":38.5097999573,"longitude":-119.217002869,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3700,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV86","iata":"","local":"NV86","name":"Sunrise Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2037,"latitude":36.132624,"longitude":-115.135511,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV91","iata":"","local":"NV91","name":"Fly Sin City #1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Sandy Valley","elevation_ft":4331,"latitude":35.844903,"longitude":-115.5482,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV92","iata":"","local":"NV92","name":"Fly Sin City #2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Sandy Valley","elevation_ft":3727,"latitude":35.849294,"longitude":-115.555275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV93","iata":"","local":"NV93","name":"Fly Sin City #3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Sandy Valley","elevation_ft":3675,"latitude":35.844903,"longitude":-115.556925,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV95","iata":"","local":"NV95","name":"Kyle Canyon Heliport","category":"heliport","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":6262,"latitude":36.270402,"longitude":-115.562386,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV99","iata":"","local":"","name":"Maverick Heliport","category":"closed","iso_country":"US","iso_region":"US-NV","municipality":"Las Vegas","elevation_ft":2550,"latitude":35.934399,"longitude":-115.181998,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NVSC","iata":"SLH","local":"","name":"Sola Airport","category":"small_airport","iso_country":"VU","iso_region":"VU-TOB","municipality":"Sola","elevation_ft":7,"latitude":-13.8516998291,"longitude":167.537002563,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":75,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NVSG","iata":"LOD","local":"","name":"Longana Airport","category":"small_airport","iso_country":"VU","iso_region":"VU-PAM","municipality":"Longana","elevation_ft":167,"latitude":-15.3066997528,"longitude":167.966995239,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4000,"width_ft":50,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NV97","iata":"","local":"NV97","name":"Desert Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Wellington","elevation_ft":5358,"latitude":38.684200286865234,"longitude":-119.3219985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1441,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV89","iata":"","local":"NV89","name":"Red Owl Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Crescent Valley","elevation_ft":4850,"latitude":40.502333,"longitude":-116.546769,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6750,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NV96","iata":"","local":"NV96","name":"Rolling Thunder Airport","category":"small_airport","iso_country":"US","iso_region":"US-NV","municipality":"Sparks","elevation_ft":4240,"latitude":39.823563,"longitude":-119.658331,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NVSL","iata":"LPM","local":"","name":"Lamap Airport","category":"small_airport","iso_country":"VU","iso_region":"VU-MAP","municipality":"Lamap","elevation_ft":7,"latitude":-16.4611228,"longitude":167.829253,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":50,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NVVA","iata":"AUY","local":"","name":"Aneityum Airport","category":"small_airport","iso_country":"VU","iso_region":"VU-TAE","municipality":"Anatom Island","elevation_ft":7,"latitude":-20.2492008209,"longitude":169.770996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY03","iata":"","local":"","name":"Skytop Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Roscoe","elevation_ft":2094,"latitude":41.874428,"longitude":-74.978528,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY04","iata":"","local":"","name":"East Arcade Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Arcade","elevation_ft":1830,"latitude":42.585602,"longitude":-78.3491968,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY05","iata":"","local":"NY05","name":"Hogan Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Esperance","elevation_ft":1260,"latitude":42.78150177001953,"longitude":-74.32569885253906,"has_tower":false,"has_beacon":false,"runways":[{"id":"12L/30R","length_ft":3000,"width_ft":27,"surface":"A"},{"id":"12R/30L","length_ft":3000,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY01","iata":"","local":"NY01","name":"Knowlesville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Knowlesville","elevation_ft":555,"latitude":43.22090148925781,"longitude":-78.31500244140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1925,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY07","iata":"","local":"NY07","name":"Hurlbut Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Canton","elevation_ft":500,"latitude":44.54579925537109,"longitude":-75.16110229492188,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NVSP","iata":"NUS","local":"","name":"Norsup Airport","category":"small_airport","iso_country":"VU","iso_region":"VU-MAP","municipality":"Norsup","elevation_ft":23,"latitude":-16.0797,"longitude":167.401001,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3100,"width_ft":50,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NWWD","iata":"KNQ","local":"","name":"Koné Airport","category":"medium_airport","iso_country":"NC","iso_region":"NC-U-A","municipality":"Koné","elevation_ft":23,"latitude":-21.053551,"longitude":164.838768,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4003,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY08","iata":"","local":"NY08","name":"Port Jervis Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Port Jervis","elevation_ft":420,"latitude":41.37699890136719,"longitude":-74.6760025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY12","iata":"","local":"NY12","name":"Auburn Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Auburn","elevation_ft":730,"latitude":42.941052,"longitude":-76.564331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY14","iata":"","local":"","name":"Wyde Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Monticello","elevation_ft":1300,"latitude":41.666502,"longitude":-74.736297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY21","iata":"","local":"NY21","name":"Dewitt Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Webster","elevation_ft":375,"latitude":43.20330047607422,"longitude":-77.52359771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY17","iata":"","local":"NY17","name":"Adirondack Airpark Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Saranac","elevation_ft":1352,"latitude":44.601983,"longitude":-73.853138,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2050,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY19","iata":"","local":"NY19","name":"Walls Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Elbridge","elevation_ft":610,"latitude":43.04399871826172,"longitude":-76.46189880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY11","iata":"","local":"NY11","name":"Lakestone Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Macedon","elevation_ft":520,"latitude":43.035301208496094,"longitude":-77.30799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2580,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY10","iata":"","local":"NY10","name":"Duflo Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"New Bremen","elevation_ft":789,"latitude":43.84260177612305,"longitude":-75.43070220947266,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":30,"surface":"A"},{"id":"08/26","length_ft":2722,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY18","iata":"","local":"NY18","name":"Neno Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ithaca","elevation_ft":1283,"latitude":42.4487,"longitude":-76.616897,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY15","iata":"","local":"NY15","name":"Lakeville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Lakeville","elevation_ft":935,"latitude":42.8265,"longitude":-77.714401,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY22","iata":"","local":"NY22","name":"NYPD Air Operations (Floyd Bennett Field) Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"New York","elevation_ft":16,"latitude":40.5905,"longitude":-73.8805,"has_tower":true,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY25","iata":"","local":"","name":"F&F Airpark Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Oneonta","elevation_ft":1110,"latitude":42.452024,"longitude":-75.010956,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3970,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY30","iata":"","local":"NY30","name":"Hilltop Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Monticello","elevation_ft":1400,"latitude":41.67002,"longitude":-74.75852,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY32","iata":"","local":"","name":"Fort Hill Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"West Bloomfield","elevation_ft":915,"latitude":42.902002,"longitude":-77.547798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY33","iata":"","local":"","name":"Westerlo Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Westerlo","elevation_ft":1400,"latitude":42.522301,"longitude":-74.028702,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2050,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY27","iata":"","local":"NY27","name":"South Dayton Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"South Dayton","elevation_ft":1300,"latitude":42.37089920043945,"longitude":-79.0094985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3745,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":3880,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY28","iata":"","local":"NY28","name":"Anthonson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Jordan","elevation_ft":430,"latitude":43.070899963378906,"longitude":-76.40799713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1250,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY31","iata":"","local":"NY31","name":"Rabbit Lane Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Phoenix","elevation_ft":405,"latitude":43.22370147705078,"longitude":-76.3687973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY24","iata":"","local":"NY24","name":"Taylor Johnson Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Niagara Falls","elevation_ft":633,"latitude":43.12779998779297,"longitude":-78.97000122070312,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY29","iata":"","local":"NY29","name":"Schuyler Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Watkins Glen","elevation_ft":870,"latitude":42.451625,"longitude":-76.912215,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY34","iata":"","local":"NY34","name":"Randall's Roost Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Cameron","elevation_ft":1825,"latitude":42.162200927734375,"longitude":-77.42749786376953,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY36","iata":"","local":"NY36","name":"Adirondack Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Saranac Lake","elevation_ft":1594,"latitude":44.34439849853516,"longitude":-74.14250183105469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY38","iata":"","local":"","name":"Mc Bride's Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Gorham","elevation_ft":915,"latitude":42.8531,"longitude":-77.124702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY41","iata":"","local":"","name":"Best Western Red Jacket Inn Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Niagara Falls","elevation_ft":575,"latitude":43.072601,"longitude":-78.985298,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1632,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY43","iata":"","local":"NY43","name":"Mountain View Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Saugerties","elevation_ft":250,"latitude":42.156671,"longitude":-73.999132,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY44","iata":"","local":"NY44","name":"IBM Somers Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Somers","elevation_ft":495,"latitude":41.316952,"longitude":-73.679854,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY45","iata":"","local":"NY45","name":"Robins Island South Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Southold","elevation_ft":30,"latitude":40.962799072265625,"longitude":-72.45670318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY46","iata":"","local":"NY46","name":"Bel-Aire Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Amenia","elevation_ft":700,"latitude":41.849028,"longitude":-73.599786,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY47","iata":"","local":"NY47","name":"Wyeth Ayerst Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Pearl River","elevation_ft":270,"latitude":41.07749938964844,"longitude":-74.02469635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY48","iata":"","local":"NY48","name":"Grace's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"South Kortright","elevation_ft":1500,"latitude":42.33810043334961,"longitude":-74.7490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY37","iata":"","local":"NY37","name":"Galway Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Galway","elevation_ft":950,"latitude":43.00920104980469,"longitude":-74.09120178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY42","iata":"","local":"NY42","name":"Paradise Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Red Creek","elevation_ft":420,"latitude":43.219988,"longitude":-76.68945,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY49","iata":"","local":"NY49","name":"Mesmer Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Grand Island","elevation_ft":600,"latitude":42.991523,"longitude":-78.985764,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1470,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY52","iata":"","local":"NY52","name":"Staten Island University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Staten Island","elevation_ft":13,"latitude":40.584206,"longitude":-74.08326,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY53","iata":"","local":"","name":"Tri County Airways Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"West Edmeston","elevation_ft":1150,"latitude":42.738998,"longitude":-75.300201,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY54","iata":"","local":"NY54","name":"Evergreen Mountain Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"West Kill","elevation_ft":1800,"latitude":42.19275,"longitude":-74.326646,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY61","iata":"","local":"NY61","name":"Eagle Nest Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Blue Mountain Lake","elevation_ft":1790,"latitude":43.82979965209961,"longitude":-74.49539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":10000,"width_ft":700,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY51","iata":"","local":"NY51","name":"Russell Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Canajoharie","elevation_ft":700,"latitude":42.87009811401367,"longitude":-74.49929809570312,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY60","iata":"","local":"NY60","name":"Vasile Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Beekmanton","elevation_ft":580,"latitude":44.76250076293945,"longitude":-73.5593032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1850,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY62","iata":"","local":"NY62","name":"Curtis Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Verona","elevation_ft":535,"latitude":43.14580154418945,"longitude":-75.54190063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY55","iata":"","local":"NY55","name":"Grund Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ithaca","elevation_ft":1453,"latitude":42.44729995727539,"longitude":-76.5969009399414,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY57","iata":"","local":"NY57","name":"Remsen City Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Remsen","elevation_ft":1220,"latitude":43.36009979248047,"longitude":-75.18460083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY59","iata":"","local":"NY59","name":"Valenty Mierek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Ava","elevation_ft":1220,"latitude":43.387298583984375,"longitude":-75.48629760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY78","iata":"","local":"","name":"Downsville Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Downsville","elevation_ft":1087,"latitude":42.0528,"longitude":-75.014753,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1444,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY83","iata":"","local":"NY83","name":"Essex Boatworks Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-NY","municipality":"Essex","elevation_ft":95,"latitude":44.30009841918945,"longitude":-73.34960174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":15000,"width_ft":4000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY85","iata":"","local":"","name":"Hickory Hollow Airport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Floyd","elevation_ft":930,"latitude":43.2495,"longitude":-75.313797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":103,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY66","iata":"","local":"NY66","name":"Lewis Field","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Broadalbin","elevation_ft":900,"latitude":43.128532,"longitude":-74.124758,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY82","iata":"","local":"NY82","name":"Alexander Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"East Schodack","elevation_ft":525,"latitude":42.58060073852539,"longitude":-73.61620330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3380,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY87","iata":"","local":"NY87","name":"Amsterdam Airfield","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Fort Johnson","elevation_ft":340,"latitude":42.96260070800781,"longitude":-74.25370025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1450,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY68","iata":"","local":"NY68","name":"Richfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Richfield Springs","elevation_ft":1450,"latitude":42.86119842529297,"longitude":-74.94539642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY72","iata":"","local":"NY72","name":"Poolsbrook Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Manlius","elevation_ft":500,"latitude":43.07229995727539,"longitude":-75.9384994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY76","iata":"","local":"NY76","name":"Neverland Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Cattaraugus","elevation_ft":1901,"latitude":42.31566619873047,"longitude":-78.89533233642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY79","iata":"","local":"NY79","name":"Keysa Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Bliss","elevation_ft":1620,"latitude":42.59669876098633,"longitude":-78.34030151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1860,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY70","iata":"","local":"NY70","name":"Scott'S Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Mount Morris","elevation_ft":1221,"latitude":42.648889,"longitude":-77.920278,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY90","iata":"","local":"NY90","name":"Medina Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Medina","elevation_ft":540,"latitude":43.22309875488281,"longitude":-78.39810180664062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY93","iata":"","local":"","name":"Phillipsburg Landing Heliport","category":"closed","iso_country":"US","iso_region":"US-NY","municipality":"Middletown","elevation_ft":430,"latitude":41.432319,"longitude":-74.36364,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY99","iata":"","local":"NY99","name":"Lakeview Shock Incarceration Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NY","municipality":"Brocton","elevation_ft":678,"latitude":42.40729904174805,"longitude":-79.44059753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NY92","iata":"","local":"2N4","name":"Owasco Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Moravia","elevation_ft":1378,"latitude":42.736493,"longitude":-76.486065,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1265,"width_ft":40,"surface":"T"},{"id":"16/34","length_ft":1440,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY97","iata":"","local":"NY97","name":"Northway Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Morrisonville","elevation_ft":420,"latitude":44.66669845581055,"longitude":-73.56620025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY91","iata":"","local":"NY91","name":"Smithfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Peterboro","elevation_ft":1465,"latitude":42.994026,"longitude":-75.702774,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NY96","iata":"","local":"NY96","name":"Mexico Airdrome Airport","category":"small_airport","iso_country":"US","iso_region":"US-NY","municipality":"Mexico","elevation_ft":470,"latitude":43.426700592041016,"longitude":-76.19380187988281,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NZOH","iata":"OHA","local":"","name":"RNZAF Base Ohakea","category":"medium_airport","iso_country":"NZ","iso_region":"NZ-MWT","municipality":"UNKNOWN","elevation_ft":164,"latitude":-40.20600128173828,"longitude":175.38800048828125,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8005,"width_ft":148,"surface":"H"},{"id":"15/33","length_ft":6998,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA06","iata":"","local":"OA06","name":"Massillon Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Massillon","elevation_ft":1026,"latitude":40.80580139160156,"longitude":-81.5156021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA08","iata":"","local":"OA08","name":"Medflight Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":890,"latitude":40.084999084472656,"longitude":-83.06829833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA09","iata":"","local":"OA09","name":"Madison Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"London","elevation_ft":1057,"latitude":39.893268,"longitude":-83.452507,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA15","iata":"","local":"OA15","name":"Fort Hamilton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Hamilton","elevation_ft":700,"latitude":39.416353,"longitude":-84.573178,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA00","iata":"","local":"OA00","name":"Taildragger Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Cambridge","elevation_ft":800,"latitude":40.117000579833984,"longitude":-81.57119750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2100,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA11","iata":"","local":"OA11","name":"Heitman Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Anna","elevation_ft":998,"latitude":40.3760986328125,"longitude":-84.25499725341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA04","iata":"","local":"OA04","name":"Rutter Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Arcadia","elevation_ft":815,"latitude":41.097599029541016,"longitude":-83.50270080566406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA10","iata":"","local":"OA10","name":"Bernie's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mount Orab","elevation_ft":950,"latitude":39.00859832763672,"longitude":-83.9092025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA12","iata":"","local":"OA12","name":"Buena Vista Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Morrow","elevation_ft":855,"latitude":39.33440017700195,"longitude":-84.06999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA17","iata":"","local":"OA17","name":"Bucyrus Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Bucyrus","elevation_ft":1004,"latitude":40.818164,"longitude":-82.980136,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA18","iata":"","local":"OA18","name":"Creekside Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cuyahoga Falls","elevation_ft":1081,"latitude":41.1783,"longitude":-81.526806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA22","iata":"","local":"OA22","name":"Bethesda North Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Montgomery","elevation_ft":757,"latitude":39.251667,"longitude":-84.343611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA26","iata":"","local":"OA26","name":"Ashville Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Ashville","elevation_ft":706,"latitude":39.718106,"longitude":-83.019378,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA33","iata":"","local":"OA33","name":"Cincinnati Childrens EMS Helipad","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":866,"latitude":39.14137,"longitude":-84.502797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"},{"id":"H2","length_ft":80,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA52","iata":"","local":"OA52","name":"Ross Heart Hospial Helipad","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":719,"latitude":39.995115,"longitude":-83.018285,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OAHR","iata":"HEA","local":"","name":"Herat - Khwaja Abdullah Ansari International Airport","category":"medium_airport","iso_country":"AF","iso_region":"AF-HER","municipality":"Guzara","elevation_ft":3206,"latitude":34.209999,"longitude":62.228298,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9888,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OA19","iata":"","local":"OA19","name":"Kiko Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"North Canton","elevation_ft":1170,"latitude":40.898889,"longitude":-81.3,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA85","iata":"","local":"OA85","name":"Riverview Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Dresden","elevation_ft":730,"latitude":40.13650131225586,"longitude":-81.99369812011719,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2560,"width_ft":78,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA86","iata":"","local":"OA86","name":"Silent P Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"West Jefferson","elevation_ft":970,"latitude":39.907356,"longitude":-83.360314,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OA16","iata":"","local":"OA16","name":"Lost Bridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"North Bend","elevation_ft":818,"latitude":39.156111,"longitude":-84.781667,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OEAH","iata":"HOF","local":"","name":"Al-Ahsa International Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-04","municipality":"Hofuf","elevation_ft":588,"latitude":25.285299,"longitude":49.485199,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":10039,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OEGS","iata":"ELQ","local":"","name":"Gassim Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-05","municipality":"Buraidah","elevation_ft":2126,"latitude":26.302799,"longitude":43.774399,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OEGT","iata":"URY","local":"","name":"Gurayat Domestic Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-12","municipality":"Gurayat","elevation_ft":1672,"latitude":31.412413,"longitude":37.278898,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OAJL","iata":"JAA","local":"","name":"Jalalabad Airport","category":"medium_airport","iso_country":"AF","iso_region":"AF-NAN","municipality":"Jalalabad","elevation_ft":1814,"latitude":34.399799,"longitude":70.498596,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6480,"width_ft":90,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OAKB","iata":"KBL","local":"","name":"Kabul International Airport","category":"medium_airport","iso_country":"AF","iso_region":"AF-KAB","municipality":"Kabul","elevation_ft":5877,"latitude":34.565899,"longitude":69.212303,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11520,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OAKN","iata":"KDH","local":"","name":"Ahmad Shah Baba International Airport / Kandahar Airfield","category":"medium_airport","iso_country":"AF","iso_region":"AF-KAN","municipality":"Khvoshab","elevation_ft":3337,"latitude":31.5058,"longitude":65.847801,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11520,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OEHL","iata":"HAS","local":"","name":"Ha'il Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-06","municipality":"Ha'il","elevation_ft":3331,"latitude":27.437901,"longitude":41.686298,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OEPA","iata":"AQI","local":"","name":"Al Qaisumah/Hafr Al Batin Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-04","municipality":"Qaisumah","elevation_ft":1174,"latitude":28.335199,"longitude":46.125099,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":10007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OERF","iata":"RAH","local":"","name":"Rafha Domestic Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-08","municipality":"Rafha","elevation_ft":1474,"latitude":29.626399993896484,"longitude":43.4906005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OERR","iata":"RAE","local":"","name":"Arar Domestic Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-08","municipality":"Arar","elevation_ft":1813,"latitude":30.90660095214844,"longitude":41.13819885253906,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH88","iata":"","local":"","name":"Roberts Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"London","elevation_ft":1066,"latitude":39.852798,"longitude":-83.470497,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OESK","iata":"AJF","local":"","name":"Al-Jawf Domestic Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-12","municipality":"Al-Jawf","elevation_ft":2261,"latitude":29.78510093688965,"longitude":40.09999847412109,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":12008,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OETB","iata":"TUU","local":"","name":"Tabuk Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-07","municipality":"Tabuk","elevation_ft":2551,"latitude":28.3654,"longitude":36.6189,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10991,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":10007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OETR","iata":"TUI","local":"","name":"Turaif Domestic Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-08","municipality":"Turaif","elevation_ft":2803,"latitude":31.692188,"longitude":38.731544,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10007,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OEWJ","iata":"EJH","local":"","name":"Al Wajh Domestic Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-07","municipality":"Al Wajh","elevation_ft":66,"latitude":26.198601,"longitude":36.476398,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":10046,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OEYN","iata":"YNB","local":"","name":"Yanbu Airport / Prince Abdul Mohsin bin Abdulaziz international Airport","category":"medium_airport","iso_country":"SA","iso_region":"SA-03","municipality":"Yanbu","elevation_ft":26,"latitude":24.144199,"longitude":38.0634,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10538,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG03","iata":"","local":"OG03","name":"Columbia Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Astoria","elevation_ft":22,"latitude":46.1882686679,"longitude":-123.819742799,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG00","iata":"","local":"OG00","name":"3 Rivers Recreation Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Culver","elevation_ft":2695,"latitude":44.556757,"longitude":-121.405696,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG02","iata":"","local":"OG02","name":"Rieben Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Banks","elevation_ft":200,"latitude":45.61029815673828,"longitude":-123.08000183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG09","iata":"","local":"OG09","name":"Good Shepherd Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Hermiston","elevation_ft":460,"latitude":45.8478109634,"longitude":-119.30832088,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":37,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG14","iata":"","local":"OG14","name":"Silvies Valley Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Seneca","elevation_ft":4584,"latitude":44.022441,"longitude":-118.93115,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG11","iata":"","local":"OG11","name":"Rose Quarter Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Portland","elevation_ft":138,"latitude":45.532808,"longitude":-122.667229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG15","iata":"","local":"OG15","name":"Sage Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sisters","elevation_ft":3170,"latitude":44.23320007324219,"longitude":-121.39099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":70,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG07","iata":"","local":"OG07","name":"Cove Side Ranch Port Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Cove","elevation_ft":2770,"latitude":45.33359909057617,"longitude":-117.81999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG21","iata":"","local":"OG21","name":"Dry Creek Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Prineville","elevation_ft":3625,"latitude":44.195098876953125,"longitude":-120.822998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG24","iata":"","local":"OG24","name":"Flying D Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sutherlin","elevation_ft":730,"latitude":43.38869857788086,"longitude":-123.22200012207033,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1620,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG19","iata":"","local":"OG19","name":"Bombay Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Madras","elevation_ft":2385,"latitude":44.65010070800781,"longitude":-121.23799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2100,"width_ft":50,"surface":"T"},{"id":"15/33","length_ft":2125,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG23","iata":"","local":"OG23","name":"Poverty Hollow Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Sheridan","elevation_ft":330,"latitude":45.15710067749024,"longitude":-123.39099884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG39","iata":"","local":"OG39","name":"Longview Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Kimberly","elevation_ft":2080,"latitude":44.661104,"longitude":-119.65255,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":5335,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG35","iata":"","local":"OG35","name":"Mountain View Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Madras","elevation_ft":2299,"latitude":44.6386317938,"longitude":-121.1202389,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG27","iata":"","local":"OG27","name":"Muddy Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Haines","elevation_ft":3500,"latitude":44.94010162353516,"longitude":-118.01200103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG37","iata":"","local":"OG37","name":"Salem Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Salem","elevation_ft":274,"latitude":44.93349838,"longitude":-123.0350037,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG38","iata":"","local":"OG38","name":"Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"McMinnville","elevation_ft":159,"latitude":45.198914,"longitude":-123.166381,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG33","iata":"","local":"OG33","name":"Oregon Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Milton/Freewater","elevation_ft":1357,"latitude":45.87900161743164,"longitude":-118.40499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2175,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG31","iata":"","local":"OG31","name":"Shady Cove Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Eagle Point","elevation_ft":1504,"latitude":42.608674,"longitude":-122.82951,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG34","iata":"","local":"OG34","name":"Meyer Riverside Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Tigard","elevation_ft":252,"latitude":45.39979934692383,"longitude":-122.8290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1585,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG30","iata":"","local":"OG30","name":"Aeroacres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Oregon City","elevation_ft":420,"latitude":45.31650161743164,"longitude":-122.6050033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG28","iata":"","local":"OG28","name":"The Green Trees Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Scio","elevation_ft":1139,"latitude":44.68320083618164,"longitude":-122.78299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG50","iata":"","local":"OG50","name":"Cottonwood Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Harper","elevation_ft":2555,"latitude":43.847388,"longitude":-117.574267,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2050,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG45","iata":"","local":"OG45","name":"Bald Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Baker City","elevation_ft":4640,"latitude":44.61690139770508,"longitude":-117.87200164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG46","iata":"","local":"OG46","name":"Tuality Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Hillsboro","elevation_ft":260,"latitude":45.52790069580078,"longitude":-122.9800033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG47","iata":"","local":"OG47","name":"Three Valleys Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Baker City","elevation_ft":3455,"latitude":44.49440002441406,"longitude":-117.74700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":87,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG42","iata":"","local":"OG42","name":"Quail Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Pendleton","elevation_ft":1610,"latitude":45.6549,"longitude":-118.589996,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1335,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG48","iata":"","local":"OG48","name":"Greer Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Coburg","elevation_ft":360,"latitude":44.195899963378906,"longitude":-123.072998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1890,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG49","iata":"","local":"OG49","name":"Coca Cola Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corvalis","elevation_ft":300,"latitude":44.42190170288086,"longitude":-123.25900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1050,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG51","iata":"","local":"OG51","name":"Six Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Madras","elevation_ft":3780,"latitude":44.48350143432617,"longitude":-120.91600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3400,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG44","iata":"","local":"OG44","name":"Miss Kittys Strip Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Amity","elevation_ft":155,"latitude":45.1534,"longitude":-123.237,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1250,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG52","iata":"","local":"OG52","name":"Jpm Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Monmouth","elevation_ft":260,"latitude":44.83919906616211,"longitude":-123.25900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG55","iata":"","local":"OG55","name":"Providence Newberg Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Newberg","elevation_ft":207,"latitude":45.30820083618164,"longitude":-122.93699645996094,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG56","iata":"","local":"OG56","name":"Station Thirty Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Astoria","elevation_ft":42,"latitude":46.15190124511719,"longitude":-123.79399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG57","iata":"","local":"OG57","name":"Pier 126 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Florence","elevation_ft":13,"latitude":43.974783,"longitude":-124.094067,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG58","iata":"","local":"OG58","name":"Erickson Air-Crane Admin Offices Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Central Point","elevation_ft":1212,"latitude":42.405305,"longitude":-122.948055,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":130,"width_ft":130,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG62","iata":"","local":"OG62","name":"Myrtle Creek Municipal Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Myrtle Creek","elevation_ft":608,"latitude":43.023314,"longitude":-123.281311,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG64","iata":"","local":"OG64","name":"River Bend Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Springfield","elevation_ft":589,"latitude":44.081312,"longitude":-123.026243,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH01","iata":"","local":"OH01","name":"Grant Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":0,"latitude":39.96065,"longitude":-82.99152,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH02","iata":"","local":"","name":"Eickmeier Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Mc Clure","elevation_ft":694,"latitude":41.294498,"longitude":-83.954697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH04","iata":"","local":"OH04","name":"Knox Community Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mount Vernon","elevation_ft":1190,"latitude":40.398827,"longitude":-82.449024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH05","iata":"","local":"OH05","name":"Akron General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Akron","elevation_ft":938,"latitude":41.077032,"longitude":-81.531308,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":23,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OG63","iata":"","local":"OG63","name":"Gilbert Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"North Plains","elevation_ft":211,"latitude":45.648889,"longitude":-123.039444,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OG54","iata":"","local":"OG54","name":"Shaniko Cattle Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Shaniko","elevation_ft":3300,"latitude":44.96009826660156,"longitude":-120.88500213623048,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH08","iata":"","local":"OH08","name":"Fisher-Titus Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Norwalk","elevation_ft":771,"latitude":41.223698,"longitude":-82.603406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH10","iata":"","local":"OH10","name":"Midwestern Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Massillon","elevation_ft":986,"latitude":40.778099060058594,"longitude":-81.53459930419922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH11","iata":"","local":"","name":"Arnold Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Harrisonville","elevation_ft":930,"latitude":39.1106,"longitude":-82.092202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH12","iata":"","local":"OH12","name":"Remington Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Alexandria","elevation_ft":1175,"latitude":40.097599029541,"longitude":-82.67130279541,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH14","iata":"","local":"","name":"Brown's Lakeside Landings Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Sunbury","elevation_ft":970,"latitude":40.279202,"longitude":-82.9168,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH16","iata":"","local":"","name":"Middletown Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Middletown","elevation_ft":740,"latitude":39.510201,"longitude":-84.375801,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH17","iata":"","local":"","name":"August Acres Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Center Village","elevation_ft":1100,"latitude":40.162601,"longitude":-82.781798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH20","iata":"","local":"","name":"Spring Valley Farm Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Marshallville","elevation_ft":1000,"latitude":40.9198,"longitude":-81.701202,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH15","iata":"","local":"OH15","name":"Minerva Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Minerva","elevation_ft":1080,"latitude":40.74589920043945,"longitude":-81.14430236816406,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2500,"width_ft":104,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH22","iata":"","local":"OH22","name":"Stoltzfus Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Kidron","elevation_ft":1130,"latitude":40.76119995117188,"longitude":-81.77899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3460,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH18","iata":"","local":"OH18","name":"Freefall Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Sycamore","elevation_ft":885,"latitude":40.932498931884766,"longitude":-83.14029693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH23","iata":"","local":"OH23","name":"O'Bleness Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Athens","elevation_ft":720,"latitude":39.326698303222656,"longitude":-82.11430358886719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH24","iata":"","local":"","name":"Brookfield Airpark","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Brookfield","elevation_ft":1040,"latitude":41.2248,"longitude":-80.579003,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1633,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH25","iata":"","local":"OH25","name":"Grady Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Delaware","elevation_ft":969,"latitude":40.30609893798828,"longitude":-83.09030151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH30","iata":"","local":"OH30","name":"Whalen Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Amelia","elevation_ft":890,"latitude":38.99309921264648,"longitude":-84.17030334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH31","iata":"","local":"OH31","name":"Sycamore Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Miamisburg","elevation_ft":940,"latitude":39.50419998168945,"longitude":-84.24739837646484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH32","iata":"","local":"","name":"Stone Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Alvada","elevation_ft":835,"latitude":41.006402,"longitude":-83.427399,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":300,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH33","iata":"","local":"","name":"Humphries Rotordrome Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Amelia","elevation_ft":840,"latitude":39.056702,"longitude":-84.204101,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH34","iata":"","local":"OH34","name":"Leis Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Ansonia","elevation_ft":1015,"latitude":40.20589828491211,"longitude":-84.6615982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2800,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH37","iata":"","local":"","name":"Glade STOLport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Beaver","elevation_ft":690,"latitude":39.011701,"longitude":-82.788496,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH27","iata":"","local":"OH27","name":"Salem Lakefront Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Salem","elevation_ft":1170,"latitude":40.807800292969,"longitude":-80.845397949219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH36","iata":"","local":"OH36","name":"Riverside Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Zanesville","elevation_ft":700,"latitude":39.98619842529297,"longitude":-81.98370361328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2925,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH41","iata":"","local":"","name":"Cutler Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Powell","elevation_ft":945,"latitude":40.1931,"longitude":-83.111902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH46","iata":"","local":"OH91","name":"Adena Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Chillicothe","elevation_ft":747,"latitude":39.39569,"longitude":-82.969782,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2445,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH47","iata":"","local":"OH47","name":"District 9 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Chillicothe","elevation_ft":619,"latitude":39.32419967651367,"longitude":-82.9520034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH49","iata":"","local":"OH49","name":"Christ Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cincinnati","elevation_ft":873,"latitude":39.121015,"longitude":-84.512592,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH52","iata":"","local":"OH52","name":"Columbus Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":733,"latitude":39.9833984375,"longitude":-83.02349853515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH53","iata":"","local":"OH53","name":"Ohio Bldg Authority Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":1354,"latitude":39.962600708,"longitude":-82.9993972778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH54","iata":"","local":"OH54","name":"Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":783,"latitude":39.99509811401367,"longitude":-83.02100372314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH55","iata":"","local":"","name":"St Elizabeth Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":800,"latitude":39.750099,"longitude":-84.199899,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH42","iata":"","local":"OH42","name":"Hawk's Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Butler","elevation_ft":1260,"latitude":40.54010009765625,"longitude":-82.393798828125,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH44","iata":"","local":"OH44","name":"Head Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Galena","elevation_ft":945,"latitude":40.220273,"longitude":-82.946992,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3545,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH40","iata":"","local":"OH40","name":"Eylesair Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Radnor","elevation_ft":970,"latitude":40.37001,"longitude":-83.112233,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2660,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH38","iata":"","local":"OH38","name":"Blue Bird Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Belpre","elevation_ft":780,"latitude":39.313217,"longitude":-81.615157,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH56","iata":"","local":"","name":"Good Samaritan Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Dayton","elevation_ft":914,"latitude":39.7878,"longitude":-84.234398,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2366,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH58","iata":"","local":"OH58","name":"Cow Chip Creek Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Morrow","elevation_ft":850,"latitude":39.33369827270508,"longitude":-84.13880157470703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH60","iata":"","local":"OH60","name":"Gerker Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Fort Jennings","elevation_ft":780,"latitude":40.95370101928711,"longitude":-84.27359771728516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH62","iata":"","local":"OH62","name":"Southern Ohio Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Portsmouth","elevation_ft":600,"latitude":38.754527,"longitude":-82.979484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH69","iata":"","local":"OH69","name":"Highland District Medical Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Hillsboro","elevation_ft":988,"latitude":39.22119903564453,"longitude":-83.61080169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH70","iata":"","local":"OH70","name":"Gallenstein Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Indian Hill","elevation_ft":840,"latitude":39.18889999389648,"longitude":-84.32990264892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":600,"width_ft":600,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH72","iata":"","local":"OH72","name":"Oak Hill Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Oak Hill","elevation_ft":730,"latitude":38.89590072631836,"longitude":-82.57710266113281,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH66","iata":"","local":"OH66","name":"Obannon Creek Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Goshen","elevation_ft":835,"latitude":39.23949813842773,"longitude":-84.17630004882812,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH71","iata":"","local":"6CM","name":"Chapman Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Centerburg","elevation_ft":1180,"latitude":40.29542,"longitude":-82.729961,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH63","iata":"","local":"OH63","name":"Jims Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Germantown","elevation_ft":955,"latitude":39.60010147094727,"longitude":-84.4166030883789,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH73","iata":"","local":"OH73","name":"Fulton County Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Wauseon","elevation_ft":725,"latitude":41.537936,"longitude":-84.132035,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH75","iata":"","local":"OH75","name":"Hardin Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Kenton","elevation_ft":1011,"latitude":40.64950180053711,"longitude":-83.59300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH76","iata":"","local":"OH76","name":"Waterwood Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Vermilion","elevation_ft":587,"latitude":41.389198303222656,"longitude":-82.45020294189453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":88,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH79","iata":"","local":"OH79","name":"Vermilion Township Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Vermilion","elevation_ft":630,"latitude":41.4022216797,"longitude":-82.36666870120001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH80","iata":"","local":"OH80","name":"District Nr 8 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Lebanon","elevation_ft":850,"latitude":39.43059921264648,"longitude":-84.2833023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH81","iata":"","local":"","name":"Graham's Landing Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Valley City","elevation_ft":890,"latitude":41.225602,"longitude":-81.941498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH83","iata":"","local":"OH83","name":"Lima Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Lima","elevation_ft":880,"latitude":40.73619842529297,"longitude":-84.08740234375,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH84","iata":"","local":"OH84","name":"Odot District Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Lima","elevation_ft":863,"latitude":40.77119827270508,"longitude":-84.1061019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH85","iata":"","local":"OH85","name":"Marietta Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Marietta","elevation_ft":742,"latitude":39.43170166015625,"longitude":-81.46430206298828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH86","iata":"","local":"","name":"Deeds Field","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Sugar Grove","elevation_ft":800,"latitude":39.648395,"longitude":-82.539902,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":940,"width_ft":60,"surface":"T"},{"id":"18/36","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH87","iata":"","local":"","name":"Providence Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Sandusky","elevation_ft":651,"latitude":41.437,"longitude":-82.712402,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1746,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH77","iata":"","local":"OH77","name":"Lumberton Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wilmington","elevation_ft":1008,"latitude":39.553096,"longitude":-83.854094,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2800,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH89","iata":"","local":"OH89","name":"Selby General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Marietta","elevation_ft":726,"latitude":39.44039916992188,"longitude":-81.44259643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":130,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH90","iata":"","local":"","name":"Hochstetler Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Lyons","elevation_ft":763,"latitude":41.707298,"longitude":-84.234703,"has_tower":false,"has_beacon":false,"runways":[{"id":"14S/32S","length_ft":1000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH91","iata":"","local":"OH91","name":"Dave Rice Ultralightport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Lima","elevation_ft":775,"latitude":40.70009995,"longitude":-84.23439789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH94","iata":"","local":"","name":"Knore Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Minford","elevation_ft":674,"latitude":38.837601,"longitude":-82.834901,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1229,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH98","iata":"","local":"","name":"Lyttle Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"New Albany","elevation_ft":1050,"latitude":40.0495,"longitude":-82.788201,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OH99","iata":"","local":"","name":"Planevue Airport","category":"closed","iso_country":"US","iso_region":"US-OH","municipality":"Newark","elevation_ft":935,"latitude":40.113998,"longitude":-82.458199,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI23","iata":"","local":"OI23","name":"Emh Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Elyria","elevation_ft":867,"latitude":41.3650016784668,"longitude":-82.09760284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI11","iata":"","local":"OI11","name":"Hibbetts Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Carrollton","elevation_ft":1060,"latitude":40.63742,"longitude":-81.112141,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2815,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH92","iata":"","local":"OH92","name":"Porter Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hopewell","elevation_ft":1070,"latitude":39.954200744628906,"longitude":-82.18319702148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH93","iata":"","local":"OH93","name":"Darby Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Milford Center","elevation_ft":972,"latitude":40.14030075073242,"longitude":-83.39019775390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1750,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI06","iata":"","local":"OI06","name":"Wagner Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"West Milton","elevation_ft":935,"latitude":39.991687,"longitude":-84.291615,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OH96","iata":"","local":"OH96","name":"Neals Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mount Orab","elevation_ft":953,"latitude":39.033599853515625,"longitude":-83.88610076904297,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI24","iata":"","local":"OI24","name":"Kokosing Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Fredericktown","elevation_ft":1095,"latitude":40.491172,"longitude":-82.560722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI35","iata":"","local":"OI35","name":"Scott Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Toledo","elevation_ft":620,"latitude":41.63980102539063,"longitude":-83.59329986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":380,"width_ft":261,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI43","iata":"","local":"OI43","name":"Back Achers Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"North Olmsted","elevation_ft":760,"latitude":41.40340042114258,"longitude":-81.908203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI44","iata":"","local":"OI44","name":"Mercy Health St Charles Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Oregon","elevation_ft":611,"latitude":41.63245,"longitude":-83.482912,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI31","iata":"","local":"OI31","name":"Pheasant Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Leroy","elevation_ft":960,"latitude":41.70980072021485,"longitude":-81.12480163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1900,"width_ft":120,"surface":"T"},{"id":"18/36","length_ft":2100,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI41","iata":"","local":"OI41","name":"Far View Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hiram","elevation_ft":1300,"latitude":41.29393,"longitude":-81.156006,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2180,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI25","iata":"","local":"OI25","name":"Ross Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Greenfield","elevation_ft":960,"latitude":39.36529922485352,"longitude":-83.35440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI28","iata":"","local":"OI28","name":"Lanker Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mount Gilead","elevation_ft":1440,"latitude":40.58390045166016,"longitude":-82.6792984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI38","iata":"","local":"OI38","name":"Hillview Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"East Liberty","elevation_ft":1400,"latitude":40.308435,"longitude":-83.613545,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI42","iata":"","local":"OI42","name":"D. A. Chandler Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"New London","elevation_ft":950,"latitude":41.132492,"longitude":-82.459565,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI36","iata":"","local":"OI36","name":"Farpoint Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Gratis","elevation_ft":990,"latitude":39.622501373291016,"longitude":-84.48310089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI47","iata":"","local":"OI47","name":"Channel 10/Wbns-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":717,"latitude":39.97150039672852,"longitude":-83.027099609375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI48","iata":"","local":"OI48","name":"Tesar Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Clyde","elevation_ft":725,"latitude":41.28419876098633,"longitude":-82.97029876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":125,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI50","iata":"","local":"OI50","name":"1st District Police Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":783,"latitude":41.44810104370117,"longitude":-81.77899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI51","iata":"","local":"OI51","name":"4th Dist Police Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Cleveland","elevation_ft":825,"latitude":41.4720001221,"longitude":-81.6195983887,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI53","iata":"","local":"OI53","name":"St Vincent Hospital & Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Toledo","elevation_ft":640,"latitude":41.667159,"longitude":-83.541196,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":97,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI61","iata":"","local":"OI61","name":"Mount Carmel Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":710,"latitude":39.95759963989258,"longitude":-83.02210235595703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI63","iata":"","local":"OI63","name":"Mildon Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Tarlton","elevation_ft":950,"latitude":39.55979919433594,"longitude":-82.77519989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI58","iata":"","local":"OI58","name":"Lockeridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Canton","elevation_ft":1090,"latitude":40.84170150756836,"longitude":-81.43789672851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI55","iata":"","local":"OI55","name":"Scheibe Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Wooster","elevation_ft":1010,"latitude":40.749566,"longitude":-81.985216,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1240,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI60","iata":"","local":"OI60","name":"Gorman Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Mansfield","elevation_ft":1230,"latitude":40.75479888916016,"longitude":-82.3916015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI52","iata":"","local":"OI52","name":"Lyons Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Jamestown","elevation_ft":1045,"latitude":39.625099182128906,"longitude":-83.7833023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI57","iata":"","local":"OI57","name":"Mc Kinney Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Hamersville","elevation_ft":970,"latitude":38.9269981384,"longitude":-83.9885025024,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI65","iata":"","local":"OI65","name":"Aultman Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Canton","elevation_ft":191,"latitude":40.7957992554,"longitude":-81.4039001465,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI72","iata":"","local":"OI72","name":"Marvin Thiel Field","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Blakeslee","elevation_ft":859,"latitude":41.521688,"longitude":-84.721098,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1880,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI75","iata":"","local":"OI75","name":"Macks Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus Grove","elevation_ft":763,"latitude":40.9281005859375,"longitude":-84.05770111083984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1200,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI76","iata":"","local":"OI76","name":"Bieber's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-OH","municipality":"North Lima","elevation_ft":1020,"latitude":40.985502,"longitude":-80.693522,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":85,"surface":"T"},{"id":"18W/36W","length_ft":2100,"width_ft":1500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI79","iata":"","local":"OI79","name":"ProMedica Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Fremont","elevation_ft":630,"latitude":41.339729,"longitude":-83.134822,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI80","iata":"","local":"OI80","name":"T & A Land Development Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Broadview Heights","elevation_ft":1210,"latitude":41.29059982299805,"longitude":-81.68389892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI83","iata":"","local":"OI83","name":"Meridia Hillcrest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Mayfield","elevation_ft":1093,"latitude":41.51839828,"longitude":-81.43479919,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI86","iata":"","local":"OI86","name":"Robinson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Ravenna","elevation_ft":1126,"latitude":41.176399231,"longitude":-81.2492980957,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI77","iata":"","local":"OI77","name":"Mc Ardle Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Fostoria","elevation_ft":715,"latitude":41.2159004211,"longitude":-83.5579986572,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI82","iata":"","local":"OI82","name":"Russ Airport","category":"small_airport","iso_country":"US","iso_region":"US-OH","municipality":"Jackson","elevation_ft":800,"latitude":38.912200927734375,"longitude":-82.72489929199219,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OI87","iata":"","local":"OI87","name":"Firelands Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Sandusky","elevation_ft":593,"latitude":41.446894,"longitude":-82.711172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI93","iata":"","local":"OI93","name":"Alaimo's Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Brecksville","elevation_ft":760,"latitude":41.3400993347168,"longitude":-81.61009979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI95","iata":"","local":"OI95","name":"Children's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":785,"latitude":39.95370101928711,"longitude":-82.9813003540039,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI96","iata":"","local":"OI96","name":"National Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Columbus","elevation_ft":798,"latitude":39.93510055541992,"longitude":-82.83180236816406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI97","iata":"","local":"OI97","name":"St. Ann's Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Westerville","elevation_ft":806,"latitude":40.113399505615234,"longitude":-82.94409942626953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OI98","iata":"","local":"OI98","name":"St. Luke's Solon Emergency Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OH","municipality":"Solon","elevation_ft":745,"latitude":41.390098571777,"longitude":-81.445098876953,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIAA","iata":"ABD","local":"","name":"Abadan Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-06","municipality":"Abadan","elevation_ft":10,"latitude":30.367887,"longitude":48.230075,"has_tower":true,"has_beacon":false,"runways":[{"id":"14R/32L","length_ft":10180,"width_ft":148,"surface":"H"},{"id":"14L/32R","length_ft":7434,"width_ft":115,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIAH","iata":"GCH","local":"","name":"Gachsaran Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-17","municipality":"Gachsaran","elevation_ft":2414,"latitude":30.333869,"longitude":50.833796,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8530,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIAW","iata":"AWZ","local":"","name":"Lieutenant General Qasem Soleimani International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-06","municipality":"Ahvaz","elevation_ft":66,"latitude":31.3374,"longitude":48.762001,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":11145,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIBB","iata":"BUZ","local":"","name":"Bushehr Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-18","municipality":"Bushehr","elevation_ft":68,"latitude":28.9447994232,"longitude":50.8345985413,"has_tower":true,"has_beacon":false,"runways":[{"id":"13R/31L","length_ft":14665,"width_ft":148,"surface":"H"},{"id":"13L/31R","length_ft":14662,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIBK","iata":"KIH","local":"","name":"Kish International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-22","municipality":"Kish Island","elevation_ft":101,"latitude":26.5261993408,"longitude":53.9802017212,"has_tower":true,"has_beacon":false,"runways":[{"id":"09L/27R","length_ft":11972,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIBP","iata":"PGU","local":"","name":"Persian Gulf International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-18","municipality":"Khiyaroo","elevation_ft":27,"latitude":27.379601,"longitude":52.737701,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":13120,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OICC","iata":"KSH","local":"","name":"Shahid Ashrafi Esfahani Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-05","municipality":"Kermanshah","elevation_ft":4307,"latitude":34.3459014893,"longitude":47.1581001282,"has_tower":true,"has_beacon":false,"runways":[{"id":"11L/29R","length_ft":8800,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OICI","iata":"IIL","local":"","name":"Ilam Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-16","municipality":"Ilam","elevation_ft":4404,"latitude":33.58660125732422,"longitude":46.40480041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":10495,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OICK","iata":"KHD","local":"","name":"Khoram Abad Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-15","municipality":"UNKNOWN","elevation_ft":3782,"latitude":33.43539810180664,"longitude":48.282901763916016,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":11457,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OICS","iata":"SDG","local":"","name":"Sanandaj Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-12","municipality":"UNKNOWN","elevation_ft":4522,"latitude":35.24589920043945,"longitude":47.00920104980469,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9905,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIFK","iata":"KKS","local":"","name":"Kashan Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-10","municipality":"Kashan","elevation_ft":3465,"latitude":33.895302,"longitude":51.577,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8845,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIFM","iata":"IFN","local":"","name":"Isfahan Shahid Beheshti International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-10","municipality":"Isfahan","elevation_ft":5059,"latitude":32.750755,"longitude":51.861483,"has_tower":true,"has_beacon":false,"runways":[{"id":"07L/25R","length_ft":14432,"width_ft":148,"surface":"H"},{"id":"07R/25L","length_ft":14432,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIFS","iata":"CQD","local":"","name":"Shahrekord Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-14","municipality":"Shahrekord","elevation_ft":6723,"latitude":32.2971992493,"longitude":50.8422012329,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":9859,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIGG","iata":"RAS","local":"","name":"Sardar-e-Jangal Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-01","municipality":"Rasht","elevation_ft":-40,"latitude":37.323333,"longitude":49.617778,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9570,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIHH","iata":"HDM","local":"","name":"Hamadan Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-13","municipality":"Hamadan","elevation_ft":5755,"latitude":34.869202,"longitude":48.552502,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":12464,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIHR","iata":"AJK","local":"","name":"Arak Airport","category":"small_airport","iso_country":"IR","iso_region":"IR-00","municipality":"Araak","elevation_ft":5440,"latitude":34.13809967041016,"longitude":49.8473014831543,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":12139,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OISA","iata":"","local":"","name":"Abadeh Airport","category":"small_airport","iso_country":"IR","iso_region":"IR-07","municipality":"Abadeh","elevation_ft":5320,"latitude":31.033006,"longitude":52.785988,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6570,"width_ft":148,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIIK","iata":"GZW","local":"","name":"Qazvin Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-26","municipality":"Qazvin","elevation_ft":4184,"latitude":36.240101,"longitude":50.0471,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3671,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIKK","iata":"KER","local":"","name":"Ayatollah Hashemi Rafsanjani International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-08","municipality":"Kerman","elevation_ft":5741,"latitude":30.271276,"longitude":56.949692,"has_tower":true,"has_beacon":false,"runways":[{"id":"16L/34R","length_ft":12635,"width_ft":148,"surface":"H"},{"id":"16R/34L","length_ft":12631,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIMB","iata":"XBJ","local":"","name":"Birjand International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-29","municipality":"Birjand","elevation_ft":4952,"latitude":32.896525,"longitude":59.281258,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":12457,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":7142,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIMC","iata":"CKT","local":"","name":"Sarakhs Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-09","municipality":"Sarakhs","elevation_ft":945,"latitude":36.50120162963867,"longitude":61.06489944458008,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":12740,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIMT","iata":"TCX","local":"","name":"Tabas Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-21","municipality":"Tabas","elevation_ft":2312,"latitude":33.6678009033,"longitude":56.8927001953,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":9836,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OINE","iata":"KLM","local":"","name":"Kalaleh Airport","category":"small_airport","iso_country":"IR","iso_region":"IR-27","municipality":"Kalaleh","elevation_ft":425,"latitude":37.383301,"longitude":55.452,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7274,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OING","iata":"GBT","local":"","name":"Gorgan Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-27","municipality":"Gorgan","elevation_ft":-24,"latitude":36.9094009399,"longitude":54.4012985229,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OINR","iata":"RZR","local":"","name":"Ramsar Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-02","municipality":"Ramsar","elevation_ft":-70,"latitude":36.90701,"longitude":50.687316,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7448,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":4918,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OINZ","iata":"SRY","local":"","name":"Sari Dasht-e Naz International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-02","municipality":"Sari","elevation_ft":35,"latitude":36.644408,"longitude":53.188761,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8694,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OITP","iata":"PFQ","local":"","name":"Parsabad-Moghan Airport","category":"small_airport","iso_country":"IR","iso_region":"IR-24","municipality":"Parsabad","elevation_ft":251,"latitude":39.6036,"longitude":47.8815,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8484,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OITR","iata":"OMH","local":"","name":"Urmia Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-04","municipality":"Urmia","elevation_ft":4343,"latitude":37.6680984497,"longitude":45.0686988831,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":10669,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OITT","iata":"TBZ","local":"","name":"Tabriz International Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-03","municipality":"Tabriz","elevation_ft":4459,"latitude":38.1339,"longitude":46.235001,"has_tower":true,"has_beacon":false,"runways":[{"id":"12R/30L","length_ft":12333,"width_ft":148,"surface":"H"},{"id":"12L/30R","length_ft":11995,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OITZ","iata":"JWN","local":"","name":"Zanjan Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-19","municipality":"Zanjan","elevation_ft":5382,"latitude":36.7737007141,"longitude":48.3594017029,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIYY","iata":"AZD","local":"","name":"Shahid Sadooghi Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-21","municipality":"Yazd","elevation_ft":4054,"latitude":31.9048995972,"longitude":54.2765007019,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":13451,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OIZB","iata":"ACZ","local":"","name":"Zabol Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-11","municipality":"Zabol","elevation_ft":1628,"latitude":31.098301,"longitude":61.5439,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9862,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OJAM","iata":"ADJ","local":"","name":"Amman Civil (Marka International) Airport","category":"medium_airport","iso_country":"JO","iso_region":"JO-AM","municipality":"Amman","elevation_ft":2555,"latitude":31.9727,"longitude":35.9916,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":10745,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OJAQ","iata":"AQJ","local":"","name":"Aqaba King Hussein International Airport","category":"medium_airport","iso_country":"JO","iso_region":"JO-AQ","municipality":"Aqaba","elevation_ft":175,"latitude":29.61160087585449,"longitude":35.01810073852539,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK12","iata":"","local":"OK12","name":"Jones Farm Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Walters","elevation_ft":1042,"latitude":34.399167,"longitude":-98.266389,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2130,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK03","iata":"","local":"","name":"Downtown Airpark","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1180,"latitude":35.449183,"longitude":-97.532989,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK05","iata":"","local":"","name":"Ray Preston Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Hollis","elevation_ft":1660,"latitude":34.699766,"longitude":-99.923815,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK09","iata":"","local":"OK09","name":"Mercy Hospital Ardmore Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Ardmore","elevation_ft":931,"latitude":34.189595,"longitude":-97.141888,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK10","iata":"","local":"","name":"Entropy Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Elmore City","elevation_ft":1020,"latitude":34.581902,"longitude":-97.409697,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK02","iata":"","local":"OK02","name":"Dick's Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Washington","elevation_ft":1160,"latitude":35.110802,"longitude":-97.481697,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK00","iata":"","local":"OK00","name":"Jacktown Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Jacktown","elevation_ft":954,"latitude":35.516300201416016,"longitude":-97.02210235595705,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1123,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK07","iata":"","local":"OK07","name":"DJS Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lawton","elevation_ft":1115,"latitude":34.5182,"longitude":-98.3256,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":165,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK11","iata":"","local":"OK11","name":"Ksa Orchards Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Comanche","elevation_ft":1080,"latitude":34.313904,"longitude":-98.009261,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK14","iata":"","local":"OK14","name":"Woodlake Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alva","elevation_ft":1420,"latitude":36.8491,"longitude":-98.65806,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK19","iata":"","local":"OK19","name":"Integris Baptist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1276,"latitude":35.53101,"longitude":-97.578024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK16","iata":"","local":"1OK","name":"Fairmont Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Fairmont","elevation_ft":1168,"latitude":36.3647,"longitude":-97.667801,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK26","iata":"","local":"OK26","name":"Atwoods Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Enid","elevation_ft":1296,"latitude":36.392799377441406,"longitude":-97.9477996826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK25","iata":"","local":"OK25","name":"Cherokee Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Haskell","elevation_ft":710,"latitude":35.81330108642578,"longitude":-95.75330352783205,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK20","iata":"","local":"OK20","name":"Sageeyah Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Claremore","elevation_ft":640,"latitude":36.38370132446289,"longitude":-95.64800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK15","iata":"","local":"OK15","name":"Avian Country Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Oolagah","elevation_ft":750,"latitude":36.3760986328125,"longitude":-95.7052993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK13","iata":"","local":"OK13","name":"Erroport Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mounds","elevation_ft":660,"latitude":35.84579849243164,"longitude":-95.97109985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK23","iata":"","local":"OK23","name":"Taliaferro Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ardmore","elevation_ft":930,"latitude":34.19829941,"longitude":-97.23120117,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1100,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK24","iata":"","local":"OK24","name":"Colby Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Lone Grove","elevation_ft":930,"latitude":34.206199645996094,"longitude":-97.2311019897461,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK33","iata":"","local":"OK33","name":"Saint Francis Hospital Muskogee East Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Muskogee","elevation_ft":1238,"latitude":35.782491,"longitude":-95.355666,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK35","iata":"","local":"OK35","name":"Choctaw Indian Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Talihina","elevation_ft":890,"latitude":34.813899993896484,"longitude":-95.09410095214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK36","iata":"","local":"","name":"W C Ranch STOLport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Crowder","elevation_ft":725,"latitude":35.1197,"longitude":-95.703903,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK38","iata":"","local":"OK38","name":"Stillwater Medical-Perry Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Perry","elevation_ft":1022,"latitude":36.288304,"longitude":-97.300243,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK40","iata":"","local":"","name":"Eden Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Freedom","elevation_ft":1641,"latitude":36.7584,"longitude":-99.033699,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK41","iata":"","local":"OK41","name":"Police Civic Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":740,"latitude":36.14950180053711,"longitude":-95.99720001220705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK42","iata":"","local":"OK42","name":"Siegmanns Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hennessey","elevation_ft":1053,"latitude":36.08340072631836,"longitude":-97.71700286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2183,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK43","iata":"","local":"OK43","name":"Logsdon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alva","elevation_ft":1475,"latitude":36.53060150146485,"longitude":-98.63670349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1350,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK37","iata":"","local":"OK37","name":"Dog Iron Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Oologah","elevation_ft":760,"latitude":36.4695015,"longitude":-95.6678009,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK28","iata":"","local":"OK28","name":"McDaniel Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ravia","elevation_ft":700,"latitude":34.22825,"longitude":-96.742988,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK39","iata":"","local":"OK39","name":"Judy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Forgan","elevation_ft":2240,"latitude":36.96670150756836,"longitude":-100.31700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3100,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":2600,"width_ft":40,"surface":"T"},{"id":"16/34","length_ft":1900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK45","iata":"","local":"OK45","name":"Collinsville Rural Fire District Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Collinsville","elevation_ft":650,"latitude":36.35430145263672,"longitude":-95.84030151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK50","iata":"","local":"","name":"Traynor Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Waukomis","elevation_ft":1220,"latitude":36.330282,"longitude":-97.882773,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2609,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK52","iata":"","local":"OK52","name":"Cherokee Nation Redbird Smith Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Sallisaw","elevation_ft":539,"latitude":35.455103,"longitude":-94.817473,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK53","iata":"","local":"OK53","name":"KOTV Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":720,"latitude":36.160947,"longitude":-95.993431,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK57","iata":"","local":"OK57","name":"Boeing MROTC Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1286,"latitude":35.409307,"longitude":-97.368425,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK60","iata":"","local":"OK60","name":"Drifting G Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chickasha","elevation_ft":1045,"latitude":34.987416,"longitude":-97.8107833,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK59","iata":"","local":"OK59","name":"Wolf Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Poteau","elevation_ft":860,"latitude":35.022300720214844,"longitude":-94.70439910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK55","iata":"","local":"OK55","name":"Bost Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Luther","elevation_ft":1070,"latitude":35.714500427246094,"longitude":-97.22589874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK51","iata":"","local":"OK51","name":"Enix Boys Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Hennessey","elevation_ft":1100,"latitude":36.10419845581055,"longitude":-97.93699645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2565,"width_ft":10,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK46","iata":"","local":"OK46","name":"McCrays Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Manchester","elevation_ft":1260,"latitude":36.95905,"longitude":-98.07554,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK54","iata":"","local":"OK54","name":"May Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Alva","elevation_ft":1833,"latitude":36.996700286865234,"longitude":-99.00479888916016,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK64","iata":"","local":"","name":"Weedpatch International Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Wakita","elevation_ft":1113,"latitude":36.813901,"longitude":-97.986504,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":800,"width_ft":26,"surface":"T"},{"id":"H1","length_ft":10,"width_ft":10,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK65","iata":"","local":"OK65","name":"Hillcrest Hospital Cushing Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Cushing","elevation_ft":914,"latitude":35.97816,"longitude":-96.757479,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK66","iata":"","local":"","name":"F.W. Zaloudek Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Kremlin","elevation_ft":1118,"latitude":36.556702,"longitude":-97.836371,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1287,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK69","iata":"","local":"","name":"Monarch Field","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Chelsea","elevation_ft":755,"latitude":36.525101,"longitude":-95.466904,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK73","iata":"","local":"OK73","name":"Hillcrest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Henryetta","elevation_ft":780,"latitude":35.438694,"longitude":-96.015824,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK72","iata":"","local":"OK72","name":"Trust Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Chester","elevation_ft":1730,"latitude":36.212716,"longitude":-98.903291,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK75","iata":"","local":"OK75","name":"Purcell Municipal Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Purcell","elevation_ft":1160,"latitude":35.02840042114258,"longitude":-97.3656005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK76","iata":"","local":"OK76","name":"Channel 8 Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Tulsa","elevation_ft":910,"latitude":36.115864,"longitude":-96.026656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK67","iata":"","local":"OK67","name":"Ramsak Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Duncan","elevation_ft":1228,"latitude":34.547095,"longitude":-97.909616,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK62","iata":"","local":"OK62","name":"Strader Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Ardmore","elevation_ft":850,"latitude":34.24869918823242,"longitude":-97.20919799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK68","iata":"","local":"OK68","name":"6B Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Bokchito","elevation_ft":542,"latitude":33.878781,"longitude":-96.082528,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2838,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK81","iata":"","local":"","name":"Homer Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Talihina","elevation_ft":570,"latitude":34.66263,"longitude":-95.07089,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1280,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK82","iata":"","local":"OK82","name":"Scottys Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Altus","elevation_ft":1425,"latitude":34.69169998168945,"longitude":-99.34480285644533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK83","iata":"","local":"","name":"Sheffield-Smith Airstrip","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Altus","elevation_ft":1355,"latitude":34.575769,"longitude":-99.35127,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK84","iata":"","local":"OK84","name":"Whittaker Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Pryor","elevation_ft":643,"latitude":36.29650115966797,"longitude":-95.30580139160156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK86","iata":"","local":"OK86","name":"Stroud Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Stroud","elevation_ft":900,"latitude":35.748464,"longitude":-96.683761,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK87","iata":"","local":"","name":"Renavair Field","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Wynnewood","elevation_ft":905,"latitude":34.654999,"longitude":-97.214699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK88","iata":"","local":"","name":"Silverwood Ultralightport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Broken Arrow","elevation_ft":632,"latitude":36.0101,"longitude":-95.843597,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3045,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK89","iata":"","local":"","name":"Stuart Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Caney","elevation_ft":624,"latitude":34.1466,"longitude":-96.15429,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1396,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK91","iata":"","local":"","name":"Stidham Private Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Chickasha","elevation_ft":1177,"latitude":34.983398,"longitude":-97.933701,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK92","iata":"","local":"OK92","name":"Wetumka Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Wetumka","elevation_ft":745,"latitude":35.23347,"longitude":-96.238629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK93","iata":"","local":"OK93","name":"Airman Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Collinsville","elevation_ft":695,"latitude":36.33340072631836,"longitude":-95.88359832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2650,"width_ft":230,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK94","iata":"","local":"OK94","name":"Sand Ridge Airpark Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Collinsville","elevation_ft":675,"latitude":36.35480117797852,"longitude":-95.80329895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2545,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK95","iata":"","local":"OK95","name":"Disney Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Disney","elevation_ft":955,"latitude":36.48899841308594,"longitude":-94.9582977294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK98","iata":"","local":"","name":"King Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Lookeba","elevation_ft":1535,"latitude":35.37401,"longitude":-98.48033,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2225,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK99","iata":"","local":"","name":"Unity Health Center Heliport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Shawnee","elevation_ft":1073,"latitude":35.362864,"longitude":-96.93665,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OKAS","iata":"","local":"","name":"Ali Al Salem Air Base","category":"medium_airport","iso_country":"KW","iso_region":"KW-JA","municipality":"Al Damaikhi","elevation_ft":472,"latitude":29.344632,"longitude":47.511215,"has_tower":true,"has_beacon":false,"runways":[{"id":"12L/30R","length_ft":9805,"width_ft":132,"surface":"H"},{"id":"12R/30L","length_ft":9805,"width_ft":146,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL00","iata":"","local":"OL00","name":"Pauls Valley State School Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Pauls Valley","elevation_ft":748,"latitude":34.691574,"longitude":-97.211024,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL06","iata":"","local":"OL06","name":"Bristow Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Bristow","elevation_ft":840,"latitude":35.83340072631836,"longitude":-96.40029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL07","iata":"","local":"OL07","name":"Carnegie Municipal Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Carnegie","elevation_ft":1234,"latitude":35.11669921875,"longitude":-98.60030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL08","iata":"","local":"OL08","name":"L.J. Pankey Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Cheyenne","elevation_ft":1973,"latitude":35.609798431396484,"longitude":-99.67120361328124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OK97","iata":"","local":"OK97","name":"Ketchum Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Duncan","elevation_ft":1100,"latitude":34.53340148925781,"longitude":-97.76699829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OK96","iata":"","local":"OK96","name":"Ives Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Wellston","elevation_ft":1035,"latitude":35.75640106201172,"longitude":-97.08480072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL02","iata":"","local":"OL02","name":"West Buttercreek Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Echo","elevation_ft":917,"latitude":45.66529846191406,"longitude":-119.38600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2560,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL11","iata":"","local":"OL11","name":"Medical Center of Southeastern Oklahoma Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Durant","elevation_ft":700,"latitude":34.006691,"longitude":-96.392818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL12","iata":"","local":"","name":"Northwest Edmond Airport","category":"closed","iso_country":"US","iso_region":"US-OK","municipality":"Edmond","elevation_ft":1070,"latitude":35.7076,"longitude":-97.540604,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1011,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL14","iata":"","local":"OL14","name":"Harbor's in Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Ketchum","elevation_ft":760,"latitude":36.552978,"longitude":-94.97045,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL15","iata":"","local":"OL15","name":"Midwest City Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Midwest City","elevation_ft":1232,"latitude":35.47090148925781,"longitude":-97.3927993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL16","iata":"","local":"OL16","name":"Mercy Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1143,"latitude":35.600101470947266,"longitude":-97.60030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL17","iata":"","local":"OL17","name":"Stilwell Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Stilwell","elevation_ft":1100,"latitude":35.80967,"longitude":-94.6436,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL25","iata":"","local":"OL25","name":"Eagle Chief Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Cleo Springs","elevation_ft":1199,"latitude":36.401963,"longitude":-98.452982,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1813,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL24","iata":"","local":"OL24","name":"Ronka Rhey Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Luther","elevation_ft":981,"latitude":35.735819,"longitude":-97.189254,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL26","iata":"","local":"OL26","name":"Goaround Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Boswell","elevation_ft":606,"latitude":33.900698,"longitude":-95.836058,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL28","iata":"","local":"OL28","name":"Cedar & Sky Fly in Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Geary","elevation_ft":1588,"latitude":35.583878,"longitude":-98.304101,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2576,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL29","iata":"","local":"OL29","name":"Echo Mountain Airfield","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Elgin","elevation_ft":1312,"latitude":34.762553,"longitude":-98.446657,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1294,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL34","iata":"","local":"OL34","name":"Wilburton Medical Evac Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Wilburton","elevation_ft":654,"latitude":34.918707,"longitude":-95.320854,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL40","iata":"","local":"OL40","name":"Patti Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Cushing","elevation_ft":760,"latitude":36.043779,"longitude":-96.63184,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2973,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL27","iata":"","local":"OL27","name":"Faith Field","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Marietta","elevation_ft":791,"latitude":34.031456,"longitude":-97.00931,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2568,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL36","iata":"","local":"OL36","name":"Trophy Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Pawhuska","elevation_ft":987,"latitude":36.98895,"longitude":-96.321929,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":980,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL35","iata":"","local":"OL35","name":"Aviation Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Mounds","elevation_ft":775,"latitude":35.860129,"longitude":-96.082036,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1170,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL39","iata":"","local":"OL39","name":"Midway Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Stroud","elevation_ft":853,"latitude":35.698611,"longitude":-96.6775,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2477,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL38","iata":"","local":"OL38","name":"Bratton Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Poteau","elevation_ft":457,"latitude":35.08558,"longitude":-94.594951,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OL44","iata":"","local":"OL44","name":"Porter Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Retrop","elevation_ft":1807,"latitude":35.133056,"longitude":-99.383889,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1213,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL45","iata":"","local":"OL45","name":"Tornado Allie Heliport","category":"heliport","iso_country":"US","iso_region":"US-OK","municipality":"Oklahoma City","elevation_ft":1368,"latitude":35.434167,"longitude":-97.788056,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR63","iata":"","local":"OR63","name":"Seaside Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Seaside","elevation_ft":10,"latitude":45.84149932861328,"longitude":-123.927001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OL56","iata":"","local":"OL56","name":"GK Edwards Airport","category":"small_airport","iso_country":"US","iso_region":"US-OK","municipality":"Guthrie","elevation_ft":1108,"latitude":35.88625,"longitude":-97.322361,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1115,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OMU9","iata":"","local":"OMU9","name":"Kollmeyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pilot Grove","elevation_ft":810,"latitude":38.88420104980469,"longitude":-92.9854965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR01","iata":"","local":"","name":"Douglas Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Roseburg","elevation_ft":450,"latitude":43.2154254423,"longitude":-123.357367516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2342,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR03","iata":"","local":"","name":"Turel Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Beaverton","elevation_ft":670,"latitude":45.4482,"longitude":-122.849998,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR07","iata":"","local":"OR07","name":"Weddle Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Long Creek","elevation_ft":3823,"latitude":44.762402,"longitude":-119.101878,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR08","iata":"","local":"OR08","name":"Barton Lake Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Diamond","elevation_ft":4159,"latitude":43.128492,"longitude":-118.67701,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR00","iata":"","local":"OR00","name":"Flying K Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Beaverton","elevation_ft":350,"latitude":45.433933,"longitude":-122.873709,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1700,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR05","iata":"","local":"OR05","name":"Flying M Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Yamhill","elevation_ft":448,"latitude":45.362098693847656,"longitude":-123.3560028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR04","iata":"","local":"OR04","name":"Kennel Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3595,"latitude":44.029598236083984,"longitude":-121.16500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OPNH","iata":"WNS","local":"","name":"Shaheed Benazirabad Airport","category":"medium_airport","iso_country":"PK","iso_region":"PK-SD","municipality":"Nawabashah","elevation_ft":95,"latitude":26.2194,"longitude":68.390099,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":8999,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR17","iata":"","local":"OR17","name":"Oxbow Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Prairie City","elevation_ft":3972,"latitude":44.41067,"longitude":-118.691225,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3100,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR15","iata":"","local":"OR15","name":"Horseman Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3420,"latitude":44.14680099487305,"longitude":-121.37100219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR16","iata":"","local":"","name":"Umpleby Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"North Powder","elevation_ft":3412,"latitude":45.057311,"longitude":-117.968002,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR18","iata":"","local":"OR18","name":"Davis Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Adams","elevation_ft":1550,"latitude":45.774087,"longitude":-118.559845,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR19","iata":"","local":"","name":"Propst Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Albany","elevation_ft":239,"latitude":44.638699,"longitude":-123.023003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR12","iata":"","local":"OR12","name":"Oxbow Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Homestead","elevation_ft":1806,"latitude":45.00429916381836,"longitude":-116.8489990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR09","iata":"","local":"OR09","name":"Whitehorse Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Fields","elevation_ft":4447,"latitude":42.33560180664063,"longitude":-118.25800323486328,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3025,"width_ft":94,"surface":"D"},{"id":"12/30","length_ft":3247,"width_ft":94,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR21","iata":"","local":"OR21","name":"Miller Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Albany","elevation_ft":279,"latitude":44.59320068359375,"longitude":-122.98999786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1700,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR20","iata":"","local":"OR20","name":"Hemmingson Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Albany","elevation_ft":250,"latitude":44.658199310302734,"longitude":-123.14299774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1250,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR11","iata":"","local":"OR11","name":"Jensens Strip","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Haines","elevation_ft":3350,"latitude":44.91162,"longitude":-117.9582,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR30","iata":"","local":"OR30","name":"D M Stevenson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3800,"latitude":44.00320053100586,"longitude":-121.27200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR26","iata":"","local":"","name":"Farr Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Lakeview","elevation_ft":4775,"latitude":42.127701,"longitude":-120.484001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR24","iata":"","local":"OR24","name":"Barrett Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Athena","elevation_ft":1738,"latitude":45.821201324463,"longitude":-118.49800109863,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR29","iata":"","local":"","name":"Gopher Gulch Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Bend","elevation_ft":3480,"latitude":44.111747,"longitude":-121.334648,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2126,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR31","iata":"","local":"","name":"Newberg Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Newberg","elevation_ft":185,"latitude":45.304298,"longitude":-122.963996,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":990,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR32","iata":"","local":"","name":"Simtag Farms Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Boardman","elevation_ft":550,"latitude":45.752561,"longitude":-119.944717,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR33","iata":"","local":"OR33","name":"Central Cascades Fire and EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Crescent Lake Junction","elevation_ft":4750,"latitude":43.5267982483,"longitude":-121.947998047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR28","iata":"","local":"OR28","name":"Harvey's Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Beaverton","elevation_ft":250,"latitude":45.439328,"longitude":-122.890283,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR25","iata":"","local":"OR25","name":"Flying E Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Aumsville","elevation_ft":325,"latitude":44.84479904174805,"longitude":-122.9010009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR23","iata":"","local":"OR23","name":"Karpens Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Astoria","elevation_ft":125,"latitude":46.161399841308594,"longitude":-123.63999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":75,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR36","iata":"","local":"","name":"Garvins Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Brookings","elevation_ft":250,"latitude":42.067101,"longitude":-124.295998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR37","iata":"","local":"OR37","name":"Lincoln Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Tigard","elevation_ft":370,"latitude":45.445098876953125,"longitude":-122.77400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR42","iata":"","local":"","name":"Norway Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Myrtle Point","elevation_ft":23,"latitude":43.1026,"longitude":-124.161003,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4983,"width_ft":70,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR43","iata":"","local":"OR43","name":"Hood River Fire Dept Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Hood River","elevation_ft":488,"latitude":45.7028999329,"longitude":-121.529998779,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR44","iata":"","local":"","name":"Briggs Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Coburg","elevation_ft":387,"latitude":44.153301,"longitude":-123.065002,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1943,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR38","iata":"","local":"OR38","name":"Western Helicopter Services Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Brooks","elevation_ft":183,"latitude":45.079309,"longitude":-122.92594,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2290,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR41","iata":"","local":"OR41","name":"Workman Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Canby","elevation_ft":210,"latitude":45.207153,"longitude":-122.669435,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2240,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR46","iata":"","local":"OR46","name":"Ajax Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Condon","elevation_ft":2165,"latitude":45.381186,"longitude":-120.46992,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2500,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR35","iata":"","local":"OR35","name":"Flying K Bar J Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Boring","elevation_ft":635,"latitude":45.442505,"longitude":-122.320204,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR40","iata":"","local":"OR40","name":"Dietz Airpark","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Canby","elevation_ft":180,"latitude":45.25569915771485,"longitude":-122.6510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2640,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR49","iata":"","local":"OR49","name":"Bay Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Coos Bay","elevation_ft":93,"latitude":43.382939,"longitude":-124.232106,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR55","iata":"","local":"OR55","name":"Good Samaritan Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Corvallis","elevation_ft":340,"latitude":44.6044933803,"longitude":-123.251892328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR58","iata":"","local":"","name":"Mazama Timber Pad Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Creswell","elevation_ft":535,"latitude":43.9165,"longitude":-123.010002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR60","iata":"","local":"","name":"Fargher Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Dufur","elevation_ft":1440,"latitude":45.436424,"longitude":-121.166543,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1496,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR62","iata":"","local":"","name":"Rainier Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Rainier","elevation_ft":15,"latitude":46.103199,"longitude":-122.987999,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1150,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR61","iata":"","local":"OR61","name":"Apple Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Buxton","elevation_ft":247,"latitude":45.67839813232422,"longitude":-123.18599700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2470,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR51","iata":"","local":"OR51","name":"Gillette Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Scio","elevation_ft":735,"latitude":44.71960067749024,"longitude":-122.6999969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR50","iata":"","local":"OR50","name":"Lehman Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Corbett","elevation_ft":1003,"latitude":45.48569869995117,"longitude":-122.23400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR53","iata":"","local":"OR53","name":"Wapinitia Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Wapinitia","elevation_ft":1910,"latitude":45.14569854736328,"longitude":-121.22899627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2400,"width_ft":88,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR59","iata":"","local":"OR59","name":"Trivelpiece Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Yamhill","elevation_ft":165,"latitude":45.33150100708008,"longitude":-123.20700073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR67","iata":"","local":"","name":"McGill Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Estacada","elevation_ft":370,"latitude":45.336569,"longitude":-122.398356,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":851,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR68","iata":"","local":"OR68","name":"Columbia Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Aurora","elevation_ft":195,"latitude":45.258598327637,"longitude":-122.76499938965,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR69","iata":"","local":"OR69","name":"Sacred Heart General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Eugene","elevation_ft":498,"latitude":44.04710006713867,"longitude":-123.07599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR71","iata":"","local":"OR68","name":"Columbia Aviation Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Aurora","elevation_ft":195,"latitude":45.250599,"longitude":-122.765999,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR75","iata":"","local":"OR75","name":"Brownlee Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Brownlee Village","elevation_ft":1860,"latitude":44.8466197854,"longitude":-116.898694038,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR76","iata":"","local":"","name":"Waynes Air Service Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Halsey","elevation_ft":285,"latitude":44.363201,"longitude":-123.139999,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1203,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR70","iata":"","local":"OR70","name":"Pine Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Halfway","elevation_ft":2577,"latitude":44.8596,"longitude":-117.087997,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":30,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR78","iata":"","local":"OR78","name":"Daniels Field","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Harrisburg","elevation_ft":320,"latitude":44.270521,"longitude":-123.06208,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR66","iata":"","local":"OR66","name":"Beaver Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Estacada","elevation_ft":400,"latitude":45.317711,"longitude":-122.363205,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR72","iata":"","local":"OR72","name":"Fly JLA Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Boring","elevation_ft":620,"latitude":45.441893,"longitude":-122.323619,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR77","iata":"","local":"OR77","name":"Faust Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Independence","elevation_ft":175,"latitude":44.80224,"longitude":-123.155794,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1675,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR79","iata":"","local":"","name":"Knox's Private Airstrip","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Harrisburg","elevation_ft":313,"latitude":44.281123,"longitude":-123.134646,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1031,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR80","iata":"","local":"","name":"Teufel's Farm Strip","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Hillsboro","elevation_ft":200,"latitude":45.509601593,"longitude":-122.971000671,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1330,"width_ft":38,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR82","iata":"","local":"","name":"United Telephone System Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Hood River","elevation_ft":100,"latitude":45.713027,"longitude":-121.532269,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2096,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR83","iata":"","local":"OR83","name":"Oxbow Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Oxbow Village","elevation_ft":1900,"latitude":44.81650161743164,"longitude":-116.85900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR84","iata":"","local":"","name":"La Pine Heliport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"La Pine","elevation_ft":4230,"latitude":43.6646,"longitude":-121.508003,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2764,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR85","iata":"","local":"","name":"Wigrich Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Independence","elevation_ft":165,"latitude":44.812302,"longitude":-123.150002,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1701,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR89","iata":"","local":"OR89","name":"Kinzua Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Kinzua","elevation_ft":3966,"latitude":44.99990081787109,"longitude":-120.0530014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3600,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR88","iata":"","local":"OR88","name":"Jantzer Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Grants Pass","elevation_ft":980,"latitude":42.440102,"longitude":-123.279999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":21,"width_ft":21,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR91","iata":"","local":"OR91","name":"Big Bar Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Homestead","elevation_ft":1800,"latitude":45.12490081787109,"longitude":-116.74700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR92","iata":"","local":"","name":"Billiebob Ultralightport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Grants Pass","elevation_ft":1000,"latitude":42.391499,"longitude":-123.436996,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2756,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR93","iata":"","local":"OR93","name":"Samaritan North Lincoln Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Lincoln City","elevation_ft":50,"latitude":44.986276,"longitude":-123.994141,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR97","iata":"","local":"","name":"Burrill Airport","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Medford","elevation_ft":1310,"latitude":42.438702,"longitude":-122.863998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR98","iata":"","local":"","name":"Seneca Emergency Airstrip","category":"closed","iso_country":"US","iso_region":"US-OR","municipality":"Seneca","elevation_ft":4666,"latitude":44.138055,"longitude":-118.959446,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR99","iata":"","local":"OR99","name":"Rogue Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-OR","municipality":"Medford","elevation_ft":1475,"latitude":42.317975,"longitude":-122.831751,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ORER","iata":"EBL","local":"","name":"Erbil International Airport","category":"medium_airport","iso_country":"IQ","iso_region":"IQ-AR","municipality":"Arbil","elevation_ft":1341,"latitude":36.23759841918945,"longitude":43.96319961547852,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":15748,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ORMM","iata":"BSR","local":"","name":"Basra International Airport","category":"medium_airport","iso_country":"IQ","iso_region":"IQ-BA","municipality":"Basra","elevation_ft":11,"latitude":30.549101,"longitude":47.662102,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":13146,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ORNI","iata":"NJF","local":"","name":"Al Najaf International Airport","category":"medium_airport","iso_country":"IQ","iso_region":"IQ-NA","municipality":"Najaf","elevation_ft":103,"latitude":31.989853,"longitude":44.404317,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA62","iata":"","local":"PA62","name":"Temple University Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":47,"latitude":40.00556,"longitude":-75.150379,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OR94","iata":"","local":"OR94","name":"Showa Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Brownsville","elevation_ft":298,"latitude":44.391700744628906,"longitude":-123.02999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2050,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OR95","iata":"","local":"OR95","name":"Vineyard Airport","category":"small_airport","iso_country":"US","iso_region":"US-OR","municipality":"Mc Coy","elevation_ft":190,"latitude":45.049800872802734,"longitude":-123.23500061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ORSU","iata":"ISU","local":"OSO","name":"Sulaymaniyah International Airport","category":"medium_airport","iso_country":"IQ","iso_region":"IQ-SW","municipality":"Sulaymaniyah","elevation_ft":2494,"latitude":35.5617485046,"longitude":45.3167381287,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OSAP","iata":"ALP","local":"","name":"Aleppo International Airport","category":"medium_airport","iso_country":"SY","iso_region":"SY-HL","municipality":"Aleppo","elevation_ft":1276,"latitude":36.180698,"longitude":37.2244,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9547,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OSKL","iata":"KAC","local":"","name":"Qamishli Airport","category":"medium_airport","iso_country":"SY","iso_region":"SY-HA","municipality":"Qamishly","elevation_ft":1480,"latitude":37.020599,"longitude":41.191399,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":11860,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OSLK","iata":"LTK","local":"","name":"Hmeimim Air Base","category":"medium_airport","iso_country":"SY","iso_region":"SY-LA","municipality":"Latakia","elevation_ft":157,"latitude":35.4011,"longitude":35.9487,"has_tower":true,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OYAA","iata":"ADE","local":"","name":"Aden International Airport","category":"medium_airport","iso_country":"YE","iso_region":"YE-AD","municipality":"Aden","elevation_ft":7,"latitude":12.8295,"longitude":45.028801,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":10171,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"OYAT","iata":"AXK","local":"","name":"Ataq Airport","category":"medium_airport","iso_country":"YE","iso_region":"YE-SH","municipality":"Ataq","elevation_ft":3735,"latitude":14.5513,"longitude":46.826199,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9514,"width_ft":164,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OYHD","iata":"HOD","local":"","name":"Hodeidah International Airport","category":"medium_airport","iso_country":"YE","iso_region":"YE-HU","municipality":"Hodeida","elevation_ft":41,"latitude":14.753000259399414,"longitude":42.97629928588867,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OYSN","iata":"SAH","local":"","name":"Sana'a International Airport","category":"medium_airport","iso_country":"YE","iso_region":"YE-SN","municipality":"Sana'a","elevation_ft":7216,"latitude":15.476300239562988,"longitude":44.21969985961914,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":10669,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OYGD","iata":"AAY","local":"","name":"Al Ghaydah International Airport","category":"medium_airport","iso_country":"YE","iso_region":"YE-MR","municipality":"Al Ghaydah","elevation_ft":134,"latitude":16.193341,"longitude":52.174186,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8858,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA03","iata":"","local":"PA03","name":"Hospital of the University of Pennsylvania Maloney Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":193,"latitude":39.949766,"longitude":-75.193085,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA04","iata":"","local":"PA04","name":"Brookville Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Brookville","elevation_ft":1516,"latitude":41.15650177001953,"longitude":-79.09310150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA06","iata":"","local":"PA06","name":"Pacer Place Heliport","category":"heliport","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":367,"latitude":61.129694,"longitude":-149.795918,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA10","iata":"","local":"PA10","name":"Penn Highlands Healthcare - Du Bois Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Du Bois","elevation_ft":1467,"latitude":41.114438,"longitude":-78.773983,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA11","iata":"","local":"PA11","name":"The Gettysburg Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":554,"latitude":39.82469940185547,"longitude":-77.23560333251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA12","iata":"","local":"PA12","name":"Commonwealth Security Systems Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":385,"latitude":40.04230117797852,"longitude":-76.38829803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA13","iata":"","local":"","name":"Superior Tours Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":320,"latitude":40.029301,"longitude":-76.224403,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA14","iata":"","local":"PA14","name":"Battlefield Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":560,"latitude":39.7848014831543,"longitude":-77.25669860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA15","iata":"","local":"PA15","name":"Couillard Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-PA","municipality":"Martins Creek","elevation_ft":210,"latitude":40.775001525878906,"longitude":-75.14140319824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":3000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA16","iata":"","local":"PA16","name":"Shadyside Health Education & Research Corp Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1037,"latitude":40.4551010131836,"longitude":-79.94029998779297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA02","iata":"","local":"PA02","name":"Dillen Personal Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Edinboro","elevation_ft":1028,"latitude":41.85073,"longitude":-80.11964,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1345,"width_ft":104,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA22","iata":"","local":"","name":"Hermitage Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Sharon","elevation_ft":1100,"latitude":41.201389,"longitude":-80.422604,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA24","iata":"","local":"PA24","name":"Latrobe Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Latrobe","elevation_ft":1039,"latitude":40.3203010559082,"longitude":-79.39360046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA26","iata":"","local":"PA26","name":"WXKW Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":385,"latitude":40.637024,"longitude":-75.481667,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA27","iata":"","local":"PA27","name":"Butz Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":454,"latitude":40.60430145263672,"longitude":-75.56210327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA28","iata":"","local":"PA28","name":"Excela Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Greensburg","elevation_ft":1100,"latitude":40.300825,"longitude":-79.5559,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA29","iata":"","local":"PA29","name":"Frick Hospital & Community Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mount Pleasant","elevation_ft":1240,"latitude":40.145301818847656,"longitude":-79.55059814453125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA32","iata":"","local":"PA32","name":"Ashland Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Ashland","elevation_ft":1060,"latitude":40.78340148925781,"longitude":-76.33300018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA34","iata":"","local":"","name":"T N Ward Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Bala Cynwyd","elevation_ft":150,"latitude":40.016803,"longitude":-75.241303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA31","iata":"","local":"PA31","name":"Rover Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Annville","elevation_ft":500,"latitude":40.28340148925781,"longitude":-76.53939819335938,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA33","iata":"","local":"PA33","name":"Lars/Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Athens","elevation_ft":1300,"latitude":41.9501,"longitude":-76.483002,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1430,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA21","iata":"","local":"PA21","name":"West Middlesex Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"West Middlesex","elevation_ft":1100,"latitude":41.16529846191406,"longitude":-80.50260162353516,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2300,"width_ft":220,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA37","iata":"","local":"PA37","name":"Sci-Mahanoy Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mahanoy","elevation_ft":1500,"latitude":40.820899963378906,"longitude":-76.16210174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA38","iata":"","local":"","name":"Beaver Run Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Quakertown","elevation_ft":510,"latitude":40.433399,"longitude":-75.366303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA41","iata":"","local":"PA41","name":"Butler Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Butler","elevation_ft":1190,"latitude":40.86669921875,"longitude":-79.88140106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA42","iata":"","local":"","name":"Berwick Hospital Corporation Personal Use Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Berwick","elevation_ft":581,"latitude":41.070418,"longitude":-76.230683,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA43","iata":"","local":"","name":"Arnold Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Birdsboro","elevation_ft":680,"latitude":40.266803,"longitude":-75.883003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA44","iata":"","local":"","name":"Stone Castle Motel Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Bloomsburg","elevation_ft":585,"latitude":40.973598,"longitude":-76.5186,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA46","iata":"","local":"PA46","name":"Horizon Hospital System, Greenville Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Greenville","elevation_ft":1047,"latitude":41.41170120239258,"longitude":-80.372802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA35","iata":"","local":"PA35","name":"Bally Spring Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bally","elevation_ft":660,"latitude":40.43199920654297,"longitude":-75.6259994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA47","iata":"","local":"PA47","name":"Cloudbound Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":600,"latitude":39.780799865722656,"longitude":-77.27870178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2020,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA39","iata":"","local":"PA39","name":"Beaver Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Benfer","elevation_ft":642,"latitude":40.776500701904,"longitude":-77.216400146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA45","iata":"","local":"PA45","name":"Logue Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bodines","elevation_ft":1320,"latitude":41.41669845581055,"longitude":-76.93299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":180,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA48","iata":"","local":"PA48","name":"Holy Spirit A Geisinger Affiliate Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":426,"latitude":40.25227,"longitude":-76.920639,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA50","iata":"","local":"PA50","name":"Bloomsburg Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bloomsburg","elevation_ft":660,"latitude":41.009498596191406,"longitude":-76.45240020751953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA56","iata":"","local":"PA56","name":"UPMC Passavant Cranberry Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Cranberry","elevation_ft":1100,"latitude":40.68373,"longitude":-80.097134,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA57","iata":"","local":"PA57","name":"Grove City Medical Ctr Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Grove City","elevation_ft":1255,"latitude":41.171447,"longitude":-80.084222,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA59","iata":"","local":"PA59","name":"Cast & Baker Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Canonsburg","elevation_ft":1246,"latitude":40.24449920654297,"longitude":-80.18170166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA60","iata":"","local":"PA60","name":"Chambersburg Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Chambersburg","elevation_ft":640,"latitude":39.93949890136719,"longitude":-77.64800262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA51","iata":"","local":"PA51","name":"Bowtie Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Biglerville","elevation_ft":560,"latitude":39.90850067138672,"longitude":-77.2052001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA53","iata":"","local":"PA53","name":"Cosklos Elkview Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Carbondale","elevation_ft":1710,"latitude":41.62699890136719,"longitude":-75.5281982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA49","iata":"","local":"PA49","name":"Mountain Bay Air Park Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Greentown","elevation_ft":1500,"latitude":41.3801,"longitude":-75.232399,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2230,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA54","iata":"","local":"PA54","name":"Kellachows Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Carbondale","elevation_ft":1430,"latitude":41.52230072021485,"longitude":-75.39600372314453,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2555,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA52","iata":"","local":"PA52","name":"Oberlander Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Union City","elevation_ft":1626,"latitude":41.859333,"longitude":-79.907167,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA63","iata":"","local":"PA63","name":"WPXI-TV Evergreen Road Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1106,"latitude":40.495057,"longitude":-80.010767,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA67","iata":"","local":"PA67","name":"Allegheny Hospitals Canonsburg Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Canonsburg","elevation_ft":1169,"latitude":40.24720001220703,"longitude":-80.19139862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA78","iata":"","local":"","name":"Tintinhull Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Erwinna","elevation_ft":350,"latitude":40.500099,"longitude":-75.0829,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA79","iata":"","local":"PA79","name":"Tinicum Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Erwinna","elevation_ft":280,"latitude":40.52930068969727,"longitude":-75.09960174560547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":525,"width_ft":285,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA80","iata":"","local":"PA80","name":"St Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Fountain Hill","elevation_ft":470,"latitude":40.6083984375,"longitude":-75.4031982421875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA68","iata":"","local":"PA68","name":"Bugs Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Nazareth","elevation_ft":430,"latitude":40.712943,"longitude":-75.308055,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA72","iata":"","local":"PA72","name":"Circle W Airfield","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"East Berlin","elevation_ft":460,"latitude":39.95869827270508,"longitude":-76.9708023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA70","iata":"","local":"PA70","name":"Fetters Construction Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Downingtown","elevation_ft":500,"latitude":40.09180068969727,"longitude":-75.71080017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1820,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA74","iata":"","local":"PA74","name":"Gusler Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Halifax","elevation_ft":700,"latitude":40.465242,"longitude":-76.840664,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA71","iata":"","local":"PA71","name":"Dwight's Delight Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Dushore","elevation_ft":1717,"latitude":41.52090072631836,"longitude":-76.46219635009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1990,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA75","iata":"","local":"PA75","name":"Baker Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Elkland","elevation_ft":1800,"latitude":41.9650993347168,"longitude":-77.31580352783203,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA87","iata":"","local":"PA87","name":"TEK Park Breinigsville Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Breinigsville","elevation_ft":460,"latitude":40.545752,"longitude":-75.661856,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA91","iata":"","local":"PA91","name":"UPMC Kane Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Kane","elevation_ft":2008,"latitude":41.671191,"longitude":-78.817911,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA93","iata":"","local":"PA93","name":"Cherokee Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Brick Church Village","elevation_ft":1175,"latitude":40.685001373291016,"longitude":-79.45670318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA94","iata":"","local":"PA94","name":"Sharon General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Sharon","elevation_ft":980,"latitude":41.23260116577149,"longitude":-80.49649810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA95","iata":"","local":"PA95","name":"Turnpike Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Harrisburg","elevation_ft":348,"latitude":40.21680068969727,"longitude":-76.78299713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA97","iata":"","local":"PA97","name":"Warren General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Warren","elevation_ft":1178,"latitude":41.84389877319336,"longitude":-79.15480041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA99","iata":"","local":"PA99","name":"St Lukes/Gnaden Huetten Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lehighton","elevation_ft":600,"latitude":40.83263,"longitude":-75.727088,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PA84","iata":"","local":"PA84","name":"Level Acres Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Thomasville","elevation_ft":523,"latitude":39.953819,"longitude":-76.909261,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA81","iata":"","local":"PA81","name":"5 Lakes Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Fayetteville","elevation_ft":819,"latitude":39.91279983520508,"longitude":-77.53279876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PA82","iata":"","local":"PA82","name":"Grayce Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Fleetville","elevation_ft":1300,"latitude":41.60010147094727,"longitude":-75.68299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAAP","iata":"PTD","local":"AHP","name":"Port Alexander Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Port Alexander","elevation_ft":0,"latitude":56.246799,"longitude":-134.647995,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAAT","iata":"","local":"","name":"Casco Cove Coast Guard Station","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Attu","elevation_ft":40,"latitude":52.829797,"longitude":173.173796,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5998,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PABG","iata":"BVU","local":"BLG","name":"Beluga Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Beluga","elevation_ft":130,"latitude":61.1721992493,"longitude":-151.044006348,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5002,"width_ft":100,"surface":"G"},{"id":"09/27","length_ft":2505,"width_ft":60,"surface":"G"},{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAAN","iata":"","local":"AK7","name":"Gold King Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Fairbanks","elevation_ft":1720,"latitude":64.198328,"longitude":-147.929492,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2558,"width_ft":17,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAAM","iata":"","local":"AK23","name":"Driftwood Bay Air Force Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Dutch Harbor","elevation_ft":24,"latitude":53.9729499817,"longitude":-166.858459473,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3500,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PACL","iata":"","local":"Z84","name":"Clear Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Clear","elevation_ft":552,"latitude":64.299738,"longitude":-149.117432,"has_tower":false,"has_beacon":true,"runways":[{"id":"01/19","length_ft":3997,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PABU","iata":"","local":"8AK7","name":"Bullen Point Short Range Radar Station Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kaktovik","elevation_ft":18,"latitude":70.170999,"longitude":-146.844897,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3520,"width_ft":100,"surface":"G"},{"id":"H1","length_ft":160,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PACK","iata":"CYF","local":"CFK","name":"Chefornak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chefornak","elevation_ft":49,"latitude":60.136667,"longitude":-164.279167,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3230,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PACE","iata":"CEM","local":"CEM","name":"Central Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Central","elevation_ft":937,"latitude":65.57379913,"longitude":-144.7830048,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":2782,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PADM","iata":"MLL","local":"MDM","name":"Marshall Don Hunter Sr Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Marshall","elevation_ft":103,"latitude":61.8642997742,"longitude":-162.026000977,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3200,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PADG","iata":"RDB","local":"DGG","name":"Red Dog Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Red Dog","elevation_ft":969,"latitude":68.032097,"longitude":-162.899002,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6312,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PACS","iata":"","local":"26AK","name":"Cape Sarichef Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cape Sarichef","elevation_ft":291,"latitude":54.583934,"longitude":-164.905727,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1900,"width_ft":90,"surface":"G"},{"id":"16/34","length_ft":3500,"width_ft":120,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAEL","iata":"ELV","local":"ELV","name":"Elfin Cove Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Elfin Cove","elevation_ft":0,"latitude":58.1952018738,"longitude":-136.347000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":10000,"width_ft":1500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAEW","iata":"","local":"","name":"Newtok Airport","category":"closed","iso_country":"US","iso_region":"US-AK","municipality":"Newtok","elevation_ft":25,"latitude":60.939098,"longitude":-164.641006,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3300,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAEE","iata":"EEK","local":"EEK","name":"Eek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Eek","elevation_ft":12,"latitude":60.21367264,"longitude":-162.0438843,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3242,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAEM","iata":"EMK","local":"ENM","name":"Emmonak Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Emmonak","elevation_ft":13,"latitude":62.78609848,"longitude":-164.4909973,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4601,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAFE","iata":"","local":"AFE","name":"Kake Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kake","elevation_ft":172,"latitude":56.961312,"longitude":-133.910202,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAFK","iata":"","local":"FKK","name":"Farewell Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Farewell Lake","elevation_ft":1052,"latitude":62.5425,"longitude":-153.623001,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAFL","iata":"","local":"TNW","name":"Tin Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Farewell Lake","elevation_ft":1151,"latitude":62.532191,"longitude":-153.612809,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":12,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAGB","iata":"GBH","local":"GBH","name":"Galbraith Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Galbraith Lake","elevation_ft":2663,"latitude":68.4796981812,"longitude":-149.490005493,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":5182,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAFM","iata":"ABL","local":"AFM","name":"Ambler Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Ambler","elevation_ft":334,"latitude":67.107043,"longitude":-157.854308,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4000,"width_ft":75,"surface":"G"},{"id":"10/28","length_ft":2400,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAGG","iata":"KWK","local":"GGV","name":"Kwigillingok Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kwigillingok","elevation_ft":18,"latitude":59.876499,"longitude":-163.169005,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1835,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAGN","iata":"AGN","local":"AGN","name":"Angoon Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Angoon","elevation_ft":0,"latitude":57.497097,"longitude":-134.56722,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":10000,"width_ft":900,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAGQ","iata":"BGQ","local":"BGQ","name":"Big Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Big Lake","elevation_ft":158,"latitude":61.534658,"longitude":-149.812936,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":2450,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAHP","iata":"HPB","local":"HPB","name":"Hooper Bay Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Hooper Bay","elevation_ft":13,"latitude":61.52389908,"longitude":-166.1470032,"has_tower":false,"has_beacon":true,"runways":[{"id":"14/32","length_ft":3300,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAGM","iata":"GAM","local":"GAM","name":"Gambell Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Gambell","elevation_ft":27,"latitude":63.76679992675781,"longitude":-171.73300170898438,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":4500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAGT","iata":"NME","local":"IGT","name":"Nightmute Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nightmute","elevation_ft":4,"latitude":60.469129,"longitude":-164.70407,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3200,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAHY","iata":"HYG","local":"HYG","name":"Hydaburg Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Hydaburg","elevation_ft":0,"latitude":55.206298828125,"longitude":-132.8280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":5000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAHV","iata":"","local":"HRR","name":"Healy River Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Healy","elevation_ft":1263,"latitude":63.8661994934082,"longitude":-148.968994140625,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":2910,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAII","iata":"EGX","local":"EII","name":"Egegik Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Egegik","elevation_ft":92,"latitude":58.184386,"longitude":-157.374873,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":75,"surface":"G"},{"id":"12/30","length_ft":5600,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAHU","iata":"HUS","local":"HUS","name":"Hughes Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Hughes","elevation_ft":299,"latitude":66.04109955,"longitude":-154.2630005,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3381,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKL","iata":"LKK","local":"LKK","name":"Kulik Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kulik Lake","elevation_ft":717,"latitude":58.9821014404,"longitude":-155.121002197,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4400,"width_ft":110,"surface":"G"},{"id":"18W/36W","length_ft":5000,"width_ft":5000,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKP","iata":"AKP","local":"AKP","name":"Anaktuvuk Pass Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Anaktuvuk Pass","elevation_ft":2102,"latitude":68.13359833,"longitude":-151.7429962,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4800,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKI","iata":"KPN","local":"IIK","name":"Kipnuk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kipnuk","elevation_ft":11,"latitude":59.9329986572,"longitude":-164.031005859,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKD","iata":"KDK","local":"KDK","name":"Kodiak Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kodiak","elevation_ft":139,"latitude":57.8059005737,"longitude":-152.37399292,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2475,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKF","iata":"KFP","local":"KFP","name":"False Pass Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"False Pass","elevation_ft":20,"latitude":54.8474006652832,"longitude":-163.41000366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2150,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKO","iata":"IKO","local":"IKO","name":"Nikolski Air Station","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nikolski","elevation_ft":77,"latitude":52.94160079956055,"longitude":-168.8489990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3512,"width_ft":135,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PALH","iata":"","local":"LHD","name":"Lake Hood Airport","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Anchorage","elevation_ft":71,"latitude":61.18,"longitude":-149.972003,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":75,"surface":"G"},{"id":"E/W","length_ft":4541,"width_ft":188,"surface":"W"},{"id":"N/S","length_ft":1930,"width_ft":200,"surface":"W"},{"id":"SE/NW","length_ft":1369,"width_ft":150,"surface":"W"}],"frequencies":[{"id":"ATIS","frequency_mhz":125.6},{"id":"LCL/P","frequency_mhz":126.8}],"has_metar":true,"public":true},{"icao":"PALR","iata":"WCR","local":"WCR","name":"Chandalar Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chandalar Lake","elevation_ft":1920,"latitude":67.5045013428,"longitude":-148.483001709,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAKY","iata":"KYK","local":"KYK","name":"Karluk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Karluk","elevation_ft":137,"latitude":57.5671005249,"longitude":-154.449996948,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PALB","iata":"KLN","local":"2A3","name":"Larsen Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Larsen Bay","elevation_ft":87,"latitude":57.535099,"longitude":-153.977993,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2690,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAMM","iata":"MTM","local":"MTM","name":"Metlakatla Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Metlakatla","elevation_ft":0,"latitude":55.131001,"longitude":-131.578003,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":5000,"width_ft":5000,"surface":"W"},{"id":"N/S","length_ft":5000,"width_ft":5000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAMX","iata":"MXY","local":"15Z","name":"Mc Carthy Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Mccarthy","elevation_ft":1531,"latitude":61.4370994568,"longitude":-142.904006958,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3501,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAML","iata":"MLY","local":"MLY","name":"Manley Hot Springs Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Manley Hot Springs","elevation_ft":270,"latitude":64.99759674069999,"longitude":-150.643997192,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":3400,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAMK","iata":"SMK","local":"SMK","name":"St Michael Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"St Michael","elevation_ft":98,"latitude":63.49010086,"longitude":-162.1100006,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":4001,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PANA","iata":"WNA","local":"WNA","name":"Napakiak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Napakiak","elevation_ft":17,"latitude":60.69029998779297,"longitude":-161.97900390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3248,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PANR","iata":"FNR","local":"FNR","name":"Funter Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-AK","municipality":"Funter Bay","elevation_ft":0,"latitude":58.2543983459,"longitude":-134.897994995,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":10500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PANU","iata":"NUL","local":"NUL","name":"Nulato Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Nulato","elevation_ft":399,"latitude":64.729301,"longitude":-158.074005,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":4011,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAOB","iata":"OBU","local":"OBU","name":"Kobuk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kobuk","elevation_ft":137,"latitude":66.9123001099,"longitude":-156.897003174,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4020,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAOC","iata":"PCA","local":"A14","name":"Portage Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Portage Creek","elevation_ft":137,"latitude":58.9065,"longitude":-157.714,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1470,"width_ft":60,"surface":"G"},{"id":"10/28","length_ft":1920,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAVE","iata":"VEE","local":"VEE","name":"Venetie Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Venetie","elevation_ft":574,"latitude":67.0086975098,"longitude":-146.365997314,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAPC","iata":"KPC","local":"KPC","name":"Port Clarence Coast Guard Station","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Port Clarence","elevation_ft":10,"latitude":65.2537002563,"longitude":-166.85899353,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4497,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAPK","iata":"PKA","local":"PKA","name":"Napaskiak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Napaskiak","elevation_ft":24,"latitude":60.70289993,"longitude":-161.7779999,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAPE","iata":"KPV","local":"PEV","name":"Perryville Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Perryville","elevation_ft":29,"latitude":55.905725,"longitude":-159.162188,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3300,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PARY","iata":"RBY","local":"RBY","name":"Ruby Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Ruby","elevation_ft":658,"latitude":64.72720337,"longitude":-155.4700012,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":4000,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PARC","iata":"ARC","local":"ARC","name":"Arctic Village Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Arctic Village","elevation_ft":2092,"latitude":68.1147,"longitude":-145.578995,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4500,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PASA","iata":"SVA","local":"SVA","name":"Savoonga Airport","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Savoonga","elevation_ft":53,"latitude":63.686401,"longitude":-170.492996,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAQH","iata":"KWN","local":"AQH","name":"Quinhagak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Quinhagak","elevation_ft":42,"latitude":59.7551,"longitude":-161.845,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PASY","iata":"SYA","local":"SYA","name":"Eareckson Air Station","category":"medium_airport","iso_country":"US","iso_region":"US-AK","municipality":"Shemya","elevation_ft":95,"latitude":52.71229935,"longitude":174.1139984,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":10005,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PAST","iata":"UMM","local":"UMM","name":"Summit Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cantwell","elevation_ft":2409,"latitude":63.331501,"longitude":-149.126999,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3814,"width_ft":80,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAUO","iata":"WOW","local":"UUO","name":"Willow Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Willow","elevation_ft":221,"latitude":61.7542,"longitude":-150.052002,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4400,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAVA","iata":"VAK","local":"VAK","name":"Chevak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Chevak","elevation_ft":75,"latitude":61.5409,"longitude":-165.6005,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3220,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PATW","iata":"","local":"TTW","name":"Cantwell Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Cantwell","elevation_ft":2190,"latitude":63.391201,"longitude":-148.955995,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2080,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAUM","iata":"UMT","local":"UMT","name":"Umiat Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Umiat","elevation_ft":267,"latitude":69.37110138,"longitude":-152.1360016,"has_tower":false,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5583,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAUK","iata":"AUK","local":"AUK","name":"Alakanuk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Alakanuk","elevation_ft":10,"latitude":62.6800422668,"longitude":-164.659927368,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAUT","iata":"KQA","local":"7AK","name":"Akutan Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Akutan","elevation_ft":133,"latitude":54.14459,"longitude":-165.604332,"has_tower":false,"has_beacon":true,"runways":[{"id":"09/27","length_ft":4500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAWR","iata":"","local":"IEM","name":"Whittier Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Whittier","elevation_ft":30,"latitude":60.777225,"longitude":-148.719606,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1480,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAXK","iata":"","local":"PXK","name":"Paxson Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Paxson","elevation_ft":2653,"latitude":63.026422,"longitude":-145.498778,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1900,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFAK","iata":"AKI","local":"AKI","name":"Akiak Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Akiak","elevation_ft":30,"latitude":60.9029006958,"longitude":-161.231002808,"has_tower":false,"has_beacon":true,"runways":[{"id":"03/21","length_ft":3200,"width_ft":76,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PAWB","iata":"WBQ","local":"WBQ","name":"Beaver Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Beaver","elevation_ft":359,"latitude":66.362197876,"longitude":-147.406997681,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3934,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFKK","iata":"KNK","local":"9K2","name":"Kokhanok Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kokhanok","elevation_ft":115,"latitude":59.4332008362,"longitude":-154.804000854,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3300,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFKU","iata":"KYU","local":"KYU","name":"Koyukuk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Koyukuk","elevation_ft":149,"latitude":64.8760986328,"longitude":-157.727005005,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFKO","iata":"KOT","local":"2A9","name":"Kotlik Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kotlik","elevation_ft":15,"latitude":63.0306015015,"longitude":-163.533004761,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":4400,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFCR","iata":"","local":"01AA","name":"Donlin Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Crooked Creek","elevation_ft":733,"latitude":62.031757,"longitude":-158.234251,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4984,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PFKA","iata":"KUK","local":"Z09","name":"Kasigluk Airport","category":"small_airport","iso_country":"US","iso_region":"US-AK","municipality":"Kasigluk","elevation_ft":48,"latitude":60.87440109,"longitude":-162.5240021,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PHBK","iata":"BKH","local":"BKH","name":"Barking Sands Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kekaha","elevation_ft":23,"latitude":22.0228,"longitude":-159.785004,"has_tower":true,"has_beacon":true,"runways":[{"id":"16/34","length_ft":6002,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":126.2},{"id":"ATIS","frequency_mhz":128}],"has_metar":true,"public":true},{"icao":"PHDH","iata":"HDH","local":"HDH","name":"Kawaihapai Airfield","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Mokuleia","elevation_ft":14,"latitude":21.5795,"longitude":-158.197006,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9007,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHHF","iata":"","local":"HFS","name":"French Frigate Shoals Airport","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Tern Island","elevation_ft":6,"latitude":23.869328,"longitude":-166.285829,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":200,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHHI","iata":"HHI","local":"HHI","name":"Wheeler Army Airfield","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Wahiawa","elevation_ft":837,"latitude":21.481637,"longitude":-158.037048,"has_tower":true,"has_beacon":true,"runways":[{"id":"06/24","length_ft":5608,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.675},{"id":"LCL/P","frequency_mhz":126.3}],"has_metar":true,"public":true},{"icao":"PHHN","iata":"HNM","local":"HNM","name":"Hana Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Hana","elevation_ft":78,"latitude":20.795601,"longitude":-156.014008,"has_tower":false,"has_beacon":true,"runways":[{"id":"08/26","length_ft":3606,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHJH","iata":"JHM","local":"JHM","name":"Kapalua Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Lahaina","elevation_ft":256,"latitude":20.9629,"longitude":-156.673004,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHJR","iata":"JRF","local":"JRF","name":"Kalaeloa Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kapolei","elevation_ft":30,"latitude":21.3074,"longitude":-158.070009,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":4500,"width_ft":200,"surface":"A"},{"id":"04R/22L","length_ft":8000,"width_ft":200,"surface":"A"},{"id":"11/29","length_ft":6000,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.8},{"id":"LCL/P","frequency_mhz":132.6}],"has_metar":true,"public":true},{"icao":"PHKO","iata":"KOA","local":"KOA","name":"Ellison Onizuka Kona International Airport at Keahole","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kailua-Kona","elevation_ft":47,"latitude":19.738783,"longitude":-156.045603,"has_tower":true,"has_beacon":true,"runways":[{"id":"17/35","length_ft":11000,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.3},{"id":"ATIS","frequency_mhz":127.4}],"has_metar":true,"public":true},{"icao":"PHLI","iata":"LIH","local":"LIH","name":"Lihue Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Lihue","elevation_ft":153,"latitude":21.976,"longitude":-159.339005,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":6500,"width_ft":150,"surface":"A"},{"id":"17/35","length_ft":6500,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H3","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.9},{"id":"ATIS","frequency_mhz":127.2}],"has_metar":true,"public":true},{"icao":"PHLU","iata":"LUP","local":"LUP","name":"Kalaupapa Airport","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kalaupapa","elevation_ft":24,"latitude":21.211,"longitude":-156.973999,"has_tower":false,"has_beacon":true,"runways":[{"id":"05/23","length_ft":2700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHMK","iata":"MKK","local":"MKK","name":"Molokai Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kaunakakai","elevation_ft":454,"latitude":21.152901,"longitude":-157.095993,"has_tower":true,"has_beacon":true,"runways":[{"id":"05/23","length_ft":4494,"width_ft":100,"surface":"A"},{"id":"17/35","length_ft":3118,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":125.7},{"id":"ATIS","frequency_mhz":128.2}],"has_metar":true,"public":true},{"icao":"PHMU","iata":"MUE","local":"MUE","name":"Waimea Kohala Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Waimea (Kamuela)","elevation_ft":2671,"latitude":20.001301,"longitude":-155.667999,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":5197,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHNG","iata":"NGF","local":"NGF","name":"Kaneohe Bay MCAS (Marion E. Carl Field) Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kaneohe","elevation_ft":24,"latitude":21.4505,"longitude":-157.768005,"has_tower":true,"has_beacon":true,"runways":[{"id":"04/22","length_ft":7771,"width_ft":200,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":120.7}],"has_metar":true,"public":true},{"icao":"PHNL","iata":"HNL","local":"HNL","name":"Daniel K Inouye International Airport","category":"large_airport","iso_country":"US","iso_region":"US-HI","municipality":"Honolulu","elevation_ft":13,"latitude":21.32062,"longitude":-157.924228,"has_tower":true,"has_beacon":true,"runways":[{"id":"04L/22R","length_ft":6955,"width_ft":150,"surface":"A"},{"id":"04R/22L","length_ft":9002,"width_ft":150,"surface":"A"},{"id":"04W/22W","length_ft":3000,"width_ft":150,"surface":"W"},{"id":"08L/26R","length_ft":12312,"width_ft":150,"surface":"A"},{"id":"08R/26L","length_ft":12000,"width_ft":200,"surface":"A"},{"id":"08W/26W","length_ft":5090,"width_ft":300,"surface":"W"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"LCL/P","frequency_mhz":123.9},{"id":"D-ATIS","frequency_mhz":127.9}],"has_metar":true,"public":true},{"icao":"PHNY","iata":"LNY","local":"LNY","name":"Lanai Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Lanai City","elevation_ft":1308,"latitude":20.785675,"longitude":-156.951324,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5001,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHOG","iata":"OGG","local":"OGG","name":"Kahului International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Kahului","elevation_ft":54,"latitude":20.898543,"longitude":-156.431212,"has_tower":true,"has_beacon":true,"runways":[{"id":"02/20","length_ft":6998,"width_ft":150,"surface":"A"},{"id":"05/23","length_ft":4980,"width_ft":150,"surface":"A"},{"id":"H1","length_ft":125,"width_ft":125,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.7},{"id":"ATIS","frequency_mhz":128.6}],"has_metar":true,"public":true},{"icao":"PHPA","iata":"PAK","local":"PAK","name":"Port Allen Airport","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Hanapepe","elevation_ft":24,"latitude":21.8969,"longitude":-159.602997,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2450,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PHSF","iata":"BSF","local":"BSF","name":"Bradshaw Army Airfield","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Waimea (Kamuela)","elevation_ft":6190,"latitude":19.760099,"longitude":-155.554001,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3695,"width_ft":90,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":124.7},{"id":"LCL/P","frequency_mhz":126.3},{"id":"LCL/P","frequency_mhz":41.5}],"has_metar":true,"public":true},{"icao":"PHTO","iata":"ITO","local":"ITO","name":"Hilo International Airport","category":"medium_airport","iso_country":"US","iso_region":"US-HI","municipality":"Hilo","elevation_ft":38,"latitude":19.721399,"longitude":-155.048004,"has_tower":true,"has_beacon":true,"runways":[{"id":"03/21","length_ft":5600,"width_ft":150,"surface":"A"},{"id":"08/26","length_ft":9800,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"LCL/P","frequency_mhz":118.1},{"id":"ATIS","frequency_mhz":126.4}],"has_metar":true,"public":true},{"icao":"PHUP","iata":"UPP","local":"UPP","name":"Upolu Airport","category":"small_airport","iso_country":"US","iso_region":"US-HI","municipality":"Hawi","elevation_ft":96,"latitude":20.265301,"longitude":-155.860001,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":3800,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PKMA","iata":"ENT","local":"","name":"Eniwetok Airport","category":"small_airport","iso_country":"MH","iso_region":"MH-ENI","municipality":"Eniwetok Atoll","elevation_ft":13,"latitude":11.340700149536133,"longitude":162.3280029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7700,"width_ft":148,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PKRO","iata":"","local":"ROI","name":"Dyess Army Air Field","category":"small_airport","iso_country":"MH","iso_region":"MH-KWA","municipality":"Roi-Namur","elevation_ft":9,"latitude":9.39689,"longitude":167.470993,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":4499,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PLCH","iata":"CXI","local":"","name":"Cassidy International Airport","category":"medium_airport","iso_country":"KI","iso_region":"KI-L","municipality":"Kiritimati","elevation_ft":5,"latitude":1.986278,"longitude":-157.350011,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6896,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PKMJ","iata":"MAJ","local":"MAJ","name":"Marshall Islands International Airport","category":"medium_airport","iso_country":"MH","iso_region":"MH-MAJ","municipality":"Majuro Atoll","elevation_ft":6,"latitude":7.064760208129883,"longitude":171.27200317382812,"has_tower":false,"has_beacon":true,"runways":[{"id":"07/25","length_ft":7913,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN03","iata":"","local":"PN03","name":"Abington Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Abington","elevation_ft":436,"latitude":40.11869812011719,"longitude":-75.12069702148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN07","iata":"","local":"PN07","name":"Cranes-N-Lifts Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"White Haven","elevation_ft":1360,"latitude":41.03089904785156,"longitude":-75.77850341796875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN09","iata":"","local":"PN09","name":"Charles Cole Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Coudersport","elevation_ft":1753,"latitude":41.77170181274414,"longitude":-77.97969818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN13","iata":"","local":"PN13","name":"C & W Milliron Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Sigel","elevation_ft":1700,"latitude":41.28730010986328,"longitude":-79.16639709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":1550,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN19","iata":"","local":"PN19","name":"Hunts Cove Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-PA","municipality":"Foxburg","elevation_ft":840,"latitude":41.14590072631836,"longitude":-79.68730163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":7500,"width_ft":500,"surface":"W"},{"id":"16W/34W","length_ft":6500,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN20","iata":"","local":"PN20","name":"Car Tech Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Reading","elevation_ft":268,"latitude":40.36759948730469,"longitude":-75.93299865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN01","iata":"","local":"PN01","name":"Cedar Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Dorseyville","elevation_ft":1180,"latitude":40.58810043334961,"longitude":-79.90589904785156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN14","iata":"","local":"PN14","name":"Misty Hill Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Ren Frew","elevation_ft":1243,"latitude":40.789398193359375,"longitude":-79.99749755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN08","iata":"","local":"PN08","name":"Davis Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Chambersville","elevation_ft":1373,"latitude":40.734413,"longitude":-79.160056,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN15","iata":"","local":"PN15","name":"Greeley Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Coudersport","elevation_ft":2300,"latitude":41.877518,"longitude":-77.957139,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN11","iata":"","local":"PN11","name":"Reno Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Enon Valley","elevation_ft":1160,"latitude":40.88980102539063,"longitude":-80.48650360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN22","iata":"","local":"PN22","name":"University Of Pitt Medical Landing Area Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bradford","elevation_ft":1481,"latitude":41.945,"longitude":-78.672156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN23","iata":"","local":"PN23","name":"Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":886,"latitude":40.43529891967773,"longitude":-79.98509979248047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN24","iata":"","local":"PN24","name":"Snider Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-PA","municipality":"Freeport","elevation_ft":755,"latitude":40.68339920043945,"longitude":-79.66639709472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":7900,"width_ft":300,"surface":"W"},{"id":"12W/30W","length_ft":9000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN26","iata":"","local":"PN26","name":"St Clair Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1150,"latitude":40.378425,"longitude":-80.065362,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN27","iata":"","local":"PN27","name":"Station 219 Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Mercer","elevation_ft":1310,"latitude":41.27479934692383,"longitude":-80.27729797363281,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN28","iata":"","local":"PN28","name":"Campbell's Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Doylestown","elevation_ft":240,"latitude":40.2864990234375,"longitude":-75.14520263671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN32","iata":"","local":"PN32","name":"Indiana Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Indiana","elevation_ft":1285,"latitude":40.6083984375,"longitude":-79.1355972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN34","iata":"","local":"PN34","name":"Piasecki Heliplex Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Coatsville","elevation_ft":642,"latitude":39.978737,"longitude":-75.87994,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN39","iata":"","local":"","name":"Exton Heliport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Exton","elevation_ft":323,"latitude":40.0187,"longitude":-75.636299,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1208,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN36","iata":"","local":"PN36","name":"Rayne Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Home","elevation_ft":1420,"latitude":40.7333984375,"longitude":-79.06729888916016,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN25","iata":"","local":"PN25","name":"Lindsay Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Freeport","elevation_ft":1080,"latitude":40.735599517822266,"longitude":-79.6886978149414,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1750,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN40","iata":"","local":"PN40","name":"Moorhead Airpark","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"North East","elevation_ft":805,"latitude":42.185348,"longitude":-79.896098,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2085,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN42","iata":"","local":"PN42","name":"Practice Football Field","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Indiana","elevation_ft":1400,"latitude":40.625099182128906,"longitude":-79.1498031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN44","iata":"","local":"PN44","name":"Merck/Upper Gwynedd Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"North Wales","elevation_ft":355,"latitude":40.21609878540039,"longitude":-75.27999877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN45","iata":"","local":"PN45","name":"Wyoming Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wilkes-Barre","elevation_ft":947,"latitude":41.25802,"longitude":-75.809,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN52","iata":"","local":"PN52","name":"Mike's Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Cochranville","elevation_ft":550,"latitude":39.8671989440918,"longitude":-75.93360137939453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN56","iata":"","local":"","name":"Miller Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Mahaffey","elevation_ft":1540,"latitude":40.8853,"longitude":-78.739197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN60","iata":"","local":"PN60","name":"Motola's Paving Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lehighton","elevation_ft":433,"latitude":40.83769989013672,"longitude":-75.69719696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN57","iata":"","local":"PN57","name":"Marion Center Speedway Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Marion Center","elevation_ft":1500,"latitude":40.8120002746582,"longitude":-79.03730010986328,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN55","iata":"","local":"PN55","name":"Skala Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Mc Clellandtown","elevation_ft":1270,"latitude":39.8583984375,"longitude":-79.82340240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN53","iata":"","local":"PN53","name":"Strohmier Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Loretto","elevation_ft":1962,"latitude":40.551498,"longitude":-78.623398,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1200,"width_ft":50,"surface":"T"},{"id":"15/33","length_ft":1550,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN59","iata":"","local":"PN59","name":"Stitt Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Kittanning","elevation_ft":1200,"latitude":40.83110046386719,"longitude":-79.48690032958984,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN54","iata":"","local":"PN54","name":"AKM Airfield","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Columbia Cross Roads","elevation_ft":1393,"latitude":41.837554,"longitude":-76.745238,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN61","iata":"","local":"PN61","name":"Chero'kee Furko Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Plum","elevation_ft":950,"latitude":40.5260009765625,"longitude":-79.8187026977539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN63","iata":"","local":"PN63","name":"Limerick Generating Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Sanatoga","elevation_ft":344,"latitude":40.23310089111328,"longitude":-75.58319854736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN70","iata":"","local":"PN70","name":"Kint Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Port Royal","elevation_ft":420,"latitude":40.53570175170898,"longitude":-77.37960052490234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN74","iata":"","local":"PN74","name":"Hilltop Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Troy","elevation_ft":1370,"latitude":41.78200149536133,"longitude":-76.8062973022461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN75","iata":"","local":"PN75","name":"Wilkes-Barre General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wilkes-Barre","elevation_ft":655,"latitude":41.259322,"longitude":-75.867046,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"},{"id":"H2","length_ft":80,"width_ft":80,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN76","iata":"","local":"PN76","name":"UPMC Northwest Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Seneca","elevation_ft":1415,"latitude":41.3616981506,"longitude":-79.700302124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN64","iata":"","local":"PN64","name":"Hilling International Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Huntingdon","elevation_ft":1400,"latitude":40.50239944458008,"longitude":-77.93939971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1280,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN72","iata":"","local":"PN72","name":"Rocky Hollow Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Strongstown","elevation_ft":1806,"latitude":40.56919860839844,"longitude":-78.88249969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1850,"width_ft":120,"surface":"G"},{"id":"18/36","length_ft":3335,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN68","iata":"","local":"PN68","name":"Jackson Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Galilee","elevation_ft":930,"latitude":40.88932,"longitude":-80.36663,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN66","iata":"","local":"PN66","name":"Dunlea Airpark","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"New Alexandria","elevation_ft":1220,"latitude":40.42559814453125,"longitude":-79.36360168457031,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PN77","iata":"","local":"PN77","name":"Snyder Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Kittanning","elevation_ft":1160,"latitude":40.81689834594727,"longitude":-79.56559753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN78","iata":"","local":"PN78","name":"600 Grant Street Rooftop Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1604,"latitude":40.44200134277344,"longitude":-79.99530029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN79","iata":"","local":"PN79","name":"Passavant Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1330,"latitude":40.009498596191406,"longitude":-80.0000991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN80","iata":"","local":"PN80","name":"West Penn Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1117,"latitude":40.46200180053711,"longitude":-79.9448013305664,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN82","iata":"","local":"PN82","name":"DVS Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Whitehall","elevation_ft":375,"latitude":40.674283,"longitude":-75.5051,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN83","iata":"","local":"","name":"Skunk Hollow Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Plumville","elevation_ft":1380,"latitude":40.802799,"longitude":-79.202499,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN86","iata":"","local":"PN86","name":"Goodwill Fire Co Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Minersville","elevation_ft":710,"latitude":40.693889,"longitude":-76.256111,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN87","iata":"","local":"PN87","name":"Hanover Township Fire Station #5 Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hanover Township","elevation_ft":541,"latitude":41.235503,"longitude":-75.934044,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN89","iata":"","local":"PN89","name":"Ridgway Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Ridgway","elevation_ft":2042,"latitude":41.418531,"longitude":-78.796903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN94","iata":"","local":"PN94","name":"Wiconisco Fire Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Wiconisco","elevation_ft":671,"latitude":40.569726,"longitude":-76.695916,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PN91","iata":"","local":"PN91","name":"Sharretts Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Sabinsville","elevation_ft":2360,"latitude":41.827578,"longitude":-77.500964,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PR01","iata":"","local":"PR01","name":"Hato Rey Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":35,"latitude":18.4192008972168,"longitude":-66.05670166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR02","iata":"","local":"PR02","name":"Prasa-La Plata Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Toa Alta","elevation_ft":361,"latitude":18.352500915527344,"longitude":-66.23639678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR03","iata":"","local":"PR03","name":"Fajardo Harbor Seaplane Base","category":"seaplane_base","iso_country":"PR","iso_region":"PR-U-A","municipality":"Fajardo","elevation_ft":0,"latitude":18.33970069885254,"longitude":-65.62460327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4000,"width_ft":2000,"surface":"W"},{"id":"N/S","length_ft":6000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR04","iata":"","local":"PR04","name":"Squibb Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Humacao","elevation_ft":16,"latitude":18.14879989624023,"longitude":-65.7938003540039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR06","iata":"","local":"PR06","name":"Hill Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Culebra","elevation_ft":80,"latitude":18.299999237060547,"longitude":-65.2833023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR09","iata":"","local":"PR09","name":"Sabalos Ward Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Mayaguez","elevation_ft":34,"latitude":18.17609977722168,"longitude":-67.14669799804688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR11","iata":"","local":"PR11","name":"Rexach Office Building Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Puerto Nuevo","elevation_ft":60,"latitude":18.41519927978516,"longitude":-66.12680053710938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR12","iata":"","local":"PR12","name":"State Government Number One Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":269,"latitude":18.44939994812012,"longitude":-66.06659698486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR13","iata":"","local":"PR13","name":"Insular Government Number Two Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":168,"latitude":18.417400360107425,"longitude":-66.07769775390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR14","iata":"","local":"PR14","name":"Orama-Iayuya Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Jayuya","elevation_ft":1463,"latitude":18.21109962463379,"longitude":-66.62930297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR15","iata":"","local":"PR15","name":"Parguera Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Lajas","elevation_ft":32,"latitude":17.975000381469727,"longitude":-67.04440307617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR16","iata":"","local":"PR16","name":"Banco Popular Center Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":215,"latitude":18.427400588989254,"longitude":-66.05879974365234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":31,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR17","iata":"","local":"PR17","name":"Prasa-Barbosa Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":163,"latitude":18.414100646972656,"longitude":-66.0438003540039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR19","iata":"","local":"PR19","name":"Orocovis Health Center Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Orocovis","elevation_ft":1717,"latitude":18.226600646972656,"longitude":-66.39430236816406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":52,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR21","iata":"","local":"PR21","name":"Fort Buchanan Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Guaynabo","elevation_ft":33,"latitude":18.415000915527344,"longitude":-66.13189697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR23","iata":"","local":"PR23","name":"Baxter-Aibonito Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Aibonito","elevation_ft":1836,"latitude":18.13969993591309,"longitude":-66.26629638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR26","iata":"","local":"PR26","name":"Villa Marina Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Fajardo","elevation_ft":15,"latitude":18.331300735473636,"longitude":-65.63289642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":76,"width_ft":76,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR28","iata":"","local":"PR28","name":"R.H. Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Isabela","elevation_ft":24,"latitude":18.494199752807617,"longitude":-67.02420043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR29","iata":"","local":"","name":"Villamil-Mayaguez Mall Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Mayaguez","elevation_ft":82,"latitude":18.158899307250977,"longitude":-67.14640045166016,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR30","iata":"","local":"PR30","name":"Prtc Office Building Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":175,"latitude":18.41110038757324,"longitude":-66.10160064697266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR31","iata":"","local":"","name":"San Juan Steam Plant Heliport","category":"closed","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":60,"latitude":18.42794,"longitude":-66.105605,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR33","iata":"","local":"PR33","name":"Bayamon Regional Hospital Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Bayamon","elevation_ft":110,"latitude":18.36750030517578,"longitude":-66.15380096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR34","iata":"","local":"PR34","name":"San Juan Seaplane Base","category":"seaplane_base","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":10,"latitude":18.4577999115,"longitude":-66.1211013794,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":10000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR41","iata":"","local":"PR41","name":"Palacio Santa Ana Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Lorenzo","elevation_ft":762,"latitude":18.191747,"longitude":-65.982105,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR42","iata":"","local":"PR42","name":"Empresas Diaz-Rio Pedras Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":154,"latitude":18.395072,"longitude":-66.051283,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR68","iata":"","local":"PR68","name":"Mora Development Corp Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Hato Rey","elevation_ft":50,"latitude":18.41530036926269,"longitude":-66.07579803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR93","iata":"","local":"PR93","name":"San Lorenzo Municipal Heliport Nr 1","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Lorenzo","elevation_ft":588,"latitude":18.137822,"longitude":-65.982305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PR99","iata":"","local":"PR99","name":"Puerto Heliport","category":"heliport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":129,"latitude":18.395556,"longitude":-66.073611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS01","iata":"","local":"PS01","name":"Sterling Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Croydon","elevation_ft":24,"latitude":40.081298828125,"longitude":-74.89420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS07","iata":"","local":"PS07","name":"St Lukes Miners Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Coaldale","elevation_ft":1000,"latitude":40.820937,"longitude":-75.914712,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS02","iata":"","local":"PS02","name":"Heberlig Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Newville","elevation_ft":560,"latitude":40.16429901123047,"longitude":-77.37049865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS06","iata":"","local":"PS06","name":"Snook Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Beaver Springs","elevation_ft":710,"latitude":40.7333984375,"longitude":-77.26640319824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS05","iata":"","local":"PS05","name":"G & N Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Albion","elevation_ft":985,"latitude":41.875301,"longitude":-80.374802,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS10","iata":"","local":"PS10","name":"Ohioport Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Ohiopyle","elevation_ft":2018,"latitude":39.885398864746094,"longitude":-79.50749969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS13","iata":"","local":"PS13","name":"Boeing Helicopters Center 3 South Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Ridley Park","elevation_ft":10,"latitude":39.85929870605469,"longitude":-75.3196029663086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS16","iata":"","local":"PS16","name":"Holy Redeemer Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":200,"latitude":40.11040115356445,"longitude":-75.08290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS17","iata":"","local":"PS17","name":"Marlboro Corporate Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Kennett Square","elevation_ft":385,"latitude":39.8577995300293,"longitude":-75.69640350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS22","iata":"","local":"PS22","name":"Hazleton General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Hazleton","elevation_ft":1670,"latitude":40.94940185546875,"longitude":-75.9636001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS26","iata":"","local":"PS26","name":"Banning Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Natrona Heights","elevation_ft":1200,"latitude":40.63479995727539,"longitude":-79.74420166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS21","iata":"","local":"PS21","name":"Flying Eagle Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Dalmatia","elevation_ft":660,"latitude":40.64590072631836,"longitude":-76.81220245361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS20","iata":"","local":"PS20","name":"Fairview Farm Airfield","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Pine Grove","elevation_ft":600,"latitude":40.537284,"longitude":-76.46626,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS15","iata":"","local":"PS15","name":"Vicars Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Altoona","elevation_ft":1370,"latitude":40.54759979248047,"longitude":-78.3917007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS11","iata":"","local":"PS11","name":"Mc Cardle Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Burnham","elevation_ft":600,"latitude":40.6453018188,"longitude":-77.55529785159999,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS18","iata":"","local":"PS18","name":"Pecora Field","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Bradford","elevation_ft":1500,"latitude":41.90370178222656,"longitude":-78.62750244140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS28","iata":"","local":"PS28","name":"Penn Dda Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":25,"latitude":40.03570175170898,"longitude":-75.01629638671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS29","iata":"","local":"PS29","name":"Sugan Pond Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Solebury","elevation_ft":320,"latitude":40.375099182128906,"longitude":-74.99130249023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS30","iata":"","local":"PS30","name":"Mbb Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"West Chester","elevation_ft":464,"latitude":39.98759841918945,"longitude":-75.5802001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS33","iata":"","local":"PS33","name":"Agere Systems-Lehigh Valley Central Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Allentown","elevation_ft":358,"latitude":40.63309860229492,"longitude":-75.45860290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS34","iata":"","local":"PS34","name":"North Penn Usarc Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Worcester","elevation_ft":450,"latitude":40.19179916381836,"longitude":-75.34130096435547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS35","iata":"","local":"","name":"Dutch Country Egg Farms Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Fredericksburg","elevation_ft":550,"latitude":40.458099,"longitude":-76.458,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":26,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS37","iata":"","local":"PS37","name":"Geisinger Medical Center Muncy Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Muncy","elevation_ft":526,"latitude":41.240047,"longitude":-76.8064,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS40","iata":"","local":"PS40","name":"Tri-County Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Eckley","elevation_ft":1700,"latitude":40.98619842529297,"longitude":-75.83439636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS41","iata":"","local":"PS41","name":"Shenango Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Farrell","elevation_ft":1100,"latitude":41.21060180664063,"longitude":-80.46920013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS44","iata":"","local":"PS44","name":"Operations Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bellwood","elevation_ft":1035,"latitude":40.61149978637695,"longitude":-78.32559967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS45","iata":"","local":"PS45","name":"Mission Destiny Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Red Lion","elevation_ft":728,"latitude":39.920833,"longitude":-76.487011,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS47","iata":"","local":"","name":"Hamilton Hill Airport","category":"closed","iso_country":"US","iso_region":"US-PA","municipality":"Summerhill","elevation_ft":2245,"latitude":40.426892,"longitude":-78.730688,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS48","iata":"","local":"PS48","name":"Larksville EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Larksville Borough","elevation_ft":660,"latitude":41.2645,"longitude":-75.924897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS55","iata":"","local":"PS55","name":"Core States - 1st Pa Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Philadelphia","elevation_ft":80,"latitude":39.9584007263,"longitude":-75.19129943850001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS56","iata":"","local":"PS56","name":"Morris Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":500,"latitude":39.77930068969727,"longitude":-77.25140380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS57","iata":"","local":"PS57","name":"C.C. Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"State College","elevation_ft":1100,"latitude":40.81900024,"longitude":-77.84329987,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS58","iata":"","local":"PS58","name":"Penn St Health/Lancaster Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lancaster","elevation_ft":351,"latitude":40.0829,"longitude":-76.384407,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS59","iata":"","local":"PS59","name":"Dickson City Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Dickson City","elevation_ft":760,"latitude":41.45323,"longitude":-75.632745,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS54","iata":"","local":"PS54","name":"Gunden Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Perkasie","elevation_ft":530,"latitude":40.3293,"longitude":-75.281601,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS52","iata":"","local":"PS52","name":"Alberter Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Johnstown","elevation_ft":2070,"latitude":40.195098876953125,"longitude":-78.83280181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS50","iata":"","local":"PS50","name":"MSM Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Kingsley","elevation_ft":1600,"latitude":41.768015,"longitude":-75.723925,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2185,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS64","iata":"","local":"PS64","name":"Morton's Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Cambridge Springs","elevation_ft":1200,"latitude":41.829873,"longitude":-80.072308,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS61","iata":"","local":"PS61","name":"Tidioute Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Tidioute","elevation_ft":1100,"latitude":41.69089889526367,"longitude":-79.36589813232422,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS65","iata":"","local":"PS65","name":"Crozer-Chester Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Chester","elevation_ft":54,"latitude":39.856201171875,"longitude":-75.36710357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS71","iata":"","local":"PS71","name":"St Mary Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Langhorne","elevation_ft":140,"latitude":40.20209884643555,"longitude":-74.92289733886719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS72","iata":"","local":"PS72","name":"Haig-K Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lionville","elevation_ft":505,"latitude":40.06480026245117,"longitude":-75.61129760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS74","iata":"","local":"PS74","name":"Hahn Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Nazareth","elevation_ft":660,"latitude":40.80289840698242,"longitude":-75.33910369873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS78","iata":"","local":"PS78","name":"Pittsburgh City Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pittsburgh","elevation_ft":1124,"latitude":40.4422988892,"longitude":-79.9600982666,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":96,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS80","iata":"","local":"PS80","name":"Robbins Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Quakertown","elevation_ft":450,"latitude":40.36930084228516,"longitude":-75.39710235595703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS81","iata":"","local":"PS81","name":"Guthrie Robert Packer Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Sayre","elevation_ft":780,"latitude":41.981191,"longitude":-76.520757,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H3","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS83","iata":"","local":"PS83","name":"Smithkline Beecham Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Swedeland","elevation_ft":200,"latitude":40.07979965209961,"longitude":-75.32849884033203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS85","iata":"","local":"PS85","name":"River Hill Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Bloomsburg","elevation_ft":860,"latitude":40.98619842529297,"longitude":-76.4291000366211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS90","iata":"","local":"PS90","name":"Ramada Inn-Gettysburg Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Gettysburg","elevation_ft":510,"latitude":39.76679992675781,"longitude":-77.27050018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS69","iata":"","local":"PS69","name":"Barnhart Airport","category":"small_airport","iso_country":"US","iso_region":"US-PA","municipality":"Flinton","elevation_ft":1640,"latitude":40.72700119018555,"longitude":-78.53949737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2900,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"PS91","iata":"","local":"PS91","name":"Conemaugh Valley Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Johnstown","elevation_ft":1302,"latitude":40.304500579833984,"longitude":-78.92060089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS92","iata":"","local":"PS92","name":"Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Lebanon","elevation_ft":510,"latitude":40.31539916992188,"longitude":-76.40299987792969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PS95","iata":"","local":"PS95","name":"Mazzuca Heliport","category":"heliport","iso_country":"US","iso_region":"US-PA","municipality":"Pottsville","elevation_ft":810,"latitude":40.68619918823242,"longitude":-76.21019744873047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"PWAK","iata":"AWK","local":"AWK","name":"Wake Island Airfield","category":"medium_airport","iso_country":"UM","iso_region":"UM-79","municipality":"Wake Island","elevation_ft":14,"latitude":19.282437,"longitude":166.636637,"has_tower":false,"has_beacon":true,"runways":[{"id":"10/28","length_ft":9844,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RCFN","iata":"TTT","local":"","name":"Taitung Airport","category":"medium_airport","iso_country":"TW","iso_region":"TW-TTT","municipality":"Taitung City","elevation_ft":143,"latitude":22.7549991607666,"longitude":121.10199737548828,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":7999,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI26","iata":"","local":"RI26","name":"Landmark Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Woonsocket","elevation_ft":202,"latitude":42.00429916381836,"longitude":-71.49420166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI01","iata":"","local":"RI01","name":"Kent County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Warwick","elevation_ft":104,"latitude":41.70539855957031,"longitude":-71.47699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI02","iata":"","local":"RI02","name":"Grayrock Ridge Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Cumberland","elevation_ft":314,"latitude":41.949311,"longitude":-71.415397,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI08","iata":"","local":"RI08","name":"South County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Wakefield","elevation_ft":38,"latitude":41.430662,"longitude":-71.498074,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI13","iata":"","local":"RI13","name":"Foxridge Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"West Kingston","elevation_ft":140,"latitude":41.494427,"longitude":-71.556179,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI21","iata":"","local":"RI21","name":"Goat Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Newport","elevation_ft":8,"latitude":41.48820114135742,"longitude":-71.3279037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI23","iata":"","local":"RI23","name":"Westerly Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Westerly","elevation_ft":120,"latitude":41.36259841918945,"longitude":-71.82369995117188,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI25","iata":"","local":"RI25","name":"Rhode Island Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Providence","elevation_ft":22,"latitude":41.810191,"longitude":-71.409504,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI07","iata":"","local":"RI07","name":"Wing-Over Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-RI","municipality":"Tiverton","elevation_ft":113,"latitude":41.57899856567383,"longitude":-71.1417007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"RI28","iata":"","local":"RI28","name":"Plouffe Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-RI","municipality":"Glocester","elevation_ft":328,"latitude":41.87530136,"longitude":-71.59030151,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":3100,"width_ft":100,"surface":"W"},{"id":"13W/31W","length_ft":5000,"width_ft":100,"surface":"W"},{"id":"16W/34W","length_ft":2200,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RI30","iata":"","local":"RI30","name":"East Arnolda Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-RI","municipality":"Charlestown","elevation_ft":30,"latitude":41.3787,"longitude":-71.641218,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJDT","iata":"TSJ","local":"","name":"Tsushima Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-42","municipality":"Tsushima","elevation_ft":213,"latitude":34.2849006653,"longitude":129.330993652,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6234,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJFE","iata":"FUJ","local":"","name":"Fukue Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-42","municipality":"Goto","elevation_ft":273,"latitude":32.66630172729492,"longitude":128.83299255371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJFU","iata":"NGS","local":"","name":"Nagasaki Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-42","municipality":"Nagasaki","elevation_ft":15,"latitude":32.916900634799994,"longitude":129.914001465,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJKA","iata":"ASJ","local":"","name":"Amami Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-46","municipality":"Amami","elevation_ft":27,"latitude":28.430599212646484,"longitude":129.71299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6560,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJNK","iata":"KMQ","local":"","name":"Komatsu Airport / JASDF Komatsu Air Base","category":"medium_airport","iso_country":"JP","iso_region":"JP-17","municipality":"Kanazawa","elevation_ft":36,"latitude":36.3946,"longitude":136.406998,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8860,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJNT","iata":"TOY","local":"","name":"Toyama Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-16","municipality":"Toyama","elevation_ft":95,"latitude":36.64830017089844,"longitude":137.18800354003906,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6560,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJNW","iata":"NTQ","local":"","name":"Noto Satoyama Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-17","municipality":"Wajima","elevation_ft":718,"latitude":37.293098,"longitude":136.962006,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJNY","iata":"","local":"","name":"JASDF Shizuhama Air Base","category":"medium_airport","iso_country":"JP","iso_region":"JP-22","municipality":"Yaizu","elevation_ft":23,"latitude":34.812801,"longitude":138.298004,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4920,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOA","iata":"HIJ","local":"","name":"Hiroshima Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-34","municipality":"Hiroshima","elevation_ft":1088,"latitude":34.4361,"longitude":132.919006,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9843,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOB","iata":"OKJ","local":"","name":"Okayama Momotaro Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-33","municipality":"Okayama","elevation_ft":806,"latitude":34.756901,"longitude":133.854996,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOH","iata":"YGJ","local":"","name":"Yonago Kitaro Airport / JASDF Miho Air Base","category":"medium_airport","iso_country":"JP","iso_region":"JP-31","municipality":"Yonago","elevation_ft":20,"latitude":35.492199,"longitude":133.235992,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOI","iata":"IWK","local":"","name":"Iwakuni Kintaikyo Airport / Marine Corps Air Station Iwakuni","category":"medium_airport","iso_country":"JP","iso_region":"JP-35","municipality":"Iwakuni","elevation_ft":7,"latitude":34.146333,"longitude":132.247238,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":8005,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOK","iata":"KCZ","local":"","name":"Kochi Ryoma Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-39","municipality":"Nankoku","elevation_ft":42,"latitude":33.546101,"longitude":133.669006,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOM","iata":"MYJ","local":"","name":"Matsuyama Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-38","municipality":"Matsuyama","elevation_ft":25,"latitude":33.82720184326172,"longitude":132.6999969482422,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKJK","iata":"KUV","local":"","name":"Kunsan Air Base","category":"medium_airport","iso_country":"KR","iso_region":"KR-45","municipality":"Kunsan","elevation_ft":29,"latitude":35.903801,"longitude":126.615997,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":9008,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOT","iata":"TAK","local":"","name":"Takamatsu Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-37","municipality":"Takamatsu","elevation_ft":607,"latitude":34.2141990662,"longitude":134.01600647,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":8202,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJOW","iata":"IWJ","local":"","name":"Iwami Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-32","municipality":"Masuda","elevation_ft":184,"latitude":34.676399231,"longitude":131.789993286,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJSF","iata":"FKS","local":"","name":"Fukushima Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-07","municipality":"Sukagawa","elevation_ft":1221,"latitude":37.22740173339844,"longitude":140.43099975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RJTO","iata":"OIM","local":"","name":"Oshima Airport","category":"medium_airport","iso_country":"JP","iso_region":"JP-13","municipality":"Izu Oshima","elevation_ft":130,"latitude":34.7820014954,"longitude":139.36000061,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5905,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKSO","iata":"OSN","local":"","name":"Osan Air Base","category":"medium_airport","iso_country":"KR","iso_region":"KR-41","municipality":"UNKNOWN","elevation_ft":38,"latitude":37.090599,"longitude":127.029999,"has_tower":true,"has_beacon":false,"runways":[{"id":"09L/27R","length_ft":9000,"width_ft":148,"surface":"H"},{"id":"09R/27L","length_ft":9000,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKTI","iata":"","local":"RKTV","name":"Jungwon Air Base/Chungju Airport","category":"medium_airport","iso_country":"KR","iso_region":"KR-43","municipality":"Gimseang-ro","elevation_ft":281,"latitude":37.03024,"longitude":127.886353,"has_tower":true,"has_beacon":false,"runways":[{"id":"18R/36L","length_ft":9620,"width_ft":120,"surface":"H"},{"id":"18L/36R","length_ft":9021,"width_ft":200,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKTN","iata":"TAE","local":"","name":"Daegu Airport","category":"medium_airport","iso_country":"KR","iso_region":"KR-27","municipality":"Daegu","elevation_ft":116,"latitude":35.896872,"longitude":128.65531,"has_tower":true,"has_beacon":false,"runways":[{"id":"13R/31L","length_ft":9039,"width_ft":148,"surface":"H"},{"id":"13L/31R","length_ft":8999,"width_ft":148,"surface":"HL"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKTP","iata":"HMY","local":"RK6U","name":"Seosan Air Base","category":"small_airport","iso_country":"KR","iso_region":"KR-44","municipality":"Seosan","elevation_ft":39,"latitude":36.703999,"longitude":126.486,"has_tower":false,"has_beacon":false,"runways":[{"id":"03L/21R","length_ft":9000,"width_ft":150,"surface":"H"},{"id":"03R/21L","length_ft":9000,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RKTU","iata":"CJJ","local":"","name":"Cheongju International Airport/Cheongju Air Base (K-59/G-513)","category":"medium_airport","iso_country":"KR","iso_region":"KR-43","municipality":"Cheongju","elevation_ft":191,"latitude":36.717008,"longitude":127.498741,"has_tower":true,"has_beacon":false,"runways":[{"id":"06R/24L","length_ft":9003,"width_ft":148,"surface":"H"},{"id":"06L/24R","length_ft":9003,"width_ft":197,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ROIG","iata":"","local":"","name":"Ishigaki Airport","category":"closed","iso_country":"JP","iso_region":"JP-47","municipality":"Ishigaki","elevation_ft":93,"latitude":24.3445,"longitude":124.187,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"RPMD","iata":"DVO","local":"","name":"Francisco Bangoy International Airport","category":"large_airport","iso_country":"PH","iso_region":"PH-DAS","municipality":"Davao","elevation_ft":96,"latitude":7.12552,"longitude":125.646004,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":9839,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SAMR","iata":"AFA","local":"SRA","name":"Suboficial Ay Santiago Germano Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-M","municipality":"San Rafael","elevation_ft":2470,"latitude":-34.588299,"longitude":-68.4039,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":6896,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SADP","iata":"EPA","local":"PAL","name":"El Palomar Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-B","municipality":"El Palomar","elevation_ft":59,"latitude":-34.6099,"longitude":-58.6126,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6923,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC34","iata":"","local":"SC34","name":"Iva Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Iva","elevation_ft":660,"latitude":34.29710006713867,"longitude":-82.68370056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SAZR","iata":"RSA","local":"OSA","name":"Santa Rosa Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-L","municipality":"Santa Rosa","elevation_ft":630,"latitude":-36.588299,"longitude":-64.275703,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":7546,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SAZB","iata":"BHI","local":"BCA","name":"Comandante Espora Airport","category":"medium_airport","iso_country":"AR","iso_region":"AR-B","municipality":"Bahia Blanca","elevation_ft":246,"latitude":-38.725,"longitude":-62.1693,"has_tower":true,"has_beacon":false,"runways":[{"id":"17L/25R","length_ft":7907,"width_ft":148,"surface":"H"},{"id":"06/24","length_ft":6496,"width_ft":98,"surface":"H"},{"id":"17R/35L","length_ft":4915,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SBAT","iata":"AFL","local":"MT0003","name":"Piloto Osvaldo Marques Dias Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-MT","municipality":"Alta Floresta","elevation_ft":948,"latitude":-9.866389,"longitude":-56.106298,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8202,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBBQ","iata":"","local":"MG9002","name":"Major Brigadeiro Doorgal Borges Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-MG","municipality":"Barbacena","elevation_ft":3657,"latitude":-21.2672,"longitude":-43.76101,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5774,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBCB","iata":"CFB","local":"RJ0003","name":"Cabo Frio Airport","category":"small_airport","iso_country":"BR","iso_region":"BR-RJ","municipality":"Cabo Frio","elevation_ft":22,"latitude":-22.921485,"longitude":-42.071874,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8366,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBCC","iata":"","local":"PA9001","name":"Campo de Provas Brigadeiro Veloso","category":"medium_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Novo Progresso","elevation_ft":1777,"latitude":-9.33394,"longitude":-54.965401,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8527,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBCJ","iata":"CKS","local":"PA0006","name":"Carajás Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Parauapebas","elevation_ft":2064,"latitude":-6.117841,"longitude":-50.003372,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBCP","iata":"CAW","local":"RJ0006","name":"Bartolomeu Lisandro Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RJ","municipality":"Campos Dos Goytacazes","elevation_ft":59,"latitude":-21.698299,"longitude":-41.301701,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5066,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBCZ","iata":"CZS","local":"AC0002","name":"Cruzeiro do Sul Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AC","municipality":"Cruzeiro Do Sul","elevation_ft":637,"latitude":-7.59991,"longitude":-72.769501,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":7874,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBGW","iata":"GUJ","local":"SP0076","name":"Guaratinguetá Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-SP","municipality":"Guaratinguetá","elevation_ft":1761,"latitude":-22.791599,"longitude":-45.2048,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5089,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBHT","iata":"ATM","local":"PA0003","name":"Altamira Interstate Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Altamira","elevation_ft":368,"latitude":-3.253144,"longitude":-52.253938,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6572,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBIZ","iata":"IMP","local":"MA0002","name":"Prefeito Renato Moreira Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-MA","municipality":"Imperatriz","elevation_ft":430,"latitude":-5.53129,"longitude":-47.459999,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5899,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBJU","iata":"JDO","local":"CE0002","name":"Orlando Bezerra de Menezes Airport","category":"small_airport","iso_country":"BR","iso_region":"BR-CE","municipality":"Juazeiro do Norte","elevation_ft":1342,"latitude":-7.21932,"longitude":-39.269096,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6365,"width_ft":148,"surface":"H3"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBLE","iata":"LEC","local":"SP0008","name":"Coronel Horácio de Mattos Airport","category":"small_airport","iso_country":"BR","iso_region":"BR-BA","municipality":"Lençóis","elevation_ft":1676,"latitude":-12.4823,"longitude":-41.277,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6830,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBMS","iata":"MVF","local":"RN0002","name":"Dix-Sept Rosado Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RN","municipality":"Mossoró","elevation_ft":76,"latitude":-5.20192,"longitude":-37.3643,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6234,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN67","iata":"","local":"","name":"Button Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Great Bend","elevation_ft":1845,"latitude":38.36882,"longitude":-98.82014,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1900,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBPB","iata":"PHB","local":"PI0002","name":"Parnaíba - Prefeito Doutor João Silva Filho International Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-PI","municipality":"Parnaíba","elevation_ft":23,"latitude":-2.89375,"longitude":-41.731998,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBPF","iata":"PFB","local":"RS0006","name":"Lauro Kurtz Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RS","municipality":"Passo Fundo","elevation_ft":2380,"latitude":-28.243976,"longitude":-52.32777,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5512,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBPK","iata":"PET","local":"RS0005","name":"João Simões Lopes Neto International Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RS","municipality":"Pelotas","elevation_ft":59,"latitude":-31.717253,"longitude":-52.327952,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6496,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBPP","iata":"PMG","local":"MS0005","name":"Ponta Porã Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-MS","municipality":"Ponta Porã","elevation_ft":2156,"latitude":-22.549601,"longitude":-55.702599,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBTT","iata":"TBT","local":"AM0005","name":"Tabatinga Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-AM","municipality":"Tabatinga","elevation_ft":263,"latitude":-4.25567,"longitude":-69.935799,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7054,"width_ft":105,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBUY","iata":"RPU","local":"AM0025","name":"Urucu Airport","category":"small_airport","iso_country":"BR","iso_region":"BR-AM","municipality":"Urucu","elevation_ft":210,"latitude":-4.884263,"longitude":-65.355421,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4331,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBVH","iata":"BVH","local":"RO0003","name":"Brigadeiro Camarão Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RO","municipality":"Vilhena","elevation_ft":2018,"latitude":-12.6944,"longitude":-60.098301,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":8530,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SBTU","iata":"TUR","local":"PA0007","name":"Tucuruí Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-PA","municipality":"Tucuruí","elevation_ft":830,"latitude":-3.78601,"longitude":-49.720299,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":6560,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SBUG","iata":"URG","local":"RS0012","name":"Rubem Berta Airport","category":"medium_airport","iso_country":"BR","iso_region":"BR-RS","municipality":"Uruguaiana","elevation_ft":256,"latitude":-29.7822,"longitude":-57.0382,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4921,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC01","iata":"","local":"","name":"Sugar Hill Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Allendale","elevation_ft":203,"latitude":33.039001,"longitude":-81.294296,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":125,"surface":"T"},{"id":"18/36","length_ft":2400,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC02","iata":"","local":"SC02","name":"Beaufort County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Beaufort","elevation_ft":20,"latitude":32.416900634765625,"longitude":-80.68730163574219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC04","iata":"","local":"SC04","name":"Piedmont Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Rock Hill","elevation_ft":670,"latitude":34.958,"longitude":-81.05033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC05","iata":"","local":"","name":"Laurel Hill Plantation Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Beaufort","elevation_ft":10,"latitude":32.491299,"longitude":-80.615097,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2219,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC09","iata":"","local":"SC09","name":"Clarendon Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Manning","elevation_ft":190,"latitude":33.68709945678711,"longitude":-80.21119689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC11","iata":"","local":"SC11","name":"Fort Jackson Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Fort Jackson","elevation_ft":400,"latitude":34.03350067138672,"longitude":-80.8998031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC16","iata":"","local":"SC16","name":"Curry Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Hartsville","elevation_ft":199,"latitude":34.377899169921875,"longitude":-80.00530242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC06","iata":"","local":"SC06","name":"Pluff Mud Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Johns Island","elevation_ft":15,"latitude":32.63456,"longitude":-80.09143,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC13","iata":"","local":"SC13","name":"Darden Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Gaston","elevation_ft":450,"latitude":33.840711,"longitude":-81.185746,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3300,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC12","iata":"","local":"SC12","name":"Davis Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Garnett","elevation_ft":82,"latitude":32.67210006713867,"longitude":-81.31120300292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC18","iata":"","local":"SC18","name":"Lexington Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"West Columbia","elevation_ft":340,"latitude":34.00040054321289,"longitude":-81.10399627685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC19","iata":"","local":"SC19","name":"Lamar Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Lamar","elevation_ft":175,"latitude":34.167701721191406,"longitude":-80.07759857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3150,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC21","iata":"","local":"SC21","name":"Myrtle Beach Hardee Airpark","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Loris","elevation_ft":45,"latitude":33.942902,"longitude":-78.828984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC22","iata":"","local":"SC22","name":"Richland Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Columbia","elevation_ft":258,"latitude":34.02790069580078,"longitude":-81.03340148925781,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC30","iata":"","local":"SC30","name":"Savannah River Site (Department of Energy) Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Aiken","elevation_ft":720,"latitude":33.2836,"longitude":-81.726402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC31","iata":"","local":"SC31","name":"Springs Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Lancaster","elevation_ft":600,"latitude":34.7169,"longitude":-80.789146,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC32","iata":"","local":"SC32","name":"Oconee Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Seneca","elevation_ft":962,"latitude":34.694322,"longitude":-82.988886,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC33","iata":"","local":"","name":"Cox Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Simpsonville","elevation_ft":1000,"latitude":34.824299,"longitude":-82.259804,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC20","iata":"","local":"SC20","name":"Harman Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Langley","elevation_ft":458,"latitude":33.48429870605469,"longitude":-81.82589721679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC23","iata":"","local":"SC23","name":"Eagles Nest-Fairview Airpark","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Leesville","elevation_ft":460,"latitude":33.76764,"longitude":-81.35772,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":180,"surface":"T"},{"id":"03/21","length_ft":1500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC17","iata":"","local":"SC17","name":"Russell Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Holly Hill","elevation_ft":110,"latitude":33.357703,"longitude":-80.459146,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC36","iata":"","local":"","name":"Emery Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Greer","elevation_ft":1220,"latitude":35.124699,"longitude":-82.326402,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1385,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC43","iata":"","local":"SC43","name":"Moores Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Williamston","elevation_ft":871,"latitude":34.593685,"longitude":-82.399002,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC44","iata":"","local":"SC44","name":"El Porvenir Airpark","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Boykin","elevation_ft":250,"latitude":34.12879944,"longitude":-80.54730225,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC37","iata":"","local":"SC37","name":"Crosswinds-Wilson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Cross","elevation_ft":90,"latitude":33.27180099487305,"longitude":-80.25430297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC45","iata":"","local":"SC45","name":"Gilbert International Airpark","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Gilbert","elevation_ft":551,"latitude":33.882958,"longitude":-81.383972,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC41","iata":"","local":"SC41","name":"Palmetto Air Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Manning","elevation_ft":140,"latitude":33.66609955,"longitude":-80.24389648,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3720,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC46","iata":"","local":"SC46","name":"House Movers Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Batesburg","elevation_ft":540,"latitude":33.85100173950195,"longitude":-81.54840087890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC35","iata":"","local":"SC35","name":"Ehrhardt Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Ehrhardt","elevation_ft":146,"latitude":33.089599609375,"longitude":-81.0082015991211,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC38","iata":"","local":"SC38","name":"Pocotaligo Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Manning","elevation_ft":112,"latitude":33.70750045776367,"longitude":-80.08059692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3340,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC42","iata":"","local":"SC42","name":"Hondarosa Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Wadmalaw Island","elevation_ft":13,"latitude":32.687606,"longitude":-80.106297,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC50","iata":"","local":"","name":"Yonges Island Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Yonges Island","elevation_ft":10,"latitude":32.697398,"longitude":-80.225899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC53","iata":"","local":"SC53","name":"Usar Center, Clemson Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Clemson","elevation_ft":750,"latitude":34.68339920043945,"longitude":-82.81790161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC54","iata":"","local":"SC54","name":"Milliken & County Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Spartanburg","elevation_ft":863,"latitude":34.98680114746094,"longitude":-81.95339965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC57","iata":"","local":"","name":"Creech Aviation Facility Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Wedgefield","elevation_ft":178,"latitude":33.8843,"longitude":-80.494796,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2750,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC58","iata":"","local":"","name":"Hartness Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":850,"latitude":34.847099,"longitude":-82.251801,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC59","iata":"","local":"SC59","name":"Palmetto Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Greenville","elevation_ft":950,"latitude":34.763999938964844,"longitude":-82.39430236816406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC61","iata":"","local":"SC61","name":"Wild Irish Rose Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Cheraw","elevation_ft":376,"latitude":34.61790084838867,"longitude":-80.15170288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC62","iata":"","local":"SC62","name":"Hampton Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Varnville","elevation_ft":86,"latitude":32.8524017334,"longitude":-81.0886993408,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC63","iata":"","local":"SC63","name":"Summers Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Jenkinsville","elevation_ft":436,"latitude":34.296600341796875,"longitude":-81.31330108642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC64","iata":"","local":"SC64","name":"Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Orangeburg","elevation_ft":300,"latitude":33.538551,"longitude":-80.830016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC51","iata":"","local":"SC51","name":"Too Goo Doo Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Meggett","elevation_ft":15,"latitude":32.7046012878418,"longitude":-80.2531967163086,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC55","iata":"","local":"SC55","name":"Broxton Bridge Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Ehrhardt","elevation_ft":120,"latitude":33.008878,"longitude":-81.048203,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC66","iata":"","local":"","name":"E M M D Plant Heliport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Union","elevation_ft":580,"latitude":34.684898,"longitude":-81.733398,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2219,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC71","iata":"","local":"SC71","name":"Medical University of South Carolina Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Charleston","elevation_ft":15,"latitude":32.78710174560547,"longitude":-79.95259857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC73","iata":"","local":"SC73","name":"Newberry County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Newberry","elevation_ft":502,"latitude":34.29090118408203,"longitude":-81.60669708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC77","iata":"","local":"SC77","name":"Providence Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Columbia","elevation_ft":322,"latitude":34.01459884643555,"longitude":-81.01200103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC80","iata":"","local":"","name":"Anderson Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Pendleton","elevation_ft":817,"latitude":34.667245,"longitude":-82.71033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC65","iata":"","local":"SC65","name":"Raven's Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Mount Pleasant","elevation_ft":8,"latitude":32.82379913330078,"longitude":-79.80670166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC78","iata":"","local":"SC78","name":"King Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Cleveland","elevation_ft":1250,"latitude":35.0906982421875,"longitude":-82.49539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC67","iata":"","local":"55SC","name":"Falls Landing","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Rock Hill","elevation_ft":587,"latitude":34.909197,"longitude":-81.07466,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2850,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC76","iata":"","local":"SC76","name":"Unity Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Lancaster","elevation_ft":640,"latitude":34.80270004272461,"longitude":-80.68009948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC69","iata":"","local":"SC69","name":"Shiloh Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Ehrhardt","elevation_ft":131,"latitude":33.120601654052734,"longitude":-80.95079803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC74","iata":"","local":"SC74","name":"Marsh Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Beaufort","elevation_ft":12,"latitude":32.46189880371094,"longitude":-80.60089874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC83","iata":"","local":"SC83","name":"Abbeville County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Abbeville","elevation_ft":604,"latitude":34.160301208496094,"longitude":-82.38330078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC84","iata":"","local":"","name":"Milliken & Company Heliport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Blacksburg","elevation_ft":606,"latitude":35.116501,"longitude":-81.561501,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3072,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC85","iata":"","local":"SC85","name":"Chester Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SC","municipality":"Chester","elevation_ft":700,"latitude":34.68348,"longitude":-81.184094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC93","iata":"","local":"","name":"Paul's Plantation Airport","category":"closed","iso_country":"US","iso_region":"US-SC","municipality":"Darlington","elevation_ft":180,"latitude":34.366001,"longitude":-79.824203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC94","iata":"","local":"SC94","name":"Weaver Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Johnsonville","elevation_ft":75,"latitude":33.889400482177734,"longitude":-79.50640106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2660,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SC92","iata":"","local":"SC92","name":"Rambos Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Abbeville","elevation_ft":550,"latitude":34.103454,"longitude":-82.282104,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC82","iata":"","local":"SC82","name":"Oakhill Airpark","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Williamson","elevation_ft":837,"latitude":34.58470153808594,"longitude":-82.35169982910156,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC90","iata":"","local":"SC90","name":"Do-Little Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Orangeburg","elevation_ft":369,"latitude":33.676015,"longitude":-80.947373,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC81","iata":"","local":"SC81","name":"Abbeville Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Abbeville","elevation_ft":550,"latitude":34.1515007019,"longitude":-82.35369873050001,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2250,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC91","iata":"","local":"SC91","name":"Bell's Branch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Branchville","elevation_ft":95,"latitude":33.30649948120117,"longitude":-80.84819793701172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC87","iata":"","local":"SC87","name":"Avinger Field","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Vance","elevation_ft":138,"latitude":33.44279861450195,"longitude":-80.45559692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC98","iata":"","local":"SC98","name":"Mount Holly Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Goose Creek","elevation_ft":55,"latitude":33.054298400878906,"longitude":-80.0833969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC99","iata":"","local":"9SC","name":"Whiteplains Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Lexington","elevation_ft":520,"latitude":33.963902,"longitude":-81.3592,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SC95","iata":"","local":"SC95","name":"Perry International Airport","category":"small_airport","iso_country":"US","iso_region":"US-SC","municipality":"Perry","elevation_ft":438,"latitude":33.62929916381836,"longitude":-81.32969665527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SCIP","iata":"IPC","local":"","name":"Mataveri Airport","category":"medium_airport","iso_country":"CL","iso_region":"CL-VS","municipality":"Isla De Pascua","elevation_ft":227,"latitude":-27.1648006439,"longitude":-109.42199707,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":10837,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SCIR","iata":"","local":"","name":"Robinson Crusoe Airport","category":"small_airport","iso_country":"CL","iso_region":"CL-VS","municipality":"Isla Robinson Crusoe","elevation_ft":433,"latitude":-33.6650009155,"longitude":-78.9297027588,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3297,"width_ft":70,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD01","iata":"","local":"SD01","name":"Mj Aviation I Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Letcher","elevation_ft":1305,"latitude":43.89970016479492,"longitude":-98.10769653320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD02","iata":"","local":"SD02","name":"Mogensmark Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Twin Brooks","elevation_ft":1283,"latitude":45.183056,"longitude":-96.777778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD04","iata":"","local":"SD04","name":"Keystone XL Opal Heliport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Opal","elevation_ft":3001,"latitude":45.02,"longitude":-102.658889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD05","iata":"","local":"SD05","name":"Thorson Airfield","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Warner","elevation_ft":1300,"latitude":45.36853,"longitude":-98.471888,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2850,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD00","iata":"","local":"SD00","name":"MJ Aviation II Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Elk Point","elevation_ft":1115,"latitude":42.679885,"longitude":-96.699218,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD06","iata":"","local":"SD06","name":"Faulkton Area Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Faulkton","elevation_ft":1600,"latitude":45.030258,"longitude":-99.133715,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD07","iata":"","local":"SD07","name":"Keystone XL Philip Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Philip","elevation_ft":2338,"latitude":44.056667,"longitude":-101.674722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD09","iata":"","local":"SD09","name":"Mid-Dakota Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Chamberlain","elevation_ft":1735,"latitude":43.78689956665039,"longitude":-99.32649993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD17","iata":"","local":"SD17","name":"Cdp Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Sisseton","elevation_ft":1250,"latitude":45.65800094604492,"longitude":-97.05010223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD18","iata":"","local":"SD18","name":"Keystone Adventures Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Rapid City","elevation_ft":4969,"latitude":43.916111,"longitude":-103.441943,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD20","iata":"","local":"SD20","name":"Crooked Lake Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Strandburg","elevation_ft":1882,"latitude":45.032936,"longitude":-96.883486,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD22","iata":"","local":"SD22","name":"Avera Dells Area Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Dell Rapids","elevation_ft":1570,"latitude":43.828501,"longitude":-96.717278,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD23","iata":"","local":"SD23","name":"Black Hills Health Care System Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Hot Springs","elevation_ft":3528,"latitude":43.437336,"longitude":-103.473305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD19","iata":"","local":"SD19","name":"Andersen Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Badger","elevation_ft":1750,"latitude":44.46530151367188,"longitude":-97.22250366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD21","iata":"","local":"SD21","name":"Hayes Emergency Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Hayes","elevation_ft":1986,"latitude":44.37080001831055,"longitude":-101.00900268554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD24","iata":"","local":"SD24","name":"Eden Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Sturgis","elevation_ft":3070,"latitude":44.446955,"longitude":-103.398086,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3150,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":3860,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD26","iata":"","local":"SD26","name":"Mike Jacob Sturgis Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Sturgis","elevation_ft":3280,"latitude":44.416801,"longitude":-103.449997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD28","iata":"","local":"SD28","name":"Tumbleweed Lodge Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Harrold","elevation_ft":2001,"latitude":44.460944,"longitude":-99.742306,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD29","iata":"","local":"","name":"Menno Airport","category":"closed","iso_country":"US","iso_region":"US-SD","municipality":"Menno","elevation_ft":1350,"latitude":43.244401,"longitude":-97.553101,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3049,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD40","iata":"","local":"SD40","name":"Rapid City Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Rapid City","elevation_ft":3354,"latitude":44.05780029296875,"longitude":-103.22599792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD42","iata":"","local":"","name":"Waltner & Richards Airport","category":"closed","iso_country":"US","iso_region":"US-SD","municipality":"Bridgewater","elevation_ft":1403,"latitude":43.566469,"longitude":-97.538107,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA14","iata":"","local":"TA14","name":"LYB Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Channelview","elevation_ft":41,"latitude":29.83573,"longitude":-95.10889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD43","iata":"","local":"SD43","name":"Ingle Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Cavour","elevation_ft":1305,"latitude":44.23970031738281,"longitude":-98.04969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":100,"surface":"T"},{"id":"12/30","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD32","iata":"","local":"SD32","name":"Braun Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Aberdeen","elevation_ft":1305,"latitude":45.434722,"longitude":-98.444305,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1070,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD35","iata":"","local":"SD35","name":"Bruch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Sturgis","elevation_ft":2980,"latitude":44.494267,"longitude":-103.395689,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD36","iata":"","local":"SD36","name":"Booth Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Ridgeview","elevation_ft":2250,"latitude":45.12919998168945,"longitude":-100.75599670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1340,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD45","iata":"","local":"SD45","name":"Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Redfield","elevation_ft":1300,"latitude":44.87120056152344,"longitude":-98.52120208740234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD52","iata":"","local":"SD52","name":"Avera Queen of Peace Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Mitchell","elevation_ft":1386,"latitude":43.7140998840332,"longitude":-98.00869750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":50,"surface":"-"},{"id":"H2","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD54","iata":"","local":"SD54","name":"Avera St. Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Aberdeen","elevation_ft":1308,"latitude":45.46187,"longitude":-98.47681,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD53","iata":"","local":"SD53","name":"Howard Field","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Beresford","elevation_ft":1250,"latitude":42.90639877319336,"longitude":-96.81079864501952,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1906,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD48","iata":"","local":"SD48","name":"Blomberg 42 Ranch Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Faith","elevation_ft":2610,"latitude":45.20000076293945,"longitude":-102.6500015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":50,"surface":"T"},{"id":"14/32","length_ft":2375,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD55","iata":"","local":"SD55","name":"Winter Airfield","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Huron","elevation_ft":1323,"latitude":44.315799713134766,"longitude":-98.27330017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD49","iata":"","local":"SD49","name":"Hite Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Ferney","elevation_ft":1320,"latitude":45.287200927734375,"longitude":-98.0542984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD50","iata":"","local":"SD50","name":"Harrold Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Harrold","elevation_ft":1787,"latitude":44.53089904789999,"longitude":-99.7474975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2250,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD57","iata":"","local":"SD57","name":"W L Thompson Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Pierre","elevation_ft":2113,"latitude":44.56660079956055,"longitude":-100.75,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2400,"width_ft":80,"surface":"T"},{"id":"N/S","length_ft":2600,"width_ft":80,"surface":"T"},{"id":"NW/SE","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD58","iata":"","local":"SD58","name":"Burke Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Burke","elevation_ft":2210,"latitude":43.18190002441406,"longitude":-99.29329681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD59","iata":"","local":"","name":"Carr Airport","category":"closed","iso_country":"US","iso_region":"US-SD","municipality":"Prairie City","elevation_ft":2886,"latitude":45.533171,"longitude":-102.814968,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1940,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD62","iata":"","local":"","name":"Schaller Airport","category":"closed","iso_country":"US","iso_region":"US-SD","municipality":"Verdon","elevation_ft":1320,"latitude":45.25,"longitude":-98.167,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD67","iata":"","local":"SD67","name":"Flandreau Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Flandreau","elevation_ft":1570,"latitude":44.0516014099,"longitude":-96.5920028687,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD69","iata":"","local":"SD69","name":"Badlands Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Interior","elevation_ft":2500,"latitude":43.78332,"longitude":-101.896261,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD72","iata":"","local":"SD72","name":"Vig Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Opal","elevation_ft":2600,"latitude":44.84999847412109,"longitude":-102.58399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":800,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD74","iata":"","local":"SD74","name":"Vander Wal Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Pollock","elevation_ft":1955,"latitude":45.99549865722656,"longitude":-100.3759994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD61","iata":"","local":"SD61","name":"Plihal Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Tyndall","elevation_ft":1435,"latitude":43.016700744628906,"longitude":-97.86699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2545,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD65","iata":"","local":"SD65","name":"Whipple Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Wilmot","elevation_ft":1462,"latitude":45.43769836425781,"longitude":-96.9998016357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD80","iata":"","local":"SD80","name":"Mobridge Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Mobridge","elevation_ft":1670,"latitude":45.54579925537109,"longitude":-100.4489974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD86","iata":"","local":"SD86","name":"Monument Health Custer Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Custer","elevation_ft":5300,"latitude":43.772601,"longitude":-103.593682,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD87","iata":"","local":"SD87","name":"Platte Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Platte","elevation_ft":1618,"latitude":43.3843994140625,"longitude":-98.83560180664062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD91","iata":"","local":"SD91","name":"Star Aviation Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Spearfish","elevation_ft":4025,"latitude":44.46839904785156,"longitude":-103.81199645996094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD92","iata":"","local":"SD92","name":"Telstar Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Mitchell","elevation_ft":1310,"latitude":43.69829940795898,"longitude":-98.02149963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":34,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD96","iata":"","local":"SD96","name":"Pioneer Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-SD","municipality":"Viborg","elevation_ft":1350,"latitude":43.1758,"longitude":-97.084198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":233,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SD93","iata":"","local":"SD93","name":"Gary Myers Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Gettysburg","elevation_ft":1930,"latitude":44.864200592041016,"longitude":-99.6063995361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":45,"surface":"G"},{"id":"13/31","length_ft":4000,"width_ft":48,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD98","iata":"","local":"SD98","name":"Barber Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Enning","elevation_ft":2655,"latitude":44.462501525878906,"longitude":-102.552001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD94","iata":"","local":"SD94","name":"Lundin Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Revillo","elevation_ft":1186,"latitude":44.99300003051758,"longitude":-96.47699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD83","iata":"","local":"SD83","name":"Lee Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"De Smet","elevation_ft":1555,"latitude":44.215599060058594,"longitude":-97.60749816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SD97","iata":"","local":"SD97","name":"Oller Airport","category":"small_airport","iso_country":"US","iso_region":"US-SD","municipality":"Vivian","elevation_ft":2100,"latitude":43.87779998779297,"longitude":-100.36199951171876,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SECO","iata":"OCC","local":"","name":"Francisco De Orellana Airport","category":"medium_airport","iso_country":"EC","iso_region":"EC-D","municipality":"Coca","elevation_ft":834,"latitude":-0.4628860056400299,"longitude":-76.98680114746094,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7546,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SEGS","iata":"GPS","local":"","name":"Seymour Galapagos Ecological Airport","category":"small_airport","iso_country":"EC","iso_region":"EC-W","municipality":"Isla Baltra","elevation_ft":207,"latitude":-0.453758,"longitude":-90.2659,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7874,"width_ft":118,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SESM","iata":"PTZ","local":"","name":"Rio Amazonas Airport","category":"small_airport","iso_country":"EC","iso_region":"EC-Y","municipality":"Shell Mera","elevation_ft":3465,"latitude":-1.50524,"longitude":-78.062698,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4879,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SEST","iata":"SCY","local":"","name":"San Cristóbal Airport","category":"small_airport","iso_country":"EC","iso_region":"EC-W","municipality":"Puerto Baquerizo Moreno","elevation_ft":62,"latitude":-0.910206,"longitude":-89.617401,"has_tower":true,"has_beacon":false,"runways":[{"id":"17/35","length_ft":6037,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SGCO","iata":"CIO","local":"","name":"Aeropuerto Nacional Tte. Cnel. Carmelo Peralta","category":"medium_airport","iso_country":"PY","iso_region":"PY-1","municipality":"Concepción","elevation_ft":253,"latitude":-23.440334,"longitude":-57.429206,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":6070,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SKPS","iata":"PSO","local":"PSO","name":"Antonio Nariño Airport","category":"medium_airport","iso_country":"CO","iso_region":"CO-NAR","municipality":"Chachagüí","elevation_ft":5951,"latitude":1.39625,"longitude":-77.2915,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":7136,"width_ft":128,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SKRH","iata":"RCH","local":"RCH","name":"Almirante Padilla Airport","category":"medium_airport","iso_country":"CO","iso_region":"CO-LAG","municipality":"Riohacha","elevation_ft":43,"latitude":11.5262,"longitude":-72.926,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6234,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLCA","iata":"CAM","local":"","name":"Camiri Airport","category":"small_airport","iso_country":"BO","iso_region":"BO-S","municipality":"Camiri","elevation_ft":2614,"latitude":-20.00639915466309,"longitude":-63.52780151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3839,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLCO","iata":"CIJ","local":"","name":"Capitán Aníbal Arab Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-N","municipality":"Cobija","elevation_ft":889,"latitude":-11.040399551400002,"longitude":-68.7829971313,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":8530,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLCP","iata":"CEP","local":"","name":"Concepción Airport","category":"small_airport","iso_country":"BO","iso_region":"BO-S","municipality":"Concepción","elevation_ft":1620,"latitude":-16.142688,"longitude":-62.026595,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5653,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA63","iata":"","local":"","name":"Flattop Ridge Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Burnet","elevation_ft":1340,"latitude":30.824081,"longitude":-98.116485,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLMG","iata":"MGD","local":"","name":"Magdalena Airport","category":"small_airport","iso_country":"BO","iso_region":"BO-B","municipality":"Magdalena","elevation_ft":462,"latitude":-13.2607483767,"longitude":-64.0607643127,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4449,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLOR","iata":"ORU","local":"","name":"Juan Mendoza Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-O","municipality":"Oruro","elevation_ft":12152,"latitude":-17.962600708,"longitude":-67.0762023926,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":13120,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLPO","iata":"POI","local":"","name":"Capitan Nicolas Rojas Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-P","municipality":"Potosí","elevation_ft":12922,"latitude":-19.543331,"longitude":-65.723734,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":9213,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLPS","iata":"PSZ","local":"","name":"Capitán Av. Salvador Ogaya G. airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-S","municipality":"Puerto Suárez","elevation_ft":440,"latitude":-18.975301,"longitude":-57.820599,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6561,"width_ft":118,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLRB","iata":"RBO","local":"","name":"Roboré Airport","category":"small_airport","iso_country":"BO","iso_region":"BO-S","municipality":"Roboré","elevation_ft":905,"latitude":-18.329200744628903,"longitude":-59.76499938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3940,"width_ft":98,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLRI","iata":"RIB","local":"","name":"Capitán Av. Selin Zeitun Lopez Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-B","municipality":"Riberalta","elevation_ft":462,"latitude":-11.009355,"longitude":-66.075468,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5705,"width_ft":69,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLRY","iata":"REY","local":"","name":"Reyes Airport","category":"small_airport","iso_country":"BO","iso_region":"BO-B","municipality":"Reyes","elevation_ft":935,"latitude":-14.3044,"longitude":-67.353401,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4593,"width_ft":131,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLSA","iata":"SBL","local":"","name":"Santa Ana Del Yacuma Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-B","municipality":"Santa Ana del Yacuma","elevation_ft":472,"latitude":-13.7622003555,"longitude":-65.4352035522,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4984,"width_ft":69,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLTR","iata":"TDD","local":"","name":"Teniente Av. Jorge Henrich Arauz Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-B","municipality":"Trinidad","elevation_ft":509,"latitude":-14.8186998367,"longitude":-64.9179992676,"has_tower":true,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7874,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SLVM","iata":"VLM","local":"","name":"Teniente Coronel Rafael Pabón Airport","category":"medium_airport","iso_country":"BO","iso_region":"BO-T","municipality":"Villamontes","elevation_ft":1305,"latitude":-21.2551994324,"longitude":-63.4056015015,"has_tower":true,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4918,"width_ft":118,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN01","iata":"","local":"SN01","name":"Dwight Eisenhower Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Leavenworth","elevation_ft":897,"latitude":39.28279876708984,"longitude":-94.88800048828124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN03","iata":"","local":"SN03","name":"Lenora Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Lenora","elevation_ft":2373,"latitude":39.62939834594727,"longitude":-100.01499938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":148,"surface":"T"},{"id":"15/33","length_ft":2010,"width_ft":190,"surface":"T"},{"id":"17/35","length_ft":2285,"width_ft":260,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN11","iata":"","local":"SN11","name":"Caney Municipal Hospital Helicopter Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Caney","elevation_ft":755,"latitude":37.00650024414063,"longitude":-95.93160247802734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN04","iata":"","local":"SN04","name":"Roberts Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Emporia","elevation_ft":1185,"latitude":38.423099517822266,"longitude":-96.37190246582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN13","iata":"","local":"SN13","name":"Albers Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Cheney","elevation_ft":1380,"latitude":37.65829849243164,"longitude":-97.77449798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN05","iata":"","local":"SN05","name":"Halstead Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Halstead","elevation_ft":1412,"latitude":38.03139877319336,"longitude":-97.50920104980467,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN08","iata":"","local":"SN08","name":"Fisher Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Burrton","elevation_ft":1430,"latitude":37.99169921875,"longitude":-97.65640258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN20","iata":"","local":"SN20","name":"Brady-Pippin Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Augusta","elevation_ft":1300,"latitude":37.71950149536133,"longitude":-97.04889678955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN21","iata":"","local":"SN21","name":"Flory Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Baldwin City","elevation_ft":1100,"latitude":38.822691,"longitude":-95.288372,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN12","iata":"","local":"SN12","name":"Jenkinson Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Meade","elevation_ft":2737,"latitude":37.36389923095703,"longitude":-100.47100067138672,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3500,"width_ft":75,"surface":"T"},{"id":"12/30","length_ft":3030,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN29","iata":"","local":"SN29","name":"Rucker Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Burdett","elevation_ft":2151,"latitude":38.185477,"longitude":-99.536105,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2361,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":2329,"width_ft":75,"surface":"T"},{"id":"17/35","length_ft":2460,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN31","iata":"","local":"SN31","name":"William Newton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Winfield","elevation_ft":1156,"latitude":37.24520111083984,"longitude":-96.98200225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN33","iata":"","local":"SN33","name":"Callaway Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Clay Center","elevation_ft":1275,"latitude":39.428189,"longitude":-97.124103,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1325,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN35","iata":"","local":"SN35","name":"Menorah Medical Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Overland Park","elevation_ft":907,"latitude":38.91059875488281,"longitude":-94.65019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN38","iata":"","local":"SN38","name":"Lawrence Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Lawrence","elevation_ft":858,"latitude":38.98003,"longitude":-95.248851,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN45","iata":"","local":"SN45","name":"Michael's Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Lawrence","elevation_ft":1105,"latitude":38.82841,"longitude":-95.267215,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN37","iata":"","local":"SN37","name":"Harold K. Wells Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Elmdale","elevation_ft":1100,"latitude":38.387001037597656,"longitude":-96.72969818115234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN34","iata":"","local":"SN34","name":"Rucker Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Clearwater","elevation_ft":1300,"latitude":37.573727,"longitude":-97.492461,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN36","iata":"","local":"SN36","name":"Wamsley Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Conway Springs","elevation_ft":1335,"latitude":37.427317,"longitude":-97.637833,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN22","iata":"","local":"SN22","name":"Hoelting Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Basehor","elevation_ft":960,"latitude":39.11220169067383,"longitude":-94.9561004638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN42","iata":"","local":"SN42","name":"Harrod Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Ottawa","elevation_ft":990,"latitude":38.561034,"longitude":-95.206749,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2210,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN50","iata":"","local":"SN50","name":"Mt Carmel Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Pittsburg","elevation_ft":915,"latitude":37.38029861450195,"longitude":-94.6852035522461,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN51","iata":"","local":"","name":"Meitl Airport","category":"closed","iso_country":"US","iso_region":"US-KS","municipality":"Dresden","elevation_ft":2725,"latitude":39.589699,"longitude":-100.428001,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1725,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN54","iata":"","local":"SN54","name":"Overland Park Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Overland Park","elevation_ft":961,"latitude":38.936905,"longitude":-94.725906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN60","iata":"","local":"SN60","name":"Lcf Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Lansing","elevation_ft":760,"latitude":39.25,"longitude":-94.90019989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN63","iata":"","local":"SN63","name":"Gail Ballard Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Haviland","elevation_ft":2165,"latitude":37.6083984375,"longitude":-99.1156997680664,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN64","iata":"","local":"SN64","name":"Eck Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Goddard","elevation_ft":1330,"latitude":37.696438,"longitude":-97.543951,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2499,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN52","iata":"","local":"SN52","name":"Pilot Pointe Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Douglass","elevation_ft":1237,"latitude":37.48139954,"longitude":-97.01200104,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN61","iata":"","local":"SN61","name":"Yoder Airpark","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Goddard","elevation_ft":1475,"latitude":37.659698486328125,"longitude":-97.62950134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN47","iata":"","local":"SN47","name":"Converse Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Harveyville","elevation_ft":1231,"latitude":38.742118,"longitude":-96.099772,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN46","iata":"","local":"SN46","name":"Taylor Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Benton","elevation_ft":1340,"latitude":37.87189865112305,"longitude":-97.07219696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN55","iata":"","local":"SN55","name":"R J C Farms Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Friend","elevation_ft":2900,"latitude":38.21530151367188,"longitude":-101.00299835205078,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2200,"width_ft":27,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN69","iata":"","local":"SN69","name":"Emmerson Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Hammond","elevation_ft":860,"latitude":37.9314,"longitude":-94.642407,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN73","iata":"","local":"SN73","name":"Salina Regional Health Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Salina","elevation_ft":1228,"latitude":38.832742,"longitude":-97.610323,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":105,"width_ft":105,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN74","iata":"","local":"SN74","name":"Hays Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Hays","elevation_ft":2000,"latitude":38.879949,"longitude":-99.297462,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN80","iata":"","local":"SN80","name":"Girard Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-KS","municipality":"Girard","elevation_ft":995,"latitude":37.515524,"longitude":-94.857835,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN68","iata":"","local":"SN68","name":"Lil Bird Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Valley Center","elevation_ft":1456,"latitude":37.878817,"longitude":-97.309041,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2462,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN91","iata":"","local":"SN91","name":"Godfrey Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Madison","elevation_ft":1100,"latitude":38.10969924926758,"longitude":-96.1156005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN75","iata":"","local":"SN75","name":"Sommers Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Highland","elevation_ft":1070,"latitude":39.86669921875,"longitude":-95.33360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN78","iata":"","local":"SN78","name":"Albright Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Bucyrus","elevation_ft":1000,"latitude":38.698146,"longitude":-94.719154,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN88","iata":"","local":"SN88","name":"Crosswind Airfield","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Louisburg","elevation_ft":1100,"latitude":38.5713996887207,"longitude":-94.71269989013672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN83","iata":"","local":"SN83","name":"Highcrest Air Park","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Lansing","elevation_ft":1000,"latitude":39.2272,"longitude":-94.951401,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN90","iata":"","local":"SN90","name":"Eibes Airfield","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"McLouth","elevation_ft":1100,"latitude":39.226959,"longitude":-95.192231,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN92","iata":"","local":"SN92","name":"Sunshine Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Manhattan","elevation_ft":1300,"latitude":39.33330154418945,"longitude":-96.70030212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN94","iata":"","local":"SN94","name":"Amy Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Minneola","elevation_ft":2560,"latitude":37.46670150756836,"longitude":-100,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1300,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN99","iata":"","local":"SN99","name":"Laflin Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Olsburg","elevation_ft":1190,"latitude":39.400001525878906,"longitude":-96.61699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":50,"surface":"T"},{"id":"N/S","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN95","iata":"","local":"SN95","name":"Roberts Air Field","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Sylvia","elevation_ft":1765,"latitude":37.977500915527344,"longitude":-98.4041976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2250,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SPEO","iata":"CHM","local":"","name":"FAP Lieutenant Jaime Andres de Montreuil Morales Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-ANC","municipality":"Chimbote","elevation_ft":69,"latitude":-9.14961,"longitude":-78.523804,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":5905,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPGM","iata":"TGI","local":"","name":"Tingo Maria Airport","category":"small_airport","iso_country":"PE","iso_region":"PE-HUC","municipality":"Tingo Maria","elevation_ft":2146,"latitude":-9.289667,"longitude":-76.005058,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6880,"width_ft":50,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPHO","iata":"AYP","local":"","name":"Air Force Colonel Alfredo Mendivil Duarte Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-AYA","municipality":"Ayacucho","elevation_ft":8917,"latitude":-13.1548,"longitude":-74.204399,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SN97","iata":"","local":"SN97","name":"G+ Ag Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Moscow","elevation_ft":3056,"latitude":37.325892,"longitude":-101.194639,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SN98","iata":"","local":"SN98","name":"Anton Flying Uv Airport","category":"small_airport","iso_country":"US","iso_region":"US-KS","municipality":"Satanta","elevation_ft":2954,"latitude":37.42079925537109,"longitude":-100.94200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2150,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SPJE","iata":"JAE","local":"","name":"Shumba Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-CAJ","municipality":"Jaén","elevation_ft":2477,"latitude":-5.59248,"longitude":-78.774002,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":7875,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPJJ","iata":"JAU","local":"","name":"Francisco Carle Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-JUN","municipality":"Jauja","elevation_ft":11034,"latitude":-11.7831001282,"longitude":-75.47339630130001,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9219,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPJL","iata":"JUL","local":"","name":"Inca Manco Capac International Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-PUN","municipality":"Juliaca","elevation_ft":12552,"latitude":-15.467100143432615,"longitude":-70.158203125,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":13780,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPJR","iata":"CJA","local":"","name":"Mayor General FAP Armando Revoredo Iglesias Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-CAJ","municipality":"Cajamarca","elevation_ft":8781,"latitude":-7.1391801834106445,"longitude":-78.4894027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPNC","iata":"HUU","local":"","name":"Alferez Fap David Figueroa Fernandini Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-HUC","municipality":"Huánuco","elevation_ft":6070,"latitude":-9.878809928894045,"longitude":-76.20480346679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPPY","iata":"CHH","local":"","name":"Chachapoyas Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-AMA","municipality":"Chachapoyas","elevation_ft":8333,"latitude":-6.201911,"longitude":-77.856195,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":6496,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SPTU","iata":"PEM","local":"","name":"Padre Aldamiz International Airport","category":"medium_airport","iso_country":"PE","iso_region":"PE-MDD","municipality":"Puerto Maldonado","elevation_ft":659,"latitude":-12.6135997772,"longitude":-69.2285995483,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":11483,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"SUSO","iata":"STY","local":"","name":"Nueva Hesperides International Airport","category":"medium_airport","iso_country":"UY","iso_region":"UY-SA","municipality":"Salto","elevation_ft":187,"latitude":-31.438499450683597,"longitude":-57.98529815673828,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5210,"width_ft":148,"surface":"H"},{"id":"13/31","length_ft":2461,"width_ft":164,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SUDU","iata":"DZO","local":"","name":"Santa Bernardina International Airport","category":"medium_airport","iso_country":"UY","iso_region":"UY-DU","municipality":"Durazno","elevation_ft":305,"latitude":-33.3588981628418,"longitude":-56.49919891357422,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":7477,"width_ft":148,"surface":"H"},{"id":"10/28","length_ft":4764,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SURV","iata":"RVY","local":"","name":"Presidente General Don Oscar D. Gestido International Airport","category":"small_airport","iso_country":"UY","iso_region":"UY-RV","municipality":"Rivera","elevation_ft":712,"latitude":-30.97459983825684,"longitude":-55.476200103759766,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6004,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVSR","iata":"SFD","local":"","name":"San Fernando De Apure Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-C","municipality":"Inglaterra","elevation_ft":154,"latitude":7.883319854736328,"longitude":-67.44400024414062,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":6430,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVGU","iata":"GUQ","local":"","name":"Guanare Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-P","municipality":"Guanare","elevation_ft":606,"latitude":9.026944160461426,"longitude":-69.7551498413086,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5906,"width_ft":131,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVJC","iata":"LSP","local":"","name":"Josefa Camejo International Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-I","municipality":"Paraguaná","elevation_ft":75,"latitude":11.78077507019043,"longitude":-70.15149688720703,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVMC","iata":"MAR","local":"","name":"La Chinita International Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-V","municipality":"Maracaibo","elevation_ft":239,"latitude":10.5582084656,"longitude":-71.7278594971,"has_tower":true,"has_beacon":false,"runways":[{"id":"03L/21R","length_ft":9843,"width_ft":148,"surface":"H"},{"id":"03R/21L","length_ft":8202,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"SVMG","iata":"PMV","local":"","name":"Del Caribe Santiago Mariño International Airport","category":"medium_airport","iso_country":"VE","iso_region":"VE-O","municipality":"Isla Margarita","elevation_ft":74,"latitude":10.912603378295898,"longitude":-63.96659851074219,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA13","iata":"","local":"TA13","name":"Nebtex Land Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Texline","elevation_ft":4373,"latitude":36.208131,"longitude":-102.872672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA04","iata":"","local":"","name":"Sheriff Department Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":385,"latitude":31.548201,"longitude":-97.078903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA09","iata":"","local":"","name":"Naval Station Ingleside Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Ingleside","elevation_ft":26,"latitude":27.834525,"longitude":-97.204533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA10","iata":"","local":"","name":"Flying W Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Mansfield","elevation_ft":615,"latitude":32.521801,"longitude":-97.134697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA12","iata":"","local":"","name":"Petroleum Helicopters Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":10,"latitude":29.701099,"longitude":-93.944099,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3777,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA00","iata":"","local":"TA00","name":"Rafter P Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sweetwater","elevation_ft":2190,"latitude":32.38420104980469,"longitude":-100.27899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA07","iata":"","local":"TA07","name":"Jet Ag Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Dayton","elevation_ft":70,"latitude":30.0072002411,"longitude":-94.9669036865,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA01","iata":"","local":"TA01","name":"Phillips Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvarado","elevation_ft":800,"latitude":32.341800689697266,"longitude":-97.25029754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA05","iata":"","local":"TA05","name":"Anxiety Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corsicana","elevation_ft":430,"latitude":32.03770065307617,"longitude":-96.53170013427734,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA02","iata":"","local":"TA02","name":"Howard Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rhome","elevation_ft":960,"latitude":33.1029014587,"longitude":-97.4642028809,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2450,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA15","iata":"","local":"TA15","name":"Columbus Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Columbus","elevation_ft":196,"latitude":29.695243,"longitude":-96.543805,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA17","iata":"","local":"TA17","name":"Live Oak Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brenham","elevation_ft":387,"latitude":30.18599,"longitude":-96.44465,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2016,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA20","iata":"","local":"44TT","name":"Houston Methodist Baytown Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":25,"latitude":29.76923,"longitude":-94.978341,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2190,"width_ft":16,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA21","iata":"","local":"","name":"Windmill Hill Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Lewisville","elevation_ft":620,"latitude":33.0182,"longitude":-97.119202,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA22","iata":"","local":"","name":"Reward Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bonham","elevation_ft":615,"latitude":33.7673,"longitude":-96.121597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":10,"width_ft":10,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA23","iata":"","local":"TA23","name":"Morris Lazy K Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marquez","elevation_ft":360,"latitude":31.26129913330078,"longitude":-96.21640014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA27","iata":"","local":"","name":"Flying 'K' Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Briggs","elevation_ft":1132,"latitude":30.837983,"longitude":-97.950346,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1216,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA28","iata":"","local":"","name":"Woods Nr 2 Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Brookshire","elevation_ft":160,"latitude":29.7936,"longitude":-95.925201,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2660,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA26","iata":"","local":"TA26","name":"Coyote Crossing Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Maypearl","elevation_ft":580,"latitude":32.2963981628418,"longitude":-97.05680084228516,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA25","iata":"","local":"TA25","name":"Cook Canyon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ranger","elevation_ft":1476,"latitude":32.431734,"longitude":-98.594762,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5500,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA19","iata":"","local":"TA19","name":"Post Oak Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":1020,"latitude":32.674598693847656,"longitude":-97.78359985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2350,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA29","iata":"","local":"","name":"Flying D Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1630,"latitude":29.9258,"longitude":-100.839996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA35","iata":"","local":"","name":"Faust Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Brenham","elevation_ft":8,"latitude":30.272699,"longitude":-96.355003,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3508,"width_ft":23,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA36","iata":"","local":"","name":"Lempa Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Cuero","elevation_ft":247,"latitude":29.005494,"longitude":-97.31741,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA37","iata":"","local":"TA37","name":"Vaca Moo Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ben Wheeler","elevation_ft":0,"latitude":32.428021,"longitude":-95.71258,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":2480,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA38","iata":"","local":"TA38","name":"Hendrick Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1704,"latitude":32.470605,"longitude":-99.734428,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":120,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA39","iata":"","local":"TA39","name":"Eagle Lake Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Eagle Lake","elevation_ft":174,"latitude":29.58690071105957,"longitude":-96.34549713134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA41","iata":"","local":"TA41","name":"University Medical Center of El Paso Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3701,"latitude":31.771626,"longitude":-106.435463,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA42","iata":"","local":"","name":"Fly-N-Fish Lodge Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Uncertain","elevation_ft":195,"latitude":32.712898,"longitude":-94.124901,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA45","iata":"","local":"TA45","name":"Eckels Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":110,"latitude":29.831323,"longitude":-95.654937,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA46","iata":"","local":"TA46","name":"Baum Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Kaufman","elevation_ft":500,"latitude":32.562599182128906,"longitude":-96.4011001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA31","iata":"","local":"TA31","name":"Tularosa Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brackettville","elevation_ft":1397,"latitude":29.430500030517575,"longitude":-100.25800323486328,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA48","iata":"","local":"TA48","name":"Hawk Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Argyle","elevation_ft":657,"latitude":33.12739944458008,"longitude":-97.15390014648438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA54","iata":"","local":"","name":"Clear Fork Ranch Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":850,"latitude":32.733299,"longitude":-97.646698,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1639,"width_ft":40,"surface":"D"},{"id":"16/34","length_ft":3424,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA56","iata":"","local":"","name":"Blue Mountain Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Davis","elevation_ft":5502,"latitude":30.5473,"longitude":-104.0649,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA50","iata":"","local":"NM05","name":"Cielo Dorado Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-NM","municipality":"Anthony","elevation_ft":3750,"latitude":31.909819,"longitude":-106.641657,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1385,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA62","iata":"","local":"","name":"Emergency-1 Houston Center Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":680,"latitude":29.756599,"longitude":-95.362397,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":35,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA52","iata":"","local":"TA52","name":"Flying Bull Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Barksdale","elevation_ft":1614,"latitude":29.805353,"longitude":-100.011292,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3200,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA47","iata":"","local":"TA47","name":"Richards Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Krum","elevation_ft":785,"latitude":33.30139923095703,"longitude":-97.24500274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA55","iata":"","local":"","name":"Del Valle Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Valle","elevation_ft":460,"latitude":30.112111,"longitude":-97.619126,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA49","iata":"","local":"TA49","name":"Keno Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Andice","elevation_ft":1000,"latitude":30.75510025024414,"longitude":-97.79989624023438,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1537,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA57","iata":"","local":"TA57","name":"Texas Valley Air Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":450,"latitude":31.6238002777,"longitude":-96.9925003052,"has_tower":false,"has_beacon":true,"runways":[{"id":"15/33","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA51","iata":"","local":"TA51","name":"Eagle Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":885,"latitude":32.680274,"longitude":-97.934725,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA68","iata":"","local":"","name":"HHI Sabine Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":6,"latitude":29.713172,"longitude":-93.910288,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA69","iata":"","local":"TA69","name":"Lupton Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sunnyvale","elevation_ft":500,"latitude":32.81679916381836,"longitude":-96.58360290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA70","iata":"","local":"TA70","name":"W J E Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Tennessee Colony","elevation_ft":251,"latitude":31.78350067138672,"longitude":-95.89749908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA71","iata":"","local":"TA71","name":"Terrell Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Terrell","elevation_ft":480,"latitude":32.71,"longitude":-96.2784,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA74","iata":"","local":"TA74","name":"Ineos CBW Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Alvin","elevation_ft":13,"latitude":29.230688,"longitude":-95.189356,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA76","iata":"","local":"","name":"Reddington Building Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3920,"latitude":31.780199,"longitude":-106.410867,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3696,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA79","iata":"","local":"TA79","name":"University Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3231,"latitude":33.63949966430664,"longitude":-101.88999938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA67","iata":"","local":"TA67","name":"Biggin Hill Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Shallowater","elevation_ft":3330,"latitude":33.748429,"longitude":-102.066313,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA78","iata":"","local":"TA78","name":"Putty Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hico","elevation_ft":1143,"latitude":31.971359,"longitude":-98.063372,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA65","iata":"","local":"TA65","name":"Sportsman's World Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Palo Pinto","elevation_ft":1142,"latitude":32.8212013245,"longitude":-98.4786987305,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":4200,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA81","iata":"","local":"TA81","name":"Morning Star Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1500,"latitude":29.792017,"longitude":-100.876851,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA64","iata":"","local":"TA64","name":"Persimmon Gap Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marathon","elevation_ft":2680,"latitude":29.700917,"longitude":-103.15,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4200,"width_ft":100,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA82","iata":"","local":"","name":"R & J Livestock County Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Batesville","elevation_ft":805,"latitude":29.024401,"longitude":-99.527,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2450,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA83","iata":"","local":"","name":"Short Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Mansfield","elevation_ft":650,"latitude":32.539902,"longitude":-97.1922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA85","iata":"","local":"","name":"Chambers Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Celeste","elevation_ft":692,"latitude":33.3232,"longitude":-96.232202,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA88","iata":"","local":"TA88","name":"Premier Aviation Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Prairie","elevation_ft":590,"latitude":32.70009994506836,"longitude":-97.05030059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA91","iata":"","local":"TA91","name":"Childress Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Childress","elevation_ft":1952,"latitude":34.44440078735352,"longitude":-100.21800231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":31,"width_ft":31,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA92","iata":"","local":"","name":"Rowan Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":47,"latitude":29.6308,"longitude":-95.286903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA94","iata":"","local":"TA94","name":"Creech Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mesquite","elevation_ft":420,"latitude":32.71120071411133,"longitude":-96.55750274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":216,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA96","iata":"","local":"TA96","name":"Helicopter Express Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tomball","elevation_ft":150,"latitude":30.095199584960938,"longitude":-95.5448989868164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA98","iata":"","local":"TA98","name":"Chevron Chemical County Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Baytown","elevation_ft":28,"latitude":29.82159996032715,"longitude":-94.9229965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA99","iata":"","local":"","name":"Bell Helicopter Plant-3 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Richland Hills","elevation_ft":530,"latitude":32.791801,"longitude":-97.217002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TA97","iata":"","local":"TA97","name":"White Wing Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Wallis","elevation_ft":125,"latitude":29.637501,"longitude":-95.968803,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":900,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TA87","iata":"","local":"TA87","name":"Carter-Norman Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Boyd","elevation_ft":737,"latitude":33.105599,"longitude":-97.545258,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE00","iata":"","local":"TE00","name":"Coastal Bend Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Aransas Pass","elevation_ft":9,"latitude":27.913313,"longitude":-97.159352,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE01","iata":"","local":"TE01","name":"Dillard Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Centerville","elevation_ft":225,"latitude":31.30489921569824,"longitude":-95.79660034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3100,"width_ft":90,"surface":"T"},{"id":"16/34","length_ft":1900,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE03","iata":"","local":"TE03","name":"Huntsville Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Huntsville","elevation_ft":436,"latitude":30.698218,"longitude":-95.55797,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE04","iata":"","local":"TE04","name":"Split B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canadian","elevation_ft":2580,"latitude":35.70249938964844,"longitude":-100.28500366210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE07","iata":"","local":"TE07","name":"OakBend Medical Center - Wharton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Wharton","elevation_ft":110,"latitude":29.327886,"longitude":-96.117153,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE09","iata":"","local":"TE09","name":"Minard Pegasus Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvin","elevation_ft":25,"latitude":29.331899642944336,"longitude":-95.2760009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TDCF","iata":"DCF","local":"","name":"Canefield Airport","category":"medium_airport","iso_country":"DM","iso_region":"DM-10","municipality":"Canefield","elevation_ft":13,"latitude":15.336693,"longitude":-61.392108,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3130,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE10","iata":"","local":"TE10","name":"Pierce Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Henrietta","elevation_ft":885,"latitude":33.815741,"longitude":-98.229074,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE11","iata":"","local":"TE11","name":"Life Flight/Refuel Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":65,"latitude":29.569700241088867,"longitude":-95.4376983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"},{"id":"H2","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE14","iata":"","local":"TE14","name":"Winns Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Jonestown","elevation_ft":750,"latitude":30.402597,"longitude":-97.961327,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE18","iata":"","local":"TE18","name":"Mother Frances Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tyler","elevation_ft":520,"latitude":32.509300231933594,"longitude":-95.28990173339844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H3","length_ft":53,"width_ft":53,"surface":"C"},{"id":"H4","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE19","iata":"","local":"TE19","name":"Tyler County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Woodville","elevation_ft":265,"latitude":30.77630043029785,"longitude":-94.42829895019533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE20","iata":"","local":"TE20","name":"Putman Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Wylie","elevation_ft":550,"latitude":33.023417,"longitude":-96.536887,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"},{"id":"H2","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE22","iata":"","local":"TE22","name":"Texas Scottish Rite Hospital For Children Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":622,"latitude":32.801013,"longitude":-96.815795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE23","iata":"","local":"TE23","name":"Santa Rosa Northwest Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":932,"latitude":29.51110076904297,"longitude":-98.5886001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE13","iata":"","local":"TE13","name":"Weiblen Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Castroville","elevation_ft":830,"latitude":29.40019989013672,"longitude":-98.8874969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE15","iata":"","local":"TE15","name":"M & M Land Company Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Menard","elevation_ft":1800,"latitude":30.889962,"longitude":-99.632628,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1880,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":2200,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE16","iata":"","local":"TE16","name":"Cow Pasture Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Parker","elevation_ft":795,"latitude":32.250425,"longitude":-97.297236,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE25","iata":"","local":"","name":"Texas Department of Public Safety Waco Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waco","elevation_ft":500,"latitude":31.6402,"longitude":-97.091904,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3995,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE28","iata":"","local":"TE28","name":"Shell Deer Park Refinery Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Deer Park","elevation_ft":29,"latitude":29.71508,"longitude":-95.14404,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE30","iata":"","local":"TE30","name":"Harris Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":753,"latitude":32.73680114746094,"longitude":-97.33809661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":32,"width_ft":32,"surface":"A"},{"id":"H2","length_ft":32,"width_ft":32,"surface":"A"},{"id":"H3","length_ft":32,"width_ft":32,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE37","iata":"","local":"TE37","name":"Canyon Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sonora","elevation_ft":2306,"latitude":30.301354,"longitude":-100.471987,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":6200,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE33","iata":"","local":"","name":"Eagles Nest Gliderport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Odessa","elevation_ft":2985,"latitude":31.67053,"longitude":-102.20115,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2564,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE27","iata":"","local":"TE27","name":"Harrison Piloncillo Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Catarina","elevation_ft":520,"latitude":28.2544002532959,"longitude":-99.59919738769533,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5000,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE26","iata":"","local":"TE26","name":"Arrow 'S' Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Campbellton","elevation_ft":275,"latitude":28.7836,"longitude":-98.349998,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE24","iata":"","local":"TE24","name":"Horseshoe Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sanger","elevation_ft":725,"latitude":33.3931999206543,"longitude":-97.2052993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2675,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE38","iata":"","local":"TE38","name":"Loghouse STOLport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Goodrich","elevation_ft":184,"latitude":30.592699,"longitude":-94.909401,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE34","iata":"","local":"TE34","name":"Reb Folbre's Place Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Millsap","elevation_ft":940,"latitude":32.76259994506836,"longitude":-97.9728012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE41","iata":"","local":"TE41","name":"Montgomery Co Law Enforcement Cntr Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":210,"latitude":30.3351993561,"longitude":-95.4530029297,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE42","iata":"","local":"TE42","name":"D.F.C.H. Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":31,"latitude":27.74860000610352,"longitude":-97.38469696044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE43","iata":"","local":"TE43","name":"Parkland Health & Hospital System Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":486,"latitude":32.80979919433594,"longitude":-96.8395004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"},{"id":"H2","length_ft":60,"width_ft":60,"surface":"-"},{"id":"H3","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE44","iata":"","local":"","name":"My Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Dayton","elevation_ft":45,"latitude":30.1063,"longitude":-94.855797,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2588,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE46","iata":"","local":"TE46","name":"Refugio County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Refugio","elevation_ft":50,"latitude":28.306522,"longitude":-97.280551,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE49","iata":"","local":"TE49","name":"H.S.I. Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tomball","elevation_ft":150,"latitude":30.06100082397461,"longitude":-95.55780029296876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE54","iata":"","local":"TE54","name":"Alba-Golden Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Golden","elevation_ft":425,"latitude":32.729400634765625,"longitude":-95.564697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE48","iata":"","local":"TE48","name":"Kings Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lampasas","elevation_ft":1025,"latitude":31.044901,"longitude":-98.042801,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE50","iata":"","local":"TE50","name":"Hirok Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Milford","elevation_ft":700,"latitude":32.17319869995117,"longitude":-96.96610260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE55","iata":"","local":"55E","name":"Flyin Armadillo Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jacksboro","elevation_ft":995,"latitude":33.4217,"longitude":-98.190598,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE45","iata":"","local":"TE45","name":"Buffalo Chips Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Joshua","elevation_ft":960,"latitude":32.46989822387695,"longitude":-97.46530151367188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE56","iata":"","local":"","name":"11 TV Dallas Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":595,"latitude":32.885101,"longitude":-96.707199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE59","iata":"","local":"TE59","name":"Holler Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bulverde","elevation_ft":1100,"latitude":29.813333,"longitude":-98.363333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE60","iata":"","local":"TE60","name":"Christus Santa Rosa Hospital Helipad","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":650,"latitude":29.716011,"longitude":-98.124186,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":88,"width_ft":88,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE61","iata":"","local":"","name":"Wolf Point Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Olivia","elevation_ft":17,"latitude":28.7132,"longitude":-96.409203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE64","iata":"","local":"TE64","name":"Yoakum Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Yoakum","elevation_ft":335,"latitude":29.306286,"longitude":-97.129226,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE65","iata":"","local":"TE65","name":"Nrh Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"North Richland Hills","elevation_ft":615,"latitude":32.85919952392578,"longitude":-97.2300033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE66","iata":"","local":"TE66","name":"Lmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mc Kinney","elevation_ft":708,"latitude":33.2140007019043,"longitude":-96.63269805908205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE69","iata":"","local":"TE69","name":"OakBend Medical Center - Jackson Street Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Richmond","elevation_ft":100,"latitude":29.5756,"longitude":-95.770798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE67","iata":"","local":"TE67","name":"Cibolo Sea-Willo Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Berlin","elevation_ft":517,"latitude":29.429100036621097,"longitude":-98.13169860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE68","iata":"","local":"TE68","name":"Nuggs Flying M Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pottsboro","elevation_ft":725,"latitude":33.7440986633,"longitude":-96.6598968506,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2375,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE58","iata":"","local":"TE58","name":"Terminal D Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Beeville","elevation_ft":260,"latitude":28.4451,"longitude":-98.0394,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE57","iata":"","local":"TE57","name":"Haass Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Hondo","elevation_ft":945,"latitude":29.444799423217773,"longitude":-99.122802734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE70","iata":"","local":"","name":"Palmer Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Ponder","elevation_ft":800,"latitude":33.197688,"longitude":-97.316201,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3692,"width_ft":37,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE72","iata":"","local":"","name":"Haven Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Waxahachie","elevation_ft":595,"latitude":32.327099,"longitude":-96.840201,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE74","iata":"","local":"TE74","name":"Bucker Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Point","elevation_ft":485,"latitude":32.9536018371582,"longitude":-95.8668975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE75","iata":"","local":"TE75","name":"Lexington Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Lexington","elevation_ft":470,"latitude":30.413372,"longitude":-96.96516,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3300,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE78","iata":"","local":"TE78","name":"Fossil Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Camp Wood","elevation_ft":1325,"latitude":29.568700790405277,"longitude":-99.97450256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5395,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE79","iata":"","local":"TE79","name":"Hig Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Carrollton","elevation_ft":455,"latitude":32.99570083618164,"longitude":-96.9292984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE80","iata":"","local":"TE80","name":"Medical Center of Arlington Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Arlington","elevation_ft":664,"latitude":32.69219970703125,"longitude":-97.11109924316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE82","iata":"","local":"TE82","name":"5-State Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fate","elevation_ft":555,"latitude":32.9385986328125,"longitude":-96.36750030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":80,"surface":"C"},{"id":"H2","length_ft":80,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE83","iata":"","local":"TE83","name":"Westwind Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"La Pryor","elevation_ft":686,"latitude":28.920799255371097,"longitude":-99.756103515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5117,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE73","iata":"","local":"TE73","name":"Griffith Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Winnie","elevation_ft":21,"latitude":29.855584,"longitude":-94.353246,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":4159,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE84","iata":"","local":"TE84","name":"Mockingbird Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mc Gregor","elevation_ft":810,"latitude":31.468038,"longitude":-97.473385,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE76","iata":"","local":"TE76","name":"Vance Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvord","elevation_ft":925,"latitude":33.36830139160156,"longitude":-97.68219757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE89","iata":"","local":"","name":"Verhalen Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Scottsville","elevation_ft":415,"latitude":32.537701,"longitude":-94.236099,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3975,"width_ft":140,"surface":"T"},{"id":"12/30","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE93","iata":"","local":"TE93","name":"Staggs Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Weatherford","elevation_ft":1050,"latitude":32.77180099487305,"longitude":-97.73999786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE94","iata":"","local":"TE94","name":"Starflight Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":554,"latitude":30.321283,"longitude":-97.657488,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE95","iata":"","local":"","name":"Deiterich Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Bertram","elevation_ft":1385,"latitude":30.753754,"longitude":-98.146334,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE96","iata":"","local":"","name":"Crosswinds Airfield","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Coupland","elevation_ft":543,"latitude":30.433201,"longitude":-97.412498,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2650,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE98","iata":"","local":"TE98","name":"Frio Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pearsall","elevation_ft":630,"latitude":28.8972,"longitude":-99.117203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TE85","iata":"","local":"TE85","name":"Marmack Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Montgomery","elevation_ft":295,"latitude":30.342199325561523,"longitude":-95.66130065917967,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2450,"width_ft":16,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE88","iata":"","local":"TE88","name":"BB Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rosharon","elevation_ft":50,"latitude":29.356955,"longitude":-95.459023,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE97","iata":"","local":"TE97","name":"Cameron Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredericksburg","elevation_ft":1760,"latitude":30.18446,"longitude":-98.959005,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE90","iata":"","local":"TE90","name":"Flying L Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bandera","elevation_ft":1380,"latitude":29.758899688720703,"longitude":-99.15249633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TE86","iata":"","local":"TE86","name":"Heritage Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"New Berlin","elevation_ft":555,"latitude":29.44440078735352,"longitude":-98.11280059814452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3100,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJIG","iata":"SIG","local":"SIG","name":"Fernando Luis Ribas Dominicci Airport","category":"medium_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"San Juan","elevation_ft":10,"latitude":18.45680046081543,"longitude":-66.09809875488281,"has_tower":true,"has_beacon":true,"runways":[{"id":"09/27","length_ft":5539,"width_ft":100,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":120.4},{"id":"LCL/P","frequency_mhz":135.875}],"has_metar":true,"public":true},{"icao":"TE99","iata":"","local":"TE99","name":"Barnstormer Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Whitney","elevation_ft":625,"latitude":32.020423,"longitude":-97.253778,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3300,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TJPS","iata":"PSE","local":"PSE","name":"Mercedita Airport","category":"medium_airport","iso_country":"PR","iso_region":"PR-U-A","municipality":"Ponce","elevation_ft":29,"latitude":18.00830078125,"longitude":-66.56300354003906,"has_tower":false,"has_beacon":true,"runways":[{"id":"12/30","length_ft":8004,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN00","iata":"","local":"TN00","name":"Northcrest Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Springfield","elevation_ft":689,"latitude":36.477500915527344,"longitude":-86.88500213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN01","iata":"","local":"TN01","name":"Ray Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Rosemark","elevation_ft":305,"latitude":35.347171,"longitude":-89.819658,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":132,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN02","iata":"","local":"","name":"TVA Watts Bar Nuclear Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Dayton","elevation_ft":737,"latitude":35.60091,"longitude":-84.796171,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1850,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN03","iata":"","local":"TN03","name":"Memorial Health Care System Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Chattanooga","elevation_ft":770,"latitude":35.0442008972168,"longitude":-85.25830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN04","iata":"","local":"TN04","name":"Bristol Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Bristol","elevation_ft":1792,"latitude":36.58679962158203,"longitude":-82.25740051269531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN05","iata":"","local":"TN05","name":"Jackson-Madison County General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Jackson","elevation_ft":432,"latitude":35.636897,"longitude":-88.830818,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN06","iata":"","local":"TN06","name":"Grace Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":631,"latitude":35.84669876098633,"longitude":-86.37969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN13","iata":"","local":"","name":"Barret Airport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Barretville","elevation_ft":240,"latitude":35.375099,"longitude":-89.766701,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1570,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN15","iata":"","local":"TN15","name":"Bedford Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Shelbyville","elevation_ft":820,"latitude":35.493099212646484,"longitude":-86.47329711914062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN16","iata":"","local":"TN16","name":"Huntingdon Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Huntingdon","elevation_ft":400,"latitude":35.99449920654297,"longitude":-88.46119689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2870,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN14","iata":"","local":"TN14","name":"T-Top Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Eagleville","elevation_ft":770,"latitude":35.689701080322266,"longitude":-86.63580322265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3600,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN11","iata":"","local":"TN11","name":"Cantwell Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Sneedville","elevation_ft":1150,"latitude":36.50149917602539,"longitude":-83.25550079345703,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1537,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN18","iata":"","local":"TN18","name":"Richardson Strip","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Eads","elevation_ft":340,"latitude":35.20429992675781,"longitude":-89.66670227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN19","iata":"","local":"TN19","name":"Roane Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Harriman","elevation_ft":880,"latitude":35.96289825439453,"longitude":-84.55079650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN22","iata":"","local":"TN22","name":"Hickman County Health Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Centerville","elevation_ft":760,"latitude":35.78219985961914,"longitude":-87.4636001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN24","iata":"","local":"","name":"Spencer Field","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Manchester","elevation_ft":1080,"latitude":35.3876,"longitude":-85.962502,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN25","iata":"","local":"TN25","name":"Methodist Hospital Central Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":493,"latitude":35.13679885864258,"longitude":-90.01840209960938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN26","iata":"","local":"","name":"Baptist Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":255,"latitude":35.139,"longitude":-90.030899,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1875,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN27","iata":"","local":"","name":"Methodist Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Somerville","elevation_ft":400,"latitude":35.235401,"longitude":-89.3526,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1710,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN28","iata":"","local":"TN28","name":"Anderson-Tully County Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":238,"latitude":35.17539978027344,"longitude":-90.04450225830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN29","iata":"","local":"TN29","name":"67 Madison Ave Partnership Ltd Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":650,"latitude":35.137298583984375,"longitude":-90.0542984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":58,"width_ft":58,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN20","iata":"","local":"TN20","name":"Seymour Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Seymour","elevation_ft":1000,"latitude":35.81228,"longitude":-83.774752,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN21","iata":"","local":"TN21","name":"Palmer Village-Napier Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Hohenwald","elevation_ft":790,"latitude":35.447098,"longitude":-87.50458,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":800,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN30","iata":"","local":"TN30","name":"Cub Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Niota","elevation_ft":1000,"latitude":35.54719924926758,"longitude":-84.51000213623047,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN31","iata":"","local":"TN31","name":"Cookeville General Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Cookeville","elevation_ft":1140,"latitude":36.17010116577149,"longitude":-85.50830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN32","iata":"","local":"TN32","name":"Loudon Justice Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Loudon","elevation_ft":904,"latitude":35.77080154418945,"longitude":-84.31310272216797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN33","iata":"","local":"TN33","name":"Tennessee Army & Air National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":590,"latitude":36.10169982910156,"longitude":-86.75830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":63,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN34","iata":"","local":"TN34","name":"St Thomas West Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":497,"latitude":36.129253,"longitude":-86.842928,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":97,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN35","iata":"","local":"TN35","name":"Vanderbilt University Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":602,"latitude":36.14139938354492,"longitude":-86.80280303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":47,"width_ft":47,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN36","iata":"","local":"TN36","name":"Flying I Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Ripley","elevation_ft":350,"latitude":35.762001037597656,"longitude":-89.55120086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN37","iata":"","local":"TN37","name":"Anderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Toone","elevation_ft":392,"latitude":35.40420150756836,"longitude":-89.02230072021484,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2330,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN38","iata":"","local":"","name":"Rutledge Field","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Tullahoma","elevation_ft":1125,"latitude":35.371899,"longitude":-86.266899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN40","iata":"","local":"TN40","name":"Jellico Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Jellico","elevation_ft":1080,"latitude":36.57389831542969,"longitude":-84.12969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN41","iata":"","local":"","name":"100 Aker Wood Airport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Spring City","elevation_ft":809,"latitude":35.772964,"longitude":-84.764864,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2188,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN42","iata":"","local":"TN42","name":"Whitwell Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Whitwell","elevation_ft":750,"latitude":35.20289993286133,"longitude":-85.51940155029297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN43","iata":"","local":"TN43","name":"Isle-A-Port STOLport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Memphis","elevation_ft":215,"latitude":35.096843,"longitude":-90.114406,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3200,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN45","iata":"","local":"","name":"Cumberland River Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Celina","elevation_ft":600,"latitude":36.543622,"longitude":-85.500369,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":603,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN46","iata":"","local":"TN46","name":"Henry County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Paris","elevation_ft":570,"latitude":36.2958984375,"longitude":-88.30280303955078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN51","iata":"","local":"","name":"Aydelotte STOLport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Springfield","elevation_ft":545,"latitude":36.642799,"longitude":-86.976402,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN54","iata":"","local":"","name":"Tan Rara Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Concord","elevation_ft":900,"latitude":35.882599,"longitude":-84.112396,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1997,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN55","iata":"","local":"TN55","name":"Ginny 'B' Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":650,"latitude":36.09310150146485,"longitude":-86.65470123291016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN57","iata":"","local":"TN57","name":"Air Trade Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Johnson City","elevation_ft":1581,"latitude":36.4324989319,"longitude":-82.29360198970001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":28,"surface":"C"},{"id":"H2","length_ft":55,"width_ft":28,"surface":"C"},{"id":"H3","length_ft":55,"width_ft":28,"surface":"C"},{"id":"H4","length_ft":55,"width_ft":28,"surface":"C"},{"id":"H5","length_ft":55,"width_ft":28,"surface":"C"},{"id":"H6","length_ft":55,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN56","iata":"","local":"TN56","name":"Carey Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Mayland","elevation_ft":1960,"latitude":36.07229995727539,"longitude":-85.11389923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN44","iata":"","local":"TN44","name":"Deerfield Resort Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lafollette","elevation_ft":1350,"latitude":36.34669876098633,"longitude":-84.01219940185547,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3120,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN50","iata":"","local":"TN50","name":"Indian Hill Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"New Hope","elevation_ft":676,"latitude":34.99150085449219,"longitude":-85.65080261230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2900,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN58","iata":"","local":"TN58","name":"Parsons Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Brighton","elevation_ft":330,"latitude":35.391700744628906,"longitude":-89.65650177001953,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1000,"width_ft":50,"surface":"T"},{"id":"16/34","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN59","iata":"","local":"","name":"Vertiflite Heliport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Maryville","elevation_ft":920,"latitude":35.7626,"longitude":-84.024902,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN60","iata":"","local":"TN60","name":"Wsmv-Tv Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":650,"latitude":36.14120101928711,"longitude":-87.86199951171875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN61","iata":"","local":"TN61","name":"Ranger Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Bartlett","elevation_ft":300,"latitude":35.20180130004883,"longitude":-89.86840057373047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":603,"width_ft":452,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN62","iata":"","local":"","name":"Mc Afee STOL Patch STOLport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Johnson City","elevation_ft":1925,"latitude":36.374444,"longitude":-82.390208,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN68","iata":"","local":"","name":"Gibson Airport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesboro","elevation_ft":805,"latitude":35.768348,"longitude":-86.548636,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1156,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN69","iata":"","local":"TN69","name":"Methodist Lebonheur Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Germantown","elevation_ft":285,"latitude":35.08919906616211,"longitude":-89.80719757080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN70","iata":"","local":"TN70","name":"Burkeen Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Collierville","elevation_ft":365,"latitude":35.02619934082031,"longitude":-89.70259857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN65","iata":"","local":"TN65","name":"Long Meadow Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Murfreesburg","elevation_ft":750,"latitude":35.6664009094,"longitude":-86.48529815670001,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN66","iata":"","local":"TN66","name":"Austin Field","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Pikeville","elevation_ft":1000,"latitude":35.74449920654297,"longitude":-85.04720306396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN71","iata":"","local":"TN71","name":"Cox Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lenoir City","elevation_ft":1000,"latitude":35.79449844360352,"longitude":-84.34159851074219,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN72","iata":"","local":"","name":"King Airport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Sevierville","elevation_ft":1080,"latitude":35.845901,"longitude":-83.481796,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN73","iata":"","local":"","name":"Doc Jones Field","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Ashland City","elevation_ft":770,"latitude":36.323399,"longitude":-86.959396,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN76","iata":"","local":"TN76","name":"Mobley-Wood Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Paris","elevation_ft":432,"latitude":36.30839920043945,"longitude":-88.2958984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN84","iata":"","local":"TN84","name":"Mc Gavock Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":525,"latitude":36.2084007263,"longitude":-86.67919921880001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN88","iata":"","local":"TN88","name":"White County Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Sparta","elevation_ft":1100,"latitude":35.94940185546875,"longitude":-85.47810363769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN74","iata":"","local":"TN74","name":"Will A Hildreth Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Lenoir City","elevation_ft":900,"latitude":35.80009841918945,"longitude":-84.31939697265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN89","iata":"","local":"TN89","name":"Possum Bottom Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Whitwell","elevation_ft":700,"latitude":35.2584,"longitude":-85.452698,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN85","iata":"","local":"TN85","name":"Hogue Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Spencer","elevation_ft":1800,"latitude":35.638999938964844,"longitude":-85.39720153808594,"has_tower":false,"has_beacon":true,"runways":[{"id":"04/22","length_ft":3000,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN79","iata":"","local":"TN79","name":"Oakley Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":400,"latitude":36.173564,"longitude":-86.952195,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":100,"surface":"T"},{"id":"H1","length_ft":150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN80","iata":"","local":"TN80","name":"Schiff Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Cookeville","elevation_ft":1260,"latitude":36.2333984375,"longitude":-85.42639923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":34,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN87","iata":"","local":"TN87","name":"Montvale Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Maryville","elevation_ft":1030,"latitude":35.69260025024414,"longitude":-83.9988021850586,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2700,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN90","iata":"","local":"TN90","name":"Mathews Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Chattanooga","elevation_ft":710,"latitude":35.16939926147461,"longitude":-85.26499938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN91","iata":"","local":"TN91","name":"Johnson City Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Johnson City","elevation_ft":1745,"latitude":36.30830001831055,"longitude":-82.3855972290039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN92","iata":"","local":"TN92","name":"Metrocenter Heliport","category":"heliport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":408,"latitude":36.19169998168945,"longitude":-86.80829620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN93","iata":"","local":"","name":"Cotton Patch Airport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Bolivar","elevation_ft":465,"latitude":35.282299,"longitude":-89.029198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN99","iata":"","local":"","name":"Pensinger Airport","category":"closed","iso_country":"US","iso_region":"US-TN","municipality":"Greeneville","elevation_ft":1265,"latitude":36.296398,"longitude":-82.760597,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2990,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TN94","iata":"","local":"TN94","name":"Robertson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":1020,"latitude":36.0010986328125,"longitude":-84.07440185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN97","iata":"","local":"TN97","name":"Triune Airfield","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Nashville","elevation_ft":740,"latitude":35.807199,"longitude":-86.612456,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TN98","iata":"","local":"TN98","name":"Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TN","municipality":"Knoxville","elevation_ft":830,"latitude":35.885295,"longitude":-83.957427,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS04","iata":"","local":"TS04","name":"Rio Vista Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Del Rio","elevation_ft":1774,"latitude":29.83580017089844,"longitude":-100.97799682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS05","iata":"","local":"","name":"Progreso Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Progreso","elevation_ft":70,"latitude":26.0837,"longitude":-97.950302,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3466,"width_ft":37,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS06","iata":"","local":"TS06","name":"Medical City Dallas Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":517,"latitude":32.911864,"longitude":-96.775337,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"},{"id":"H2","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS09","iata":"","local":"TS09","name":"Baptist Hospital of Southeast Texas Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont","elevation_ft":20,"latitude":30.070083,"longitude":-94.118795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS10","iata":"","local":"TS10","name":"Sheraton Spindletop Hotel Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Beaumont","elevation_ft":25,"latitude":30.101299285888672,"longitude":-94.13099670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS11","iata":"","local":"TS11","name":"Glenmar Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Campbell","elevation_ft":531,"latitude":33.10710144042969,"longitude":-95.93000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS08","iata":"","local":"TS08","name":"Kubecka Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ganado","elevation_ft":75,"latitude":29.070403,"longitude":-96.504973,"has_tower":false,"has_beacon":false,"runways":[{"id":"17L/35R","length_ft":2000,"width_ft":30,"surface":"C"},{"id":"17R/35L","length_ft":5000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS07","iata":"","local":"TS07","name":"Dry Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cypress","elevation_ft":152,"latitude":29.986299514770508,"longitude":-95.68560028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3580,"width_ft":73,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS00","iata":"","local":"TS00","name":"Fuller Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":490,"latitude":32.787314,"longitude":-97.180499,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS12","iata":"","local":"TS12","name":"Cig 809 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bay City","elevation_ft":53,"latitude":28.982500076293945,"longitude":-96.02880096435548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS13","iata":"","local":"","name":"Station 30 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":115,"latitude":29.294701,"longitude":-96.308899,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS16","iata":"","local":"","name":"Lewis Electric Apparatus Repair Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":35,"latitude":29.711045,"longitude":-95.278555,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS17","iata":"","local":"TS17","name":"First Bank Plaza Garage Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":105,"latitude":29.734174,"longitude":-95.500342,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS19","iata":"","local":"","name":"GWS Incorporated Construction Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":80,"latitude":29.680799,"longitude":-95.401299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS20","iata":"","local":"","name":"C Lazy T Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Seymour","elevation_ft":1365,"latitude":33.532771,"longitude":-99.193809,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1525,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS22","iata":"","local":"","name":"Joye Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Smiley","elevation_ft":280,"latitude":29.241398,"longitude":-97.62856,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS23","iata":"","local":"TS23","name":"Mgm Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":540,"latitude":30.336329,"longitude":-97.906401,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS25","iata":"","local":"","name":"Mynatt Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"South Sulphur","elevation_ft":557,"latitude":33.269798,"longitude":-96.022499,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2700,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS14","iata":"","local":"TS14","name":"Smith Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"De Leon","elevation_ft":1275,"latitude":32.108699798583984,"longitude":-98.48799896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2350,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS15","iata":"","local":"TS15","name":"Cibolo Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marfa","elevation_ft":4400,"latitude":29.893564,"longitude":-104.261207,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5300,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS26","iata":"","local":"TS26","name":"The Huntingdon Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":566,"latitude":29.746885,"longitude":-95.417966,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS28","iata":"","local":"TS28","name":"Northeast Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bedford","elevation_ft":690,"latitude":32.8390007019043,"longitude":-97.14749908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS30","iata":"","local":"TS30","name":"Wilbarger General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Vernon","elevation_ft":1226,"latitude":34.1593017578125,"longitude":-99.31620025634766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS31","iata":"","local":"TS31","name":"Williams Tower Garage Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":99,"latitude":29.737357,"longitude":-95.462358,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS32","iata":"","local":"TS32","name":"Waskom Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Waskom","elevation_ft":280,"latitude":32.470699310302734,"longitude":-94.05549621582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS33","iata":"","local":"TS33","name":"Tex-Star Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":83,"latitude":29.78219985961914,"longitude":-95.41739654541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS34","iata":"","local":"TS34","name":"Woodcreek-Shell Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":90,"latitude":29.789479,"longitude":-95.609603,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS37","iata":"","local":"TS37","name":"Harris County Clay Road Courthouse Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":115,"latitude":29.833327,"longitude":-95.655931,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS38","iata":"","local":"TS38","name":"Helitrans Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Iowa Colony/Manvel","elevation_ft":55,"latitude":29.476600646972656,"longitude":-95.4021987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":18,"width_ft":18,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS40","iata":"","local":"","name":"Celina Field","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Celina","elevation_ft":770,"latitude":33.312801,"longitude":-96.763901,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1020,"width_ft":35,"surface":"-"},{"id":"13/31","length_ft":3230,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS27","iata":"","local":"TS27","name":"River Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Columbus","elevation_ft":220,"latitude":29.71619987,"longitude":-96.59140015,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS36","iata":"","local":"TS36","name":"Silver Wings Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fredricksburg","elevation_ft":2110,"latitude":30.21960067749023,"longitude":-99.14080047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3800,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS41","iata":"","local":"","name":"Station 24 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Markham","elevation_ft":57,"latitude":29.011485,"longitude":-96.053987,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS42","iata":"","local":"","name":"Del-Tex Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Olton","elevation_ft":3600,"latitude":34.196499,"longitude":-102.127997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS43","iata":"","local":"TS43","name":"Wagner Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Palacios","elevation_ft":18,"latitude":28.7164,"longitude":-96.214273,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS45","iata":"","local":"TS45","name":"Gulfcoast Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pearland","elevation_ft":55,"latitude":29.57659912109375,"longitude":-95.33300018310548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":997,"width_ft":218,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS46","iata":"","local":"","name":"PPH Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Port Arthur","elevation_ft":5,"latitude":29.932699,"longitude":-93.938499,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1485,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS48","iata":"","local":"TS48","name":"Arco Sabine Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":9,"latitude":29.712726,"longitude":-93.858892,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS49","iata":"","local":"TS49","name":"Station 40 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Sour Lake","elevation_ft":65,"latitude":30.176131,"longitude":-94.503676,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS51","iata":"","local":"","name":"Barton Memorial Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Garrison","elevation_ft":345,"latitude":31.836477,"longitude":-94.459462,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS52","iata":"","local":"TS52","name":"Tomball Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Tomball","elevation_ft":182,"latitude":30.086700439453125,"longitude":-95.62139892578124,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS53","iata":"","local":"TS53","name":"Tecma Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3725,"latitude":31.774682,"longitude":-106.4707,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS55","iata":"","local":"TS55","name":"Bat Cave Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Garden Ridge","elevation_ft":850,"latitude":29.671899795532227,"longitude":-98.30449676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1700,"width_ft":60,"surface":"T"},{"id":"08/26","length_ft":1900,"width_ft":60,"surface":"T"},{"id":"17/35","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS47","iata":"","local":"5TX","name":"Rock Creek Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Whitt","elevation_ft":1130,"latitude":32.9687,"longitude":-98.0119,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3829,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS56","iata":"","local":"TS56","name":"Ktvt Channel 11 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":595,"latitude":32.76139831542969,"longitude":-97.24420166015624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS58","iata":"","local":"TS58","name":"Denton Regional Medical Ctr - Flow Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":622,"latitude":33.1780014038,"longitude":-97.0925979614,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS59","iata":"","local":"TS59","name":"Bear Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3800,"latitude":31.850823,"longitude":-106.431963,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS60","iata":"","local":"TS60","name":"Superturf Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Garland","elevation_ft":567,"latitude":32.87820053100586,"longitude":-96.65859985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS64","iata":"","local":"TS64","name":"Kimi Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mesquite","elevation_ft":440,"latitude":32.708499908447266,"longitude":-96.560302734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS66","iata":"","local":"TS66","name":"Lubbock Covenant Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3225,"latitude":33.57687,"longitude":-101.890233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS68","iata":"","local":"TS68","name":"Valley Baptist Medical Center (VBMC) Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Harlingen","elevation_ft":35,"latitude":26.176695,"longitude":-97.670898,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS65","iata":"","local":"TS65","name":"Ducote Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"San Angelo","elevation_ft":1974,"latitude":31.35849952697754,"longitude":-100.61299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3700,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS70","iata":"","local":"","name":"Jack Miller Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Mansfield","elevation_ft":600,"latitude":32.575102,"longitude":-97.086998,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":4175,"width_ft":200,"surface":"W"},{"id":"18W/36W","length_ft":1656,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS61","iata":"","local":"TS61","name":"Little 'L' Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Glen Rose","elevation_ft":585,"latitude":32.21104,"longitude":-97.642757,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS63","iata":"","local":"TS63","name":"Square Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"McKinney","elevation_ft":655,"latitude":33.245493,"longitude":-96.565834,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS72","iata":"","local":"TS72","name":"UT Health East Texas Cedar Creek Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Gun Barrel City","elevation_ft":385,"latitude":32.332028,"longitude":-96.115811,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS73","iata":"","local":"","name":"Stubbs Strip","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":755,"latitude":32.775338,"longitude":-97.487404,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2280,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS75","iata":"","local":"","name":"Mitchell Number One Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sanderson","elevation_ft":2700,"latitude":30.503,"longitude":-102.158997,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS79","iata":"","local":"","name":"Air Logistics Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Port O'Connor","elevation_ft":5,"latitude":28.439699,"longitude":-96.419702,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3800,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS80","iata":"","local":"","name":"Mc Alister Farm Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Electra","elevation_ft":1125,"latitude":34.1306,"longitude":-98.903099,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4802,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS81","iata":"","local":"","name":"Town & Country Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":90,"latitude":29.7836,"longitude":-95.555801,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1926,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS82","iata":"","local":"TS82","name":"Gulf Tower Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":774,"latitude":29.75550079345703,"longitude":-95.36160278320312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS83","iata":"","local":"TS83","name":"Shell I C Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":56,"latitude":29.693026,"longitude":-95.407582,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS84","iata":"","local":"","name":"Texoma Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Denison","elevation_ft":765,"latitude":33.766028,"longitude":-96.550316,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3800,"width_ft":26,"surface":"A"},{"id":"18/36","length_ft":2575,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS85","iata":"","local":"TS85","name":"Diamond J Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pottsboro","elevation_ft":802,"latitude":33.8106,"longitude":-96.703903,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS76","iata":"","local":"TS76","name":"Redstone Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Stonewall","elevation_ft":1460,"latitude":30.250200271606445,"longitude":-98.5947036743164,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":22,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS71","iata":"","local":"TS71","name":"Flying B Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Ovilla","elevation_ft":780,"latitude":32.52790069580078,"longitude":-96.94390106201172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS86","iata":"","local":"TS86","name":"Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Missouri City","elevation_ft":70,"latitude":29.562700271606445,"longitude":-95.56410217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS87","iata":"","local":"TS87","name":"Bridle Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Navasota","elevation_ft":328,"latitude":30.417999267578125,"longitude":-96.07939910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS88","iata":"","local":"","name":"Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Pasadena","elevation_ft":20,"latitude":29.689699,"longitude":-95.200996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS90","iata":"","local":"","name":"Bayless Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Rosharon","elevation_ft":49,"latitude":29.401235,"longitude":-95.431436,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2011,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS91","iata":"","local":"","name":"Tenneco Shorebase Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sabine Pass","elevation_ft":11,"latitude":29.705726,"longitude":-93.85519,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H4","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS93","iata":"","local":"TS93","name":"Cathexis Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":29,"latitude":29.762834,"longitude":-95.32775,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS95","iata":"","local":"","name":"Aviasud Airpark","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Beasley","elevation_ft":100,"latitude":29.486401,"longitude":-95.930801,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS97","iata":"","local":"TS97","name":"HPL Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":60,"latitude":27.835061,"longitude":-97.540573,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS98","iata":"","local":"","name":"Wings Over Texas Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Terrell","elevation_ft":532,"latitude":32.7869,"longitude":-96.3069,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS99","iata":"","local":"","name":"Action Number 2 Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Cypress","elevation_ft":151,"latitude":29.935499,"longitude":-95.513494,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1031,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TS96","iata":"","local":"TS96","name":"El Campo Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"El Campo","elevation_ft":128,"latitude":29.26689910888672,"longitude":-96.32520294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2450,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TS89","iata":"","local":"TS89","name":"Parker Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Granbury","elevation_ft":925,"latitude":32.36715,"longitude":-97.81647,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT01","iata":"","local":"TT01","name":"Pagan Airstrip","category":"small_airport","iso_country":"MP","iso_region":"MP-U-A","municipality":"Shomu-Shon, Pagan","elevation_ft":34,"latitude":18.12317,"longitude":145.763347,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT03","iata":"","local":"TT03","name":"Nikko Heliport","category":"heliport","iso_country":"MP","iso_region":"MP-U-A","municipality":"San Roque, Saipan","elevation_ft":60,"latitude":15.25,"longitude":145.783005,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT04","iata":"","local":"TT04","name":"Gualo Rai Heliport","category":"heliport","iso_country":"MP","iso_region":"MP-U-A","municipality":"Gualo Rai, Saipan","elevation_ft":250,"latitude":15.188155,"longitude":145.724157,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT06","iata":"","local":"TT06","name":"Frio Cañon Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Leakey","elevation_ft":1706,"latitude":29.790333,"longitude":-99.701853,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT07","iata":"","local":"TT07","name":"Coleman County Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Colema","elevation_ft":1707,"latitude":31.828844,"longitude":-99.426109,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT10","iata":"","local":"TT10","name":"Hutson Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Knox City","elevation_ft":1470,"latitude":33.429026,"longitude":-99.9477778,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2096,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT20","iata":"","local":"TT20","name":"Lazy 8 Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Madisonville","elevation_ft":227,"latitude":30.964832,"longitude":-95.834851,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1965,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT00","iata":"","local":"TT00","name":"Tree Top Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Weimar","elevation_ft":360,"latitude":29.646666,"longitude":-96.729444,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1762,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT05","iata":"","local":"TT05","name":"Patton Air Park","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Floresville","elevation_ft":451,"latitude":29.191361,"longitude":-98.255124,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1571,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT12","iata":"","local":"TT12","name":"Pastrana Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Rainbow","elevation_ft":712,"latitude":32.272452,"longitude":-97.693412,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1967,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT16","iata":"","local":"TT16","name":"Cosmo Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cosmo Field","elevation_ft":1059,"latitude":32.936733,"longitude":-98.397447,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT21","iata":"","local":"TT21","name":"Grant Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alvord","elevation_ft":843,"latitude":33.289077,"longitude":-97.671086,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT37","iata":"","local":"TT37","name":"Dragon Lady Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Jefferson","elevation_ft":260,"latitude":32.851273,"longitude":-94.210746,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1903,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT46","iata":"","local":"TT46","name":"PC Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bryan","elevation_ft":399,"latitude":30.804722,"longitude":-96.431111,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2080,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT50","iata":"","local":"TT50","name":"Daniel HQ/Pease Valley Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Crowell","elevation_ft":1370,"latitude":34.051014,"longitude":-99.588683,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT62","iata":"","local":"TT62","name":"The Bluff Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"McFaddin","elevation_ft":62,"latitude":28.583981,"longitude":-96.947511,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT65","iata":"","local":"TT65","name":"3 Barrel Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bleiblerville","elevation_ft":311,"latitude":30.031614,"longitude":-96.418631,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":930,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TT75","iata":"","local":"TT75","name":"Berkley Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Conroe","elevation_ft":325,"latitude":30.432556,"longitude":-95.745825,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2135,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT31","iata":"","local":"TT31","name":"Y Bar Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Fowlerton","elevation_ft":367,"latitude":28.539281,"longitude":-98.800697,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3090,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT41","iata":"","local":"TT41","name":"Four Notch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Huntsville","elevation_ft":367,"latitude":30.697575,"longitude":-95.48139,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":962,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT45","iata":"","local":"TT45","name":"Nighthawks Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Marion","elevation_ft":592,"latitude":29.497349,"longitude":-98.154255,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":4387,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT66","iata":"","local":"TT66","name":"Rowdy T Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Frost","elevation_ft":538,"latitude":32.108456,"longitude":-96.808471,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2750,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT32","iata":"","local":"TT32","name":"Kudlacek Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Royse City","elevation_ft":524,"latitude":33.011916,"longitude":-96.410472,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT83","iata":"","local":"TT83","name":"HBR Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Horseshoe Bay","elevation_ft":830,"latitude":30.562092,"longitude":-98.392831,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX00","iata":"","local":"TX00","name":"Abilene Executive Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Abilene","elevation_ft":1822,"latitude":32.44889831542969,"longitude":-99.62000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2723,"width_ft":210,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX01","iata":"","local":"","name":"New Home Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"New Home","elevation_ft":3234,"latitude":33.308399,"longitude":-101.910004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX04","iata":"","local":"TX04","name":"Lucky Star Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brenham","elevation_ft":285,"latitude":30.2911944,"longitude":-96.5268611,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1170,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX06","iata":"","local":"TX06","name":"Carrington Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bartonville","elevation_ft":675,"latitude":33.07809829711914,"longitude":-97.14080047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TVSC","iata":"CIW","local":"","name":"Canouan Airport","category":"medium_airport","iso_country":"VC","iso_region":"VC-06","municipality":"Canouan","elevation_ft":11,"latitude":12.699,"longitude":-61.3424,"has_tower":true,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5876,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX05","iata":"","local":"TX05","name":"Bud Dryden Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":500,"latitude":30.2605,"longitude":-97.625298,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TT99","iata":"","local":"TT99","name":"Leinart Farms Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Merit","elevation_ft":624,"latitude":33.19204,"longitude":-96.21986,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2710,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX07","iata":"","local":"TX07","name":"Nix River Ranch Strip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Comstock","elevation_ft":1820,"latitude":29.953365,"longitude":-101.243022,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX08","iata":"","local":"TX08","name":"The Ballpark in Arlington Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Arlington","elevation_ft":560,"latitude":32.7510986328125,"longitude":-97.08509826660156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX09","iata":"","local":"","name":"Cunningham Airpark","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"New Braunfels","elevation_ft":617,"latitude":29.675556,"longitude":-98.012778,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX10","iata":"","local":"TX10","name":"Industrial Helicopters Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Corpus Christi","elevation_ft":10,"latitude":27.72330093383789,"longitude":-97.57330322265624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX11","iata":"","local":"TX11","name":"Ross Planes Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cross Plains","elevation_ft":1765,"latitude":32.13999938964844,"longitude":-99.15869903564452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX12","iata":"","local":"","name":"Kidd-Private Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Denison","elevation_ft":705,"latitude":33.808399,"longitude":-96.608597,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX13","iata":"","local":"TX13","name":"Mesa Vista Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pampa","elevation_ft":2772,"latitude":35.889278,"longitude":-101.030139,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6000,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX15","iata":"","local":"","name":"Beggs Ranch (Aledo) Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Aledo","elevation_ft":1060,"latitude":32.751499,"longitude":-97.612801,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2675,"width_ft":90,"surface":"T"},{"id":"16/34","length_ft":2465,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX16","iata":"","local":"","name":"Log Cabin Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Aledo","elevation_ft":1100,"latitude":32.802502,"longitude":-97.6092,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1775,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX17","iata":"","local":"TX17","name":"UT Health East Texas Athens Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":450,"latitude":32.168825,"longitude":-95.846192,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":120,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX18","iata":"","local":"TX18","name":"Redmond Taylor Army Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":480,"latitude":32.73379898071289,"longitude":-96.97229766845705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":450,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX25","iata":"","local":"TX25","name":"Lochridge Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Athens","elevation_ft":391,"latitude":31.98929977416992,"longitude":-95.95110321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4850,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX26","iata":"","local":"TX26","name":"Mabry Army National Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":670,"latitude":30.323309,"longitude":-97.760414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX28","iata":"","local":"","name":"Dewberry Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Katy","elevation_ft":140,"latitude":29.733299,"longitude":-95.8638,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6300,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX30","iata":"","local":"TX30","name":"H E B Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Bedford","elevation_ft":552,"latitude":32.833499908447266,"longitude":-97.12529754638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX31","iata":"","local":"TX31","name":"Edwards Lucian Wells Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Big Spring","elevation_ft":2505,"latitude":32.074522,"longitude":-101.565804,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":5200,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX33","iata":"","local":"","name":"Haire Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Sanger","elevation_ft":860,"latitude":33.338873,"longitude":-97.307432,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX36","iata":"","local":"","name":"Green Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Breckenridge","elevation_ft":1190,"latitude":32.8335,"longitude":-99.042,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3100,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX38","iata":"","local":"TX38","name":"Duke Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Darrouzett","elevation_ft":2705,"latitude":36.37950134277344,"longitude":-100.34300231933594,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2140,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX34","iata":"","local":"TX34","name":"Windy Tales Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineral Wells","elevation_ft":980,"latitude":32.848415374800005,"longitude":-97.9843063354,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX29","iata":"","local":"TX29","name":"Flying O Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bardwell","elevation_ft":490,"latitude":32.28900146484375,"longitude":-96.70439910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX21","iata":"","local":"TX21","name":"Hornady Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Archer City","elevation_ft":1165,"latitude":33.477845,"longitude":-98.54619,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1870,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX22","iata":"","local":"TX22","name":"Leroux Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Argyle","elevation_ft":670,"latitude":33.10179901123047,"longitude":-97.15499877929688,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2380,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":1430,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX40","iata":"","local":"TX40","name":"Echo Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Brownsboro","elevation_ft":450,"latitude":32.25429916381836,"longitude":-95.65579986572266,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX43","iata":"","local":"TX43","name":"Goode Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Canton","elevation_ft":445,"latitude":32.5098991394043,"longitude":-96.00270080566406,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX44","iata":"","local":"TX44","name":"Hospitals of Providence Sierra Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"El Paso","elevation_ft":3905,"latitude":31.777342,"longitude":-106.481077,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX49","iata":"","local":"","name":"Biggin Hill Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Hockley","elevation_ft":250,"latitude":30.118299,"longitude":-95.860001,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX50","iata":"","local":"TX50","name":"Texas Health Presbyterian Hospital Denton Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Denton","elevation_ft":675,"latitude":33.218495,"longitude":-97.167045,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":49,"width_ft":49,"surface":"C"},{"id":"H2","length_ft":54,"width_ft":54,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX51","iata":"","local":"TX51","name":"Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Corsicana","elevation_ft":405,"latitude":32.20009994506836,"longitude":-96.32939910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2075,"width_ft":50,"surface":"T"},{"id":"N/S","length_ft":2200,"width_ft":50,"surface":"T"},{"id":"NW/SE","length_ft":1620,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX46","iata":"","local":"TX46","name":"Blackwood Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cleburne","elevation_ft":835,"latitude":32.40959930419922,"longitude":-97.38719940185548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX42","iata":"","local":"TX42","name":"Fair Weather Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Monaville","elevation_ft":175,"latitude":29.9375,"longitude":-96.0394439697,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":2000,"width_ft":100,"surface":"W"},{"id":"13/31","length_ft":3375,"width_ft":30,"surface":"A"},{"id":"18/36","length_ft":2400,"width_ft":75,"surface":"T"},{"id":"B1","length_ft":400,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX41","iata":"","local":"TX41","name":"Pippen-York Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Blanco","elevation_ft":1340,"latitude":30.09129905700684,"longitude":-98.3647003173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX45","iata":"","local":"TX45","name":"Hawkeye Hunting Club Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"West","elevation_ft":260,"latitude":31.769656,"longitude":-97.131757,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX53","iata":"","local":"TX53","name":"Police H Port-Redbird Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":659,"latitude":32.68330001831055,"longitude":-96.85810089111328,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX54","iata":"","local":"","name":"Moore Airpark","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Palmview","elevation_ft":117,"latitude":26.212749,"longitude":-98.406457,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX55","iata":"","local":"TX55","name":"Southland Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":550,"latitude":32.77370071411133,"longitude":-96.79830169677734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX57","iata":"","local":"TX57","name":"US Coast Guard Station South Padre Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"South Padre Island","elevation_ft":4,"latitude":26.07189,"longitude":-97.163386,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":94,"width_ft":81,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX58","iata":"","local":"TX58","name":"Southwest Custom Aircraft Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mansfield","elevation_ft":670,"latitude":32.58679962158203,"longitude":-97.18329620361328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX59","iata":"","local":"TX59","name":"Eds Administration Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Plano","elevation_ft":720,"latitude":33.073299407958984,"longitude":-96.14749908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX60","iata":"","local":"TX60","name":"T I Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":564,"latitude":32.91429901123047,"longitude":-96.752197265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX61","iata":"","local":"","name":"Baker's Place Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Elgin","elevation_ft":460,"latitude":30.3302,"longitude":-97.4589,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX62","iata":"","local":"TX62","name":"Rhodes Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Mineola","elevation_ft":405,"latitude":32.63349914550781,"longitude":-95.43910217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX63","iata":"","local":"TX63","name":"Brownfield Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Brownfield","elevation_ft":3320,"latitude":33.187599182128906,"longitude":-102.26799774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX52","iata":"","local":"TX52","name":"Parrish Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Cranfills Gap","elevation_ft":917,"latitude":31.79459953308105,"longitude":-97.7739028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX64","iata":"","local":"TX64","name":"Lazy 9 Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Decatur","elevation_ft":1020,"latitude":33.29930114746094,"longitude":-97.5272979736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX65","iata":"","local":"TX65","name":"Beechwood Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":645,"latitude":33.023101806640625,"longitude":-97.28829956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX69","iata":"","local":"TX69","name":"Southwest General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":657,"latitude":29.352128,"longitude":-98.54494,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX71","iata":"","local":"","name":"JMK International Inc Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":680,"latitude":32.715333,"longitude":-97.413665,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1800,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX73","iata":"","local":"","name":"Big Brown Creek Airstrip","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fairfield","elevation_ft":323,"latitude":31.830998,"longitude":-96.0522,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX75","iata":"","local":"TX75","name":"Sandbur Ranches Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Franklin","elevation_ft":455,"latitude":31.009700775146484,"longitude":-96.54080200195312,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2750,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX76","iata":"","local":"","name":"Baylor Scott & White Medical Center Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Garland","elevation_ft":555,"latitude":32.919637,"longitude":-96.660842,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX77","iata":"","local":"","name":"Mallick Tower Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":695,"latitude":32.758499,"longitude":-97.342003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX70","iata":"","local":"TX70","name":"Eberly Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Chappell Hill","elevation_ft":280,"latitude":30.061481,"longitude":-96.225726,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3875,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX66","iata":"","local":"TX66","name":"Rebel Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Alta Loma","elevation_ft":28,"latitude":29.39879989624023,"longitude":-95.07849884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX67","iata":"","local":"TX67","name":"Hodges Air Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Keene","elevation_ft":900,"latitude":32.3606,"longitude":-97.302498,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1750,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX74","iata":"","local":"TX74","name":"Thomas Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Parker","elevation_ft":830,"latitude":32.261303,"longitude":-97.27315,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX80","iata":"","local":"","name":"EDS Superdrome Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Frisco","elevation_ft":765,"latitude":33.132682,"longitude":-96.789958,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX86","iata":"","local":"TX86","name":"Methodist Hospital Alkek Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":181,"latitude":29.710335,"longitude":-95.398533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX87","iata":"","local":"TX87","name":"South Texas Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Jourdanton","elevation_ft":420,"latitude":28.9333,"longitude":-98.524498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX88","iata":"","local":"","name":"Stemmons Place Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Dallas","elevation_ft":477,"latitude":32.809072,"longitude":-96.848967,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1725,"width_ft":80,"surface":"T"},{"id":"05/23","length_ft":3100,"width_ft":80,"surface":"T"},{"id":"12/30","length_ft":2800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX89","iata":"","local":"","name":"Ganze Ranch Airstrip","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Garland","elevation_ft":500,"latitude":32.969799,"longitude":-96.622498,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX90","iata":"","local":"","name":"Flight Safety Texas Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Hurst","elevation_ft":500,"latitude":32.802101,"longitude":-97.183296,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2840,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX92","iata":"","local":"","name":"Green Airport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Georgetown","elevation_ft":850,"latitude":30.596001,"longitude":-97.669403,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1800,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"TX91","iata":"","local":"TX91","name":"Madeira Airpark","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Garland","elevation_ft":450,"latitude":32.90760040283203,"longitude":-96.5969009399414,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX93","iata":"","local":"TX93","name":"Wright Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Glen Rose","elevation_ft":900,"latitude":32.15007,"longitude":-97.8401,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1600,"width_ft":50,"surface":"T"},{"id":"18/36","length_ft":3700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TX82","iata":"","local":"TX82","name":"Laguna Park Community Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Laguna Park","elevation_ft":620,"latitude":31.8636,"longitude":-97.380898,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1824,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"TXKF","iata":"BDA","local":"","name":"L.F. Wade International Airport","category":"medium_airport","iso_country":"BM","iso_region":"BM-U-A","municipality":"Hamilton","elevation_ft":12,"latitude":32.363998,"longitude":-64.678703,"has_tower":true,"has_beacon":true,"runways":[{"id":"12/30","length_ft":9706,"width_ft":150,"surface":"A"}],"frequencies":[{"id":"ATIS","frequency_mhz":119.3},{"id":"TWR","frequency_mhz":118.1}],"has_metar":true,"public":true},{"icao":"TX98","iata":"","local":"35TT","name":"Hawkins Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Godley","elevation_ft":978,"latitude":32.473926,"longitude":-97.501645,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UBBL","iata":"LLK","local":"","name":"Lankaran International Airport","category":"small_airport","iso_country":"AZ","iso_region":"AZ-LA","municipality":"Lankaran","elevation_ft":30,"latitude":38.757919,"longitude":48.807042,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UBBN","iata":"NAJ","local":"","name":"Nakhchivan Airport","category":"medium_airport","iso_country":"AZ","iso_region":"AZ-NX","municipality":"Nakhchivan","elevation_ft":2863,"latitude":39.18880081176758,"longitude":45.45840072631836,"has_tower":true,"has_beacon":false,"runways":[{"id":"14R/32L","length_ft":10827,"width_ft":148,"surface":"H"},{"id":"14L/32R","length_ft":10827,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UBBZ","iata":"ZZE","local":"","name":"Zangilan International Airport","category":"small_airport","iso_country":"AZ","iso_region":"AZ-ZAN","municipality":"Zangilan","elevation_ft":1320,"latitude":39.11443,"longitude":46.74392,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/21","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UHMD","iata":"PVS","local":"","name":"Provideniya Bay Airport","category":"medium_airport","iso_country":"RU","iso_region":"RU-CHU","municipality":"Chukotka","elevation_ft":72,"latitude":64.37809753417969,"longitude":-173.2429962158203,"has_tower":true,"has_beacon":false,"runways":[{"id":"01/19","length_ft":6562,"width_ft":171,"surface":"S"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UKCC","iata":"","local":"","name":"Donetsk Sergei Prokofiev International Airport","category":"closed","iso_country":"UA","iso_region":"UA-14","municipality":"Donetsk","elevation_ft":791,"latitude":48.075072,"longitude":37.72527,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":13123,"width_ft":198,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKCM","iata":"MPW","local":"","name":"Mariupol International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-14","municipality":"Mariupol","elevation_ft":251,"latitude":47.07609939575195,"longitude":37.44960021972656,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":8425,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKCW","iata":"","local":"","name":"Luhansk International Airport","category":"closed","iso_country":"UA","iso_region":"UA-09","municipality":"Luhansk","elevation_ft":636,"latitude":48.4174,"longitude":39.3741,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9318,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKDD","iata":"DNK","local":"","name":"Dnipro International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-12","municipality":"Dnipro","elevation_ft":481,"latitude":48.357201,"longitude":35.100601,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":9377,"width_ft":144,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKDR","iata":"KWG","local":"","name":"Kryvyi Rih International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-12","municipality":"Kryvyi Rih","elevation_ft":408,"latitude":48.04330062866211,"longitude":33.209999084472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/26","length_ft":8202,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKKE","iata":"CKC","local":"","name":"Cherkasy International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-71","municipality":"Cherkasy","elevation_ft":375,"latitude":49.41559982299805,"longitude":31.99530029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":8202,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKLI","iata":"IFO","local":"","name":"Ivano-Frankivsk International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-26","municipality":"Ivano-Frankivsk","elevation_ft":919,"latitude":48.88420104980469,"longitude":24.68610000610352,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8202,"width_ft":144,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKHH","iata":"HRK","local":"","name":"Kharkiv International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-63","municipality":"Kharkiv","elevation_ft":508,"latitude":49.924801,"longitude":36.290001,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UKLR","iata":"RWN","local":"","name":"Rivne International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-19","municipality":"Rivne","elevation_ft":755,"latitude":50.60710144042969,"longitude":26.141599655151367,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8615,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UKON","iata":"NLV","local":"","name":"Mykolaiv International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-48","municipality":"Nikolayev","elevation_ft":184,"latitude":47.057899,"longitude":31.9198,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":8383,"width_ft":144,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKOO","iata":"ODS","local":"","name":"Odessa International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-51","municipality":"Odessa","elevation_ft":172,"latitude":46.4268,"longitude":30.6765,"has_tower":true,"has_beacon":false,"runways":[{"id":"16/34","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UKWW","iata":"VIN","local":"","name":"Vinnytsia/Gavyryshivka International Airport","category":"medium_airport","iso_country":"UA","iso_region":"UA-05","municipality":"Vinnitsa","elevation_ft":961,"latitude":49.242531,"longitude":28.613778,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":8202,"width_ft":138,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UOII","iata":"IAA","local":"","name":"Igarka Airport","category":"medium_airport","iso_country":"RU","iso_region":"RU-KYA","municipality":"Igarka","elevation_ft":82,"latitude":67.437202,"longitude":86.621902,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":8245,"width_ft":151,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UOHH","iata":"HTG","local":"","name":"Khatanga Airport","category":"medium_airport","iso_country":"RU","iso_region":"RU-KYA","municipality":"Khatanga","elevation_ft":95,"latitude":71.97810363769531,"longitude":102.49099731445312,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":8871,"width_ft":157,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT01","iata":"","local":"","name":"FHP Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4250,"latitude":40.716702,"longitude":-111.889,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":980,"width_ft":40,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT02","iata":"","local":"","name":"Sandy Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Torrey","elevation_ft":5468,"latitude":38.088902,"longitude":-111.067001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT04","iata":"","local":"UT04","name":"Arches Tours Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":4100,"latitude":38.600197,"longitude":-109.573679,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1320,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT05","iata":"","local":"UT05","name":"Utah National Guard Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Draper","elevation_ft":4430,"latitude":40.51739883422852,"longitude":-111.88899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT06","iata":"","local":"","name":"Rogers Roost Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Thompson Springs","elevation_ft":5100,"latitude":38.966266,"longitude":-109.719847,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT07","iata":"","local":"","name":"Air Village Strip","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Vernal","elevation_ft":5800,"latitude":40.424999,"longitude":-109.592002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT08","iata":"","local":"","name":"Camp Williams Airfield","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Saratoga Springs","elevation_ft":4860,"latitude":40.4319,"longitude":-111.931,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT11","iata":"","local":"UT11","name":"Intermountain Medical Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Murray","elevation_ft":4314,"latitude":40.66025161739999,"longitude":-111.889526367,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT12","iata":"","local":"UT12","name":"Gilbert Development Shop Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Cedar City","elevation_ft":5670,"latitude":37.6875,"longitude":-113.08599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT14","iata":"","local":"UT14","name":"Brigham City Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Brigham City","elevation_ft":4313,"latitude":41.491953,"longitude":-112.026418,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT16","iata":"","local":"UT16","name":"McKay-Dee Hospital Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Ogden","elevation_ft":4615,"latitude":41.182899,"longitude":-111.955002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT18","iata":"","local":"","name":"U S Forest Service Heliport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4800,"latitude":40.7533,"longitude":-111.847,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT19","iata":"","local":"UT19","name":"Salt Lake Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4519,"latitude":40.767515,"longitude":-111.861894,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT10","iata":"","local":"UT10","name":"Cedar Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Eagle Mountain","elevation_ft":5000,"latitude":40.357201,"longitude":-112.017997,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT21","iata":"","local":"UT21","name":"Medical Center Helistop","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":5000,"latitude":40.772644,"longitude":-111.83722,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H3","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H4","length_ft":55,"width_ft":55,"surface":"A"},{"id":"H5","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT22","iata":"","local":"UT22","name":"Western Surgery Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"North Logan","elevation_ft":4465,"latitude":41.774732,"longitude":-111.821594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT23","iata":"","local":"UT23","name":"Pioneer Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"West Valley City","elevation_ft":4251,"latitude":40.69990158081055,"longitude":-111.98999786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT27","iata":"","local":"","name":"Hurricane Mesa Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Hurricane","elevation_ft":5105,"latitude":37.251099,"longitude":-113.209,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT29","iata":"","local":"","name":"Jack's Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Tremonton","elevation_ft":4440,"latitude":41.733898,"longitude":-112.194,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":640,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT31","iata":"","local":"UT31","name":"American Stores Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4691,"latitude":40.763403,"longitude":-111.890702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT32","iata":"","local":"UT32","name":"Ashley Valley Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Vernal","elevation_ft":5342,"latitude":40.45833,"longitude":-109.53243,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT33","iata":"","local":"UT33","name":"Kutv Channel Two Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4240,"latitude":40.724700927734375,"longitude":-111.97599792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT30","iata":"","local":"UT30","name":"Deer Springs Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Kanab","elevation_ft":6485,"latitude":37.34249877929688,"longitude":-112.2239990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":8920,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT25","iata":"GMV","local":"UT25","name":"Monument Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Oljato-Monument Valley","elevation_ft":5192,"latitude":37.015868,"longitude":-110.202031,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":4000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT28","iata":"","local":"UT28","name":"Sun Valley Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Lund","elevation_ft":5110,"latitude":37.97499847412109,"longitude":-113.46299743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4000,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT34","iata":"","local":"UT34","name":"Tooele Army Depot Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele","elevation_ft":4920,"latitude":40.5010986328125,"longitude":-112.34400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT35","iata":"","local":"UT35","name":"Mountain View Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Payson","elevation_ft":4597,"latitude":40.044291,"longitude":-111.715391,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT36","iata":"","local":"UT36","name":"Wecco Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Cedar City","elevation_ft":5315,"latitude":37.31660079956055,"longitude":-113.31700134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT37","iata":"","local":"","name":"Carmel Mountain Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Orderville","elevation_ft":5590,"latitude":37.269885,"longitude":-112.675867,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT38","iata":"","local":"UT38","name":"Two Jays #1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":4500,"latitude":38.542062,"longitude":-109.519831,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":250,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT39","iata":"","local":"UT39","name":"A A Helicopters Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"North Salt Lake","elevation_ft":4234,"latitude":40.859211,"longitude":-111.935141,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT40","iata":"","local":"","name":"Payne Field","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Syracuse","elevation_ft":4228,"latitude":41.098301,"longitude":-112.115997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT44","iata":"","local":"UT44","name":"Davis Hospital & Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Layton","elevation_ft":4300,"latitude":41.09183,"longitude":-111.99592,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT45","iata":"","local":"UT45","name":"State Capitol Helicopter Landing Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4350,"latitude":40.77688217163086,"longitude":-111.8869171142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT46","iata":"","local":"UT46","name":"Tooele Army Depot /South Area/ Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele","elevation_ft":5355,"latitude":40.317444,"longitude":-112.308559,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT43","iata":"","local":"UT43","name":"Citabriair Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Kanarraville","elevation_ft":5600,"latitude":37.63610076904297,"longitude":-113.24700164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT42","iata":"","local":"UT42","name":"Westwater Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Cisco","elevation_ft":4660,"latitude":39.14670181274414,"longitude":-109.1449966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT48","iata":"","local":"","name":"LBL Farms Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Clinton","elevation_ft":4260,"latitude":41.1502,"longitude":-112.098999,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT50","iata":"","local":"","name":"Allen Memorial Hospital Helipad","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":3977,"latitude":38.578791,"longitude":-109.563621,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT51","iata":"","local":"UT51","name":"Utah Valley Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Provo","elevation_ft":4590,"latitude":40.24800109863281,"longitude":-111.66600036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT52","iata":"","local":"UT52","name":"Dixie Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"St George","elevation_ft":2700,"latitude":37.098174,"longitude":-113.57579,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT55","iata":"","local":"UT55","name":"LDS Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4729,"latitude":40.778192,"longitude":-111.879515,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT56","iata":"","local":"UT56","name":"American Fork Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"American Fork","elevation_ft":4603,"latitude":40.379671,"longitude":-111.768604,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":65,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT57","iata":"","local":"","name":"Sulphurdale Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Beaver","elevation_ft":6060,"latitude":38.572498,"longitude":-112.592003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT58","iata":"","local":"UT58","name":"Bonanza Power Plant Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Bonanza","elevation_ft":5028,"latitude":40.08219909667969,"longitude":-109.29199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT59","iata":"","local":"","name":"Needles Outpost Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Monticello","elevation_ft":4950,"latitude":38.170575,"longitude":-109.733634,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT60","iata":"","local":"","name":"Century Equipment Company Heliport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Murray","elevation_ft":4255,"latitude":40.678558,"longitude":-111.902991,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT61","iata":"","local":"UT61","name":"Duchesne Co. Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Roosevelt","elevation_ft":5182,"latitude":40.33610153198242,"longitude":-110.33999633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT53","iata":"","local":"UT53","name":"Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":4875,"latitude":38.493843,"longitude":-109.446567,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3690,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT62","iata":"","local":"","name":"Department of Veterans Affairs Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4713,"latitude":40.756929,"longitude":-111.842119,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT63","iata":"","local":"UT63","name":"Alta View Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Sandy","elevation_ft":4660,"latitude":40.57780075073242,"longitude":-111.85399627685548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT64","iata":"","local":"UT64","name":"St. Marks Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4315,"latitude":40.686152,"longitude":-111.856205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT66","iata":"","local":"UT66","name":"Ward Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Sandy","elevation_ft":5000,"latitude":40.59989929199219,"longitude":-111.8010025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT68","iata":"","local":"","name":"Caveman Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":3940,"latitude":38.472801,"longitude":-109.660004,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT70","iata":"","local":"","name":"Garrison Airport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Garrison","elevation_ft":5225,"latitude":38.964901,"longitude":-114.037003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT71","iata":"","local":"UT71","name":"Tooele Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele","elevation_ft":5100,"latitude":40.524898529052734,"longitude":-112.29399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT72","iata":"","local":"UT72","name":"Two Jays #2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Moab","elevation_ft":4200,"latitude":38.584352,"longitude":-109.566789,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT76","iata":"","local":"","name":"Phc Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4250,"latitude":40.716702,"longitude":-111.889,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT78","iata":"","local":"UT78","name":"Timpanogos Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Orem","elevation_ft":4735,"latitude":40.312933,"longitude":-111.714455,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT65","iata":"","local":"UT65","name":"Goshute Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Ibapah","elevation_ft":5460,"latitude":39.99800109863281,"longitude":-113.97699737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3500,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT81","iata":"","local":"UT81","name":"Blanding Ambulance Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Blanding","elevation_ft":5900,"latitude":37.63560104370117,"longitude":-109.48400115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT84","iata":"","local":"UT84","name":"Skaggs Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"South Salt Lake City","elevation_ft":4289,"latitude":40.68830108642578,"longitude":-111.89199829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT85","iata":"","local":"UT85","name":"Cirque Lodge Studio Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Orem","elevation_ft":4860,"latitude":40.311547,"longitude":-111.66568,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"D"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT86","iata":"","local":"UT86","name":"Miller Motorsports Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Tooele","elevation_ft":4403,"latitude":40.583624,"longitude":-112.383013,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT87","iata":"","local":"UT87","name":"Jordan Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"West Jordan","elevation_ft":4590,"latitude":40.591144,"longitude":-111.976341,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT92","iata":"","local":"UT92","name":"UBMC Vernal Helipad 1","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Vernal","elevation_ft":5371,"latitude":40.462114,"longitude":-109.540625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT98","iata":"","local":"UT98","name":"Redwood Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-UT","municipality":"Salt Lake City","elevation_ft":4258,"latitude":40.72560119628906,"longitude":-111.93399810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"UT83","iata":"","local":"UT83","name":"Thunder Ridge Airpark","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Fruitland","elevation_ft":7050,"latitude":40.263806,"longitude":-110.865183,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4000,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT97","iata":"","local":"UT97","name":"Happy Canyon Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Happy Canyon","elevation_ft":4934,"latitude":38.15719985961914,"longitude":-110.29199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2065,"width_ft":50,"surface":"D"},{"id":"18/36","length_ft":1290,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT79","iata":"","local":"UT79","name":"3-I Rocker Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Jensen","elevation_ft":4865,"latitude":40.41559982299805,"longitude":-109.34400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UT89","iata":"","local":"UT89","name":"Cold Water Airport","category":"small_airport","iso_country":"US","iso_region":"US-UT","municipality":"Mendon","elevation_ft":4926,"latitude":41.681612,"longitude":-111.98181,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"UTAM","iata":"MYP","local":"","name":"Mary International Airport","category":"medium_airport","iso_country":"TM","iso_region":"TM-M","municipality":"Mary","elevation_ft":728,"latitude":37.62353,"longitude":61.895668,"has_tower":true,"has_beacon":false,"runways":[{"id":"17R/35L","length_ft":12467,"width_ft":148,"surface":"H"},{"id":"17L/35R","length_ft":9186,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA15","iata":"","local":"","name":"Stokes Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Cartersville","elevation_ft":295,"latitude":37.65622,"longitude":-78.045566,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA03","iata":"","local":"VA03","name":"Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Bedford","elevation_ft":800,"latitude":37.35240173339844,"longitude":-79.5167007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA06","iata":"","local":"VA06","name":"Deer Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Floyd","elevation_ft":2400,"latitude":36.99430084228516,"longitude":-80.45449829101562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA07","iata":"","local":"VA07","name":"Burkes Garden Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Tazewell","elevation_ft":3060,"latitude":37.096025,"longitude":-81.369359,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA10","iata":"","local":"VA10","name":"Catawba Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Blacksburg","elevation_ft":1720,"latitude":37.28010177612305,"longitude":-80.30139923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1751,"width_ft":61,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA11","iata":"","local":"VA11","name":"White Oak Stand Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Chilhowie","elevation_ft":2100,"latitude":36.807899475097656,"longitude":-81.70120239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1700,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA12","iata":"","local":"VA12","name":"Gravely Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Martinsville","elevation_ft":750,"latitude":36.64680099487305,"longitude":-79.7969970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA13","iata":"","local":"VA13","name":"Breezy Knoll Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rustburg","elevation_ft":785,"latitude":37.26539993286133,"longitude":-79.04280090332031,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA02","iata":"","local":"VA02","name":"Pace Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Ridgeway","elevation_ft":800,"latitude":36.58521,"longitude":-79.8772,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA20","iata":"","local":"","name":"SRMC Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Petersburg","elevation_ft":126,"latitude":37.216801,"longitude":-77.397797,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA21","iata":"","local":"VA21","name":"Morven Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Charlottesville","elevation_ft":615,"latitude":37.94010162353516,"longitude":-78.50859832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA22","iata":"","local":"","name":"Big River Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Clarksville","elevation_ft":375,"latitude":36.675097,"longitude":-78.695,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA28","iata":"","local":"VA28","name":"Layne Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Cullen","elevation_ft":560,"latitude":37.12129974365234,"longitude":-78.64360046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2250,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA29","iata":"","local":"VA29","name":"Novant Health UVA Culpeper Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Culpeper","elevation_ft":475,"latitude":38.454606,"longitude":-78.01435,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA32","iata":"","local":"VA32","name":"Longs Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Edinburg","elevation_ft":870,"latitude":38.804298400878906,"longitude":-78.5719985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA23","iata":"","local":"VA23","name":"Sanford Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hague","elevation_ft":15,"latitude":38.119714,"longitude":-76.613674,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA19","iata":"","local":"VA19","name":"Snow Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Charlottesville","elevation_ft":268,"latitude":37.95399856567383,"longitude":-78.36920166015625,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA25","iata":"","local":"VA25","name":"Twin Towers Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Chase City","elevation_ft":470,"latitude":36.76430130004883,"longitude":-78.3604965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1500,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA24","iata":"","local":"VA24","name":"Skovhus Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Concord","elevation_ft":712,"latitude":37.41429901123047,"longitude":-78.96420288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA27","iata":"","local":"VA27","name":"Moorefield's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Critz","elevation_ft":1110,"latitude":36.55989837646485,"longitude":-80.13780212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2160,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA35","iata":"","local":"VA35","name":"Fort Lee Nr 1 /Hqs/ Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Fort Lee","elevation_ft":100,"latitude":37.2417984009,"longitude":-77.3430023193,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA36","iata":"","local":"","name":"F. U. M. A. Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Fork Union","elevation_ft":400,"latitude":37.744598,"longitude":-78.270302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA39","iata":"","local":"VA39","name":"Fort Lee AHP 3(Qrtmst Cen) Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Fort Lee","elevation_ft":100,"latitude":37.25019836,"longitude":-77.33300018,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA40","iata":"","local":"VA40","name":"Virginia International Raceway Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Danville","elevation_ft":385,"latitude":36.565541,"longitude":-79.206797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":700,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA41","iata":"","local":"VA41","name":"High Hopes Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Withams","elevation_ft":9,"latitude":37.934600830078125,"longitude":-75.60990142822266,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1640,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA48","iata":"","local":"VA48","name":"Lockerman Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VA","municipality":"Gretna","elevation_ft":795,"latitude":37.03820037841797,"longitude":-79.59609985351562,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":5000,"width_ft":5000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA49","iata":"","local":"","name":"Robertson Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Hanover","elevation_ft":193,"latitude":37.705399,"longitude":-77.372498,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA54","iata":"","local":"VA54","name":"Crippen's Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Reston","elevation_ft":350,"latitude":38.976200103759766,"longitude":-77.32669830322266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA42","iata":"","local":"VA42","name":"Dogwood Airpark","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Fredericksburg","elevation_ft":180,"latitude":38.358972,"longitude":-77.452744,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4100,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA56","iata":"","local":"VA56","name":"Wells Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Ivor","elevation_ft":88,"latitude":37.00350189208984,"longitude":-76.82749938964844,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA50","iata":"","local":"VA50","name":"Woods Farm Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hanover","elevation_ft":57,"latitude":37.7150993347168,"longitude":-77.30249786376953,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA59","iata":"","local":"","name":"Weatherly & Son Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Chesapeake","elevation_ft":10,"latitude":36.6357,"longitude":-76.151603,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA63","iata":"","local":"","name":"Twin River Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Glasgow","elevation_ft":720,"latitude":37.679434,"longitude":-79.4202,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1470,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA65","iata":"","local":"","name":"Ivy Hill Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Lynchburg","elevation_ft":920,"latitude":37.3946,"longitude":-79.324799,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":971,"width_ft":300,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA67","iata":"","local":"","name":"Homeland Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Culpeper","elevation_ft":404,"latitude":38.570099,"longitude":-77.934998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA68","iata":"","local":"VA68","name":"Lakeview Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Moneta","elevation_ft":1020,"latitude":37.116908,"longitude":-79.603844,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA70","iata":"","local":"VA70","name":"Riverside Walter Reed Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Gloucester","elevation_ft":75,"latitude":37.42179870605469,"longitude":-76.54299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA72","iata":"","local":"VA72","name":"Covington Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Martinsville","elevation_ft":940,"latitude":36.60010147094727,"longitude":-80.0386962890625,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA73","iata":"","local":"VA73","name":"Mazza Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Matoaca","elevation_ft":190,"latitude":37.244789,"longitude":-77.4939,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3100,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA57","iata":"","local":"VA57","name":"Powhatan Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"King George","elevation_ft":60,"latitude":38.24850082397461,"longitude":-77.21910095214844,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":4888,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA77","iata":"","local":"","name":"Hanover Air Park","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Hanover","elevation_ft":196,"latitude":37.694,"longitude":-77.3769,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":41,"width_ft":41,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA78","iata":"","local":"VA78","name":"White Oak Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Surry","elevation_ft":91,"latitude":37.0715522766,"longitude":-76.8744659424,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":26,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA80","iata":"","local":"","name":"Woodle Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Midlothian","elevation_ft":315,"latitude":37.478802,"longitude":-77.701897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA82","iata":"","local":"VA82","name":"Inova Mount Vernon Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Alexandria","elevation_ft":35,"latitude":38.740275,"longitude":-77.07625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA84","iata":"","local":"VA84","name":"Point Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Cape Charles","elevation_ft":5,"latitude":37.30989837646485,"longitude":-76.01580047607422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA86","iata":"","local":"","name":"Buddy Davis Field","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"New Market","elevation_ft":1042,"latitude":38.689301,"longitude":-78.706398,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA88","iata":"","local":"VA88","name":"Sentara Norfolk General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Norfolk","elevation_ft":10,"latitude":36.86130142211914,"longitude":-76.30359649658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"-"},{"id":"H3","length_ft":65,"width_ft":65,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA89","iata":"","local":"","name":"Chance Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Davis Wharf","elevation_ft":6,"latitude":37.564602,"longitude":-75.9263,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":612,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA90","iata":"","local":"","name":"Hudgins Farm Ultralightport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Cobbs Creek","elevation_ft":43,"latitude":37.496799,"longitude":-76.413597,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA81","iata":"","local":"VA81","name":"Cub Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Mineral","elevation_ft":396,"latitude":37.94540023803711,"longitude":-77.89939880371094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA97","iata":"","local":"","name":"Harris Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Rectortown","elevation_ft":566,"latitude":38.912601,"longitude":-77.881699,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VA94","iata":"","local":"VA94","name":"Plainview Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Powhatan","elevation_ft":400,"latitude":37.53570175170898,"longitude":-77.89140319824219,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VA98","iata":"","local":"VA98","name":"Reedville Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Reedville","elevation_ft":12,"latitude":37.82820129394531,"longitude":-76.27330017089844,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VAOZ","iata":"ISK","local":"","name":"Nashik Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-MM","municipality":"Nasik","elevation_ft":1900,"latitude":20.119101,"longitude":73.912903,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VAKP","iata":"KLH","local":"","name":"Kolhapur Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-MM","municipality":"Kolhapur","elevation_ft":1996,"latitude":16.6647,"longitude":74.289398,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":4495,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VDSR","iata":"REP","local":"","name":"Siem Reap International Airport","category":"large_airport","iso_country":"KH","iso_region":"KH-17","municipality":"Siem Reap","elevation_ft":60,"latitude":13.41155,"longitude":103.813044,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":8366,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VASD","iata":"SAG","local":"","name":"Shirdi Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-MM","municipality":"Kakadi","elevation_ft":1926,"latitude":19.688752,"longitude":74.377354,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8202,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VCCC","iata":"RML","local":"","name":"Colombo Ratmalana Airport","category":"medium_airport","iso_country":"LK","iso_region":"LK-1","municipality":"Colombo","elevation_ft":22,"latitude":6.821990013122559,"longitude":79.88619995117188,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":4593,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VEKI","iata":"KBK","local":"","name":"Kushinagar International Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-UP","municipality":"Kushinagar","elevation_ft":266,"latitude":26.776534,"longitude":83.889214,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":10499,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VEDX","iata":"","local":"","name":"Kalaikunda Air Force Station","category":"small_airport","iso_country":"IN","iso_region":"IN-WB","municipality":"UNKNOWN","elevation_ft":200,"latitude":22.339500427246097,"longitude":87.2145004272461,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":9000,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VEJH","iata":"JRG","local":"","name":"Jharsuguda Airport","category":"small_airport","iso_country":"IN","iso_region":"IN-OR","municipality":"UNKNOWN","elevation_ft":751,"latitude":21.9135,"longitude":84.0504,"has_tower":true,"has_beacon":false,"runways":[{"id":"06/24","length_ft":7844,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG02","iata":"","local":"VG02","name":"Innsbrook Technical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":150,"latitude":37.654598236083984,"longitude":-77.58219909667969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG04","iata":"","local":"VG04","name":"Yorktown Power Station Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Newport News","elevation_ft":14,"latitude":37.2140007019043,"longitude":-76.45359802246094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG01","iata":"","local":"VG01","name":"Eureka Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Keysville","elevation_ft":420,"latitude":37.060258,"longitude":-78.563233,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VEMR","iata":"DMU","local":"","name":"Dimapur Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-NL","municipality":"Dimapur","elevation_ft":487,"latitude":25.8838996887,"longitude":93.7711029053,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":7513,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VERK","iata":"RRK","local":"","name":"Rourkela Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-OR","municipality":"Rourkela","elevation_ft":659,"latitude":22.256571,"longitude":84.815193,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5987,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG08","iata":"","local":"VG08","name":"Montgomery Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Blacksburg","elevation_ft":2126,"latitude":37.186500549316406,"longitude":-80.40899658203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG10","iata":"","local":"","name":"Cathro Airport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Charlottesville","elevation_ft":500,"latitude":37.927972,"longitude":-78.551216,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG11","iata":"","local":"VG11","name":"Carrsville Volunteer Fire Department Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Franklin","elevation_ft":25,"latitude":36.71072,"longitude":-76.82299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG13","iata":"","local":"VG13","name":"White Stone Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"White Stone","elevation_ft":50,"latitude":37.64870071411133,"longitude":-76.38760375976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG14","iata":"","local":"VG14","name":"Philip M Grabill Jr Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Woodstock","elevation_ft":820,"latitude":38.87139892578125,"longitude":-78.51329803466797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG15","iata":"","local":"VG15","name":"White Stone Family Practice Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"White Stone","elevation_ft":50,"latitude":37.64419937133789,"longitude":-76.39520263671875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG16","iata":"","local":"VG16","name":"Landis Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Patrick Springs","elevation_ft":1100,"latitude":36.624012,"longitude":-80.169342,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG17","iata":"","local":"VG17","name":"Defense Supply Center Richmond Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":115,"latitude":37.423749,"longitude":-77.448411,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":98,"width_ft":98,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG18","iata":"","local":"VG18","name":"Sky Bryce Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Basye","elevation_ft":1263,"latitude":38.81589889526367,"longitude":-78.77030181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2240,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG06","iata":"","local":"VG06","name":"Fulcher Family Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Amherst","elevation_ft":980,"latitude":37.72510147094727,"longitude":-79.08309936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG20","iata":"","local":"VG20","name":"Onley Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Onley","elevation_ft":45,"latitude":37.67509841918945,"longitude":-75.70989990234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2900,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG34","iata":"","local":"VG34","name":"Merifield Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Clarksville","elevation_ft":355,"latitude":36.584599,"longitude":-78.500801,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2375,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG40","iata":"","local":"VG40","name":"Woody Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rocky Mount","elevation_ft":1150,"latitude":36.886759,"longitude":-79.863911,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG41","iata":"","local":"","name":"Smyth County Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Marion","elevation_ft":2201,"latitude":36.852917,"longitude":-81.505063,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG37","iata":"","local":"VG37","name":"Umphlett Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Whaleyville","elevation_ft":75,"latitude":36.589206,"longitude":-76.638458,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2550,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG42","iata":"","local":"VG42","name":"Henshaw Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Hopewell","elevation_ft":85,"latitude":37.26469,"longitude":-77.16544,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG24","iata":"","local":"VG24","name":"Mayers Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Ashland","elevation_ft":215,"latitude":37.77666,"longitude":-77.48727,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG45","iata":"","local":"","name":"Medical College of Virginia Heliport","category":"closed","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":343,"latitude":37.541698,"longitude":-77.441704,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG46","iata":"","local":"VG46","name":"Carilion Franklin Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Rocky Mount","elevation_ft":1153,"latitude":36.993298,"longitude":-79.889996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG47","iata":"","local":"VG47","name":"Carilion Patient Transportation Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Roanoke","elevation_ft":946,"latitude":37.25210189819336,"longitude":-79.94979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG48","iata":"","local":"VG48","name":"Clear Moore Corp. Kenneth Moore Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Yorktown","elevation_ft":47,"latitude":37.17390060424805,"longitude":-76.4749984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG49","iata":"","local":"VG49","name":"Tappahannock Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Tappahannock","elevation_ft":42,"latitude":37.901100158691406,"longitude":-76.87689971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG50","iata":"","local":"VG50","name":"Lonesome Pine Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Big Stone Gap","elevation_ft":1596,"latitude":36.87710189819336,"longitude":-82.75379943847656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG51","iata":"","local":"VG51","name":"Sentara Obici Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Elephant Fork","elevation_ft":55,"latitude":36.7733001709,"longitude":-76.58219909670001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG53","iata":"","local":"VG53","name":"Venning's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rocky Mount","elevation_ft":1100,"latitude":37.04359817504883,"longitude":-79.80139923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1976,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG56","iata":"","local":"VG56","name":"Midway Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Bloxom","elevation_ft":50,"latitude":37.80958,"longitude":-75.615034,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG54","iata":"","local":"VG54","name":"Bear River Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"McGaheysville","elevation_ft":1050,"latitude":38.319067,"longitude":-78.763754,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG52","iata":"","local":"VG52","name":"Woodridge Field","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Lovingston","elevation_ft":663,"latitude":37.83919906616211,"longitude":-78.82170104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VG58","iata":"","local":"VG58","name":"Abbott Airport","category":"small_airport","iso_country":"US","iso_region":"US-VA","municipality":"Rocky Mount","elevation_ft":981,"latitude":36.945202,"longitude":-79.791942,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG59","iata":"","local":"VG59","name":"Cedar Point Landing Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Dublin","elevation_ft":1865,"latitude":37.069444,"longitude":-80.649444,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":42,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG62","iata":"","local":"VG62","name":"Carilion Roanoke Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Roanoke","elevation_ft":1112,"latitude":37.251049,"longitude":-79.942848,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG63","iata":"","local":"VG63","name":"Federal Reserve Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Richmond","elevation_ft":181,"latitude":37.611722,"longitude":-77.646333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":132,"width_ft":114,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG68","iata":"","local":"VG68","name":"Bon Secours St Francis Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Midlothian","elevation_ft":270,"latitude":37.466939,"longitude":-77.660086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VG94","iata":"","local":"VG94","name":"Loves Helipad","category":"heliport","iso_country":"US","iso_region":"US-VA","municipality":"Loves Helipad","elevation_ft":431,"latitude":36.745292,"longitude":-78.101337,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VI01","iata":"","local":"VI01","name":"DPS Heliport","category":"heliport","iso_country":"VI","iso_region":"VI-U-A","municipality":"Frederiksted St Croix","elevation_ft":50,"latitude":17.708900451660156,"longitude":-64.79650115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VI02","iata":"","local":"VI02","name":"St. Thomas Waterfront Heliport","category":"heliport","iso_country":"VI","iso_region":"VI-U-A","municipality":"Charlotte Amalie","elevation_ft":4,"latitude":18.338600158691406,"longitude":-64.93930053710938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VI04","iata":"","local":"VI04","name":"Stouffer Grand Beach Resort Heliport","category":"heliport","iso_country":"VI","iso_region":"VI-U-A","municipality":"Charlotte Amalie","elevation_ft":125,"latitude":18.345800399780277,"longitude":-64.90399932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VI22","iata":"SPB","local":"VI22","name":"Charlotte Amalie Harbor Seaplane Base","category":"seaplane_base","iso_country":"VI","iso_region":"VI-U-A","municipality":"Charlotte Amalie St Thomas","elevation_ft":0,"latitude":18.338600158691406,"longitude":-64.9406967163086,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":10000,"width_ft":4000,"surface":"W"},{"id":"N/S","length_ft":4000,"width_ft":4000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VI32","iata":"SSB","local":"VI32","name":"Christiansted Harbor Seaplane Base","category":"seaplane_base","iso_country":"VI","iso_region":"VI-U-A","municipality":"Christiansted St Croix","elevation_ft":0,"latitude":17.74720001220703,"longitude":-64.70490264892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":7000,"width_ft":600,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VIBT","iata":"BUP","local":"","name":"Bhatinda Air Force Station","category":"medium_airport","iso_country":"IN","iso_region":"IN-PB","municipality":"UNKNOWN","elevation_ft":662,"latitude":30.270099639892575,"longitude":74.75579833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9200,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VIAX","iata":"AIP","local":"","name":"Adampur Airport","category":"small_airport","iso_country":"IN","iso_region":"IN-PB","municipality":"Adampur","elevation_ft":775,"latitude":31.4338,"longitude":75.758797,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":9039,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VIKG","iata":"KQH","local":"","name":"Kishangarh Airport Ajmer","category":"medium_airport","iso_country":"IN","iso_region":"IN-RJ","municipality":"Ajmer (Kishangarh)","elevation_ft":0,"latitude":26.591007,"longitude":74.812956,"has_tower":true,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6562,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOBR","iata":"IXX","local":"","name":"Bidar Airport / Bidar Air Force Station","category":"medium_airport","iso_country":"IN","iso_region":"IN-KA","municipality":"Bidar","elevation_ft":2178,"latitude":17.9081,"longitude":77.487099,"has_tower":true,"has_beacon":false,"runways":[{"id":"02/20","length_ft":9199,"width_ft":148,"surface":"H"},{"id":"08/26","length_ft":8999,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOAT","iata":"AGX","local":"","name":"Agatti Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-LD","municipality":"Agatti","elevation_ft":14,"latitude":10.8237,"longitude":72.176003,"has_tower":true,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3950,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOKU","iata":"KJB","local":"KJB","name":"Kurnool Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-AP","municipality":"Orvakal","elevation_ft":920,"latitude":15.716288,"longitude":78.16923,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":6562,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOCP","iata":"CDP","local":"","name":"Kadapa Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-AP","municipality":"Kadapa","elevation_ft":430,"latitude":14.513154,"longitude":78.769183,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":8200,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VRMG","iata":"GAN","local":"","name":"Gan International Airport","category":"medium_airport","iso_country":"MV","iso_region":"MV-01","municipality":"Gan","elevation_ft":6,"latitude":-0.692694,"longitude":73.151557,"has_tower":true,"has_beacon":false,"runways":[{"id":"10/28","length_ft":9711,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VOSR","iata":"SDW","local":"VOSR","name":"Sindhudurg Airport","category":"medium_airport","iso_country":"IN","iso_region":"IN-MM","municipality":"Sindhudurg","elevation_ft":202,"latitude":16,"longitude":73.533333,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8200,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOMY","iata":"MYQ","local":"","name":"Mysore Airport","category":"small_airport","iso_country":"IN","iso_region":"IN-KA","municipality":"Mysore","elevation_ft":2349,"latitude":12.23,"longitude":76.655833,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5709,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VOTJ","iata":"TJV","local":"","name":"Thanjavur Air Force Station","category":"small_airport","iso_country":"IN","iso_region":"IN-TN","municipality":"Thanjavur","elevation_ft":253,"latitude":10.723835,"longitude":79.109457,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":5680,"width_ft":150,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT04","iata":"","local":"VT04","name":"Southwestern Vermont Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Bennington","elevation_ft":800,"latitude":42.8745002746582,"longitude":-73.20760345458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT08","iata":"","local":"VT08","name":"Bradford Armory Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Bradford","elevation_ft":465,"latitude":44.00149917602539,"longitude":-72.12310028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT16","iata":"","local":"VT16","name":"Velco Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Rutland","elevation_ft":715,"latitude":43.6598014831543,"longitude":-72.9928970336914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":195,"width_ft":125,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT15","iata":"","local":"VT15","name":"Savage Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Grand Isle","elevation_ft":125,"latitude":44.70389938354492,"longitude":-73.24600219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT17","iata":"","local":"VT17","name":"Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Ludlow","elevation_ft":1502,"latitude":43.36899948120117,"longitude":-72.67430114746094,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT12","iata":"","local":"VT12","name":"E.A.Deeds Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Charlotte","elevation_ft":127,"latitude":44.29119873046875,"longitude":-73.283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT09","iata":"","local":"VT09","name":"Spencer Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Addison","elevation_ft":310,"latitude":44.11360168457031,"longitude":-73.29029846191406,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT01","iata":"","local":"VT01","name":"Teal Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Huntington","elevation_ft":1440,"latitude":44.282386,"longitude":-72.937557,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT11","iata":"","local":"VT11","name":"Ass-Pirin Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Addison","elevation_ft":130,"latitude":44.06869888305664,"longitude":-73.37339782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3700,"width_ft":160,"surface":"T"},{"id":"10/28","length_ft":2600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT10","iata":"","local":"VT10","name":"Manning Personal Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Bridport","elevation_ft":255,"latitude":43.98139953613281,"longitude":-73.38569641113281,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT13","iata":"","local":"VT13","name":"Holloway Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Chester","elevation_ft":1520,"latitude":43.30009841918945,"longitude":-72.71759796142578,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1126,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT21","iata":"","local":"","name":"State Garage Site Heliport","category":"closed","iso_country":"US","iso_region":"US-VT","municipality":"St. Albans","elevation_ft":380,"latitude":44.826401,"longitude":-73.088203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT24","iata":"","local":"","name":"Torrey Airport","category":"closed","iso_country":"US","iso_region":"US-VT","municipality":"Shoreham","elevation_ft":280,"latitude":43.931999,"longitude":-73.370102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT28","iata":"","local":"VT28","name":"Vergennes Armory Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Vergennes","elevation_ft":200,"latitude":44.1708984375,"longitude":-73.2468032836914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT32","iata":"","local":"VT32","name":"Bobby Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Brookline","elevation_ft":420,"latitude":42.98899841308594,"longitude":-72.62809753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT33","iata":"","local":"","name":"Yankee Kingdom Airport","category":"closed","iso_country":"US","iso_region":"US-VT","municipality":"West Addison","elevation_ft":200,"latitude":44.105598,"longitude":-73.377899,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":37,"width_ft":37,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT36","iata":"","local":"VT36","name":"MCHV Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Burlington","elevation_ft":345,"latitude":44.4734,"longitude":-73.18875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT37","iata":"","local":"VT37","name":"Windsor Armory Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Windsor","elevation_ft":400,"latitude":43.47090148925781,"longitude":-72.40370178222656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":85,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT25","iata":"","local":"VT25","name":"Sky Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"South Burlington","elevation_ft":330,"latitude":44.41669845581055,"longitude":-73.16619873046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1730,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT31","iata":"","local":"VT31","name":"Carriers Skypark Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Washington","elevation_ft":1600,"latitude":44.11119842529297,"longitude":-72.44400024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT30","iata":"","local":"VT30","name":"Ketcham Landing Area Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Waitsfield","elevation_ft":780,"latitude":44.16255,"longitude":-72.834313,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1050,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT40","iata":"","local":"VT40","name":"Wenlock Crossing Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Ferdinand","elevation_ft":1157,"latitude":44.777000427246094,"longitude":-71.75150299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":195,"width_ft":150,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT51","iata":"","local":"VT51","name":"Ibm Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Essex Junction","elevation_ft":385,"latitude":44.4817008972168,"longitude":-73.09649658203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT54","iata":"","local":"","name":"R G Newsome Heliport","category":"closed","iso_country":"US","iso_region":"US-VT","municipality":"Quechee","elevation_ft":660,"latitude":43.651501,"longitude":-72.422302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT53","iata":"","local":"VT53","name":"Bailey Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Panton","elevation_ft":140,"latitude":44.117795,"longitude":-73.377546,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":960,"width_ft":50,"surface":"T"},{"id":"08/26","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT42","iata":"","local":"VT42","name":"Two Tails Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Morrisville","elevation_ft":754,"latitude":44.51259994506836,"longitude":-72.60710144042969,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT44","iata":"","local":"VT44","name":"Perras Field","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Morrisville","elevation_ft":820,"latitude":44.52669906616211,"longitude":-72.58149719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT55","iata":"","local":"VT55","name":"Brandon Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Randolph","elevation_ft":710,"latitude":43.90119934082031,"longitude":-72.58290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT45","iata":"","local":"VT45","name":"Davis Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Jericho","elevation_ft":640,"latitude":44.51729965209961,"longitude":-72.97930145263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT52","iata":"","local":"VT52","name":"Shaw Meadow Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Milton","elevation_ft":230,"latitude":44.64339828491211,"longitude":-73.1875991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2150,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT46","iata":"","local":"VT46","name":"Northern Lights Airport","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Alburg","elevation_ft":130,"latitude":44.872002,"longitude":-73.286499,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT38","iata":"","local":"VT38","name":"Greenwoods Airfield","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Alburg","elevation_ft":179,"latitude":45.008584,"longitude":-73.240966,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT57","iata":"","local":"VT57","name":"Malletts Head Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-VT","municipality":"Colchester","elevation_ft":95,"latitude":44.56060028076172,"longitude":-73.24040222167969,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":3000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT61","iata":"","local":"VT61","name":"Rutland Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Rutland","elevation_ft":650,"latitude":43.59809875488281,"longitude":-72.95500183105469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT70","iata":"","local":"VT70","name":"North Country Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Newport","elevation_ft":720,"latitude":44.95640182495117,"longitude":-72.19950103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT80","iata":"","local":"VT80","name":"Monument Farms Dairy Bittersweet Falls Road Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Weybridge","elevation_ft":394,"latitude":44.036531,"longitude":-73.213869,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"},{"id":"H2","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT88","iata":"","local":"VT88","name":"VTPAD Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"South Lincoln","elevation_ft":1908,"latitude":44.058938,"longitude":-73.019483,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT96","iata":"","local":"VT96","name":"Mansfield Heliflight Inc Heliport","category":"heliport","iso_country":"US","iso_region":"US-VT","municipality":"Milton","elevation_ft":175,"latitude":44.600117,"longitude":-73.16505,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"VT62","iata":"","local":"VT62","name":"Catamount Airfield","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Cabot","elevation_ft":1350,"latitude":44.39039993286133,"longitude":-72.35060119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1390,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT73","iata":"","local":"VT73","name":"Melrose Springs Airfield","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Bridport","elevation_ft":300,"latitude":43.944861,"longitude":-73.316833,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"VT59","iata":"","local":"VT59","name":"Ardell Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-VT","municipality":"Manchester","elevation_ft":1919,"latitude":43.27780151367188,"longitude":-72.91079711914062,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":175,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA02","iata":"","local":"WA02","name":"The Island Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Anacortes","elevation_ft":150,"latitude":48.50260162353516,"longitude":-122.61499786376952,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA03","iata":"","local":"WA03","name":"Tristan Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Sumas","elevation_ft":48,"latitude":48.987451,"longitude":-122.288134,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA00","iata":"","local":"WA00","name":"Mercer Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Alderdale","elevation_ft":780,"latitude":45.898488,"longitude":-119.915638,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA06","iata":"","local":"WA06","name":"Don Johnson Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Auburn","elevation_ft":429,"latitude":47.30229949951172,"longitude":-122.1510009765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":114,"width_ft":93,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA07","iata":"","local":"WA07","name":"Barker Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Mount Vernon","elevation_ft":5,"latitude":48.37480163574219,"longitude":-122.33899688720705,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1950,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA01","iata":"","local":"WA01","name":"Wirkkala Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Naselle","elevation_ft":35,"latitude":46.356201171875,"longitude":-123.81500244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA10","iata":"","local":"","name":"Gosney Airport","category":"closed","iso_country":"US","iso_region":"US-WY","municipality":"Kaycee","elevation_ft":4830,"latitude":43.722197,"longitude":-106.667,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA11","iata":"","local":"","name":"Boeing Military Airplanes Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Tukwila","elevation_ft":6,"latitude":47.522598,"longitude":-122.305,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA13","iata":"","local":"WA13","name":"Seaplane Landing Area Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WA","municipality":"Chelan","elevation_ft":1100,"latitude":48.20830154418945,"longitude":-120.59200286865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":1000,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA17","iata":"","local":"","name":"Majerle Strip STOLport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Duvall","elevation_ft":75,"latitude":47.755316,"longitude":-121.98235,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA19","iata":"","local":"WA19","name":"Berkley Structures Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Redmond","elevation_ft":50,"latitude":47.681996,"longitude":-122.148491,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA16","iata":"","local":"WA16","name":"Banas Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Brooklyn","elevation_ft":180,"latitude":46.79970169067383,"longitude":-123.54100036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA14","iata":"","local":"WA14","name":"Connell City Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Connell","elevation_ft":925,"latitude":46.661219,"longitude":-118.830858,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3107,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA09","iata":"RCE","local":"WA09","name":"Roche Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Roche Harbor","elevation_ft":100,"latitude":48.6123008728,"longitude":-123.138999939,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3593,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA12","iata":"","local":"WA12","name":"Acme Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Acme","elevation_ft":301,"latitude":48.71356,"longitude":-122.195926,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1400,"width_ft":63,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA18","iata":"","local":"WA18","name":"Decatur /Jones/ Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Decatur Island","elevation_ft":125,"latitude":48.510101318359375,"longitude":-122.8030014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1500,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA27","iata":"","local":"WA27","name":"Tom Matson Enumclaw Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Enumclaw","elevation_ft":793,"latitude":47.197912,"longitude":-121.989194,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA28","iata":"","local":"WA28","name":"Private H/C PAD Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Auburn","elevation_ft":98,"latitude":47.332883,"longitude":-122.256089,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA31","iata":"","local":"WA31","name":"Reoh1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Lake Stevens","elevation_ft":293,"latitude":48.038587,"longitude":-122.061139,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA32","iata":"","local":"","name":"Stonehedge Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":210,"latitude":46.974998,"longitude":-122.7897,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":10000,"width_ft":500,"surface":"W"},{"id":"13W/31W","length_ft":10000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA33","iata":"","local":"WA33","name":"Shaw Island Trust Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Shaw Island","elevation_ft":80,"latitude":48.58580017089844,"longitude":-122.9209976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA34","iata":"","local":"WA34","name":"Newhalem Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Newhalem","elevation_ft":504,"latitude":48.671895,"longitude":-121.252213,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA38","iata":"","local":"WA38","name":"South Cove Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Redmond","elevation_ft":37,"latitude":47.6841,"longitude":-122.14139,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA35","iata":"","local":"WA35","name":"Clam Harbor Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Eastsound","elevation_ft":220,"latitude":48.62229919433594,"longitude":-122.9469985961914,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1200,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA25","iata":"","local":"WA25","name":"Green Valley Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Granite Falls","elevation_ft":300,"latitude":48.095945,"longitude":-122.015036,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1515,"width_ft":250,"surface":"T"},{"id":"17/35","length_ft":2195,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA24","iata":"","local":"WA24","name":"Pfister's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Pasco","elevation_ft":625,"latitude":46.396900177,"longitude":-119.021003723,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA29","iata":"","local":"WA29","name":"La Center View-Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"La Center","elevation_ft":811,"latitude":45.894295,"longitude":-122.594082,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA39","iata":"","local":"","name":"Woodfield Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Kennewick","elevation_ft":445,"latitude":46.1278,"longitude":-119.017997,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1171,"width_ft":24,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA40","iata":"","local":"WA40","name":"Darrington Clinic EMS Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Darrington","elevation_ft":550,"latitude":48.253459,"longitude":-121.608471,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA41","iata":"","local":"","name":"Bear Canyon West Field","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Morton","elevation_ft":980,"latitude":46.5989,"longitude":-122.484,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":6055,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA43","iata":"","local":"WA43","name":"Janes Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Marysville","elevation_ft":100,"latitude":48.04199981689453,"longitude":-122.22599792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA47","iata":"","local":"","name":"Flying Rock Airpark","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":2700,"latitude":47.151669,"longitude":-120.633874,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":160,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA50","iata":"","local":"WA50","name":"Fire District 5 Ems Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Gig Harbor","elevation_ft":280,"latitude":47.35220337,"longitude":-122.6251373,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":36,"width_ft":36,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA51","iata":"","local":"WA51","name":"Samaritan Hospital Rms Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Moses Lake","elevation_ft":1130,"latitude":47.12860107421875,"longitude":-119.26399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA53","iata":"","local":"WA53","name":"Harborview Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":315,"latitude":47.604000091552734,"longitude":-122.322998046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA45","iata":"","local":"WA45","name":"Olympic Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Discovery Bay/Maynard","elevation_ft":500,"latitude":47.99530029296875,"longitude":-122.9000015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA52","iata":"","local":"WA52","name":"Deer Flat Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Deer Park","elevation_ft":2200,"latitude":47.956425,"longitude":-117.600671,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA42","iata":"","local":"WA42","name":"Stacey's Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Townsend","elevation_ft":100,"latitude":47.975592,"longitude":-122.772861,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA46","iata":"","local":"WA46","name":"Daybreak Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"La Center","elevation_ft":25,"latitude":45.830299377441406,"longitude":-122.63700103759766,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA54","iata":"","local":"WA54","name":"Safeco Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":716,"latitude":47.606091,"longitude":-122.333837,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA55","iata":"","local":"WA55","name":"Elliott Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":100,"latitude":47.619652,"longitude":-122.36031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA56","iata":"","local":"","name":"Israel's Farm Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Sedro Woolley","elevation_ft":65,"latitude":48.507599,"longitude":-122.092003,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA57","iata":"","local":"WA57","name":"Bluecreek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Addy","elevation_ft":1740,"latitude":48.31389999389648,"longitude":-117.83999633789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA62","iata":"","local":"WA62","name":"Paradise Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Cheney","elevation_ft":2352,"latitude":47.470893,"longitude":-117.419515,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA65","iata":"","local":"WA65","name":"Washington National Guard Sinclair HGTS Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bremerton","elevation_ft":0,"latitude":47.55389,"longitude":-122.68244,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA58","iata":"","local":"WA93","name":"Eliza Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Eliza Island","elevation_ft":8,"latitude":48.652496,"longitude":-122.585959,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA68","iata":"","local":"WA68","name":"Sky Valley Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Townsend","elevation_ft":140,"latitude":48.076944,"longitude":-122.840661,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA63","iata":"","local":"WA63","name":"Pleasant Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Washougal","elevation_ft":540,"latitude":45.562342,"longitude":-122.256089,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA67","iata":"","local":"WA67","name":"Green Mountain STOLport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":270,"latitude":45.66310119628906,"longitude":-122.4729995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1760,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA69","iata":"","local":"","name":"Wax Orchards Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Vashon","elevation_ft":389,"latitude":47.400182,"longitude":-122.499415,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA70","iata":"","local":"","name":"Frosty Creek Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Tonasket","elevation_ft":3608,"latitude":48.5777,"longitude":-118.985001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA71","iata":"","local":"WA71","name":"Kelly Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Issaquah","elevation_ft":100,"latitude":47.53730010986328,"longitude":-122.06099700927734,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA72","iata":"","local":"WA72","name":"Zema Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Colville","elevation_ft":1854,"latitude":48.64469909667969,"longitude":-117.93800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA73","iata":"","local":"WA73","name":"Smith Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Colville","elevation_ft":2240,"latitude":48.525001525878906,"longitude":-117.85299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":900,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA75","iata":"","local":"WA75","name":"Flying 'O' Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Covington","elevation_ft":563,"latitude":47.36920166015625,"longitude":-122.06900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA76","iata":"","local":"","name":"Columbia Crest Winery Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Paterson","elevation_ft":640,"latitude":45.955386,"longitude":-119.622381,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1834,"width_ft":25,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA81","iata":"","local":"81W","name":"Fishermans Bay Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WA","municipality":"Lopez","elevation_ft":0,"latitude":48.516499,"longitude":-122.917999,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA79","iata":"","local":"WA79","name":"Walter Sutton's Private Strip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Amboy","elevation_ft":451,"latitude":45.93320083618164,"longitude":-122.41799926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA77","iata":"","local":"WA77","name":"Enumclaw Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Enumclaw","elevation_ft":738,"latitude":47.19570159912109,"longitude":-122.02200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA78","iata":"","local":"WA78","name":"Sky River Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Washougal","elevation_ft":1239,"latitude":45.629005,"longitude":-122.191013,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":118,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA82","iata":"","local":"WA82","name":"The Boeing Company Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Everett","elevation_ft":628,"latitude":47.931827,"longitude":-122.263308,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA83","iata":"WSX","local":"WA83","name":"Westsound/WSX Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WA","municipality":"West Sound","elevation_ft":0,"latitude":48.617901,"longitude":-122.956903,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":4000,"width_ft":500,"surface":"W"},{"id":"18W/36W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA85","iata":"","local":"WA85","name":"Weyerhaeuser Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Auburn","elevation_ft":409,"latitude":47.296295,"longitude":-122.299075,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA86","iata":"","local":"WA86","name":"Boeing - Auburn Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Auburn","elevation_ft":85,"latitude":47.293108,"longitude":-122.245785,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA89","iata":"","local":"WA89","name":"Kadlec Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Richland","elevation_ft":384,"latitude":46.28169,"longitude":-119.281236,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":76,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA91","iata":"","local":"WA91","name":"Pathfinder Helicopter Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":3440,"latitude":47.759735,"longitude":-117.150162,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":12,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA92","iata":"","local":"WA92","name":"Mc Neil Island Emergency Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Steilacoom","elevation_ft":40,"latitude":47.196154,"longitude":-122.661399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA94","iata":"","local":"WA94","name":"Washington Air Museum Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Black Diamond","elevation_ft":500,"latitude":47.33399963378906,"longitude":-122.02400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA90","iata":"","local":"WA90","name":"Floathaven Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Bellingham","elevation_ft":325,"latitude":48.72268,"longitude":-122.337914,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1200,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA96","iata":"","local":"WA96","name":"Leisureland Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Bremerton","elevation_ft":430,"latitude":47.60749816894531,"longitude":-122.77400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA84","iata":"","local":"WA84","name":"Auburn Academy Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Auburn","elevation_ft":416,"latitude":47.28070068359375,"longitude":-122.1500015258789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2650,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA87","iata":"","local":"WA87","name":"Parkside Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Battle Ground","elevation_ft":275,"latitude":45.81589889526367,"longitude":-122.5530014038086,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2100,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WA98","iata":"","local":"WA98","name":"Cascade Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Cashmere","elevation_ft":860,"latitude":47.512346,"longitude":-120.488691,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":110,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WA99","iata":"","local":"","name":"Flying K Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Castle Rock","elevation_ft":160,"latitude":46.328231,"longitude":-122.885566,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WAFD","iata":"LLO","local":"","name":"Bua - Palopo Lagaligo Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-SN","municipality":"Palopo","elevation_ft":14,"latitude":-3.082997,"longitude":120.245018,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":5413,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WAFJ","iata":"MJU","local":"","name":"Tampa Padang Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-SN","municipality":"Mamuju","elevation_ft":49,"latitude":-2.590267,"longitude":119.025364,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":6398,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WAFM","iata":"MXB","local":"","name":"Andi Jemma Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-SN","municipality":"Masamba","elevation_ft":164,"latitude":-2.55803,"longitude":120.323997,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3510,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WAWH","iata":"KSR","local":"","name":"Selayar - Haji Aroeppala Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-SN","municipality":"Benteng","elevation_ft":13,"latitude":-6.17921,"longitude":120.437479,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":6398,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WAPC","iata":"NDA","local":"","name":"Bandanaira Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-MA","municipality":"Bandanaira","elevation_ft":100,"latitude":-4.5214,"longitude":129.9054,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2953,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WAWB","iata":"BUW","local":"","name":"Betoambari Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-SG","municipality":"Bau Bau","elevation_ft":164,"latitude":-5.48688,"longitude":122.569,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5906,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WAWS","iata":"SQR","local":"","name":"Soroako Airport","category":"small_airport","iso_country":"ID","iso_region":"ID-SN","municipality":"Soroako","elevation_ft":1388,"latitude":-2.530582,"longitude":121.356096,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3382,"width_ft":62,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI01","iata":"","local":"WI01","name":"Aurora Medical Center Kenosha Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Kenosha","elevation_ft":698,"latitude":42.57059860229492,"longitude":-87.93609619140625,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI02","iata":"","local":"","name":"Turtle Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Beloit","elevation_ft":911,"latitude":42.507,"longitude":-88.914802,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI04","iata":"","local":"","name":"Lake Menomin Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Menomonie","elevation_ft":800,"latitude":44.891602,"longitude":-91.916901,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI05","iata":"","local":"WI05","name":"Stocktrade Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Elk Mound","elevation_ft":882,"latitude":44.80830001831055,"longitude":-91.68440246582033,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1050,"width_ft":18,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI03","iata":"","local":"WI03","name":"Horner Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Union Grove","elevation_ft":770,"latitude":42.798099517822266,"longitude":-88.1333999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1300,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI06","iata":"","local":"WI06","name":"Aurora Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Two Rivers","elevation_ft":596,"latitude":44.127201080322266,"longitude":-87.6156005859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI08","iata":"","local":"WI08","name":"St. Mary's Hospital Ozaukee Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Mequon","elevation_ft":667,"latitude":43.25650024414063,"longitude":-87.92569732666016,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI15","iata":"","local":"WI15","name":"Bloomer Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Bloomer","elevation_ft":1055,"latitude":45.102500915527344,"longitude":-91.50140380859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI19","iata":"","local":"WI19","name":"Cacic Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Montello","elevation_ft":805,"latitude":43.79999923706055,"longitude":-89.43350219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI14","iata":"","local":"WI14","name":"Baldwin Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Baldwin","elevation_ft":1104,"latitude":44.96659851074219,"longitude":-92.38770294189452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1950,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI12","iata":"","local":"WI12","name":"Lilac Time Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Birchwood","elevation_ft":1300,"latitude":45.70660018920898,"longitude":-91.6249008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI10","iata":"","local":"WI10","name":"Cedar Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Brule","elevation_ft":1229,"latitude":46.44822,"longitude":-91.613051,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3800,"width_ft":150,"surface":"T"},{"id":"NW/SE","length_ft":1400,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI11","iata":"","local":"WI11","name":"Mumm Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Orfordville","elevation_ft":945,"latitude":42.591400146484375,"longitude":-89.2406997680664,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI09","iata":"","local":"WI09","name":"Heitman Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Dousman","elevation_ft":880,"latitude":42.9771995544,"longitude":-88.47579956050001,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI16","iata":"","local":"WI16","name":"Jim Benson Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mineral Point","elevation_ft":1100,"latitude":42.85309982299805,"longitude":-90.12969970703124,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI20","iata":"","local":"WI20","name":"Southwest Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Platteville","elevation_ft":1003,"latitude":42.720475,"longitude":-90.457832,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI30","iata":"","local":"WI30","name":"St Clare Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Baraboo","elevation_ft":965,"latitude":43.48139953613281,"longitude":-89.72959899902344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI34","iata":"","local":"WI34","name":"Mayo Clinic Health System-Northland Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Barron","elevation_ft":1122,"latitude":45.397107,"longitude":-91.839922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI21","iata":"","local":"WI21","name":"Crane Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Cadott","elevation_ft":936,"latitude":44.909698486328125,"longitude":-91.2417984008789,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2620,"width_ft":96,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI22","iata":"","local":"WI22","name":"Rocket City Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hortonville","elevation_ft":905,"latitude":44.32310104370117,"longitude":-88.60079956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1850,"width_ft":60,"surface":"T"},{"id":"10/28","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI29","iata":"","local":"WI29","name":"Rush River Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Baldwin","elevation_ft":1078,"latitude":44.90549850463867,"longitude":-92.4834976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI32","iata":"","local":"WI32","name":"T-Bo Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chippewa Falls","elevation_ft":940,"latitude":44.98730087279999,"longitude":-91.3303985596,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI27","iata":"","local":"WI27","name":"Skyport Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Menomonie","elevation_ft":878,"latitude":44.92020034790039,"longitude":-91.9748992919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1900,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI25","iata":"","local":"WI25","name":"Durand Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Durand","elevation_ft":780,"latitude":44.53889846801758,"longitude":-92.01409912109376,"has_tower":false,"has_beacon":true,"runways":[{"id":"18/36","length_ft":2790,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI33","iata":"","local":"WI33","name":"Ben Sutherland Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Minong","elevation_ft":1056,"latitude":46.10359954833984,"longitude":-91.90239715576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2076,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI31","iata":"","local":"WI31","name":"Minnesuing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lake Nebagamon","elevation_ft":1207,"latitude":46.410753,"longitude":-91.653787,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":5300,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI24","iata":"","local":"WI24","name":"Cardinal Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mt Horeb","elevation_ft":1080,"latitude":42.88109970092773,"longitude":-89.752197265625,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1370,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI35","iata":"","local":"WI35","name":"Ceder Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"New Richmond","elevation_ft":917,"latitude":45.21580123901367,"longitude":-92.57270050048828,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":12000,"width_ft":5500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI38","iata":"","local":"WI38","name":"Beloit Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Beloit","elevation_ft":810,"latitude":42.548301696777344,"longitude":-89.00759887695312,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI39","iata":"","local":"WI39","name":"Clintonville Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Clintonville","elevation_ft":822,"latitude":44.6244010925293,"longitude":-88.75789642333984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI41","iata":"","local":"WI41","name":"Prairie Ridge Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Columbus","elevation_ft":860,"latitude":43.32268,"longitude":-89.03441,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI44","iata":"","local":"WI44","name":"Upland Hills Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Dodgeville","elevation_ft":1213,"latitude":42.951876,"longitude":-90.128529,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":39,"width_ft":39,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI45","iata":"","local":"WI45","name":"Aspirus Langlade Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Antigo","elevation_ft":1500,"latitude":45.142556,"longitude":-89.138839,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI46","iata":"","local":"WI46","name":"Fun-Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Van Dyne","elevation_ft":805,"latitude":43.8828010559082,"longitude":-88.53990173339844,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1407,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI37","iata":"","local":"WI37","name":"Rainbow Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Ojibwa","elevation_ft":1321,"latitude":45.80830001831055,"longitude":-91.09629821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI36","iata":"","local":"WI36","name":"Dolhun Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lake Tomahawk","elevation_ft":1625,"latitude":45.826599,"longitude":-89.620102,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2700,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI43","iata":"","local":"WI43","name":"Atkins Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Daleyville","elevation_ft":1090,"latitude":42.94889831542969,"longitude":-89.82530212402344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI40","iata":"","local":"WI40","name":"Spiegel Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Oregon","elevation_ft":960,"latitude":42.91329956054688,"longitude":-89.35230255126953,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI48","iata":"","local":"","name":"Edinger Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Eureka","elevation_ft":770,"latitude":44.0047,"longitude":-88.870903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":61,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI54","iata":"","local":"","name":"Corinth Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Athens","elevation_ft":1425,"latitude":44.999401,"longitude":-90.149597,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI57","iata":"","local":"WI57","name":"Advent Health Durand Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Durand","elevation_ft":852,"latitude":44.621029,"longitude":-91.962706,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI59","iata":"","local":"WI59","name":"Burnett General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Grantsburg","elevation_ft":950,"latitude":45.77439880371094,"longitude":-92.68659973144533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI58","iata":"","local":"WI58","name":"Winfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bristol","elevation_ft":770,"latitude":42.52220153808594,"longitude":-88.02790069580078,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1500,"width_ft":100,"surface":"T"},{"id":"09/27","length_ft":1200,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI61","iata":"","local":"","name":"Ashenfelter Aerodrome","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Grafton","elevation_ft":860,"latitude":43.3489,"longitude":-87.994301,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI50","iata":"","local":"WI50","name":"Loeber McDaniel Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrimac","elevation_ft":889,"latitude":43.398,"longitude":-89.637602,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1514,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI49","iata":"","local":"WI49","name":"Blair Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Blair","elevation_ft":864,"latitude":44.286841,"longitude":-91.226542,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI53","iata":"","local":"WI53","name":"Maguire Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mosinee","elevation_ft":1274,"latitude":44.79175,"longitude":-89.888706,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI56","iata":"","local":"WI56","name":"C Jeidy Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bloomington","elevation_ft":1010,"latitude":42.88169860839844,"longitude":-90.86070251464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI51","iata":"","local":"WI51","name":"Del Monte Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Arlington","elevation_ft":1064,"latitude":43.3213996887207,"longitude":-89.32099914550781,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI62","iata":"","local":"","name":"SSS Aerodrome","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Cedarburg","elevation_ft":800,"latitude":43.269501,"longitude":-87.9981,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI63","iata":"","local":"WI63","name":"St Joseph's Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Hillsboro","elevation_ft":960,"latitude":43.64860153198242,"longitude":-90.345703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI64","iata":"","local":"WI64","name":"Iola Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Iola","elevation_ft":995,"latitude":44.506786,"longitude":-89.134886,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI66","iata":"","local":"","name":"Smilin' Sam's Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Delavan","elevation_ft":980,"latitude":42.5872,"longitude":-88.658203,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1550,"width_ft":75,"surface":"T"},{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI68","iata":"","local":"WI68","name":"Brinsmere Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Juneau","elevation_ft":890,"latitude":43.39550018310547,"longitude":-88.64089965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":12,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI71","iata":"","local":"","name":"Weedhopper Meadow Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Elkhorn","elevation_ft":1030,"latitude":42.687543,"longitude":-88.602678,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":33,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI72","iata":"","local":"","name":"Martin Fierro Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Ellenboro","elevation_ft":1000,"latitude":42.799999,"longitude":-90.5718,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2540,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI74","iata":"","local":"","name":"Pfaffenroth Private Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Fisk","elevation_ft":872,"latitude":43.924999,"longitude":-88.667603,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI69","iata":"","local":"WI69","name":"Air Troy Estates Restricted Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"East Troy","elevation_ft":820,"latitude":42.806358,"longitude":-88.334885,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI73","iata":"","local":"WI73","name":"Happy Jacks Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Eureka","elevation_ft":800,"latitude":44,"longitude":-88.8333969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI65","iata":"","local":"WI65","name":"Dane Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Dane","elevation_ft":1035,"latitude":43.222198486328125,"longitude":-89.46820068359375,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI75","iata":"","local":"","name":"Bogus Creek Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Stockholm","elevation_ft":950,"latitude":44.498901,"longitude":-92.203102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI80","iata":"","local":"","name":"Kaukauna Community Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Kaukauna","elevation_ft":705,"latitude":44.269199,"longitude":-88.269798,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1530,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI82","iata":"","local":"WI82","name":"Kenosha Hospital and Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Kenosha","elevation_ft":610,"latitude":42.5786018371582,"longitude":-87.81950378417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI83","iata":"","local":"WI83","name":"St Mary's Kewaunee Area Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Kewaunee","elevation_ft":700,"latitude":44.45000076293945,"longitude":-87.51090240478516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI85","iata":"","local":"WI85","name":"Omniflight Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Janesville","elevation_ft":808,"latitude":42.619998931884766,"longitude":-89.02790069580078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI86","iata":"","local":"WI86","name":"Ori Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Kansasville","elevation_ft":800,"latitude":42.6609,"longitude":-88.135902,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI84","iata":"","local":"WI84","name":"Johnstown Center Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Janesville","elevation_ft":925,"latitude":42.689623,"longitude":-88.840973,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI77","iata":"","local":"WI77","name":"Willow Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Germantown","elevation_ft":860,"latitude":43.20700073242188,"longitude":-88.160400390625,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1200,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI79","iata":"","local":"WI79","name":"Town Line Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Greenwood","elevation_ft":1270,"latitude":44.85269927978516,"longitude":-90.55650329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI76","iata":"","local":"WI76","name":"Maggies Farm LLC Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Jefferson","elevation_ft":836,"latitude":42.948601,"longitude":-88.775902,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI81","iata":"","local":"WI81","name":"Rigdon Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hazel Green","elevation_ft":880,"latitude":42.524200439453125,"longitude":-90.59100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI88","iata":"","local":"","name":"Mount Fuji Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Lake Geneva","elevation_ft":1000,"latitude":42.625,"longitude":-88.450104,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI90","iata":"","local":"","name":"Speedwing Field","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Babcock","elevation_ft":970,"latitude":44.296101,"longitude":-90.043701,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2016,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI89","iata":"","local":"WI89","name":"Lake Geneva Aire Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lake Geneva","elevation_ft":880,"latitude":42.57220077514648,"longitude":-88.36730194091797,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2300,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI92","iata":"","local":"WI92","name":"Wag-Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Lyons","elevation_ft":905,"latitude":42.66109848022461,"longitude":-88.36119842529297,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2100,"width_ft":50,"surface":"T"},{"id":"NE/SW","length_ft":2600,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI93","iata":"","local":"WI93","name":"Meriter/Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Madison","elevation_ft":891,"latitude":43.06560134887695,"longitude":-89.40180206298828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":108,"width_ft":79,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI94","iata":"","local":"WI94","name":"Army Guard Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Madison","elevation_ft":862,"latitude":43.125932,"longitude":-89.33966,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI96","iata":"","local":"WI96","name":"Holy Family Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Manitowoc","elevation_ft":615,"latitude":44.09489822387695,"longitude":-87.67510223388672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WI95","iata":"","local":"WI95","name":"Binzel Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bristol","elevation_ft":705,"latitude":42.577797,"longitude":-88.01405,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI99","iata":"","local":"WI99","name":"Meier Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Milton","elevation_ft":880,"latitude":42.8135986328125,"longitude":-88.99710083007812,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WI97","iata":"","local":"WI97","name":"Mathaire Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Marshall","elevation_ft":960,"latitude":43.2578010559082,"longitude":-89.0647964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WMBT","iata":"TOD","local":"","name":"Tioman Airport","category":"medium_airport","iso_country":"MY","iso_region":"MY-06","municipality":"Tioman Island","elevation_ft":15,"latitude":2.81818,"longitude":104.160004,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2995,"width_ft":105,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN01","iata":"","local":"","name":"Seattle Private Number One Heliport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":120,"latitude":47.621226,"longitude":-122.343226,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":56,"width_ft":56,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN02","iata":"","local":"WN02","name":"Mile Bluff Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Mauston","elevation_ft":920,"latitude":43.78229904174805,"longitude":-90.07579803466795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN04","iata":"","local":"","name":"Erickson Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-WA","municipality":"Rice","elevation_ft":2924,"latitude":48.39314,"longitude":-118.09803,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN00","iata":"","local":"WN00","name":"Kimshan Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Quilcene","elevation_ft":80,"latitude":47.8400993347168,"longitude":-122.86000061035156,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN05","iata":"","local":"WN05","name":"Harris Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Toledo","elevation_ft":385,"latitude":46.51480102539063,"longitude":-122.79199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN06","iata":"","local":"WN06","name":"Providence Southgate Medical Park Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Walla Walla","elevation_ft":958,"latitude":46.055942,"longitude":-118.329508,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN12","iata":"","local":"WN12","name":"Fishtrap Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":100,"latitude":47.14929962158203,"longitude":-122.87000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN16","iata":"","local":"WN16","name":"KOMO TV Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":363,"latitude":47.619572,"longitude":-122.348642,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN08","iata":"","local":"WN08","name":"Kendall Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Kendall","elevation_ft":548,"latitude":48.914798736572266,"longitude":-122.11299896240234,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1300,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN10","iata":"","local":"WN10","name":"Mount St Helens Aero Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ariel","elevation_ft":450,"latitude":45.992882,"longitude":-122.379992,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN15","iata":"","local":"WN15","name":"Burnett Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Wilkeson","elevation_ft":800,"latitude":47.12969970703125,"longitude":-122.05599975585938,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN20","iata":"","local":"WN20","name":"Van De Plasch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Monroe","elevation_ft":60,"latitude":47.87229919433594,"longitude":-121.9229965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1350,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN07","iata":"DTR","local":"WN07","name":"Decatur Shores Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Decatur","elevation_ft":38,"latitude":48.4998016357,"longitude":-122.814002991,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2550,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN13","iata":"","local":"WN13","name":"Vaughan Ranch Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Port Orchard","elevation_ft":240,"latitude":47.465022,"longitude":-122.568262,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1850,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN17","iata":"","local":"WN17","name":"Hoverhawk Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Wenatchee","elevation_ft":2450,"latitude":47.33980178833008,"longitude":-120.31600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1350,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN25","iata":"","local":"WN25","name":"Mayo Clinic Health System-Red Cedar Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Menomonie","elevation_ft":880,"latitude":44.883805,"longitude":-91.900894,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN26","iata":"","local":"WN26","name":"Schoepflin Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Palouse","elevation_ft":2607,"latitude":46.8849983215332,"longitude":-117.0770034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":40,"surface":"A"},{"id":"11/29","length_ft":1600,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN32","iata":"","local":"WN32","name":"Newport Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Newport","elevation_ft":2150,"latitude":48.18190002441406,"longitude":-117.04900360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN37","iata":"","local":"WN37","name":"McLaughlin Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":200,"latitude":48.1106,"longitude":-123.323996,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN38","iata":"","local":"WN38","name":"Ross Complex Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":256,"latitude":45.6682014465332,"longitude":-122.6439971923828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN41","iata":"","local":"WN41","name":"Redfern Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sprague","elevation_ft":2050,"latitude":47.304401,"longitude":-117.961998,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN42","iata":"","local":"WN42","name":"Flying H Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Buckley","elevation_ft":587,"latitude":47.18379974365234,"longitude":-122.12000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN29","iata":"","local":"WN29","name":"Blue Ribbon Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sequim","elevation_ft":100,"latitude":48.130401611328125,"longitude":-123.20700073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1961,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN23","iata":"","local":"WN23","name":"Grand View International Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sequim","elevation_ft":150,"latitude":48.10179901123047,"longitude":-123.18000030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN31","iata":"","local":"WN31","name":"Slinkard Airfield","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Mesa","elevation_ft":890,"latitude":46.603059,"longitude":-119.062589,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1900,"width_ft":24,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN43","iata":"","local":"WN43","name":"Lower Granite Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Colfax","elevation_ft":652,"latitude":46.66130065917969,"longitude":-117.43800354003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":28,"width_ft":28,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN46","iata":"","local":"","name":"Battle Creek Airport","category":"closed","iso_country":"US","iso_region":"US-WI","municipality":"Oconomowoc","elevation_ft":865,"latitude":43.067501,"longitude":-88.508698,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN50","iata":"","local":"WN50","name":"St Joseph Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Tacoma","elevation_ft":467,"latitude":47.24456,"longitude":-122.447594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN52","iata":"","local":"WN52","name":"Cougar Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Cougar","elevation_ft":500,"latitude":46.049477,"longitude":-122.303046,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN54","iata":"","local":"WN54","name":"Ellerport Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Newman Lake","elevation_ft":2146,"latitude":47.736263,"longitude":-117.070913,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3800,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN53","iata":"","local":"WN53","name":"Frontier Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Lake Stevens","elevation_ft":480,"latitude":48.11079,"longitude":-122.062958,"has_tower":false,"has_beacon":true,"runways":[{"id":"16/34","length_ft":3800,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN47","iata":"","local":"WN47","name":"Bear Valley Skyranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Mc Cleary","elevation_ft":344,"latitude":47.08169937133789,"longitude":-123.2699966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN45","iata":"","local":"WN45","name":"Take Five Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Yakima","elevation_ft":1543,"latitude":46.780093,"longitude":-120.445226,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN49","iata":"","local":"WN49","name":"Blue Heron Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Sequim","elevation_ft":20,"latitude":48.121799,"longitude":-123.087997,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN55","iata":"","local":"WN55","name":"Randle-Kiona Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Randle","elevation_ft":934,"latitude":46.51150131225586,"longitude":-122.00599670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2400,"width_ft":32,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN48","iata":"","local":"WN48","name":"Kimbrel Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Oakville","elevation_ft":139,"latitude":46.79040145874024,"longitude":-123.30999755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1935,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN56","iata":"","local":"WN56","name":"Columbia Basin Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Ephrata","elevation_ft":1300,"latitude":47.314300537109375,"longitude":-119.5479965209961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN58","iata":"","local":"WN58","name":"Capitol Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Olympia","elevation_ft":200,"latitude":47.043399810791016,"longitude":-122.95099639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN63","iata":"","local":"WN63","name":"Bristol Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bristol","elevation_ft":735,"latitude":42.53670120239258,"longitude":-88.00399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN66","iata":"","local":"WN66","name":"Cranberry International Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Eagle River","elevation_ft":1605,"latitude":45.85129928588867,"longitude":-89.45120239257812,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":7250,"width_ft":2500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN67","iata":"","local":"WN67","name":"Southwest Washington Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Vancouver","elevation_ft":296,"latitude":45.62300109863281,"longitude":-122.58000183105467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":46,"width_ft":46,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN68","iata":"","local":"WN68","name":"Aurora Medical Center Burlington Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Burlington","elevation_ft":804,"latitude":42.672512,"longitude":-88.281503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN69","iata":"","local":"WN69","name":"Leach Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Burlington","elevation_ft":780,"latitude":42.64889907836914,"longitude":-88.18679809570312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":10,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN71","iata":"","local":"WN71","name":"Evans Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bellevue","elevation_ft":200,"latitude":47.630401611328125,"longitude":-122.1760025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN73","iata":"","local":"WN73","name":"St Joseph Hospital Main Campus Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Bellingham","elevation_ft":157,"latitude":48.774562,"longitude":-122.473971,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":72,"width_ft":72,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN72","iata":"","local":"WN72","name":"Kinch Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Washtucna","elevation_ft":1650,"latitude":46.86489868164063,"longitude":-118.3249969482422,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1700,"width_ft":28,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN77","iata":"","local":"WN77","name":"Wnp-2 Plant Support Facility Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Richland","elevation_ft":460,"latitude":46.464298248291016,"longitude":-119.34100341796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN79","iata":"","local":"WN79","name":"Haley Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Winslow","elevation_ft":40,"latitude":47.70790100097656,"longitude":-122.52400207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":18,"width_ft":16,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN81","iata":"","local":"WN81","name":"Ice Harbor Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Pasco","elevation_ft":445,"latitude":46.252705,"longitude":-118.878503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN82","iata":"","local":"WN82","name":"Ferry County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Republic","elevation_ft":3500,"latitude":48.6526985168457,"longitude":-118.7300033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN84","iata":"","local":"WN84","name":"Lower Monumental Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Kahlotus","elevation_ft":465,"latitude":46.56900024414063,"longitude":-118.53700256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":200,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN75","iata":"","local":"WN75","name":"Erin Aero Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Hartford","elevation_ft":1000,"latitude":43.24470138549805,"longitude":-88.37229919433594,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN86","iata":"","local":"WN86","name":"St Croix Valley Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Osceola","elevation_ft":1085,"latitude":45.26390075683594,"longitude":-92.62159729003906,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN85","iata":"","local":"WN85","name":"Morrisonville International Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Morrisonville","elevation_ft":960,"latitude":43.27470016479492,"longitude":-89.35040283203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN88","iata":"","local":"WN88","name":"Martin Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ocean Park","elevation_ft":10,"latitude":46.5192985534668,"longitude":-124.03199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN74","iata":"","local":"WN74","name":"Burnt Ridge Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Onalaska","elevation_ft":1070,"latitude":46.58539962768555,"longitude":-122.6259994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN91","iata":"","local":"WN91","name":"Evans Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Redmond","elevation_ft":200,"latitude":47.67430114746094,"longitude":-122.0739974975586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN92","iata":"","local":"WN92","name":"Sky Meadows Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Spokane","elevation_ft":2350,"latitude":47.608637,"longitude":-117.180455,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN93","iata":"","local":"WN93","name":"Park 90 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":70,"latitude":47.58449935913086,"longitude":-122.32599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN94","iata":"","local":"WN94","name":"East Adams Rural Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Ritzville","elevation_ft":1780,"latitude":47.12149810791016,"longitude":-118.37200164794922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN96","iata":"","local":"WN96","name":"Misty Isle Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Vashon Island","elevation_ft":275,"latitude":47.404572,"longitude":-122.488236,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":12,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN97","iata":"","local":"WN97","name":"Froedtert Pleasant Prairie Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Pleasant Prairie","elevation_ft":728,"latitude":42.563713,"longitude":-87.923815,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS01","iata":"","local":"WS01","name":"Archie's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Janesville","elevation_ft":768,"latitude":42.73749923706055,"longitude":-89.0708999633789,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":7800,"width_ft":175,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS03","iata":"","local":"WS03","name":"St Mary's Hospital of Milwaukee Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Milwaukee","elevation_ft":670,"latitude":43.06169891357422,"longitude":-87.87920379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WN99","iata":"","local":"WN99","name":"Hayes Road Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Durand","elevation_ft":900,"latitude":44.65719985961914,"longitude":-91.80860137939452,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WN98","iata":"","local":"WN98","name":"Florida North Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Birchwood","elevation_ft":1272,"latitude":45.659400939941406,"longitude":-91.52249908447266,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS06","iata":"","local":"WS06","name":"Springstead Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Park Falls","elevation_ft":1600,"latitude":45.987701416015625,"longitude":-90.16349792480467,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WPDL","iata":"DIL","local":"","name":"Presidente Nicolau Lobato International Airport","category":"medium_airport","iso_country":"TL","iso_region":"TL-DI","municipality":"Dili","elevation_ft":154,"latitude":-8.546562,"longitude":125.524507,"has_tower":true,"has_beacon":false,"runways":[{"id":"08/26","length_ft":6070,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS07","iata":"","local":"WS07","name":"J.B. Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Wisconsin Dells","elevation_ft":900,"latitude":43.627201080322266,"longitude":-89.78510284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS21","iata":"","local":"WS21","name":"Community Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Menomonee Falls","elevation_ft":918,"latitude":43.16389846801758,"longitude":-88.1395034790039,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS24","iata":"","local":"WS24","name":"Round Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Hayward","elevation_ft":1346,"latitude":46.00690078735352,"longitude":-91.3104019165039,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":500,"surface":"W"},{"id":"14W/32W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS23","iata":"","local":"WS23","name":"R & S Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Merrill","elevation_ft":1309,"latitude":45.2160987854,"longitude":-89.7472000122,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS13","iata":"","local":"WS13","name":"Cloud Dancer Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Chetek","elevation_ft":1050,"latitude":45.3119010925293,"longitude":-91.5896987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2100,"width_ft":200,"surface":"T"},{"id":"05W/23W","length_ft":10000,"width_ft":200,"surface":"W"},{"id":"09/27","length_ft":1000,"width_ft":150,"surface":"T"},{"id":"14/32","length_ft":3000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS16","iata":"","local":"WS16","name":"Scherrico Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Mosinee","elevation_ft":1345,"latitude":44.847198486328125,"longitude":-89.80149841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2525,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS20","iata":"","local":"WS20","name":"Young Tactical Landing Site Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fort Mc Coy","elevation_ft":912,"latitude":43.95299912,"longitude":-90.66259766,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":5726,"width_ft":90,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS19","iata":"","local":"WS19","name":"Petit Cache Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Bayfield","elevation_ft":760,"latitude":46.89350128173828,"longitude":-90.8207015991211,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS27","iata":"","local":"WS27","name":"Uw Hospital & Clinics Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Madison","elevation_ft":901,"latitude":43.075801849365234,"longitude":-89.43289947509766,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS34","iata":"","local":"WS34","name":"Fort Atkinson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Fort Atkinson","elevation_ft":800,"latitude":42.931400299072266,"longitude":-88.82820129394531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS35","iata":"","local":"WS35","name":"Thedacare Regional Medical Center - Neenah Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Neenah","elevation_ft":751,"latitude":44.186168,"longitude":-88.454443,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS38","iata":"","local":"WS38","name":"Luther Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Eau Claire","elevation_ft":796,"latitude":44.813764,"longitude":-91.512069,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS40","iata":"","local":"WS40","name":"Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Janesville","elevation_ft":840,"latitude":42.68830108642578,"longitude":-89.03260040283203,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS45","iata":"","local":"WS45","name":"Circle K Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Irma","elevation_ft":1500,"latitude":45.34159851074219,"longitude":-89.67459869384766,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS36","iata":"","local":"WS36","name":"Swan Field","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Almond","elevation_ft":1140,"latitude":44.27140045166016,"longitude":-89.43710327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS41","iata":"","local":"WS41","name":"Rusmar Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Roberts","elevation_ft":1050,"latitude":45.01219940185547,"longitude":-92.55130004882812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS39","iata":"","local":"WS39","name":"Pinewood Air Park","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Goodnow","elevation_ft":1560,"latitude":45.69940185546875,"longitude":-89.66239929199219,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2933,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS47","iata":"","local":"WS47","name":"St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Chippewa Falls","elevation_ft":905,"latitude":44.94969940185547,"longitude":-91.36100006103516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS48","iata":"","local":"WS48","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Boscobel","elevation_ft":684,"latitude":43.13330078125,"longitude":-90.70790100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS50","iata":"","local":"WS50","name":"Mercy Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Oshkosh","elevation_ft":775,"latitude":44.02370071411133,"longitude":-88.52279663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS55","iata":"","local":"WS55","name":"Barten Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Sharon","elevation_ft":977,"latitude":42.51750183105469,"longitude":-88.74539947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2650,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS52","iata":"","local":"WS52","name":"SSM Health, St. Marys Hospital - Madison Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Madison","elevation_ft":850,"latitude":43.059129,"longitude":-89.402404,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS53","iata":"","local":"WS53","name":"St Mary's Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Racine","elevation_ft":686,"latitude":42.73059844970703,"longitude":-87.82689666748047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS54","iata":"","local":"WS54","name":"Reedsburg Area Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Reedsburg","elevation_ft":940,"latitude":43.550063,"longitude":-89.992173,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS56","iata":"","local":"WS56","name":"St Nicholas Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Sheboygan","elevation_ft":680,"latitude":43.76139831542969,"longitude":-87.7490005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS58","iata":"","local":"WS58","name":"Spooner Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Spooner","elevation_ft":1080,"latitude":45.825801849365234,"longitude":-91.89569854736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":300,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS59","iata":"","local":"WS59","name":"Door County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Sturgeon Bay","elevation_ft":620,"latitude":44.83219909667969,"longitude":-87.35310363769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS49","iata":"","local":"WS49","name":"Christie Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Fort Atkinson","elevation_ft":795,"latitude":42.906551,"longitude":-88.871562,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1927,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS61","iata":"","local":"WS61","name":"Tomah Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Tomah","elevation_ft":965,"latitude":43.98469924926758,"longitude":-90.5154037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":160,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS63","iata":"","local":"WS63","name":"Memorial Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Ashland","elevation_ft":690,"latitude":46.56779861450195,"longitude":-90.8904037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS64","iata":"","local":"WS64","name":"Schiffmann Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"St Germain","elevation_ft":1589,"latitude":45.88809967041016,"longitude":-89.53289794921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":5600,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS65","iata":"","local":"WS65","name":"Aspirus Wausau Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Wausau","elevation_ft":1226,"latitude":44.966863,"longitude":-89.666795,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":66,"width_ft":66,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS70","iata":"","local":"WS70","name":"Marshfield Medical Center/Beaver Dam Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Beaver Dam","elevation_ft":870,"latitude":43.449788,"longitude":-88.825203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS73","iata":"","local":"WS73","name":"Big Foot Farms Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Walworth","elevation_ft":1000,"latitude":42.52090072631836,"longitude":-88.57679748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS75","iata":"","local":"WS75","name":"Waupun Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Waupun","elevation_ft":910,"latitude":43.631401062,"longitude":-88.74579620360001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS74","iata":"","local":"WS74","name":"Al's Airway Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Watertown","elevation_ft":825,"latitude":43.162718,"longitude":-88.824906,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2150,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS69","iata":"","local":"WS69","name":"Log Cabin Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Naples","elevation_ft":850,"latitude":44.572312,"longitude":-91.547527,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1300,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS67","iata":"","local":"WS67","name":"Vietmeier Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Herbster","elevation_ft":795,"latitude":46.79990005493164,"longitude":-91.20850372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS62","iata":"","local":"WS62","name":"Sugar Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Verona","elevation_ft":1080,"latitude":42.963600158691406,"longitude":-89.58100128173828,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS79","iata":"","local":"WS79","name":"Indianhead Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Shell Lake","elevation_ft":1250,"latitude":45.74169921875,"longitude":-91.9269027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS82","iata":"","local":"WS82","name":"Johnson Island Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WI","municipality":"Mountain","elevation_ft":870,"latitude":45.12670135498047,"longitude":-88.44329833984375,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":3600,"width_ft":400,"surface":"W"},{"id":"16W/34W","length_ft":4200,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS89","iata":"","local":"WS89","name":"Appleton Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Appleton","elevation_ft":769,"latitude":44.279,"longitude":-88.393091,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS98","iata":"","local":"WS98","name":"St Joseph's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WI","municipality":"Marshfield","elevation_ft":1350,"latitude":44.67720031738281,"longitude":-90.17970275878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT00","iata":"","local":"WT00","name":"Grays Harbor Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Aberdeen","elevation_ft":700,"latitude":46.979706,"longitude":-123.847139,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WS77","iata":"","local":"WS77","name":"Circle T Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Grantsburg","elevation_ft":895,"latitude":45.68399810791016,"longitude":-92.68710327148438,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2215,"width_ft":96,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS81","iata":"","local":"WS81","name":"Alpha Hotel Airport","category":"small_airport","iso_country":"US","iso_region":"US-WI","municipality":"Webster","elevation_ft":1000,"latitude":45.948001861572266,"longitude":-92.1084976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WS87","iata":"","local":"WS87","name":"Port Field","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Twisp","elevation_ft":1650,"latitude":48.331869,"longitude":-120.058253,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1400,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WT02","iata":"","local":"WT02","name":"Hammer EVOC Skid Pad Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Richland","elevation_ft":440,"latitude":46.358056,"longitude":-119.333612,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":54,"width_ft":54,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT04","iata":"","local":"WT04","name":"Silverbird Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Cheney","elevation_ft":2418,"latitude":47.516998,"longitude":-117.534742,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2500,"width_ft":24,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT21","iata":"","local":"","name":"Radial Flyer Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Deer Park","elevation_ft":2060,"latitude":47.894449,"longitude":-117.440007,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT22","iata":"","local":"WT22","name":"Graves Field Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":38,"latitude":47.658056,"longitude":-122.298333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT24","iata":"","local":"WT24","name":"Reed Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Cheney","elevation_ft":2696,"latitude":47.523012,"longitude":-117.537982,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":600,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT28","iata":"","local":"WT28","name":"Kiwi Air Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Clarkston","elevation_ft":750,"latitude":46.42658,"longitude":-117.058209,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT29","iata":"","local":"WT29","name":"Maletti Hill LZ Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Port Angeles","elevation_ft":1600,"latitude":48.036383,"longitude":-123.324233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT33","iata":"","local":"WT33","name":"Skid Row Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WA","municipality":"Clarkston","elevation_ft":750,"latitude":46.422447,"longitude":-117.080953,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":10000,"width_ft":2000,"surface":"W"},{"id":"H1","length_ft":80,"width_ft":120,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT34","iata":"","local":"WT34","name":"US Border Patrol Blaine Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Blaine","elevation_ft":43,"latitude":48.975661,"longitude":-122.721298,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT44","iata":"","local":"WT44","name":"Michair Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Cathlamet","elevation_ft":13,"latitude":46.177333,"longitude":-123.385,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WT01","iata":"","local":"WT01","name":"Hillcrest Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Ellensburg","elevation_ft":1490,"latitude":46.949167,"longitude":-120.481111,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2800,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WT51","iata":"","local":"WT51","name":"Fire District 3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Mossyrock","elevation_ft":675,"latitude":46.524478,"longitude":-122.471422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT55","iata":"","local":"WT55","name":"Area 55 David C Smith Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Monse","elevation_ft":866,"latitude":48.14405,"longitude":-119.6787,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT70","iata":"","local":"WT70","name":"Diablo Heliport","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Diablo","elevation_ft":893,"latitude":48.713753,"longitude":-121.141187,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT78","iata":"","local":"WT78","name":"Building Care EMS Helistop","category":"heliport","iso_country":"US","iso_region":"US-WA","municipality":"Seattle","elevation_ft":230,"latitude":47.66189,"longitude":-122.283311,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WT88","iata":"","local":"WT88","name":"Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Palouse","elevation_ft":2700,"latitude":46.841,"longitude":-117.056281,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1680,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV01","iata":"","local":"WV01","name":"Lee Massey Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Ansted","elevation_ft":1665,"latitude":38.12929916381836,"longitude":-81.05370330810547,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1300,"width_ft":150,"surface":"T"},{"id":"16/34","length_ft":1500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV02","iata":"","local":"WV02","name":"St Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Huntington","elevation_ft":588,"latitude":38.43119812011719,"longitude":-82.40039825439453,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":28,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV03","iata":"","local":"WV03","name":"Lee Norse Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Beckley","elevation_ft":2180,"latitude":37.78340148925781,"longitude":-81.11650085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV04","iata":"","local":"WV04","name":"Beckley ARH Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Beckley","elevation_ft":2340,"latitude":37.799476,"longitude":-81.167706,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV05","iata":"","local":"WV05","name":"Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Martinsburg","elevation_ft":496,"latitude":39.41590118408203,"longitude":-77.91329956054688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV06","iata":"","local":"WV06","name":"Lost Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Romney","elevation_ft":1960,"latitude":39.285099029541016,"longitude":-78.73829650878906,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2650,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WT77","iata":"","local":"WT77","name":"Rocky Bay Airport","category":"small_airport","iso_country":"US","iso_region":"US-WA","municipality":"Vaughn","elevation_ft":80,"latitude":47.355222,"longitude":-122.790278,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1200,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV07","iata":"","local":"WV07","name":"State Police Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Charleston","elevation_ft":650,"latitude":38.382598876953125,"longitude":-81.75959777832031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV08","iata":"","local":"WV08","name":"Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Chesapeake","elevation_ft":600,"latitude":38.220557,"longitude":-81.528844,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV09","iata":"","local":"WV09","name":"Mike Ferrell Field","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Corinne","elevation_ft":2220,"latitude":37.55889,"longitude":-81.350616,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV12","iata":"","local":"WV12","name":"Mallory Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"South Charleston","elevation_ft":880,"latitude":38.33509826660156,"longitude":-81.73179626464844,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV13","iata":"","local":"WV13","name":"Minnick's Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Upland","elevation_ft":830,"latitude":38.570899963378906,"longitude":-82.0624008178711,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":22,"width_ft":22,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV16","iata":"","local":"WV16","name":"Cng Division 4 Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Clarksburg","elevation_ft":1022,"latitude":39.27310180664063,"longitude":-80.37889862060547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV20","iata":"","local":"WV20","name":"Wetzel County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"New Martinsville","elevation_ft":689,"latitude":39.681186,"longitude":-80.848705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV24","iata":"","local":"WV24","name":"Allegheny Mining Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Hartmansville","elevation_ft":2650,"latitude":39.31930160522461,"longitude":-79.17169952392578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV15","iata":"","local":"WV15","name":"Gerstell Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Keyser","elevation_ft":700,"latitude":39.4833984375,"longitude":-78.92639923095703,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV19","iata":"","local":"WV19","name":"Moore Field","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Kingwood","elevation_ft":1860,"latitude":39.44864,"longitude":-79.692989,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV26","iata":"","local":"WV26","name":"Glade Springs Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Beckley","elevation_ft":2550,"latitude":37.72460174560547,"longitude":-81.09700012207031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV27","iata":"","local":"WV27","name":"Cabell Huntington Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Huntington","elevation_ft":591,"latitude":38.410301208496094,"longitude":-82.42829895019531,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV30","iata":"","local":"WV30","name":"Rainelle Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Rainelle","elevation_ft":3446,"latitude":37.94869995117188,"longitude":-80.71649932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV31","iata":"","local":"WV31","name":"Pratt Mining Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Lewisburg","elevation_ft":2320,"latitude":37.83369827270508,"longitude":-80.43669891357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV32","iata":"","local":"WV32","name":"New River Gorge Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Lansing","elevation_ft":1720,"latitude":38.0890007019043,"longitude":-81.06510162353516,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2950,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV34","iata":"","local":"WV34","name":"Bluefield Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Bluefield","elevation_ft":2500,"latitude":37.25460052490234,"longitude":-81.23370361328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV35","iata":"","local":"WV35","name":"Pomeroy-Mason Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Mason","elevation_ft":538,"latitude":39.02230072021485,"longitude":-82.02349853515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV37","iata":"","local":"WV37","name":"New Martinsville Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"New Martinsville","elevation_ft":602,"latitude":39.63589859008789,"longitude":-80.87039947509766,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV38","iata":"","local":"WV38","name":"West Parkersburg Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Parkersburg","elevation_ft":582,"latitude":39.26539993286133,"longitude":-81.58599853515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV39","iata":"","local":"WV39","name":"Ravenswood Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Ravenswood","elevation_ft":560,"latitude":38.95199966430664,"longitude":-81.77320098876953,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV40","iata":"","local":"WV40","name":"St Mary's Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"St Mary's","elevation_ft":587,"latitude":39.413700103759766,"longitude":-81.19979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV29","iata":"","local":"WV29","name":"Valley Point Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Valley Point","elevation_ft":2000,"latitude":39.57979965209961,"longitude":-79.6498031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV41","iata":"","local":"WV41","name":"East Liverpool Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"East Liverpool - Chester","elevation_ft":665,"latitude":40.62919998168945,"longitude":-80.5248031616211,"has_tower":false,"has_beacon":false,"runways":[{"id":"07W/25W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV42","iata":"","local":"WV42","name":"Weirton - Steubenville Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Weirton","elevation_ft":644,"latitude":40.3978004456,"longitude":-80.6220016479,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV43","iata":"","local":"WV43","name":"Warwood - Martins Ferry Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Wheeling","elevation_ft":623,"latitude":40.0931015015,"longitude":-80.7179031372,"has_tower":false,"has_beacon":false,"runways":[{"id":"02W/20W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV44","iata":"","local":"WV44","name":"Moundsville Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Moundsville","elevation_ft":623,"latitude":39.92919921875,"longitude":-80.76509857177734,"has_tower":false,"has_beacon":false,"runways":[{"id":"17W/35W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV45","iata":"","local":"WV45","name":"Princeton Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Princeton","elevation_ft":2410,"latitude":37.36259841918945,"longitude":-81.11370086669922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV46","iata":"","local":"WV46","name":"Wellsburg Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-WV","municipality":"Wellsburg","elevation_ft":644,"latitude":40.267799377441406,"longitude":-80.61730194091797,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV48","iata":"","local":"WV48","name":"City Hospital, Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Martinsburg","elevation_ft":548,"latitude":39.47679901123047,"longitude":-77.9800033569336,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV50","iata":"","local":"WV50","name":"Dickirson Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Fairplain","elevation_ft":790,"latitude":38.81230163574219,"longitude":-81.69619750976562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":15,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV51","iata":"","local":"WV51","name":"University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Morgantown","elevation_ft":1120,"latitude":39.65010070800781,"longitude":-79.95809936523438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV56","iata":"","local":"WV56","name":"Camc-Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Charleston","elevation_ft":691,"latitude":38.3475990295,"longitude":-81.62760162350001,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV52","iata":"","local":"WV52","name":"Green Bank Observatory Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Green Bank","elevation_ft":2710,"latitude":38.430698,"longitude":-79.8256,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3500,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV58","iata":"","local":"WV58","name":"Pleasant Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Point Pleasant","elevation_ft":600,"latitude":38.86899948120117,"longitude":-82.1218032836914,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV59","iata":"","local":"WV59","name":"Fayette Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Fayetteville","elevation_ft":1960,"latitude":38.026798248291016,"longitude":-81.11979675292969,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2010,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV68","iata":"","local":"","name":"Durrett Ranches Airport","category":"closed","iso_country":"US","iso_region":"US-WV","municipality":"Belington","elevation_ft":2300,"latitude":38.950001,"longitude":-80.030602,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1100,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV69","iata":"","local":"WV69","name":"Bluefield Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Bluefield","elevation_ft":2555,"latitude":37.25559997558594,"longitude":-81.23609924316406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV73","iata":"","local":"WV73","name":"Wood County Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Parkersburg","elevation_ft":608,"latitude":39.33810043334961,"longitude":-81.44290161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV74","iata":"","local":"WV74","name":"Snowshoe Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Snowshoe","elevation_ft":4700,"latitude":38.410400390625,"longitude":-79.99530029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV75","iata":"","local":"WV75","name":"Stonewall Jackson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Weston","elevation_ft":101,"latitude":39.04819869995117,"longitude":-80.49210357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV63","iata":"","local":"WV63","name":"Herold Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Craigsville","elevation_ft":2346,"latitude":38.334598541259766,"longitude":-80.6530990600586,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1450,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV66","iata":"GWV","local":"WV66","name":"Glendale Fokker Field","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Glendale","elevation_ft":648,"latitude":39.948699951200005,"longitude":-80.7594985962,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WV77","iata":"","local":"WV77","name":"Hinton-Alderson Airport","category":"small_airport","iso_country":"US","iso_region":"US-WV","municipality":"Pence Springs","elevation_ft":1520,"latitude":37.67959976196289,"longitude":-80.71040344238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2700,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV78","iata":"","local":"WV78","name":"Rach Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Richwood","elevation_ft":2200,"latitude":38.220001220703125,"longitude":-80.53469848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WV86","iata":"","local":"WV86","name":"Jefferson Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WV","municipality":"Ranson","elevation_ft":512,"latitude":39.295783,"longitude":-77.857854,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY02","iata":"","local":"","name":"Iberlin Ranch Number 3 Airport","category":"closed","iso_country":"US","iso_region":"US-WY","municipality":"Douglas","elevation_ft":4400,"latitude":43.1916,"longitude":-104.938003,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1738,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY03","iata":"","local":"WY03","name":"Marbleton Big Piney Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Big Piney","elevation_ft":6975,"latitude":42.55636,"longitude":-110.11149,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY04","iata":"","local":"WY04","name":"Powell Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Powell","elevation_ft":4405,"latitude":44.76079940795898,"longitude":-108.77899932861328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY08","iata":"","local":"","name":"Johnson Heliport","category":"closed","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":6445,"latitude":43.602148,"longitude":-110.735465,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1472,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY09","iata":"","local":"WY09","name":"Sherwin Field Number 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Newcastle","elevation_ft":4190,"latitude":43.507019,"longitude":-104.881755,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY05","iata":"","local":"WY05","name":"Skyview Airpark","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cheyenne","elevation_ft":5838,"latitude":41.21720123291016,"longitude":-104.58399963378906,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3900,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY00","iata":"","local":"WY00","name":"Red Reflet Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Ten Sleep","elevation_ft":4619,"latitude":43.967719,"longitude":-107.379654,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5000,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY06","iata":"","local":"WY06","name":"Luckinbill Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Cody","elevation_ft":6600,"latitude":44.838333,"longitude":-109.623236,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY19","iata":"","local":"","name":"Butler Airport","category":"closed","iso_country":"US","iso_region":"US-WY","municipality":"Pine Bluffs","elevation_ft":5295,"latitude":41.105801,"longitude":-104.207001,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1926,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY20","iata":"","local":"WY20","name":"Johnson Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":6267,"latitude":43.60219955444336,"longitude":-110.7509994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY21","iata":"","local":"WY21","name":"Campbell County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Gillette","elevation_ft":4875,"latitude":44.28779983520508,"longitude":-105.51399993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY22","iata":"","local":"WY22","name":"Iberlin Ranch Nr 1 Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Savageton","elevation_ft":4500,"latitude":43.95000076293945,"longitude":-105.93399810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2000,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY17","iata":"","local":"WY17","name":"Ellis Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Medicine Bow","elevation_ft":6530,"latitude":42.021912,"longitude":-106.42653,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":3100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY15","iata":"","local":"WY15","name":"Bunch Grass Intergalactic Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Powell","elevation_ft":4408,"latitude":44.689724,"longitude":-108.678539,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":75,"surface":"D"},{"id":"13/31","length_ft":2000,"width_ft":75,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY14","iata":"","local":"WY14","name":"Ipy Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Hulett","elevation_ft":3960,"latitude":44.63750076293945,"longitude":-104.68900299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":60,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY24","iata":"","local":"WY24","name":"Riverton Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Riverton","elevation_ft":5032,"latitude":43.034082,"longitude":-108.420033,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY26","iata":"","local":"WY26","name":"Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Torrington","elevation_ft":4210,"latitude":42.08359909057617,"longitude":-104.19200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY28","iata":"","local":"WY28","name":"Pinedale Medical Clinic Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Pinedale","elevation_ft":7269,"latitude":42.870893,"longitude":-109.852273,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY35","iata":"","local":"WY35","name":"Washakie Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Worland","elevation_ft":4200,"latitude":44.0122,"longitude":-107.949589,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY29","iata":"","local":"WY29","name":"Vowers Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Chugwater","elevation_ft":5550,"latitude":41.619276,"longitude":-104.785517,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4000,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY31","iata":"","local":"WY31","name":"Melody Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Jackson","elevation_ft":6075,"latitude":43.40959930419922,"longitude":-110.77300262451172,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY23","iata":"","local":"WY23","name":"Iberlin Strip","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Sussex","elevation_ft":4331,"latitude":44.07329940795898,"longitude":-106.26599884033205,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2000,"width_ft":30,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY33","iata":"","local":"WY33","name":"Antelope Run Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Daniel","elevation_ft":7470,"latitude":42.81689834594727,"longitude":-110.27799987792967,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":7500,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY40","iata":"","local":"WY40","name":"Ivinson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Laramie","elevation_ft":7307,"latitude":41.312425,"longitude":-105.554606,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":48,"width_ft":48,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY47","iata":"","local":"WY47","name":"True Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Casper","elevation_ft":5153,"latitude":42.854071,"longitude":-106.336323,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY49","iata":"","local":"WY49","name":"Memorial Hospital of Sweetwater County Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Rock Springs","elevation_ft":6454,"latitude":41.585978,"longitude":-109.234572,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY50","iata":"","local":"WY50","name":"Cheyenne Echo Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Cheyenne","elevation_ft":6120,"latitude":41.15719985961914,"longitude":-104.81199645996094,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY52","iata":"","local":"WY52","name":"Evanston Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Evanston","elevation_ft":6781,"latitude":41.24380111694336,"longitude":-110.98899841308594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY57","iata":"","local":"WY57","name":"Wyoming Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Casper","elevation_ft":5340,"latitude":42.84769821166992,"longitude":-106.30799865722656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY61","iata":"","local":"","name":"Gas Hills Airstrip","category":"closed","iso_country":"US","iso_region":"US-WY","municipality":"Waltman","elevation_ft":6990,"latitude":42.868099,"longitude":-107.489505,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY62","iata":"","local":"WY62","name":"Cody Regional Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Cody","elevation_ft":4995,"latitude":44.527112,"longitude":-109.073575,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY60","iata":"","local":"WY60","name":"Heiner Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Bedford","elevation_ft":6440,"latitude":42.862061,"longitude":-110.898958,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY55","iata":"","local":"WY55","name":"Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Sundance","elevation_ft":4950,"latitude":44.41859817504883,"longitude":-104.59400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2500,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY44","iata":"","local":"WY44","name":"Robbers Roost Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Mule Creek Junction","elevation_ft":3725,"latitude":43.42658,"longitude":-104.236194,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2500,"width_ft":35,"surface":"T"},{"id":"16/34","length_ft":2500,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY67","iata":"","local":"WY67","name":"South Lincoln Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Kemmerer","elevation_ft":6980,"latitude":41.789398193359375,"longitude":-110.54199981689452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"WY68","iata":"","local":"WY68","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-WY","municipality":"Rawlins","elevation_ft":6880,"latitude":41.787357,"longitude":-107.26075,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA01","iata":"","local":"XA01","name":"Cozby-Germany Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Grand Saline","elevation_ft":476,"latitude":32.680003,"longitude":-95.723288,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA06","iata":"","local":"XA06","name":"MDR 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Wolfforth","elevation_ft":3295,"latitude":33.475238,"longitude":-101.987413,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA05","iata":"","local":"XA05","name":"Fairview Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sudan","elevation_ft":3819,"latitude":34.10156,"longitude":-102.627074,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3960,"width_ft":26,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA03","iata":"","local":"XA03","name":"Edgington Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Sanger","elevation_ft":885,"latitude":33.427509,"longitude":-97.271284,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2250,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA02","iata":"","local":"XA02","name":"Danz Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Johnson City","elevation_ft":1230,"latitude":30.279957,"longitude":-98.426097,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA04","iata":"","local":"XA04","name":"Circle Eight Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bluff Dale","elevation_ft":800,"latitude":32.238323,"longitude":-97.898775,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2100,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA07","iata":"","local":"XA07","name":"Spectre Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Chico","elevation_ft":835,"latitude":33.275001525878906,"longitude":-97.7166976928711,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY65","iata":"","local":"WY65","name":"Madsen Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Gillette","elevation_ft":4500,"latitude":44.348899841308594,"longitude":-105.33699798583984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"WY64","iata":"","local":"WY64","name":"Lone Pine Flying Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-WY","municipality":"Thayne","elevation_ft":6000,"latitude":42.957401275634766,"longitude":-110.98300170898438,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2640,"width_ft":200,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA11","iata":"","local":"XA11","name":"Baylor Scott & White Medical Center - Lake Pointe Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Rowlett","elevation_ft":476,"latitude":32.917273,"longitude":-96.508468,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA13","iata":"","local":"XA13","name":"Landry's Seafood House Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":191,"latitude":29.752522,"longitude":-95.456614,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA14","iata":"","local":"XA14","name":"CHI Saint Luke’s Health Memorial Lufkin Ground Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lufkin","elevation_ft":320,"latitude":31.336456,"longitude":-94.744095,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA18","iata":"","local":"XA18","name":"Baylor All Saints Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Fort Worth","elevation_ft":689,"latitude":32.73109817504883,"longitude":-97.3467025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA19","iata":"","local":"XA19","name":"DRV Downtown Houston Aquarium Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":115,"latitude":29.764372,"longitude":-95.367433,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":38,"width_ft":38,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA20","iata":"","local":"XA20","name":"Landry's Warehouse Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Houston","elevation_ft":68,"latitude":29.784743,"longitude":-95.454934,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA21","iata":"","local":"XA21","name":"Las Colinas Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Irving","elevation_ft":502,"latitude":32.902801513671875,"longitude":-96.95670318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA22","iata":"","local":"XA22","name":"Laredo Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Laredo","elevation_ft":466,"latitude":27.533935,"longitude":-99.477847,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA17","iata":"","local":"XA17","name":"Chuckster Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Tira","elevation_ft":475,"latitude":33.32170104980469,"longitude":-95.5635986328125,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA12","iata":"","local":"XA12","name":"McFarlin Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bertram","elevation_ft":1200,"latitude":30.6947,"longitude":-98.032799,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA15","iata":"","local":"XA15","name":"Holict \"Private\" Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Riesel","elevation_ft":425,"latitude":31.4269008636,"longitude":-96.9796981812,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA09","iata":"","local":"XA09","name":"Menard Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Bellevue","elevation_ft":1055,"latitude":33.58190155029297,"longitude":-98.06109619140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"XA23","iata":"","local":"XA23","name":"Richardson Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Pittsburg","elevation_ft":415,"latitude":33.01779938,"longitude":-94.97229767,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA24","iata":"","local":"XA24","name":"Tom Dye Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Austin","elevation_ft":1165,"latitude":30.30058,"longitude":-98.002161,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA25","iata":"","local":"XA25","name":"Lubbock Heart Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Lubbock","elevation_ft":3243,"latitude":33.603854,"longitude":-101.916402,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":32,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA26","iata":"","local":"XA26","name":"Palo Pinto General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Mineral Wells","elevation_ft":880,"latitude":32.798819,"longitude":-98.146192,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA27","iata":"","local":"XA27","name":"UT Health East Texas Pittsburg Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Pittsburg","elevation_ft":400,"latitude":33.03242,"longitude":-94.960779,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA29","iata":"","local":"XA29","name":"Methodist Hospital Texsan Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"San Antonio","elevation_ft":850,"latitude":29.489489,"longitude":-98.547566,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA30","iata":"","local":"XA30","name":"Etmc Trinity Heliport","category":"heliport","iso_country":"US","iso_region":"US-TX","municipality":"Trinity","elevation_ft":233,"latitude":30.95660019,"longitude":-95.38059998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA31","iata":"","local":"XA31","name":"Lewis Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Leakey","elevation_ft":1730,"latitude":29.8169002532959,"longitude":-99.78780364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3150,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA32","iata":"","local":"XA32","name":"Wolfe Field","category":"small_airport","iso_country":"US","iso_region":"US-TX","municipality":"Buckholts","elevation_ft":500,"latitude":30.911500930786133,"longitude":-97.17130279541016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD71","iata":"","local":"MD71","name":"University of Maryland Shock Trauma Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Baltimore","elevation_ft":166,"latitude":39.288069,"longitude":-76.625717,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"XA35","iata":"","local":"","name":"Southwest Rains Volunteer Fire Department Heliport","category":"closed","iso_country":"US","iso_region":"US-TX","municipality":"Flats","elevation_ft":460,"latitude":32.824229,"longitude":-95.899132,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD72","iata":"","local":"MD72","name":"Adventist HealthCare Fort Washington Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Fort Washington","elevation_ft":49,"latitude":38.72784,"longitude":-76.992173,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD70","iata":"","local":"MD70","name":"Flying Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Sudlersville","elevation_ft":70,"latitude":39.18119812011719,"longitude":-75.90879821777344,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD63","iata":"","local":"MD63","name":"Cromwell Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Chestertown","elevation_ft":65,"latitude":39.27479934692383,"longitude":-76.00990295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD69","iata":"","local":"MD69","name":"Harris Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Still Pond","elevation_ft":80,"latitude":39.33340072631836,"longitude":-76.08300018310547,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD76","iata":"","local":"MD76","name":"Carroll Hospital Center Helipad","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Westminster","elevation_ft":887,"latitude":39.558688,"longitude":-76.990653,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":48,"width_ft":45,"surface":"C"},{"id":"H2","length_ft":48,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD79","iata":"","local":"MD79","name":"Nuodex Inc. Heliport","category":"heliport","iso_country":"US","iso_region":"US-MD","municipality":"Worton","elevation_ft":60,"latitude":39.25289916992188,"longitude":-76.08439636230469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD80","iata":"","local":"","name":"Clements Creek Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MD","municipality":"Annapolis","elevation_ft":0,"latitude":39.021198,"longitude":-76.522697,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2550,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD81","iata":"","local":"MD81","name":"South River Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MD","municipality":"Edgewater","elevation_ft":0,"latitude":38.91469955444336,"longitude":-76.50469970703125,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":5000,"width_ft":150,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MD91","iata":"","local":"MD91","name":"Saxon Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Church Hill","elevation_ft":70,"latitude":39.15230178833008,"longitude":-76.01860046386719,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3200,"width_ft":75,"surface":"T"},{"id":"12/30","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD88","iata":"","local":"MD88","name":"Links Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Pylesville","elevation_ft":450,"latitude":39.6800167,"longitude":-76.4527694,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":1000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MDAB","iata":"","local":"","name":"Arroyo Barril Airport","category":"small_airport","iso_country":"DO","iso_region":"DO-20","municipality":"Arroyo Barril","elevation_ft":57,"latitude":19.198524,"longitude":-69.429815,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3920,"width_ft":82,"surface":"H"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD83","iata":"","local":"MD83","name":"Ty-Ti-To Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"La Plata","elevation_ft":170,"latitude":38.519833,"longitude":-77.069092,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MD82","iata":"","local":"MD82","name":"Ragged Island Airport","category":"small_airport","iso_country":"US","iso_region":"US-MD","municipality":"Cambridge","elevation_ft":5,"latitude":38.539798736572266,"longitude":-76.27549743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":31,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MDBH","iata":"BRX","local":"","name":"Maria Montez International Airport","category":"medium_airport","iso_country":"DO","iso_region":"DO-04","municipality":"Barahona","elevation_ft":10,"latitude":18.25149917602539,"longitude":-71.12039947509766,"has_tower":true,"has_beacon":false,"runways":[{"id":"12/30","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME00","iata":"","local":"ME00","name":"Fort Fairfield Municipal Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Fort Fairfield","elevation_ft":471,"latitude":46.764354,"longitude":-67.847421,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME01","iata":"","local":"ME01","name":"Crescent Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"East Raymond","elevation_ft":278,"latitude":43.95700073242188,"longitude":-70.46260070800781,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":10000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME02","iata":"","local":"ME02","name":"Northern Light Eastern Maine Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Bangor","elevation_ft":60,"latitude":44.808275,"longitude":-68.752233,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME04","iata":"","local":"ME04","name":"Ilco Landing Area Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Clayton Lake","elevation_ft":1031,"latitude":46.609500885009766,"longitude":-69.53060150146484,"has_tower":false,"has_beacon":false,"runways":[{"id":"10W/28W","length_ft":2600,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME05","iata":"","local":"ME05","name":"Allen St Peter Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Portage","elevation_ft":800,"latitude":46.75,"longitude":-68.47119903564453,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME07","iata":"","local":"ME07","name":"Acadian Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Bar Harbor","elevation_ft":0,"latitude":44.39805,"longitude":-68.219583,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":10000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME09","iata":"","local":"ME09","name":"Panther Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Raymond","elevation_ft":277,"latitude":43.93009948730469,"longitude":-70.4531021118164,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":8200,"width_ft":1000,"surface":"W"},{"id":"13W/31W","length_ft":7000,"width_ft":3000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME11","iata":"","local":"ME11","name":"Cooper Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Hartford","elevation_ft":373,"latitude":44.34230041503906,"longitude":-70.28780364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":3000,"width_ft":500,"surface":"W"},{"id":"16W/34W","length_ft":4000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME12","iata":"","local":"ME12","name":"Brettuns Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Livermore","elevation_ft":400,"latitude":44.38779830932617,"longitude":-70.25450134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":3000,"width_ft":200,"surface":"W"},{"id":"17W/35W","length_ft":3500,"width_ft":700,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME16","iata":"LIZ","local":"ME16","name":"Loring International Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Limestone","elevation_ft":746,"latitude":46.950401,"longitude":-67.885902,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":12101,"width_ft":300,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME18","iata":"","local":"ME18","name":"Chesuncook Forestry District Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Chesuncook","elevation_ft":960,"latitude":45.883399963378906,"longitude":-69.23280334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME19","iata":"","local":"ME19","name":"Clayton Lake Strip","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Clayton Lake","elevation_ft":1150,"latitude":46.617094,"longitude":-69.523244,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME06","iata":"","local":"ME06","name":"Flying Ed Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Charlotte","elevation_ft":440,"latitude":45.02790069580078,"longitude":-67.30940246582031,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":600,"width_ft":30,"surface":"T"},{"id":"15/33","length_ft":1900,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME08","iata":"","local":"ME08","name":"Gadabout Gaddis Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Bingham","elevation_ft":342,"latitude":45.040806,"longitude":-69.869629,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"},{"id":"NW/SE","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME17","iata":"","local":"ME17","name":"Thomas Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Roxbury","elevation_ft":670,"latitude":44.66019821166992,"longitude":-70.58799743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME21","iata":"","local":"ME21","name":"Chebeague Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Chebeague Island","elevation_ft":130,"latitude":43.729064,"longitude":-70.126983,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME23","iata":"","local":"ME23","name":"Franklin Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Farmington","elevation_ft":423,"latitude":44.626546,"longitude":-70.162082,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME24","iata":"","local":"ME24","name":"Ben Hur Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Appleton","elevation_ft":240,"latitude":44.28329849243164,"longitude":-69.23919677734375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME25","iata":"","local":"ME25","name":"Sunrise Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Sinclair","elevation_ft":640,"latitude":47.166507,"longitude":-68.392843,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3000,"width_ft":75,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME26","iata":"","local":"","name":"Super Cub Field","category":"closed","iso_country":"US","iso_region":"US-ME","municipality":"Westbrook","elevation_ft":85,"latitude":43.668098,"longitude":-70.363098,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME27","iata":"","local":"ME27","name":"Double A Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Glenburn","elevation_ft":115,"latitude":44.9009017944336,"longitude":-68.80229949951172,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":200,"surface":"W"},{"id":"17W/35W","length_ft":10000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME28","iata":"","local":"ME28","name":"Forest Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Cumberland","elevation_ft":274,"latitude":43.82369995117188,"longitude":-70.3301010131836,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5400,"width_ft":600,"surface":"W"},{"id":"09W/27W","length_ft":3100,"width_ft":300,"surface":"W"},{"id":"14W/32W","length_ft":2850,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME30","iata":"","local":"ME30","name":"Greenville Forestry Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Greenville","elevation_ft":1028,"latitude":45.46680068969727,"longitude":-69.59950256347656,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":5000,"width_ft":1000,"surface":"W"},{"id":"NW/SE","length_ft":6000,"width_ft":1200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME34","iata":"","local":"ME34","name":"Robinson Ridge Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Jefferson","elevation_ft":250,"latitude":44.175924,"longitude":-69.428616,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME22","iata":"","local":"ME22","name":"Avery Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Rockwood","elevation_ft":1070,"latitude":45.671201,"longitude":-69.807225,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME37","iata":"","local":"ME37","name":"Bridgton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Bridgton","elevation_ft":560,"latitude":44.046158,"longitude":-70.713053,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":62,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME42","iata":"","local":"ME42","name":"Mid Coast Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Brunswick","elevation_ft":29,"latitude":43.905102,"longitude":-69.891197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME43","iata":"","local":"ME43","name":"Northern Light Mayo Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Dover-Foxcroft","elevation_ft":370,"latitude":45.188582,"longitude":-69.2368,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME44","iata":"","local":"","name":"Cummings Airport","category":"closed","iso_country":"US","iso_region":"US-ME","municipality":"Paris Hill","elevation_ft":960,"latitude":44.289002,"longitude":-70.446198,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME48","iata":"","local":"ME48","name":"Northern Maine Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Fort Kent","elevation_ft":600,"latitude":47.264881,"longitude":-68.593197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME49","iata":"","local":"ME49","name":"C A Dean Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Greenville","elevation_ft":1085,"latitude":45.458369,"longitude":-69.611189,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME50","iata":"","local":"","name":"Cross Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-ME","municipality":"Sinclair","elevation_ft":578,"latitude":47.133901,"longitude":-68.334503,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME39","iata":"","local":"ME39","name":"Rocky Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Greene","elevation_ft":480,"latitude":44.234829,"longitude":-70.132255,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1350,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME41","iata":"","local":"ME41","name":"Witherspoons Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"North Haven","elevation_ft":80,"latitude":44.1525993347168,"longitude":-68.87640380859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":1045,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME35","iata":"","local":"ME35","name":"Terra B & B Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Levant","elevation_ft":382,"latitude":44.93149948120117,"longitude":-69.0073013305664,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME47","iata":"","local":"ME47","name":"Payne Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Hartland","elevation_ft":350,"latitude":44.85449981689453,"longitude":-69.4563980102539,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME51","iata":"","local":"ME51","name":"Douglass Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Standish","elevation_ft":270,"latitude":43.73699951171875,"longitude":-70.61060333251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":7000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME52","iata":"","local":"ME52","name":"Down East Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Machias","elevation_ft":150,"latitude":44.713451,"longitude":-67.475908,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME57","iata":"","local":"ME57","name":"Bauneg Beg Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"North Berwick","elevation_ft":305,"latitude":43.35900116,"longitude":-70.73529816,"has_tower":false,"has_beacon":false,"runways":[{"id":"03W/21W","length_ft":5000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME59","iata":"","local":"ME59","name":"Maine Helicopters Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"North Whitefield","elevation_ft":150,"latitude":44.20309829711914,"longitude":-69.60749816894531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME61","iata":"","local":"","name":"Salmon Falls Airport","category":"closed","iso_country":"US","iso_region":"US-ME","municipality":"Berwick","elevation_ft":190,"latitude":43.293716,"longitude":-70.901277,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME63","iata":"","local":"ME63","name":"Rumford Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Rumford","elevation_ft":667,"latitude":44.5513,"longitude":-70.555475,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":82,"width_ft":82,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME65","iata":"","local":"ME65","name":"Miara Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"West Bath","elevation_ft":10,"latitude":43.85850143432617,"longitude":-69.88420104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME68","iata":"","local":"ME68","name":"Newport Sky Park Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Newport","elevation_ft":300,"latitude":44.820098876953125,"longitude":-69.2384033203125,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME69","iata":"","local":"ME69","name":"Cliffords Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Sabattus","elevation_ft":280,"latitude":44.06900024414063,"longitude":-70.06449890136719,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1680,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME55","iata":"","local":"ME55","name":"Vinalhaven Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Vinalhaven","elevation_ft":72,"latitude":44.073699951200005,"longitude":-68.818901062,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"G"},{"id":"NE/SW","length_ft":1510,"width_ft":60,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME60","iata":"","local":"ME60","name":"Sunny Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Belgrade","elevation_ft":390,"latitude":44.46839904785156,"longitude":-69.81780242919922,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":250,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME62","iata":"","local":"ME62","name":"Thompson Memorial Field","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Pittsfield","elevation_ft":390,"latitude":44.809386,"longitude":-69.470389,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME72","iata":"","local":"ME72","name":"Seboomook Forestry District Headquarters Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Pittston Farm","elevation_ft":1081,"latitude":45.883399963378906,"longitude":-69.98280334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME76","iata":"","local":"ME76","name":"Penobscot Bay Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Rockland","elevation_ft":60,"latitude":44.143133,"longitude":-69.085411,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME77","iata":"","local":"ME77","name":"Cranberry Isles Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Cranberry Isles","elevation_ft":50,"latitude":44.251336,"longitude":-68.268619,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME78","iata":"","local":"ME78","name":"Monhegan Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Monhegan Island","elevation_ft":130,"latitude":43.764333,"longitude":-69.314527,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME80","iata":"","local":"ME80","name":"Dry Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Gray","elevation_ft":309,"latitude":43.93389892578125,"longitude":-70.35639953613281,"has_tower":false,"has_beacon":false,"runways":[{"id":"01W/19W","length_ft":3500,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME81","iata":"","local":"ME81","name":"4 Winds Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Manhegan","elevation_ft":30,"latitude":43.758333,"longitude":-69.321611,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":105,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME83","iata":"","local":"ME83","name":"Pickerel Pond Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Limerick","elevation_ft":340,"latitude":43.70118,"longitude":-70.777361,"has_tower":false,"has_beacon":false,"runways":[{"id":"11W/29W","length_ft":3900,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME84","iata":"","local":"ME84","name":"Perrys Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Andover","elevation_ft":1450,"latitude":44.758139,"longitude":-70.850703,"has_tower":false,"has_beacon":false,"runways":[{"id":"18W/36W","length_ft":5023,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME79","iata":"","local":"ME79","name":"Two Falls Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Willimantic","elevation_ft":366,"latitude":45.30559921264648,"longitude":-69.3467025756836,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3200,"width_ft":45,"surface":"G"},{"id":"13W/31W","length_ft":5000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME70","iata":"","local":"ME70","name":"Greenfield Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Cambridge","elevation_ft":672,"latitude":45.03760147094727,"longitude":-69.47920227050781,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1600,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI35","iata":"","local":"MI35","name":"Claucherty Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Litchfield","elevation_ft":988,"latitude":42.077341,"longitude":-84.827599,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME85","iata":"","local":"ME85","name":"Riverside Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Dover-Foxcroft","elevation_ft":342,"latitude":45.183399,"longitude":-69.235603,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":3600,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME86","iata":"","local":"ME86","name":"Libby Camps Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Ashland","elevation_ft":754,"latitude":46.30830001831055,"longitude":-68.84359741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":26000,"width_ft":3000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME87","iata":"","local":"ME87","name":"Southern Maine Health Care/Sanford Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Sanford","elevation_ft":375,"latitude":43.448713,"longitude":-70.768594,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME90","iata":"","local":"ME90","name":"Little Ossipee Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-ME","municipality":"Waterboro Center","elevation_ft":311,"latitude":43.61309814453125,"longitude":-70.69640350341797,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":8000,"width_ft":400,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME93","iata":"","local":"ME93","name":"Beaulieu Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Old Orchard Beach","elevation_ft":56,"latitude":43.538494,"longitude":-70.403879,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME94","iata":"","local":"","name":"Clark Field","category":"closed","iso_country":"US","iso_region":"US-ME","municipality":"Union","elevation_ft":54,"latitude":44.216702,"longitude":-69.291199,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME95","iata":"","local":"ME95","name":"Central Maine Medical Center Air Ambulance Landing Site Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Lewiston","elevation_ft":241,"latitude":44.103232,"longitude":-70.215096,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME98","iata":"","local":"ME98","name":"Long Island Heliport","category":"heliport","iso_country":"US","iso_region":"US-ME","municipality":"Long Island","elevation_ft":65,"latitude":43.685853,"longitude":-70.167286,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MGCB","iata":"CBV","local":"","name":"Coban Airport","category":"medium_airport","iso_country":"GT","iso_region":"GT-AV","municipality":"Coban","elevation_ft":4339,"latitude":15.469,"longitude":-90.4067,"has_tower":true,"has_beacon":false,"runways":[{"id":"03/31","length_ft":3130,"width_ft":45,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"ME92","iata":"","local":"ME92","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Jay","elevation_ft":600,"latitude":44.516700744628906,"longitude":-70.22229766845703,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"ME88","iata":"","local":"ME88","name":"Morrison's Airport","category":"small_airport","iso_country":"US","iso_region":"US-ME","municipality":"Perry","elevation_ft":200,"latitude":44.99169921875,"longitude":-67.07440185546875,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MGMM","iata":"","local":"","name":"Melchor de Mencos Airport","category":"closed","iso_country":"GT","iso_region":"GT-PE","municipality":"Melchor de Mencos","elevation_ft":4670,"latitude":17.068609,"longitude":-89.152222,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MGRT","iata":"RER","local":"","name":"Retalhuleu Airport","category":"medium_airport","iso_country":"GT","iso_region":"GT-RE","municipality":"Retalhuleu","elevation_ft":656,"latitude":14.521431,"longitude":-91.697001,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":5065,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MHPL","iata":"PEU","local":"","name":"Puerto Lempira Airport","category":"small_airport","iso_country":"HN","iso_region":"HN-GD","municipality":"Puerto Lempira","elevation_ft":33,"latitude":15.2622,"longitude":-83.781197,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5000,"width_ft":150,"surface":"S"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI04","iata":"","local":"","name":"Airborn Paraflite Ultralight Flightpark","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Ithaca","elevation_ft":758,"latitude":43.3069,"longitude":-84.645798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI06","iata":"","local":"","name":"Lee Field","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Bennington","elevation_ft":810,"latitude":42.9231,"longitude":-84.283301,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI07","iata":"","local":"MI07","name":"Dearborn Helistop","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Dearborn","elevation_ft":606,"latitude":42.29729843139648,"longitude":-83.22709655761719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":300,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI09","iata":"","local":"","name":"Milan Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Milan","elevation_ft":706,"latitude":42.050593,"longitude":-83.741313,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI12","iata":"","local":"","name":"State Police HQ Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"East Lansing","elevation_ft":860,"latitude":42.7267,"longitude":-84.490303,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2850,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI14","iata":"","local":"MI14","name":"Overflow Pad (Lower Pad) Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ann Arbor","elevation_ft":780,"latitude":42.28889846801758,"longitude":-83.73049926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI00","iata":"","local":"6Y4","name":"Van Effen Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Rock","elevation_ft":970,"latitude":46.0522,"longitude":-87.258202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":53,"width_ft":53,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI10","iata":"","local":"MI10","name":"Hoerners Corners Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"De Witt","elevation_ft":800,"latitude":42.86529922485352,"longitude":-84.70549774169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2090,"width_ft":85,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI16","iata":"","local":"","name":"Independence Green Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Farmington","elevation_ft":850,"latitude":42.470001,"longitude":-83.419404,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI20","iata":"","local":"MI20","name":"White O'Morn Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Chelsea","elevation_ft":960,"latitude":42.25260162353516,"longitude":-84.00740051269531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI21","iata":"","local":"","name":"AC Miller Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Osseo","elevation_ft":944,"latitude":41.737499,"longitude":-84.564903,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI26","iata":"","local":"","name":"Hynes Field","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Hartland","elevation_ft":978,"latitude":42.610901,"longitude":-83.732697,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3450,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI28","iata":"","local":"MI28","name":"Dow Division Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Midland","elevation_ft":635,"latitude":43.59230041503906,"longitude":-84.22440338134766,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2496,"width_ft":110,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI30","iata":"","local":"","name":"Kidder Field Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":780,"latitude":42.9361,"longitude":-85.621101,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI32","iata":"","local":"MI32","name":"Ummc Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Ann Arbor","elevation_ft":802,"latitude":42.2859001159668,"longitude":-83.72799682617188,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"-"},{"id":"H2","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI29","iata":"","local":"MI29","name":"Gooding Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Whitmore Lake","elevation_ft":920,"latitude":42.37639999389648,"longitude":-83.7927017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI23","iata":"","local":"MI23","name":"McKimmy Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bridgeport","elevation_ft":600,"latitude":43.336353,"longitude":-83.866652,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2250,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI25","iata":"","local":"MI25","name":"Myers Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Bridgman","elevation_ft":670,"latitude":41.92229843139648,"longitude":-86.54560089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1318,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI18","iata":"","local":"MI18","name":"Cedarville Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Flushing","elevation_ft":725,"latitude":43.099518,"longitude":-83.837271,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI40","iata":"","local":"MI40","name":"Fairlane Plaza Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Dearborn","elevation_ft":614,"latitude":42.320899963378906,"longitude":-83.21939849853516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI42","iata":"","local":"MI42","name":"B C Cobb Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Muskegon","elevation_ft":586,"latitude":43.254431,"longitude":-86.240632,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":62,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI43","iata":"","local":"","name":"Pewanogowink-Banks Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Montrose","elevation_ft":660,"latitude":43.186874,"longitude":-83.899798,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI46","iata":"","local":"MI46","name":"Heliflite Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"South Lyon","elevation_ft":920,"latitude":42.487300872802734,"longitude":-83.65190124511719,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI47","iata":"","local":"","name":"Dysinger Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Perry","elevation_ft":897,"latitude":42.808399,"longitude":-84.190201,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI49","iata":"","local":"MI49","name":"Hillsdale Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Hillsdale","elevation_ft":1141,"latitude":41.91120147705078,"longitude":-84.63359832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":70,"width_ft":70,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI50","iata":"","local":"","name":"Dodge Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Ray","elevation_ft":705,"latitude":42.772621,"longitude":-82.952678,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI51","iata":"","local":"","name":"Loars Field","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Onsted","elevation_ft":995,"latitude":41.996895,"longitude":-84.188599,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI54","iata":"","local":"MI54","name":"Helifarm Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Monroe","elevation_ft":610,"latitude":41.79359817504883,"longitude":-83.53810119628906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI53","iata":"","local":"MI53","name":"Mills Field","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Newport","elevation_ft":590,"latitude":42.00920104980469,"longitude":-83.25830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI41","iata":"","local":"MI41","name":"Crystal Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"St. Clair","elevation_ft":610,"latitude":42.83169937133789,"longitude":-82.53459930419922,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2700,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI44","iata":"","local":"MI44","name":"D J Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mount Pleasant","elevation_ft":755,"latitude":43.67229843139648,"longitude":-84.73670196533203,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":1950,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI55","iata":"","local":"","name":"Zeitler Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Merril","elevation_ft":678,"latitude":43.490002,"longitude":-84.365303,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2800,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI57","iata":"","local":"MI57","name":"Eagle Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Romeo","elevation_ft":605,"latitude":42.79309844970703,"longitude":-83.0261001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI58","iata":"","local":"","name":"Stony Acres Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Sunfield","elevation_ft":849,"latitude":42.754501,"longitude":-85.028603,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2208,"width_ft":75,"surface":"T"},{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI59","iata":"","local":"MI59","name":"Cass Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"West Bloomfield","elevation_ft":935,"latitude":42.60100173950195,"longitude":-83.39420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI61","iata":"","local":"MI61","name":"Henry Ford Wyandotte Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Wyandotte","elevation_ft":578,"latitude":42.20840072631836,"longitude":-83.14420318603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI62","iata":"","local":"MI62","name":"MidMichigan Medical Center-Alpena Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Alpena","elevation_ft":605,"latitude":45.077083,"longitude":-83.448066,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":43,"width_ft":43,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI63","iata":"","local":"MI63","name":"St Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":660,"latitude":42.95928,"longitude":-85.663797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI65","iata":"","local":"MI65","name":"MC Helipad Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Delton","elevation_ft":920,"latitude":42.523111,"longitude":-85.480083,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI66","iata":"","local":"MI66","name":"Michigan International Speedway Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Brooklyn","elevation_ft":1000,"latitude":42.070319,"longitude":-84.241473,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"T"},{"id":"H2","length_ft":35,"width_ft":35,"surface":"T"},{"id":"H3","length_ft":35,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI68","iata":"","local":"MI68","name":"Baroda Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Baroda","elevation_ft":645,"latitude":41.937658,"longitude":-86.501563,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":700,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI69","iata":"","local":"","name":"Battle Creek Health System Helistop","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Battle Creek","elevation_ft":855,"latitude":42.330861,"longitude":-85.178611,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI73","iata":"","local":"","name":"North Cedar Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Cedar Springs","elevation_ft":893,"latitude":43.2584,"longitude":-85.545898,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI74","iata":"","local":"MI74","name":"Wdiv-Tv Channel 4 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":670,"latitude":42.32979965209961,"longitude":-83.05349731445312,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI75","iata":"","local":"MI75","name":"Torchlake Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Kewadin","elevation_ft":593,"latitude":45.026492,"longitude":-85.325561,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI77","iata":"","local":"","name":"Shafter Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Galesburg","elevation_ft":805,"latitude":42.299999,"longitude":-85.416702,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI81","iata":"","local":"MI81","name":"Express Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Farmington Hills","elevation_ft":895,"latitude":42.51390075683594,"longitude":-83.35780334472656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI71","iata":"","local":"MI71","name":"Silver Lake Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Mears","elevation_ft":772,"latitude":43.64450073242188,"longitude":-86.4529037475586,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2660,"width_ft":400,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI78","iata":"","local":"MI78","name":"Weller Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Grandville","elevation_ft":600,"latitude":42.91894,"longitude":-85.786142,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI76","iata":"","local":"MI76","name":"Reading Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"Fennville","elevation_ft":700,"latitude":42.54732,"longitude":-86.21729,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MI85","iata":"","local":"MI85","name":"Community Health Center of Branch County Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Coldwater","elevation_ft":959,"latitude":41.9375,"longitude":-84.98799896240234,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI87","iata":"","local":"MI87","name":"Lakeland Hospital Watervliet Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Watervliet","elevation_ft":667,"latitude":42.184834,"longitude":-86.250543,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI90","iata":"","local":"MI90","name":"Baldwin Lake Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Union","elevation_ft":850,"latitude":41.79029846191406,"longitude":-85.83889770507812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI91","iata":"","local":"","name":"T & M Companies Heliport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Wixom","elevation_ft":940,"latitude":42.527,"longitude":-83.5755,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI93","iata":"","local":"","name":"Circle T Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"Curran","elevation_ft":1010,"latitude":44.687801,"longitude":-83.743896,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2310,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI94","iata":"","local":"","name":"Fontecchio Airport","category":"closed","iso_country":"US","iso_region":"US-MI","municipality":"E Kingsford","elevation_ft":1110,"latitude":45.784697,"longitude":-88.0681989,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI96","iata":"","local":"MI96","name":"Detroit Border Patrol Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Detroit","elevation_ft":586,"latitude":42.367222,"longitude":-82.9675,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI97","iata":"","local":"MI97","name":"Spectrum Health Butterworth Heliport","category":"heliport","iso_country":"US","iso_region":"US-MI","municipality":"Grand Rapids","elevation_ft":903,"latitude":42.969132,"longitude":-85.665127,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":62,"width_ft":60,"surface":"C"},{"id":"H2","length_ft":62,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MI86","iata":"","local":"MI86","name":"Midget Airport","category":"small_airport","iso_country":"US","iso_region":"US-MI","municipality":"North Muskegon","elevation_ft":669,"latitude":43.342253,"longitude":-86.18784,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MMBT","iata":"HUX","local":"HU1","name":"Aeropuerto Internacional de Bahías de Huatulco","category":"large_airport","iso_country":"MX","iso_region":"MX-OAX","municipality":"Huatulco","elevation_ft":464,"latitude":15.771987,"longitude":-96.258752,"has_tower":true,"has_beacon":false,"runways":[{"id":"07/25","length_ft":9843,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MMES","iata":"ESE","local":"ENS","name":"Base Nº3 de la Fuerza Aérea Mexicana","category":"small_airport","iso_country":"MX","iso_region":"MX-BCN","municipality":"Ensenada","elevation_ft":66,"latitude":31.797973,"longitude":-116.59554,"has_tower":true,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4892,"width_ft":115,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MMMV","iata":"LOV","local":"MOV","name":"Monclova International Airport","category":"medium_airport","iso_country":"MX","iso_region":"MX-COA","municipality":"UNKNOWN","elevation_ft":1864,"latitude":26.9557,"longitude":-101.470001,"has_tower":false,"has_beacon":false,"runways":[{"id":"06R/24L","length_ft":6890,"width_ft":148,"surface":"H"},{"id":"06L/24R","length_ft":4783,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN02","iata":"","local":"MN02","name":"Lake Minnewashta Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Excelsior","elevation_ft":944,"latitude":44.880501,"longitude":-93.6091,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":4000,"width_ft":2000,"surface":"W"},{"id":"16W/34W","length_ft":5000,"width_ft":2000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN03","iata":"","local":"","name":"Bolduc Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Bigfork","elevation_ft":1325,"latitude":47.597698,"longitude":-93.410797,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN04","iata":"","local":"","name":"Aggies Landing Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Alexandria","elevation_ft":1387,"latitude":45.773602,"longitude":-95.262802,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":2000,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN05","iata":"","local":"MN05","name":"Jordan Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1344,"latitude":47.597198486328125,"longitude":-94.8469009399414,"has_tower":false,"has_beacon":false,"runways":[{"id":"15W/33W","length_ft":6000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN07","iata":"","local":"MN07","name":"Health One Mercy Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Anoka","elevation_ft":867,"latitude":45.18360137939453,"longitude":-93.37020111083984,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN09","iata":"","local":"MN09","name":"Crystal Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Burnsville","elevation_ft":935,"latitude":44.722198,"longitude":-93.266899,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":1518,"width_ft":100,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN41","iata":"","local":"MN41","name":"Timmers Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Silver Lake","elevation_ft":1070,"latitude":44.973428,"longitude":-94.214186,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN01","iata":"","local":"MN01","name":"Hammars Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ada","elevation_ft":886,"latitude":47.277814,"longitude":-96.614012,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN06","iata":"","local":"MN06","name":"Pulkrabek Landing Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Angus","elevation_ft":850,"latitude":48.053773,"longitude":-96.788167,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN10","iata":"","local":"MN10","name":"Abbott Northwestern Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Minneapolis","elevation_ft":1010,"latitude":44.954521,"longitude":-93.260202,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN14","iata":"","local":"MN14","name":"United Hospital District Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Blue Earth","elevation_ft":1089,"latitude":43.63370132446289,"longitude":-94.10009765625,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN15","iata":"","local":"","name":"Empire Farm Strip","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Bongards","elevation_ft":1000,"latitude":44.794998,"longitude":-93.853897,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1383,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN16","iata":"","local":"MN16","name":"Virginia Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Virginia","elevation_ft":1550,"latitude":47.531389,"longitude":-92.548056,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN20","iata":"","local":"","name":"Runke's Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Cedar Mills","elevation_ft":1100,"latitude":44.9105,"longitude":-94.570882,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN23","iata":"","local":"","name":"Dupre's Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Chisago","elevation_ft":936,"latitude":45.3158,"longitude":-92.885803,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN11","iata":"","local":"MN11","name":"Lorenz Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Benson","elevation_ft":1050,"latitude":45.29999923706055,"longitude":-95.54499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN13","iata":"","local":"MN13","name":"Moberg Air Base","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1373,"latitude":47.49610137939453,"longitude":-94.95279693603516,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2263,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN19","iata":"","local":"MN19","name":"Brandt Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Delano","elevation_ft":930,"latitude":45.04729843139648,"longitude":-93.8364028930664,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1500,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN18","iata":"","local":"MN18","name":"Barrett Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Brainerd","elevation_ft":1275,"latitude":46.178199768066406,"longitude":-94.0886001586914,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN17","iata":"","local":"MN17","name":"Jackson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Brainerd","elevation_ft":1225,"latitude":46.27220154,"longitude":-94.23940277,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN25","iata":"","local":"MN25","name":"Mahnomen County & Village Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Mahnomen","elevation_ft":1234,"latitude":47.3119010925293,"longitude":-95.9738998413086,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN26","iata":"","local":"MN26","name":"Tri-County Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Wadena","elevation_ft":1350,"latitude":46.44660186767578,"longitude":-95.1331024169922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN27","iata":"","local":"MN27","name":"Fairview Southdale Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Edina","elevation_ft":867,"latitude":44.887001037597656,"longitude":-93.32659912109376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN29","iata":"","local":"","name":"Buffalo Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Buffalo","elevation_ft":915,"latitude":45.162201,"longitude":-93.910797,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":2758,"width_ft":250,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN33","iata":"","local":"MN33","name":"St Mary's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":860,"latitude":46.79380035400391,"longitude":-92.0978012084961,"has_tower":false,"has_beacon":false,"runways":[{"id":"H2","length_ft":125,"width_ft":125,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN34","iata":"","local":"MN34","name":"St Olaf Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Austin","elevation_ft":1202,"latitude":43.675201416015625,"longitude":-92.9770965576172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN35","iata":"","local":"MN35","name":"Wild Rice Lake Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":1380,"latitude":46.899898529052734,"longitude":-92.16210174560548,"has_tower":false,"has_beacon":false,"runways":[{"id":"ALL/WAY","length_ft":6000,"width_ft":6000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN37","iata":"","local":"","name":"Shelton's Private Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Saginaw","elevation_ft":1320,"latitude":46.944901,"longitude":-92.357101,"has_tower":false,"has_beacon":false,"runways":[{"id":"13W/31W","length_ft":6000,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN38","iata":"","local":"","name":"Spud Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"East Grand Forks","elevation_ft":840,"latitude":47.924999,"longitude":-96.983704,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN39","iata":"","local":"MN39","name":"Winona Health Services Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Winona","elevation_ft":666,"latitude":44.033853,"longitude":-91.623305,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN31","iata":"","local":"MN31","name":"L & M Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Litchfield","elevation_ft":1205,"latitude":45.062198638916016,"longitude":-94.5792007446289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2480,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN43","iata":"","local":"MN43","name":"Kanabec Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Mora","elevation_ft":1005,"latitude":45.8744010925293,"longitude":-93.28990173339844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN46","iata":"","local":"","name":"Lucht Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Farmington","elevation_ft":900,"latitude":44.603954,"longitude":-93.094505,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2147,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN48","iata":"","local":"MN48","name":"St Luke Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Duluth","elevation_ft":680,"latitude":46.797401428222656,"longitude":-92.08599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN44","iata":"","local":"MN44","name":"Angen Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Garfield","elevation_ft":1450,"latitude":45.9364013671875,"longitude":-95.52619934082033,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN53","iata":"","local":"","name":"Stanley Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Graceville","elevation_ft":1112,"latitude":45.582199,"longitude":-96.5765,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN56","iata":"","local":"MN56","name":"Charlton Building Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Rochester","elevation_ft":1086,"latitude":44.0182991027832,"longitude":-92.45179748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":22,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN49","iata":"","local":"MN49","name":"Tuma Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Montgomery","elevation_ft":1100,"latitude":44.42390060424805,"longitude":-93.4843978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN47","iata":"","local":"MN47","name":"Cameron's Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Princeton","elevation_ft":930,"latitude":45.54970169,"longitude":-93.46980286,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN57","iata":"","local":"MN57","name":"Bush Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hinckley","elevation_ft":1050,"latitude":46.036072,"longitude":-92.988008,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2590,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN42","iata":"","local":"MN42","name":"Oak Lake Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Erskine","elevation_ft":1204,"latitude":47.658599853515625,"longitude":-95.94609832763672,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN52","iata":"","local":"MN52","name":"Gospel Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hibbing","elevation_ft":1360,"latitude":47.22845,"longitude":-93.091965,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN59","iata":"","local":"MN59","name":"District One Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Faribault","elevation_ft":1065,"latitude":44.289345,"longitude":-93.257854,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN61","iata":"","local":"","name":"Ward Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Hollandale","elevation_ft":1205,"latitude":43.760201,"longitude":-93.178001,"has_tower":false,"has_beacon":false,"runways":[{"id":"16W/34W","length_ft":2500,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN64","iata":"","local":"","name":"H Reder Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Lakefield","elevation_ft":1504,"latitude":43.695802,"longitude":-95.172501,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN65","iata":"","local":"MN65","name":"Meeker County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Litchfield","elevation_ft":1135,"latitude":45.119802,"longitude":-94.529851,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN68","iata":"","local":"","name":"Pangerl Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Braham","elevation_ft":990,"latitude":45.700802,"longitude":-93.371597,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2036,"width_ft":70,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN71","iata":"","local":"","name":"Ziermann Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Mayer","elevation_ft":988,"latitude":44.875,"longitude":-93.891899,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3193,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN72","iata":"","local":"","name":"Peil's Vermillion Wings Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Tower","elevation_ft":1360,"latitude":47.885502,"longitude":-92.405197,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN66","iata":"","local":"MN66","name":"Ingleside Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Loretto","elevation_ft":1021,"latitude":45.0630989074707,"longitude":-93.6522979736328,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN63","iata":"","local":"MN63","name":"Stocker Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Jordan","elevation_ft":855,"latitude":44.684582,"longitude":-93.637462,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":1400,"width_ft":100,"surface":"T"},{"id":"N/S","length_ft":1400,"width_ft":100,"surface":"T"},{"id":"NE/SW","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN62","iata":"","local":"MN62","name":"Quast Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hutchinson","elevation_ft":1050,"latitude":44.84999847412109,"longitude":-94.35030364990234,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN69","iata":"","local":"MN69","name":"Maple Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Maple Plain","elevation_ft":1026,"latitude":45.00270080566406,"longitude":-93.6718978881836,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3400,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN75","iata":"","local":"MN75","name":"Krezowski Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Mcgregor","elevation_ft":1214,"latitude":46.7582016,"longitude":-93.28230286,"has_tower":false,"has_beacon":false,"runways":[{"id":"05W/23W","length_ft":10000,"width_ft":500,"surface":"W"},{"id":"14W/32W","length_ft":10000,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN76","iata":"","local":"MN76","name":"Marty's Tranquility Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Prior Lake","elevation_ft":911,"latitude":44.699962616,"longitude":-93.4718933105,"has_tower":false,"has_beacon":false,"runways":[{"id":"08W/26W","length_ft":8100,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN77","iata":"","local":"MN77","name":"Jerger's Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Moorhead","elevation_ft":900,"latitude":46.92348,"longitude":-96.716123,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN78","iata":"","local":"","name":"Turtle Lake Seaplane Base","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Bemidji","elevation_ft":1344,"latitude":47.6166,"longitude":-94.866897,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN79","iata":"","local":"","name":"Schroeder Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Becker","elevation_ft":970,"latitude":45.4314,"longitude":-93.857697,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN80","iata":"","local":"MN80","name":"The Pass Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Mound","elevation_ft":930,"latitude":44.914398193359375,"longitude":-93.6884994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"06W/24W","length_ft":5500,"width_ft":750,"surface":"W"},{"id":"16W/34W","length_ft":7000,"width_ft":750,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN82","iata":"","local":"","name":"Fairview Red Wing Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Red Wing","elevation_ft":793,"latitude":44.5602,"longitude":-92.546303,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN83","iata":"","local":"MN83","name":"International Falls Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"International Falls","elevation_ft":1110,"latitude":48.59550094604492,"longitude":-93.43180084228516,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN84","iata":"","local":"","name":"Bachand Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Oklee","elevation_ft":1100,"latitude":47.813903,"longitude":-95.891998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN86","iata":"","local":"MN86","name":"Sky Manor Aero Estates Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Park Rapids","elevation_ft":1492,"latitude":47.04579925537109,"longitude":-95.12249755859376,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1999,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN81","iata":"","local":"MN81","name":"J J and T Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"East Grand Forks","elevation_ft":828,"latitude":47.98889923095703,"longitude":-97.03119659423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MN89","iata":"","local":"MN89","name":"Aerovilla Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Perham","elevation_ft":1374,"latitude":46.61660003662109,"longitude":-95.65029907226562,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN90","iata":"","local":"MN90","name":"Luverne Community Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Luverne","elevation_ft":1427,"latitude":43.67290115356445,"longitude":-96.20989990234376,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN93","iata":"","local":"","name":"Chandler Field","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Randall","elevation_ft":1200,"latitude":46.105499,"longitude":-94.516998,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN94","iata":"","local":"MN94","name":"Mille Lacs Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Onamia","elevation_ft":1100,"latitude":46.073001861572266,"longitude":-93.6624984741211,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN96","iata":"","local":"","name":"Rohwer Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Rushmore","elevation_ft":1640,"latitude":43.5983,"longitude":-95.817002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN97","iata":"","local":"","name":"Thens Private Airstrip","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Saint Cloud","elevation_ft":1042,"latitude":45.590195,"longitude":-94.204399,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN98","iata":"","local":"","name":"Aero-Plain Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Saint Francis","elevation_ft":931,"latitude":45.410947,"longitude":-93.384937,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2900,"width_ft":140,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MNBL","iata":"BEF","local":"","name":"Bluefields Airport","category":"medium_airport","iso_country":"NI","iso_region":"NI-AS","municipality":"Bluefileds","elevation_ft":20,"latitude":11.991,"longitude":-83.774101,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":5961,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MNCH","iata":"","local":"","name":"Chinandega Germán Pomares Ordóñez Airport","category":"small_airport","iso_country":"NI","iso_region":"NI-CI","municipality":"Chinandega","elevation_ft":174,"latitude":12.639548,"longitude":-87.137753,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2484,"width_ft":48,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MN92","iata":"","local":"MN92","name":"Lennartson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Proctor","elevation_ft":1250,"latitude":46.74990081787109,"longitude":-92.30020141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MNPC","iata":"PUZ","local":"","name":"Puerto Cabezas Airport","category":"medium_airport","iso_country":"NI","iso_region":"NI-AN","municipality":"Puerto Cabezas","elevation_ft":52,"latitude":14.047200202941896,"longitude":-83.38670349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":8130,"width_ft":167,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO04","iata":"","local":"","name":"Lyell Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Hunnewell","elevation_ft":769,"latitude":39.708056,"longitude":-91.854387,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1648,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO05","iata":"","local":"MO05","name":"Truman Medical Center West Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":983,"latitude":39.08420181274414,"longitude":-94.57420349121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO06","iata":"","local":"","name":"Barton County Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Lamar","elevation_ft":990,"latitude":37.506705,"longitude":-94.275624,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO07","iata":"","local":"MO07","name":"Adventures Aloft Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Jonesburg","elevation_ft":871,"latitude":38.872501373291016,"longitude":-91.30020141601562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2075,"width_ft":50,"surface":"G"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO10","iata":"","local":"MO10","name":"Hawk Air Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sturgeon","elevation_ft":870,"latitude":39.20429992675781,"longitude":-92.26239776611328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":24,"width_ft":24,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO09","iata":"","local":"MO09","name":"Sharpe Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lewistown","elevation_ft":702,"latitude":40.022784,"longitude":-91.870962,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":4360,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO02","iata":"","local":"MO02","name":"Morgan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rolla","elevation_ft":1018,"latitude":37.91669845581055,"longitude":-91.68350219726562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":16,"width_ft":16,"surface":"C"},{"id":"H2","length_ft":16,"width_ft":16,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO03","iata":"","local":"MO03","name":"Moders Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"House Springs","elevation_ft":465,"latitude":38.424198150634766,"longitude":-90.58290100097656,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO01","iata":"","local":"MO01","name":"Cuinche Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Strafford","elevation_ft":1475,"latitude":37.25,"longitude":-93.1060028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2460,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO08","iata":"","local":"MO08","name":"Homan Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Sedalia","elevation_ft":885,"latitude":38.66279983520508,"longitude":-93.33270263671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO00","iata":"","local":"MO00","name":"Turkey Mountain Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Shell Knob","elevation_ft":1000,"latitude":36.591696,"longitude":-93.663887,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3950,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO11","iata":"","local":"MO11","name":"Barron Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Perry","elevation_ft":745,"latitude":39.400327,"longitude":-91.580832,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO12","iata":"","local":"MO12","name":"Saint Lukes Hospital West Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Chesterfield","elevation_ft":505,"latitude":38.650277,"longitude":-90.503192,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO13","iata":"","local":"","name":"Blue Hollow Airpark","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Eldridge","elevation_ft":820,"latitude":37.7976,"longitude":-92.829201,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2582,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO15","iata":"","local":"","name":"Beckner Field","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Marshfield","elevation_ft":1285,"latitude":37.387501,"longitude":-92.957397,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1204,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO17","iata":"","local":"MO17","name":"Garst Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Watson","elevation_ft":905,"latitude":40.47919845581055,"longitude":-95.64610290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2140,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO18","iata":"","local":"","name":"Clevenger Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Blue Springs","elevation_ft":990,"latitude":38.947201,"longitude":-94.2491,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO19","iata":"","local":"MO19","name":"American Legion-Village of Centertown Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Centertown","elevation_ft":805,"latitude":38.61309814453125,"longitude":-92.41210174560548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO20","iata":"","local":"MO20","name":"Nevada Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Nevada","elevation_ft":856,"latitude":37.831887,"longitude":-94.360564,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO21","iata":"","local":"MO21","name":"St Joseph Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":900,"latitude":38.93610000610352,"longitude":-94.60440063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO14","iata":"","local":"MO14","name":"Marshall Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fair Grove","elevation_ft":1166,"latitude":37.422778,"longitude":-93.208611,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1900,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO22","iata":"","local":"MO22","name":"Jta Asbell Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Carl Junction","elevation_ft":940,"latitude":37.19169998168945,"longitude":-94.54969787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO25","iata":"","local":"","name":"Show Me The Sky Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Barnard","elevation_ft":1050,"latitude":40.137503,"longitude":-94.925598,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1523,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO28","iata":"","local":"MO28","name":"Blue Springs Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Blue Springs","elevation_ft":287,"latitude":39.027000427246094,"longitude":-94.26360321044922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO38","iata":"","local":"MO38","name":"Table Rock Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Branson","elevation_ft":1047,"latitude":36.6383,"longitude":-93.2824,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"-"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"-"},{"id":"H3","length_ft":40,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO39","iata":"","local":"MO39","name":"Baldwin Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Silex","elevation_ft":505,"latitude":39.110958,"longitude":-91.040446,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO40","iata":"","local":"MO40","name":"Salem Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Salem","elevation_ft":1170,"latitude":37.659898,"longitude":-91.570607,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO30","iata":"","local":"MO30","name":"Harbour Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gravois Mills","elevation_ft":823,"latitude":38.269901,"longitude":-92.8115,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2545,"width_ft":45,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO26","iata":"","local":"MO26","name":"Peterson Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kearney","elevation_ft":860,"latitude":39.39390182495117,"longitude":-94.35299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO31","iata":"","local":"MO31","name":"Malina Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Rogersville","elevation_ft":1350,"latitude":37.04949951171875,"longitude":-93.07240295410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":1500,"width_ft":35,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO32","iata":"","local":"MO32","name":"Table Rock Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Golden","elevation_ft":1053,"latitude":36.52870178222656,"longitude":-93.6769027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2325,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO29","iata":"","local":"MO29","name":"Inter-State Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Pleasant Hill","elevation_ft":960,"latitude":38.77220153808594,"longitude":-94.33489990234376,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1900,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO27","iata":"","local":"MO27","name":"Ccc Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Cameron","elevation_ft":984,"latitude":39.73529815673828,"longitude":-94.19270324707033,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO43","iata":"","local":"MO43","name":"Wilkins Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Montgomery City","elevation_ft":835,"latitude":38.96849822998047,"longitude":-91.44349670410156,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2670,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO44","iata":"","local":"MO44","name":"St Joseph Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Saint Charles","elevation_ft":530,"latitude":38.780809,"longitude":-90.485443,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO45","iata":"","local":"MO45","name":"Sky-Vu Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Montgomery City","elevation_ft":800,"latitude":38.8922004699707,"longitude":-91.56600189208984,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1700,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO47","iata":"","local":"MO47","name":"Air Ambulance Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Mexico","elevation_ft":764,"latitude":39.17276,"longitude":-91.878973,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO48","iata":"","local":"MU43","name":"Mosaic Life Care Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St. Joseph","elevation_ft":923,"latitude":39.771771,"longitude":-94.772373,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1661,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO50","iata":"","local":"MO50","name":"Saint Francis Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Cape Girardeau","elevation_ft":455,"latitude":37.303445,"longitude":-89.569853,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO52","iata":"","local":"","name":"Skyriders Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Wheatland","elevation_ft":900,"latitude":37.873857,"longitude":-93.386279,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO55","iata":"","local":"MO55","name":"St Louis University Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":550,"latitude":38.622886,"longitude":-90.239229,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO59","iata":"","local":"MO59","name":"K & N Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Moscow Mills","elevation_ft":500,"latitude":38.91450119018555,"longitude":-90.9001007080078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO51","iata":"","local":"MO51","name":"Schaback Strip","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Weston","elevation_ft":1000,"latitude":39.42359924316406,"longitude":-94.8477020263672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2390,"width_ft":33,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO56","iata":"","local":"MO56","name":"Lost Mine Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Theodosia","elevation_ft":820,"latitude":36.514198303222656,"longitude":-92.64019775390624,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3000,"width_ft":48,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO49","iata":"","local":"MO49","name":"Five Mile Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Joplin","elevation_ft":1100,"latitude":36.96924,"longitude":-94.577289,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2560,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO60","iata":"","local":"MO60","name":"SSM Health St. Clare Hospital-Fenton Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St. Louis","elevation_ft":559,"latitude":38.529444,"longitude":-90.476666,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO63","iata":"","local":"MO63","name":"Spelman/St. Luke's Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":1061,"latitude":39.252201080322266,"longitude":-94.64610290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO69","iata":"","local":"MO69","name":"Baptist Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":170,"latitude":39.00609970092773,"longitude":-94.57720184326172,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO70","iata":"","local":"MO70","name":"Mosaic Medical Center-Maryville Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Maryville","elevation_ft":1115,"latitude":40.326974,"longitude":-94.876878,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO71","iata":"","local":"MO71","name":"Block Air Village Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Holt","elevation_ft":1030,"latitude":39.46310043334961,"longitude":-94.41829681396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2800,"width_ft":100,"surface":"T"},{"id":"16/34","length_ft":1500,"width_ft":100,"surface":"T"},{"id":"17/35","length_ft":3300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO73","iata":"","local":"MO73","name":"Rolling Shoals Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Williamsville","elevation_ft":450,"latitude":36.989904,"longitude":-90.563092,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO67","iata":"","local":"MO67","name":"Hayes Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Poplar Bluff","elevation_ft":323,"latitude":36.71120071411133,"longitude":-90.31400299072266,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2400,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO68","iata":"","local":"MO68","name":"Eads Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fair Grove","elevation_ft":1310,"latitude":37.40530014038086,"longitude":-93.09960174560548,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO65","iata":"","local":"MO65","name":"Misty Meadows Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kirbyville","elevation_ft":940,"latitude":36.58340072631836,"longitude":-93.10299682617188,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":1300,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO64","iata":"","local":"MO64","name":"Kimberling Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Kimberling City","elevation_ft":1050,"latitude":36.60979843139648,"longitude":-93.4446029663086,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO74","iata":"","local":"MO74","name":"Cedar Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":820,"latitude":38.919443,"longitude":-92.163676,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2700,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO76","iata":"","local":"MO76","name":"Life Line 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Saint Robert","elevation_ft":1059,"latitude":37.823476,"longitude":-92.161088,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO87","iata":"","local":"MO87","name":"Powis Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Oak Grove","elevation_ft":879,"latitude":38.945559,"longitude":-94.161308,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO86","iata":"","local":"MO86","name":"Sanctuary Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Bellflower","elevation_ft":750,"latitude":38.95970153808594,"longitude":-91.30390167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO88","iata":"","local":"","name":"Feutz Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Hatton","elevation_ft":890,"latitude":39.097093,"longitude":-92.008762,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO82","iata":"","local":"MO82","name":"Howard Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Gorin","elevation_ft":740,"latitude":40.40663,"longitude":-92.055854,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2050,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO81","iata":"","local":"MO81","name":"Dove Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Bismarck","elevation_ft":1080,"latitude":37.668401,"longitude":-90.611829,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2300,"width_ft":40,"surface":"G"},{"id":"14/32","length_ft":2200,"width_ft":40,"surface":"G"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO77","iata":"","local":"MO77","name":"Arnika Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ava","elevation_ft":1320,"latitude":36.97510147094727,"longitude":-92.5427017211914,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO80","iata":"","local":"MO80","name":"Oak Ridge Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Mountain Grove","elevation_ft":1482,"latitude":37.160598,"longitude":-92.323501,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO78","iata":"","local":"MO78","name":"Stickle Cattle Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Belle","elevation_ft":700,"latitude":38.315785,"longitude":-91.780708,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO85","iata":"","local":"MO85","name":"Wells Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Marshfield","elevation_ft":1530,"latitude":37.25170135498047,"longitude":-92.83380126953124,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO91","iata":"","local":"MO91","name":"Barnes Jewish Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":513,"latitude":38.633399963378906,"longitude":-90.2500991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO92","iata":"","local":"MO92","name":"SSM Health Depaul Hospital-St. Louis Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Bridgeton","elevation_ft":543,"latitude":38.752169,"longitude":-90.4324,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO93","iata":"","local":"MO93","name":"Keeven Air Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hawk Point","elevation_ft":700,"latitude":39.044819,"longitude":-91.148094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":470,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO95","iata":"","local":"","name":"Hawkins Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Carrollton","elevation_ft":720,"latitude":39.4417,"longitude":-93.662201,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1805,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO97","iata":"","local":"MO97","name":"SSM Health St. Joseph Hospital-Wentzville Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Wentzville","elevation_ft":620,"latitude":38.822722,"longitude":-90.881483,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MPBO","iata":"BOC","local":"","name":"Bocas del Toro International Airport","category":"medium_airport","iso_country":"PA","iso_region":"PA-1","municipality":"Isla Colón","elevation_ft":10,"latitude":9.34085,"longitude":-82.250801,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4921,"width_ft":66,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO98","iata":"","local":"MO98","name":"Williams Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Cleveland","elevation_ft":985,"latitude":38.713258,"longitude":-94.585268,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"OISF","iata":"FAZ","local":"","name":"Fasa Airport","category":"medium_airport","iso_country":"IR","iso_region":"IR-07","municipality":"Fasa","elevation_ft":4261,"latitude":28.8918,"longitude":53.723301,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":6385,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MO94","iata":"","local":"MO94","name":"Starr Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Trimble","elevation_ft":1000,"latitude":39.5,"longitude":-94.5802001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2640,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MO99","iata":"","local":"MO99","name":"Miller Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Climax Springs","elevation_ft":1000,"latitude":38.117524,"longitude":-93.073318,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MRLM","iata":"LIO","local":"","name":"Limon International Airport","category":"medium_airport","iso_country":"CR","iso_region":"CR-L","municipality":"Puerto Limon","elevation_ft":7,"latitude":9.95796012878418,"longitude":-83.02200317382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":5905,"width_ft":98,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MRPV","iata":"SYQ","local":"","name":"Tobías Bolaños International Airport","category":"medium_airport","iso_country":"CR","iso_region":"CR-SJ","municipality":"San Jose","elevation_ft":3287,"latitude":9.95705,"longitude":-84.139801,"has_tower":true,"has_beacon":false,"runways":[{"id":"09/27","length_ft":5138,"width_ft":75,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS01","iata":"","local":"MS01","name":"Bolivar County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Cleveland","elevation_ft":143,"latitude":33.74807,"longitude":-90.70806,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS02","iata":"","local":"MS02","name":"Pascagoula Refinery Pad Nr 3 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":20,"latitude":30.348800659179688,"longitude":-88.47810363769531,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS03","iata":"","local":"MS03","name":"Christmas Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Shelby","elevation_ft":153,"latitude":33.924641,"longitude":-90.788944,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3900,"width_ft":75,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS05","iata":"","local":"MS05","name":"Delta Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Greenville","elevation_ft":123,"latitude":33.411566,"longitude":-91.034068,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS06","iata":"","local":"MS06","name":"Linwood Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Linwood","elevation_ft":285,"latitude":32.790401458740234,"longitude":-90.13809967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2270,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS07","iata":"","local":"MS07","name":"Echelon Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":340,"latitude":32.38570022583008,"longitude":-90.1873016357422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS08","iata":"","local":"MS08","name":"Harrell Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Pisgah","elevation_ft":385,"latitude":32.4739,"longitude":-89.851799,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS09","iata":"","local":"MS09","name":"Glidwell Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Alligator","elevation_ft":160,"latitude":34.09639,"longitude":-90.70412,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS11","iata":"","local":"MS11","name":"Mohr Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Brandon","elevation_ft":360,"latitude":32.208499908447266,"longitude":-89.94170379638672,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS13","iata":"","local":"MS13","name":"Eifling Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Glen Allan","elevation_ft":110,"latitude":33.07569885253906,"longitude":-90.95339965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2600,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS14","iata":"","local":"MS14","name":"John Farese Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Ashland","elevation_ft":565,"latitude":34.813889,"longitude":-89.199617,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS16","iata":"","local":"MS16","name":"Greenwood-Leflore Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Greenwood","elevation_ft":130,"latitude":33.51959991455078,"longitude":-90.20089721679688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS17","iata":"","local":"MS17","name":"Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Gulfport","elevation_ft":33,"latitude":30.367872,"longitude":-89.116879,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":61,"width_ft":61,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS19","iata":"","local":"MS19","name":"Pascagoula Refinery Pad Nr 2 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":20,"latitude":30.354900360107425,"longitude":-88.49140167236328,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS20","iata":"","local":"MS20","name":"Newell Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Inverness","elevation_ft":126,"latitude":33.354801177979,"longitude":-90.579002380371,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS21","iata":"","local":"MS21","name":"Lester Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Inverness","elevation_ft":115,"latitude":33.33209991455078,"longitude":-90.58200073242188,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS29","iata":"","local":"MS29","name":"Pace Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Canton","elevation_ft":350,"latitude":32.601944,"longitude":-89.863889,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":3175,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS30","iata":"","local":"MS30","name":"Abide Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Greenville","elevation_ft":115,"latitude":33.30569839477539,"longitude":-90.99040222167967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2285,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS31","iata":"","local":"MS31","name":"Panola Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Batesville","elevation_ft":337,"latitude":34.306527,"longitude":-89.913341,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS32","iata":"","local":"MS32","name":"Andersons Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Meridian","elevation_ft":298,"latitude":32.36819839477539,"longitude":-88.69889831542969,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS33","iata":"","local":"","name":"Hobbs Airport","category":"closed","iso_country":"US","iso_region":"US-MS","municipality":"Moorhead","elevation_ft":115,"latitude":33.416801,"longitude":-90.494499,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS35","iata":"","local":"MS35","name":"Wade Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Rolling Fork","elevation_ft":106,"latitude":32.98173,"longitude":-90.966062,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3200,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS36","iata":"","local":"MS36","name":"Supplejack Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Canton","elevation_ft":340,"latitude":32.650001525878906,"longitude":-89.9708023071289,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS37","iata":"","local":"MS37","name":"West Bolivar Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Benoit","elevation_ft":136,"latitude":33.6534,"longitude":-90.988998,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":5100,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS40","iata":"","local":"MS40","name":"Southland Flying Service Inc. Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Tchula","elevation_ft":115,"latitude":33.22560119628906,"longitude":-90.24669647216795,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2640,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS41","iata":"","local":"MS41","name":"Flying Y Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Tutwiler","elevation_ft":149,"latitude":34.00304,"longitude":-90.425949,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2400,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS43","iata":"","local":"MS43","name":"Whitaker Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Redwood","elevation_ft":98,"latitude":32.549419,"longitude":-90.826292,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS45","iata":"","local":"MS45","name":"Dale Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Vicksburg","elevation_ft":85,"latitude":32.1563,"longitude":-91.124603,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":3400,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS46","iata":"","local":"MS46","name":"St Dominic-Jackson Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":353,"latitude":32.333349,"longitude":-90.163861,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS47","iata":"","local":"MS47","name":"Southwest Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"McComb","elevation_ft":413,"latitude":31.250873,"longitude":-90.474547,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS55","iata":"","local":"MS55","name":"Schloss Adlers Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Red Banks","elevation_ft":478,"latitude":34.8109016418457,"longitude":-89.57839965820312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS56","iata":"","local":"MS56","name":"Gilmore Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Amory","elevation_ft":225,"latitude":33.977585,"longitude":-88.475078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS39","iata":"","local":"MS39","name":"Smith County Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Taylorsville","elevation_ft":332,"latitude":31.82099914550781,"longitude":-89.4583969116211,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS58","iata":"","local":"MS58","name":"Tullos Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Florence","elevation_ft":300,"latitude":32.165401458740234,"longitude":-90.04399871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1229,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS59","iata":"","local":"MS59","name":"Valley of The Moon Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Hermanville","elevation_ft":125,"latitude":31.999213,"longitude":-90.839853,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS63","iata":"","local":"MS63","name":"Rye Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Smithville","elevation_ft":330,"latitude":34.054298400878906,"longitude":-88.37120056152344,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS64","iata":"","local":"MS64","name":"Vaiden Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Hernando","elevation_ft":250,"latitude":34.848342,"longitude":-89.877992,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":900,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS65","iata":"","local":"MS65","name":"Delta Flying Service Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Walls","elevation_ft":210,"latitude":34.938376,"longitude":-90.201165,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS67","iata":"","local":"MS67","name":"Gulf Coast Community Hospital Emergency Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Biloxi","elevation_ft":18,"latitude":30.390857,"longitude":-88.998821,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS69","iata":"","local":"MS69","name":"Falcon Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Star","elevation_ft":415,"latitude":32.10879898071289,"longitude":-90.04650115966797,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS70","iata":"","local":"MS70","name":"McLain-Calico Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"DeKalb","elevation_ft":560,"latitude":32.735361,"longitude":-88.925679,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":1400,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS71","iata":"","local":"MS71","name":"Slobovia Outernational Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Pocahontas","elevation_ft":250,"latitude":32.49509811401367,"longitude":-90.29290008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3540,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS72","iata":"","local":"MS72","name":"Singing River Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":16,"latitude":30.376100540161133,"longitude":-88.53109741210938,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":51,"width_ft":51,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS57","iata":"","local":"MS57","name":"Fred Netterville Lumber Company / Wilkinson Community Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Woodville","elevation_ft":120,"latitude":31.220558,"longitude":-91.24602,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS75","iata":"","local":"MS75","name":"Lewis Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Glen Allan","elevation_ft":112,"latitude":33.013999938964844,"longitude":-91.03900146484376,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS76","iata":"","local":"MS76","name":"Wade Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Calhoun City","elevation_ft":300,"latitude":33.77289962768555,"longitude":-89.24259948730469,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS77","iata":"","local":"MS77","name":"Lang Flying Service Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Inverness","elevation_ft":114,"latitude":33.3317985534668,"longitude":-90.64320373535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2950,"width_ft":130,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS78","iata":"","local":"MS78","name":"Pascagoula Refinery Pad Nr 1 Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":20,"latitude":30.32939910888672,"longitude":-88.50830078125,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS80","iata":"","local":"MS80","name":"Hasting Airpark","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Bruce","elevation_ft":275,"latitude":33.994598388671875,"longitude":-89.3125991821289,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS81","iata":"","local":"MS81","name":"Forrest General Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Hattiesburg","elevation_ft":200,"latitude":31.31920051574707,"longitude":-89.3302993774414,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"},{"id":"H2","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS84","iata":"","local":"MS84","name":"Beaman Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Petal","elevation_ft":250,"latitude":31.361556,"longitude":-89.161333,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS87","iata":"","local":"MS87","name":"Ben L. Briggs Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Pascagoula","elevation_ft":14,"latitude":30.370500564575195,"longitude":-88.55699920654297,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS89","iata":"","local":"MS89","name":"Gulfport Jail Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Gulfport","elevation_ft":50,"latitude":30.438971,"longitude":-89.056131,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS90","iata":"","local":"MS90","name":"Flowood Industrial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Flowood","elevation_ft":270,"latitude":32.315601,"longitude":-90.1436,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":750,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS91","iata":"","local":"MS91","name":"Adjutant General Office Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Jackson","elevation_ft":340,"latitude":32.324729,"longitude":-90.165911,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS88","iata":"","local":"MS88","name":"Oreck Airport","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Poplarville","elevation_ft":180,"latitude":30.77739906311035,"longitude":-89.72509765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2910,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS94","iata":"","local":"MS94","name":"Nwmrmc Heliport","category":"heliport","iso_country":"US","iso_region":"US-MS","municipality":"Clarksdale","elevation_ft":168,"latitude":34.17839813232422,"longitude":-90.5518035888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS95","iata":"","local":"MS95","name":"Dorr Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Merigold","elevation_ft":142,"latitude":33.8473014831543,"longitude":-90.72509765625,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2800,"width_ft":200,"surface":"T"},{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"},{"id":"18/36","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MS96","iata":"","local":"MS96","name":"Barrett Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Philadelphia","elevation_ft":435,"latitude":32.756187,"longitude":-89.094851,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":4000,"width_ft":70,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MSSS","iata":"ILS","local":"","name":"Ilopango International Airport","category":"medium_airport","iso_country":"SV","iso_region":"SV-SS","municipality":"San Salvador","elevation_ft":2027,"latitude":13.6995,"longitude":-89.119904,"has_tower":true,"has_beacon":false,"runways":[{"id":"15/33","length_ft":7349,"width_ft":148,"surface":"H"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT05","iata":"","local":"MT05","name":"Laird Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ekalaka","elevation_ft":3462,"latitude":45.66809844970703,"longitude":-104.7030029296875,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2600,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MS93","iata":"","local":"MS93","name":"Hooper Skylark Field","category":"small_airport","iso_country":"US","iso_region":"US-MS","municipality":"Mc Neil","elevation_ft":150,"latitude":30.726600646972656,"longitude":-89.73169708251953,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4100,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT03","iata":"","local":"MT03","name":"Lakeside Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lakeside","elevation_ft":3440,"latitude":47.993408,"longitude":-114.224306,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3376,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT10","iata":"","local":"MT10","name":"Riverside Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2930,"latitude":48.215514,"longitude":-114.298047,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT13","iata":"","local":"","name":"White Sulphur Springs Ranger Station Heliport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"White Sulphur Springs","elevation_ft":5160,"latitude":46.5513,"longitude":-110.913001,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1807,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT16","iata":"","local":"","name":"Buffalo Trail Ranch Strip","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Ovando","elevation_ft":3906,"latitude":47.013802,"longitude":-113.282997,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT17","iata":"","local":"","name":"Wurtz Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Polebridge","elevation_ft":3800,"latitude":48.904999,"longitude":-114.382004,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT21","iata":"","local":"","name":"Flying Arrow Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Butte","elevation_ft":5950,"latitude":45.9016,"longitude":-112.549004,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3600,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT22","iata":"","local":"","name":"Tezak's-Colterville-Spur Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Sheridan","elevation_ft":5000,"latitude":45.399899,"longitude":-112.167,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2135,"width_ft":65,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT23","iata":"","local":"MT23","name":"St Patrick Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Missoula","elevation_ft":3282,"latitude":46.872100830078125,"longitude":-114.0009994506836,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT24","iata":"","local":"","name":"Beacon Star Antique Airfield","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Moore","elevation_ft":4320,"latitude":46.972198,"longitude":-109.613998,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2006,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT14","iata":"","local":"MT14","name":"Jerry Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Wise River","elevation_ft":5940,"latitude":45.82350158691406,"longitude":-112.88600158691406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT15","iata":"","local":"MT15","name":"Fort Harrison Army Airfield","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":4050,"latitude":46.624651,"longitude":-112.110927,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2150,"width_ft":100,"surface":"T"},{"id":"10/28","length_ft":1840,"width_ft":97,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT19","iata":"","local":"MT19","name":"Hoversland Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ronan","elevation_ft":3330,"latitude":47.591,"longitude":-114.052002,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2300,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT25","iata":"","local":"MT25","name":"St Vincent Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3300,"latitude":45.78329849243164,"longitude":-108.5019989013672,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT26","iata":"","local":"","name":"Ranch Strip","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Great Falls","elevation_ft":3355,"latitude":47.470501,"longitude":-111.237,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1556,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT27","iata":"","local":"MT27","name":"Columbus Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Great Falls","elevation_ft":3418,"latitude":47.488051,"longitude":-111.296879,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT28","iata":"","local":"MT28","name":"Kalispell Regional Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2975,"latitude":48.213307,"longitude":-114.324009,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT31","iata":"","local":"MT31","name":"Central Montana Hospital and Nursing Home Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Lewistown","elevation_ft":4200,"latitude":47.05799865722656,"longitude":-109.44000244140624,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":75,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT34","iata":"","local":"","name":"Ruff Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Custer","elevation_ft":2740,"latitude":46.133319,"longitude":-107.550631,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1033,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT35","iata":"","local":"MT35","name":"St Peters Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":4115,"latitude":46.5817,"longitude":-111.99608,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT36","iata":"","local":"","name":"Cottontail Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Melville","elevation_ft":5340,"latitude":46.132198,"longitude":-110.046997,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1852,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT32","iata":"","local":"MT32","name":"Ckye Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Stevensville","elevation_ft":3600,"latitude":46.53879928588867,"longitude":-114.04000091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"NW/SE","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT30","iata":"","local":"MT30","name":"Trapper Creek Strip","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Darby","elevation_ft":4040,"latitude":45.939855,"longitude":-114.136899,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1470,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT37","iata":"","local":"MT37","name":"Sanders Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2910,"latitude":48.12435,"longitude":-114.240711,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT44","iata":"","local":"MT44","name":"Missoula Unit Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Missoula","elevation_ft":3145,"latitude":46.855499267578125,"longitude":-114.05899810791016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":20,"width_ft":20,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT46","iata":"","local":"","name":"Lakeview Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Lima","elevation_ft":6630,"latitude":44.619432,"longitude":-111.798163,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1800,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT49","iata":"","local":"","name":"Ford's South Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Lolo","elevation_ft":3200,"latitude":46.781097,"longitude":-114.089593,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":4809,"width_ft":87,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT45","iata":"","local":"MT45","name":"Castleberry Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ekalaka","elevation_ft":3373,"latitude":45.90890121459961,"longitude":-104.57599639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1100,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT50","iata":"","local":"MT50","name":"Lanning Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Alzada","elevation_ft":3995,"latitude":45.087799072265625,"longitude":-104.81900024414062,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT41","iata":"","local":"MT41","name":"Jefco Skypark Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Whitehall","elevation_ft":4510,"latitude":45.878299713134766,"longitude":-112.11699676513672,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3800,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT52","iata":"","local":"MT52","name":"Nine Mile Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Huson","elevation_ft":3364,"latitude":47.07770156860352,"longitude":-114.41300201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2640,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT53","iata":"","local":"MT53","name":"Carson Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":3550,"latitude":48.09469985961914,"longitude":-114.85199737548828,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3650,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT48","iata":"","local":"MT48","name":"Flying Y Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Livingston","elevation_ft":4857,"latitude":45.42629,"longitude":-110.656532,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":5614,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT43","iata":"","local":"MT43","name":"Klies Air Strip","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Basin","elevation_ft":6300,"latitude":46.34629821777344,"longitude":-112.34400177001952,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":2100,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT55","iata":"","local":"MT55","name":"Billings Clinic Helipad","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Billings","elevation_ft":3137,"latitude":45.789533,"longitude":-108.512828,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":20,"width_ft":20,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT56","iata":"","local":"","name":"Sourdough Island on Salmon Lake Heliport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Seeley Lake","elevation_ft":3980,"latitude":47.104602,"longitude":-113.411126,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2587,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT57","iata":"","local":"","name":"Libby Heliport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Libby","elevation_ft":2072,"latitude":48.392799,"longitude":-115.544998,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2515,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT59","iata":"","local":"","name":"Gardner Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Hammond","elevation_ft":3560,"latitude":45.2672,"longitude":-104.857002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":500,"width_ft":500,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT61","iata":"","local":"","name":"Red Mountain Heliport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":5550,"latitude":46.516602,"longitude":-112.200996,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1606,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT62","iata":"","local":"","name":"Ted Luark Private STOLport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Huson","elevation_ft":3500,"latitude":47.0666,"longitude":-114.484,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT64","iata":"","local":"MT64","name":"Mineral County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Superior","elevation_ft":2800,"latitude":47.18439865112305,"longitude":-114.87000274658205,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":25,"width_ft":25,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT66","iata":"","local":"","name":"Livingston Memorial Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Livingston","elevation_ft":4487,"latitude":45.649093,"longitude":-110.568579,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":2688,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT67","iata":"","local":"MT67","name":"Granite County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Philipsburg","elevation_ft":5280,"latitude":46.32989883422852,"longitude":-113.29499816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT65","iata":"","local":"MT65","name":"Smithfield Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Lewistown","elevation_ft":4370,"latitude":47.116515,"longitude":-109.382105,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2646,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT54","iata":"","local":"MT54","name":"Weaver Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2929,"latitude":48.243900299072266,"longitude":-114.24400329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT70","iata":"","local":"MT70","name":"Benefis Healthcare Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Great Falls","elevation_ft":3459,"latitude":47.49184,"longitude":-111.25983,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT78","iata":"","local":"MT78","name":"Clark Fork Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Plains","elevation_ft":2462,"latitude":47.468299865722656,"longitude":-114.88899993896484,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":28,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT74","iata":"","local":"MT74","name":"Sikorski Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Ekalaka","elevation_ft":3330,"latitude":46.10689926147461,"longitude":-104.41500091552734,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":4000,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT81","iata":"","local":"","name":"Thompson Field","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Belgrade","elevation_ft":4400,"latitude":45.802737,"longitude":-111.138969,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2138,"width_ft":25,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT82","iata":"","local":"","name":"Baxter Strip","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Harlowton","elevation_ft":4520,"latitude":46.3083,"longitude":-109.872002,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1823,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT69","iata":"","local":"MT69","name":"Littlebear Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Thompson Falls","elevation_ft":2579,"latitude":47.727724,"longitude":-115.464614,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":2646,"width_ft":50,"surface":"D"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT80","iata":"","local":"MT80","name":"Vine Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Wolf Point","elevation_ft":2075,"latitude":48.04309844970703,"longitude":-105.60900115966795,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT83","iata":"","local":"MT83","name":"Ten Mile Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":4294,"latitude":46.571153,"longitude":-112.180072,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT86","iata":"","local":"MT86","name":"Bar E Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Helena","elevation_ft":3875,"latitude":47.164355,"longitude":-112.113197,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT72","iata":"","local":"MT72","name":"Hedditch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Victor","elevation_ft":3663,"latitude":46.346001,"longitude":-114.176003,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":3000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT71","iata":"","local":"MT71","name":"Edsall Field","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Bozeman","elevation_ft":4659,"latitude":45.724098205566406,"longitude":-111.04299926757812,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT89","iata":"","local":"","name":"Foster Ranches Airport","category":"closed","iso_country":"US","iso_region":"US-MT","municipality":"Livingston","elevation_ft":4680,"latitude":45.7999,"longitude":-110.533997,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":1900,"width_ft":28,"surface":"A"},{"id":"H1","length_ft":25,"width_ft":15,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT99","iata":"","local":"MT99","name":"Ccmh Heliport","category":"heliport","iso_country":"US","iso_region":"US-MT","municipality":"Red Lodge","elevation_ft":5555,"latitude":45.17770004272461,"longitude":-109.25399780273438,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MT94","iata":"","local":"MT94","name":"Ousel Falls Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Big Sky","elevation_ft":6600,"latitude":45.24660110473633,"longitude":-111.3290023803711,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":900,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU00","iata":"","local":"MU00","name":"Samuel L. Clemens Memorial Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Paris","elevation_ft":730,"latitude":39.44449996948242,"longitude":-91.95179748535156,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU01","iata":"","local":"MU01","name":"Dogwood Canyon Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Blue Eye","elevation_ft":1240,"latitude":36.49919891357422,"longitude":-93.45850372314452,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU02","iata":"","local":"MU02","name":"C.E.F. Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Warrenton","elevation_ft":638,"latitude":38.80979919433594,"longitude":-91.10350036621094,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU03","iata":"","local":"","name":"Leo's Angus Ranch Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Dayton","elevation_ft":900,"latitude":38.480001,"longitude":-94.197403,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1720,"width_ft":148,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU05","iata":"","local":"MU05","name":"Arch Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":500,"latitude":38.61840057373047,"longitude":-90.21730041503906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU04","iata":"","local":"MU04","name":"Broadwater Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Malden","elevation_ft":280,"latitude":36.58980178833008,"longitude":-89.92009735107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":4000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT88","iata":"","local":"MT88","name":"Campbell Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Marion","elevation_ft":3360,"latitude":48.00439834594727,"longitude":-114.9990005493164,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MT95","iata":"","local":"MT95","name":"Sky Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MT","municipality":"Kalispell","elevation_ft":2905,"latitude":48.116901,"longitude":-114.186079,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":5000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU06","iata":"","local":"","name":"V.A. Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":550,"latitude":38.6423,"longitude":-90.230698,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU08","iata":"","local":"MU08","name":"Lee's Summit Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Lee's Summit","elevation_ft":1000,"latitude":38.92219924926758,"longitude":-94.40380096435548,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU10","iata":"","local":"MU10","name":"Southeast Mo Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Cape Girardeau","elevation_ft":450,"latitude":37.31060028076172,"longitude":-89.54060363769531,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":171,"width_ft":63,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU13","iata":"","local":"","name":"Bakers Landing Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Billings","elevation_ft":1340,"latitude":37.059799,"longitude":-93.600998,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1590,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU20","iata":"","local":"MU20","name":"Robbins Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Odessa","elevation_ft":910,"latitude":38.94559860229492,"longitude":-93.9646987915039,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2400,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU15","iata":"","local":"MU15","name":"Madison Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Fredericktown","elevation_ft":875,"latitude":37.55559921264648,"longitude":-90.3040008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU17","iata":"","local":"MU17","name":"Ray County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Richmond","elevation_ft":827,"latitude":39.263369,"longitude":-93.95705,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU21","iata":"","local":"MU21","name":"Miller Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Bay","elevation_ft":630,"latitude":38.52370071411133,"longitude":-91.5177001953125,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":1800,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU09","iata":"","local":"MU09","name":"Hester Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Burlington Junction","elevation_ft":1000,"latitude":40.466833,"longitude":-95.023426,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU18","iata":"","local":"MU18","name":"Stark Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Warrenton","elevation_ft":840,"latitude":38.78103,"longitude":-91.16451,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1900,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU11","iata":"","local":"MU11","name":"Eagle's Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Climax Springs","elevation_ft":822,"latitude":38.220886,"longitude":-93.0127,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU23","iata":"","local":"MU23","name":"White Cloud Flying Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":600,"latitude":39.030736,"longitude":-92.393303,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU28","iata":"","local":"","name":"Fabick Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Fenton","elevation_ft":434,"latitude":38.540298,"longitude":-90.441803,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU29","iata":"","local":"MU29","name":"Three Rivers Healthcare Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Poplar Bluff","elevation_ft":350,"latitude":36.77399826049805,"longitude":-90.43190002441406,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU30","iata":"","local":"MU30","name":"Progress West Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"O'Fallon","elevation_ft":561,"latitude":38.716381,"longitude":-90.699275,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":80,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU31","iata":"","local":"","name":"Fostaire Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":575,"latitude":38.625,"longitude":-90.183403,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1140,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU32","iata":"","local":"MU32","name":"Sugar Branch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":700,"latitude":38.951575,"longitude":-92.447923,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1500,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU36","iata":"","local":"MU36","name":"Eagle's Roost Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Bagnel","elevation_ft":729,"latitude":38.185001373291016,"longitude":-92.6959991455078,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":65,"width_ft":65,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU37","iata":"","local":"MU37","name":"University Hospitals & Clinics Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":730,"latitude":38.937767,"longitude":-92.327978,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":65,"width_ft":30,"surface":"C"},{"id":"H2","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU26","iata":"","local":"MU26","name":"Robinson Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Belton","elevation_ft":1080,"latitude":38.77083,"longitude":-94.559133,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2260,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU27","iata":"","local":"MU27","name":"Woodfield Airpark Inc Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lockwood","elevation_ft":1050,"latitude":37.46810150146485,"longitude":-93.9293975830078,"has_tower":false,"has_beacon":false,"runways":[{"id":"E/W","length_ft":2600,"width_ft":120,"surface":"T"},{"id":"NE/SW","length_ft":1700,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU24","iata":"","local":"MU24","name":"Someday Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Cedarcreek","elevation_ft":812,"latitude":36.57170104980469,"longitude":-93.03679656982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU35","iata":"","local":"MU35","name":"Tallen Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Arkoe","elevation_ft":1123,"latitude":40.26750183105469,"longitude":-94.7865982055664,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU39","iata":"","local":"MU39","name":"Van's Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1390,"latitude":37.22090148925781,"longitude":-93.13849639892578,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":382,"width_ft":303,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU42","iata":"","local":"","name":"Strutman Field","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Wentzville","elevation_ft":620,"latitude":38.7528,"longitude":-90.787102,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU44","iata":"","local":"MU44","name":"Texas County Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Houston","elevation_ft":1228,"latitude":37.3170013428,"longitude":-91.9615020752,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU45","iata":"","local":"MU45","name":"Missouri Delta Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Sikeston","elevation_ft":328,"latitude":36.890828,"longitude":-89.581616,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU46","iata":"","local":"","name":"St Louis Children's Hospital Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":230,"latitude":38.634201,"longitude":-90.256798,"has_tower":false,"has_beacon":false,"runways":[{"id":"15/33","length_ft":3200,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU47","iata":"","local":"MU47","name":"Nemo Coal County Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Cairo","elevation_ft":820,"latitude":39.500301361083984,"longitude":-92.51629638671876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU49","iata":"","local":"MU49","name":"Riley Brancus Ranch Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Huntsville","elevation_ft":820,"latitude":39.55390167236328,"longitude":-92.56739807128906,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU50","iata":"","local":"MU50","name":"Riley House Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Moberly","elevation_ft":840,"latitude":39.41249847412109,"longitude":-92.46209716796876,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU52","iata":"","local":"MU52","name":"Cardinal Glennon Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"St Louis","elevation_ft":450,"latitude":38.625099182128906,"longitude":-90.24259948730467,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU53","iata":"","local":"MU53","name":"Twin Rivers Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kennett","elevation_ft":262,"latitude":36.23590087890625,"longitude":-90.04090118408203,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU41","iata":"","local":"MU41","name":"Ingram Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Purdy","elevation_ft":1485,"latitude":36.795199,"longitude":-93.899517,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":1050,"width_ft":50,"surface":"T"},{"id":"08/26","length_ft":1280,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU54","iata":"","local":"MU54","name":"General John J Pershing Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Brookfield","elevation_ft":780,"latitude":39.7750015259,"longitude":-93.06739807130002,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU58","iata":"","local":"MU58","name":"Va Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":941,"latitude":39.06420135498047,"longitude":-94.52549743652344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU59","iata":"","local":"MU59","name":"Lester E. Cox Medical Center North Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Springfield","elevation_ft":1325,"latitude":37.225275,"longitude":-93.290931,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":35,"width_ft":35,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU60","iata":"","local":"MU60","name":"Western Missouri Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Warrensburg","elevation_ft":850,"latitude":38.766831,"longitude":-93.721842,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU61","iata":"","local":"MU61","name":"Research Belton Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Belton","elevation_ft":1070,"latitude":38.816645,"longitude":-94.503593,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU64","iata":"","local":"MU64","name":"Capital Region Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Jefferson City","elevation_ft":850,"latitude":38.565851,"longitude":-92.182465,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU62","iata":"","local":"MU62","name":"Hilltop Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Drexel","elevation_ft":1000,"latitude":38.56330108642578,"longitude":-94.59110260009766,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU66","iata":"","local":"MU66","name":"Winfield Manor Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Winfield","elevation_ft":732,"latitude":39.017799377441406,"longitude":-90.81790161132812,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU67","iata":"","local":"MU67","name":"Dst Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kansas City","elevation_ft":722,"latitude":39.012001037597656,"longitude":-94.510498046875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU68","iata":"","local":"MU68","name":"Eu-Wish Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Hermann","elevation_ft":920,"latitude":38.66889953613281,"longitude":-91.53600311279295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU63","iata":"","local":"MU63","name":"Blumenstetter Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Elkland","elevation_ft":1327,"latitude":37.435001373291016,"longitude":-93.06680297851562,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU75","iata":"","local":"MU75","name":"SSM Health St Mary's Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Jefferson City","elevation_ft":757,"latitude":38.558725,"longitude":-92.220331,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU76","iata":"","local":"MU76","name":"Fisher Delta Research Center Lee Farm Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Portageville","elevation_ft":284,"latitude":36.395875,"longitude":-89.613757,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU77","iata":"","local":"MU77","name":"Aero Britton Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Fayette","elevation_ft":820,"latitude":39.1292,"longitude":-92.730698,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU79","iata":"","local":"MU79","name":"Delta Center Heliport #1","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Portageville","elevation_ft":284,"latitude":36.416042,"longitude":-89.700885,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU84","iata":"","local":"MU84","name":"Michael Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Lone Jack","elevation_ft":1050,"latitude":38.89950180053711,"longitude":-94.22940063476562,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1320,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU89","iata":"","local":"MU89","name":"Woodland Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Troy","elevation_ft":625,"latitude":38.911999,"longitude":-91.035698,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1750,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU90","iata":"","local":"MU90","name":"Falcon Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Lees Summit","elevation_ft":971,"latitude":38.95700073242188,"longitude":-94.37660217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":80,"width_ft":70,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU91","iata":"","local":"MU91","name":"Lake Regional Health System Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Osage Beach","elevation_ft":818,"latitude":38.120574,"longitude":-92.681716,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"},{"id":"H2","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU92","iata":"","local":"MU92","name":"Northeast Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Kirksville","elevation_ft":975,"latitude":40.192068,"longitude":-92.590595,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU78","iata":"","local":"MU78","name":"Taylor Field","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Waynesville","elevation_ft":1022,"latitude":37.847964,"longitude":-92.188933,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU70","iata":"","local":"MU70","name":"Skyview Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Ozark","elevation_ft":1360,"latitude":36.99509811401367,"longitude":-93.13880157470705,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2100,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MU94","iata":"","local":"MU94","name":"Galmey Heliport","category":"heliport","iso_country":"US","iso_region":"US-MO","municipality":"Wheatland","elevation_ft":968,"latitude":37.893236,"longitude":-93.36212,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU96","iata":"","local":"","name":"Refueling Pad Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Columbia","elevation_ft":750,"latitude":38.934799,"longitude":-92.326302,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU97","iata":"","local":"","name":"Platte Valley Airport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Platte City","elevation_ft":920,"latitude":39.365731,"longitude":-94.758173,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":2925,"width_ft":40,"surface":"A"},{"id":"13/31","length_ft":3100,"width_ft":125,"surface":"T"},{"id":"18/36","length_ft":2250,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU99","iata":"","local":"","name":"Fabick-Colmarile Heliport","category":"closed","iso_country":"US","iso_region":"US-MO","municipality":"Fenton","elevation_ft":530,"latitude":38.525002,"longitude":-90.453903,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":1523,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MU98","iata":"","local":"MU98","name":"Eagles Nest Airport","category":"small_airport","iso_country":"US","iso_region":"US-MO","municipality":"Eagle Rock","elevation_ft":1000,"latitude":36.5180556,"longitude":-93.6836111,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":3111,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY07","iata":"","local":"MY07","name":"Nord Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wolverton","elevation_ft":948,"latitude":46.58330154418945,"longitude":-96.60649871826172,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY12","iata":"","local":"MY12","name":"Dykstra Acreage Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Trosky","elevation_ft":1690,"latitude":43.88079833984375,"longitude":-96.25309753417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY20","iata":"","local":"MY20","name":"Prudential Helistop","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Plymouth","elevation_ft":956,"latitude":45.06389999389648,"longitude":-93.44860076904295,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY10","iata":"","local":"MY10","name":"Deters Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Spring Grove","elevation_ft":1220,"latitude":43.56110000610352,"longitude":-91.68150329589844,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1800,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY15","iata":"","local":"MY15","name":"Kastanek Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Pierz","elevation_ft":1320,"latitude":45.9557991027832,"longitude":-93.9894027709961,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY01","iata":"","local":"MY01","name":"Roan Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Warren","elevation_ft":860,"latitude":48.14580154418945,"longitude":-96.75260162353516,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY00","iata":"","local":"MY00","name":"Sieg's Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Truman","elevation_ft":1060,"latitude":43.89410018920898,"longitude":-94.493896484375,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":2200,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY21","iata":"","local":"MY21","name":"Kollar's Shoreview Marine Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Shoreview","elevation_ft":886,"latitude":45.03329849243164,"longitude":-93.1251983642578,"has_tower":false,"has_beacon":false,"runways":[{"id":"NE/SW","length_ft":7000,"width_ft":0,"surface":"W"},{"id":"NNE/SSW","length_ft":6500,"width_ft":0,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY26","iata":"","local":"MY26","name":"Minnesota Valley Health Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Le Sueur","elevation_ft":839,"latitude":44.45330047607422,"longitude":-93.91570281982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY27","iata":"","local":"MY27","name":"Essentia Health St Mary Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Detroit Lakes","elevation_ft":1371,"latitude":46.814654,"longitude":-95.845134,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY29","iata":"","local":"MY29","name":"Kaiser's Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lake Park","elevation_ft":1400,"latitude":46.79690170288086,"longitude":-96.09960174560548,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY33","iata":"","local":"MY33","name":"Rosacker's Nr 1 Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"New Brighton","elevation_ft":865,"latitude":45.07690048217773,"longitude":-93.20439910888672,"has_tower":false,"has_beacon":false,"runways":[{"id":"14W/32W","length_ft":3500,"width_ft":200,"surface":"W"},{"id":"17W/35W","length_ft":3500,"width_ft":200,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY38","iata":"","local":"MY38","name":"Irons Point Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Tower","elevation_ft":1358,"latitude":47.843299865722656,"longitude":-92.35070037841795,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":1000,"surface":"W"},{"id":"NW/SE","length_ft":4700,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY44","iata":"","local":"MY44","name":"Rice Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Willmar","elevation_ft":1179,"latitude":45.12009811401367,"longitude":-95.04660034179688,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"-"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY52","iata":"","local":"","name":"Turkey Track Airport","category":"closed","iso_country":"US","iso_region":"US-MN","municipality":"Coates","elevation_ft":923,"latitude":44.718601,"longitude":-93.044098,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY37","iata":"","local":"MY37","name":"Eyota Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Eyota","elevation_ft":1285,"latitude":43.981803,"longitude":-92.245942,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY50","iata":"","local":"MY50","name":"Frontenac Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Lake City","elevation_ft":793,"latitude":44.50337,"longitude":-92.364404,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY46","iata":"","local":"MY46","name":"Hay Shakers Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Nicollet","elevation_ft":995,"latitude":44.279202,"longitude":-94.213303,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY68","iata":"","local":"MY68","name":"Johnsons Aero Repair Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Wheaton","elevation_ft":1028,"latitude":45.77719879150391,"longitude":-96.3914031982422,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2200,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY80","iata":"","local":"MY80","name":"Rosenberg Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Ceylon","elevation_ft":1255,"latitude":43.52220153808594,"longitude":-94.5824966430664,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2500,"width_ft":90,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY65","iata":"","local":"MY65","name":"University of Minnesota Hospitals & Clinics Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Minneapolis","elevation_ft":890,"latitude":44.97123,"longitude":-93.23055,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY76","iata":"","local":"MY76","name":"Johnson's Sea Landing Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Tower","elevation_ft":1300,"latitude":47.856094,"longitude":-92.391675,"has_tower":false,"has_beacon":false,"runways":[{"id":"04W/22W","length_ft":5600,"width_ft":1000,"surface":"W"},{"id":"09W/27W","length_ft":9000,"width_ft":1000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY77","iata":"","local":"MY77","name":"North Memorial Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Robbinsdale","elevation_ft":930,"latitude":45.014554,"longitude":-93.320308,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":120,"width_ft":100,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY79","iata":"","local":"MY79","name":"Children's Hospital St Paul Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"St Paul","elevation_ft":785,"latitude":44.942564,"longitude":-93.107746,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":44,"width_ft":44,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY84","iata":"","local":"MY84","name":"Sioux Valley Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"New Ulm","elevation_ft":879,"latitude":44.31269836425781,"longitude":-94.47550201416016,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":45,"width_ft":45,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY59","iata":"","local":"MY59","name":"Gasper Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Euclid","elevation_ft":910,"latitude":47.9015998840332,"longitude":-96.61229705810548,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY72","iata":"","local":"MY72","name":"Isle Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Isle","elevation_ft":1271,"latitude":46.159698486328125,"longitude":-93.4613037109375,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2460,"width_ft":160,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY66","iata":"","local":"MY66","name":"North Star Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Onamia","elevation_ft":1330,"latitude":46.070499420166016,"longitude":-93.84719848632812,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":3500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY87","iata":"","local":"MY87","name":"Saint Cloud Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Saint Cloud","elevation_ft":1024,"latitude":45.574292,"longitude":-94.169348,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY91","iata":"","local":"MY91","name":"Douglas County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-MN","municipality":"Alexandria","elevation_ft":1418,"latitude":45.87360000610352,"longitude":-95.3772964477539,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":42,"width_ft":42,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY93","iata":"","local":"MY93","name":"Johnston Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Perham","elevation_ft":1370,"latitude":46.610833,"longitude":-95.704444,"has_tower":false,"has_beacon":false,"runways":[{"id":"09W/27W","length_ft":5000,"width_ft":300,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY96","iata":"","local":"MY96","name":"Bahnsen Seaplane Base","category":"seaplane_base","iso_country":"US","iso_region":"US-MN","municipality":"Faribault","elevation_ft":1004,"latitude":44.416698,"longitude":-93.330804,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":4000,"width_ft":3000,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY99","iata":"","local":"MY99","name":"Johnston Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Hawley","elevation_ft":1360,"latitude":46.85749816894531,"longitude":-96.23519897460938,"has_tower":false,"has_beacon":false,"runways":[{"id":"11/29","length_ft":3600,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MY95","iata":"","local":"MY95","name":"Swanson Field","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Crown","elevation_ft":935,"latitude":45.4463996887207,"longitude":-93.38279724121094,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MY94","iata":"","local":"MY94","name":"Country Haven Airport","category":"small_airport","iso_country":"US","iso_region":"US-MN","municipality":"Cloquet","elevation_ft":1309,"latitude":46.75249862670898,"longitude":-92.41919708251952,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1200,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAM","iata":"MHH","local":"","name":"Leonard M Thompson International Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-CO","municipality":"Marsh Harbour","elevation_ft":6,"latitude":26.510711,"longitude":-77.084262,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":6100,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAK","iata":"TZN","local":"COX","name":"Congo Town Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-SA","municipality":"Andros","elevation_ft":15,"latitude":24.158701,"longitude":-77.589798,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5321,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAF","iata":"ASD","local":"","name":"Andros Town Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-NS","municipality":"UNKNOWN","elevation_ft":5,"latitude":24.697900772094727,"longitude":-77.79560089111328,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4362,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYCI","iata":"CRI","local":"","name":"Colonel Hill Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-CK","municipality":"Colonel Hill","elevation_ft":5,"latitude":22.7456,"longitude":-74.182404,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3500,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYBS","iata":"BIM","local":"","name":"South Bimini Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-BI","municipality":"South Bimini","elevation_ft":10,"latitude":25.6998996735,"longitude":-79.2647018433,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":5391,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAN","iata":"SAQ","local":"","name":"San Andros Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-NS","municipality":"Andros Island","elevation_ft":5,"latitude":25.053800582885746,"longitude":-78.04900360107422,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":5002,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYEH","iata":"ELH","local":"","name":"North Eleuthera Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-HI","municipality":"North Eleuthera","elevation_ft":13,"latitude":25.474899292,"longitude":-76.6835021973,"has_tower":false,"has_beacon":false,"runways":[{"id":"07/25","length_ft":6019,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYCA","iata":"ATC","local":"","name":"Arthur's Town Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-CI","municipality":"Arthur's Town","elevation_ft":18,"latitude":24.6294,"longitude":-75.673797,"has_tower":false,"has_beacon":false,"runways":[{"id":"14/32","length_ft":7000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYER","iata":"RSD","local":"","name":"Rock Sound Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-SE","municipality":"Rock Sound","elevation_ft":10,"latitude":24.8950787333,"longitude":-76.1768817902,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":7213,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAP","iata":"AXP","local":"","name":"Spring Point Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-AK","municipality":"Spring Point","elevation_ft":11,"latitude":22.441799163800003,"longitude":-73.97090148930002,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":5010,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYCB","iata":"TBI","local":"","name":"New Bight Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-CI","municipality":"Cat Island","elevation_ft":5,"latitude":24.3153,"longitude":-75.452301,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4980,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYAS","iata":"","local":"","name":"Sandy Point Airport","category":"small_airport","iso_country":"BS","iso_region":"BS-SO","municipality":"Sandy Point","elevation_ft":8,"latitude":26.004698,"longitude":-77.395622,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":4500,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MZBZ","iata":"BZE","local":"","name":"Philip S. W. Goldson International Airport","category":"large_airport","iso_country":"BZ","iso_region":"BZ-BZ","municipality":"Belize City","elevation_ft":15,"latitude":17.539951,"longitude":-88.303556,"has_tower":true,"has_beacon":true,"runways":[{"id":"07/25","length_ft":9678,"width_ft":150,"surface":"H"}],"frequencies":[{"id":"ATIS","frequency_mhz":132.75},{"id":"TWR","frequency_mhz":118}],"has_metar":true,"public":true},{"icao":"NA05","iata":"","local":"NA05","name":"Kraig Farms Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Sheldon","elevation_ft":1060,"latitude":46.61220169067383,"longitude":-97.43560028076172,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"MYRP","iata":"RCY","local":"","name":"Rum Cay Airport","category":"small_airport","iso_country":"BS","iso_region":"BS-RC","municipality":"UNKNOWN","elevation_ft":15,"latitude":23.68440055847168,"longitude":-74.83619689941406,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":4470,"width_ft":100,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYMM","iata":"MYG","local":"","name":"Mayaguana Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-MG","municipality":"Abrahams Bay","elevation_ft":11,"latitude":22.379499,"longitude":-73.013494,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6700,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYSM","iata":"ZSA","local":"","name":"San Salvador Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-SS","municipality":"San Salvador","elevation_ft":24,"latitude":24.063299,"longitude":-74.524002,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":8000,"width_ft":150,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"MYES","iata":"TYM","local":"","name":"Staniel Cay Airport","category":"medium_airport","iso_country":"BS","iso_region":"BS-EX","municipality":"UNKNOWN","elevation_ft":5,"latitude":24.169099807739254,"longitude":-76.43910217285156,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":3030,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA02","iata":"","local":"NA02","name":"Saure Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Americus","elevation_ft":870,"latitude":47.704715,"longitude":-97.054703,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1770,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA33","iata":"","local":"NA33","name":"Ripplinger Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Esmond","elevation_ft":1600,"latitude":48.0010986328125,"longitude":-99.9260025024414,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2650,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA22","iata":"","local":"NA22","name":"Vernon Miller Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Rhame","elevation_ft":3102,"latitude":46.01250076293945,"longitude":-103.7959976196289,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1800,"width_ft":15,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA32","iata":"","local":"NA32","name":"Johnson Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Eldridge","elevation_ft":1548,"latitude":46.89860153198242,"longitude":-98.85870361328124,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2300,"width_ft":40,"surface":"T"},{"id":"17/35","length_ft":2400,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA17","iata":"","local":"NA17","name":"Jacob Gust Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"West Fargo","elevation_ft":895,"latitude":46.94269943237305,"longitude":-96.9290008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"N/S","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA21","iata":"","local":"NA21","name":"Thompson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Wyndmere","elevation_ft":1075,"latitude":46.22829818725586,"longitude":-97.23619842529295,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2600,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA06","iata":"","local":"NA06","name":"Bouret Ranch Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Sheyenne","elevation_ft":1505,"latitude":47.86280059814453,"longitude":-98.97260284423828,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA18","iata":"","local":"NA18","name":"Hought Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Williston","elevation_ft":2400,"latitude":48.41339874267578,"longitude":-103.83599853515624,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA49","iata":"","local":"NA49","name":"Paul Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Rugby","elevation_ft":1530,"latitude":48.41780090332031,"longitude":-100.05500030517578,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2000,"width_ft":45,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA38","iata":"","local":"NA38","name":"Sabbe Brothers Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Maddock","elevation_ft":1572,"latitude":47.95059967041016,"longitude":-99.42960357666016,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2640,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA10","iata":"","local":"NA10","name":"Anderson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Starkweather","elevation_ft":1460,"latitude":48.38059997558594,"longitude":-99.03369903564452,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA55","iata":"","local":"NA55","name":"Hager Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Barney","elevation_ft":1037,"latitude":46.2661018371582,"longitude":-97.01619720458984,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA56","iata":"","local":"NA56","name":"Moffet Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Barney","elevation_ft":1028,"latitude":46.30220031738281,"longitude":-96.9915008544922,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2790,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA84","iata":"","local":"NA84","name":"L. Seckerson Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Eldridge","elevation_ft":1740,"latitude":46.80049896240234,"longitude":-99.00509643554688,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2460,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA54","iata":"","local":"NA54","name":"Moser Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Westfield","elevation_ft":1750,"latitude":45.95500183105469,"longitude":-100.44200134277344,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1000,"width_ft":50,"surface":"T"},{"id":"17/35","length_ft":2600,"width_ft":30,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA79","iata":"","local":"NA79","name":"Philbrick Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Turtle Lake","elevation_ft":1915,"latitude":47.40420150756836,"longitude":-100.88200378417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1760,"width_ft":48,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA60","iata":"","local":"NA60","name":"Dakota Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Grandin","elevation_ft":903,"latitude":47.23500061035156,"longitude":-97.03839874267578,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2600,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA73","iata":"","local":"NA73","name":"Welstad Farms Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Upham","elevation_ft":1480,"latitude":48.56389999389648,"longitude":-101,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":2600,"width_ft":120,"surface":"T"},{"id":"13/31","length_ft":2600,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA81","iata":"","local":"NA81","name":"Central Valley Aviation Airport","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Buxton","elevation_ft":920,"latitude":47.628299713134766,"longitude":-97.08650207519533,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":16,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA65","iata":"","local":"NA65","name":"Anderson Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Hoople","elevation_ft":890,"latitude":48.53139877319336,"longitude":-97.62809753417967,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2140,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA99","iata":"","local":"NA99","name":"Bakko Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Walcott","elevation_ft":1040,"latitude":46.55049896240234,"longitude":-97.03199768066406,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":2500,"width_ft":40,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC00","iata":"","local":"NC00","name":"Moretz Riverside Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Sanford","elevation_ft":326,"latitude":35.560001373291016,"longitude":-79.193603515625,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":2000,"width_ft":24,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA98","iata":"","local":"NA98","name":"Dilse Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Scranton","elevation_ft":2878,"latitude":46.3025016784668,"longitude":-103.16999816894533,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC04","iata":"","local":"NC04","name":"Watauga County Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Boone","elevation_ft":2988,"latitude":36.19929885864258,"longitude":-81.65149688720703,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":40,"width_ft":40,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC05","iata":"","local":"NC05","name":"Bradford Field Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Huntersville","elevation_ft":649,"latitude":35.4086990356,"longitude":-80.7941970825,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3850,"width_ft":150,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC07","iata":"","local":"NC07","name":"Charles A. Cannon, Jr Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Banner Elk","elevation_ft":3000,"latitude":36.06669998168945,"longitude":-81.86669921875,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NA86","iata":"","local":"NA86","name":"Johnson Private Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Luverne","elevation_ft":1492,"latitude":47.33330154418945,"longitude":-97.9009017944336,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":4100,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NA90","iata":"","local":"NA90","name":"Circle Z Landing Strip","category":"small_airport","iso_country":"US","iso_region":"US-ND","municipality":"Underwood","elevation_ft":2000,"latitude":47.46670150756836,"longitude":-101.2229995727539,"has_tower":false,"has_beacon":false,"runways":[{"id":"08/26","length_ft":1000,"width_ft":50,"surface":"T"},{"id":"13/31","length_ft":1900,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC03","iata":"","local":"NC03","name":"Darr Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"High Point","elevation_ft":874,"latitude":35.906607,"longitude":-79.989223,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC06","iata":"","local":"NC06","name":"Elk River Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Banner Elk","elevation_ft":3468,"latitude":36.160474,"longitude":-81.894809,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":4600,"width_ft":75,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC02","iata":"","local":"NC02","name":"Boomerang Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Harris","elevation_ft":850,"latitude":35.21260070800781,"longitude":-81.86650085449219,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC11","iata":"","local":"NC11","name":"Deck Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Apex","elevation_ft":338,"latitude":35.74150085449219,"longitude":-78.92469787597656,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1950,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC17","iata":"","local":"NC17","name":"Wolf's Den Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Cedar Island","elevation_ft":10,"latitude":34.980051,"longitude":-76.302308,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2400,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC18","iata":"","local":"","name":"Brickhouse Field","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Burgaw","elevation_ft":31,"latitude":34.414101,"longitude":-77.949699,"has_tower":false,"has_beacon":false,"runways":[{"id":"12W/30W","length_ft":7300,"width_ft":500,"surface":"W"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC19","iata":"","local":"NC19","name":"Propst Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":621,"latitude":35.391035,"longitude":-80.57527,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":3400,"width_ft":50,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC20","iata":"","local":"NC20","name":"Canaan Air Base","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"New Bern","elevation_ft":33,"latitude":35.08727264,"longitude":-77.16246796,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1840,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC21","iata":"","local":"NC21","name":"Aero Plantation Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Weddington","elevation_ft":634,"latitude":34.991798400878906,"longitude":-80.74839782714844,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2400,"width_ft":60,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC08","iata":"","local":"NC08","name":"Tusquittee Landing Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hayesville","elevation_ft":2000,"latitude":35.08539962768555,"longitude":-83.73629760742188,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC09","iata":"","local":"NC09","name":"Stoneriver Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Statesville","elevation_ft":820,"latitude":35.8838996887207,"longitude":-80.77670288085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"16/34","length_ft":2000,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC15","iata":"","local":"NC15","name":"Raeford Rhyne Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Statesville","elevation_ft":1140,"latitude":35.95709991455078,"longitude":-80.97899627685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"02/20","length_ft":2500,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC22","iata":"","local":"NC22","name":"Charles Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Dunn","elevation_ft":185,"latitude":35.227500915527344,"longitude":-78.5551986694336,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":1000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC23","iata":"","local":"NC23","name":"Johnston Memorial Hospital Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Smithfield","elevation_ft":135,"latitude":35.515658,"longitude":-78.333507,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC24","iata":"","local":"NC24","name":"Delta Air Base","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Charlotte","elevation_ft":785,"latitude":35.21255,"longitude":-80.72204,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":1000,"width_ft":125,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC25","iata":"","local":"NC25","name":"Gold Hill Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Gold Hill","elevation_ft":720,"latitude":35.5089988708,"longitude":-80.3112030029,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3000,"width_ft":30,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC33","iata":"","local":"NC33","name":"Mission Hospital McDowell Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Marion","elevation_ft":1470,"latitude":35.662439,"longitude":-82.029419,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC34","iata":"","local":"NC34","name":"Miles Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Hillsborough","elevation_ft":580,"latitude":35.97891,"longitude":-79.12715,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2500,"width_ft":120,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC26","iata":"","local":"NC26","name":"Long Island Airpark","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Catawba","elevation_ft":864,"latitude":35.661718,"longitude":-80.971705,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC31","iata":"","local":"NC31","name":"Quiet Acres Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Thomasville","elevation_ft":740,"latitude":35.76490020751953,"longitude":-80.02420043945312,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":1800,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC38","iata":"","local":"NC38","name":"Propst Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Hickory","elevation_ft":1020,"latitude":35.628299713134766,"longitude":-81.375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":55,"width_ft":55,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC39","iata":"","local":"NC39","name":"Enochville Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kannapolis","elevation_ft":789,"latitude":35.52429962158203,"longitude":-80.64779663085938,"has_tower":false,"has_beacon":false,"runways":[{"id":"13/31","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC40","iata":"","local":"NC40","name":"Holeman Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Roxboro","elevation_ft":578,"latitude":36.499698638916016,"longitude":-79.11859893798828,"has_tower":false,"has_beacon":false,"runways":[{"id":"04/22","length_ft":1700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC41","iata":"","local":"NC41","name":"Hendrick Motorsports Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":686,"latitude":35.357536,"longitude":-80.705826,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":30,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC43","iata":"","local":"NC43","name":"Bear Pen Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Supply","elevation_ft":63,"latitude":34.12519836425781,"longitude":-78.33809661865234,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":6000,"width_ft":150,"surface":"T"},{"id":"18/36","length_ft":6000,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC44","iata":"","local":"NC44","name":"Barclaysville Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Angier","elevation_ft":300,"latitude":35.46689987182617,"longitude":-78.68389892578125,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC46","iata":"","local":"NC46","name":"Salisbury VA Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Salisbury","elevation_ft":710,"latitude":35.683418,"longitude":-80.490748,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC48","iata":"","local":"NC48","name":"Safe Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Wallace","elevation_ft":50,"latitude":34.75019836425781,"longitude":-78.05999755859375,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":3000,"width_ft":70,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC42","iata":"","local":"NC42","name":"Piney Ridge Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Yadkinville","elevation_ft":960,"latitude":36.07210159301758,"longitude":-80.69979858398438,"has_tower":false,"has_beacon":false,"runways":[{"id":"18/36","length_ft":1700,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC37","iata":"","local":"NC37","name":"Mountain View Aerodrome","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Reidsville","elevation_ft":800,"latitude":36.338952,"longitude":-79.823295,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":2000,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC51","iata":"","local":"NC51","name":"Halifax Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Roanoke Rapids","elevation_ft":169,"latitude":36.436798095703125,"longitude":-77.64610290527344,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC53","iata":"","local":"NC53","name":"Tusquitee Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Murphy","elevation_ft":1528,"latitude":35.07929992675781,"longitude":-84.02490234375,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":150,"width_ft":150,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC54","iata":"","local":"NC54","name":"Jackson Private Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Atlantic","elevation_ft":10,"latitude":34.878444,"longitude":-76.358328,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":3000,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC55","iata":"","local":"NC55","name":"Carowinds Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Pineville","elevation_ft":640,"latitude":35.102798,"longitude":-80.953887,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":400,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC56","iata":"","local":"NC56","name":"Deer Run Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kittrell","elevation_ft":405,"latitude":36.2047004699707,"longitude":-78.46890258789062,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":1600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC57","iata":"","local":"NC57","name":"Craven Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"New Bern","elevation_ft":6,"latitude":35.11539840698242,"longitude":-77.06379699707031,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC60","iata":"","local":"NC60","name":"Atrium Health Cabarrus Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":711,"latitude":35.435101,"longitude":-80.601382,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC59","iata":"","local":"NC59","name":"Alexander County Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Taylorsville","elevation_ft":1110,"latitude":35.85070037841797,"longitude":-81.14399719238281,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2700,"width_ft":50,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC50","iata":"","local":"NC50","name":"Skyland Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Jefferson","elevation_ft":2860,"latitude":36.460098,"longitude":-81.361504,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":1460,"width_ft":20,"surface":"A"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC58","iata":"","local":"NC58","name":"Gryder-Teague Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Taylorsville","elevation_ft":1190,"latitude":35.918656,"longitude":-81.11942,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2000,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC52","iata":"","local":"NC52","name":"Silver Creek Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Morganton","elevation_ft":1020,"latitude":35.72850036621094,"longitude":-81.72899627685547,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":3600,"width_ft":200,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC62","iata":"","local":"NC62","name":"Birds Nest Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Troy","elevation_ft":650,"latitude":35.3578987121582,"longitude":-79.8895034790039,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":115,"width_ft":115,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC64","iata":"","local":"NC64","name":"Barringer Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Kannapolis","elevation_ft":800,"latitude":35.527801513671875,"longitude":-80.69670104980469,"has_tower":false,"has_beacon":false,"runways":[{"id":"10/28","length_ft":2000,"width_ft":80,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC65","iata":"","local":"NC65","name":"Yonder Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Atkinson","elevation_ft":35,"latitude":34.559600830078125,"longitude":-78.26809692382812,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":3200,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC68","iata":"","local":"NC68","name":"Jarrett Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Hickory","elevation_ft":1150,"latitude":35.78030014038086,"longitude":-81.33280181884766,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":50,"width_ft":50,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC71","iata":"","local":"NC71","name":"E T Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Parkton","elevation_ft":187,"latitude":34.91790008544922,"longitude":-79.05249786376953,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2300,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC74","iata":"","local":"NC74","name":"Randolph Health Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Asheboro","elevation_ft":817,"latitude":35.711064,"longitude":-79.815888,"has_tower":false,"has_beacon":true,"runways":[{"id":"02/20","length_ft":3800,"width_ft":40,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC77","iata":"","local":"NC77","name":"Chalfant Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Concord","elevation_ft":587,"latitude":35.4556999206543,"longitude":-80.57559967041016,"has_tower":false,"has_beacon":false,"runways":[{"id":"01/19","length_ft":2700,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC63","iata":"","local":"NC63","name":"Robertson Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Winston Salem","elevation_ft":848,"latitude":36.135101318359375,"longitude":-80.18479919433594,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":1500,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC75","iata":"","local":"NC75","name":"Schneider Haven Airstrip","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Harmony","elevation_ft":865,"latitude":35.89830017089844,"longitude":-80.72029876708984,"has_tower":false,"has_beacon":false,"runways":[{"id":"17/35","length_ft":1200,"width_ft":60,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC67","iata":"","local":"NC67","name":"Six Oaks Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Fletcher","elevation_ft":2015,"latitude":35.467778,"longitude":-82.4525,"has_tower":false,"has_beacon":false,"runways":[{"id":"06/24","length_ft":2600,"width_ft":100,"surface":"T"}],"frequencies":[],"has_metar":false,"public":true},{"icao":"NC78","iata":"","local":"","name":"Turbeville Airport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Tabor City","elevation_ft":105,"latitude":34.210201,"longitude":-78.955299,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":60,"width_ft":60,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC81","iata":"","local":"NC81","name":"Cox Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Apex","elevation_ft":455,"latitude":35.751800537109375,"longitude":-78.85970306396484,"has_tower":false,"has_beacon":false,"runways":[{"id":"09/27","length_ft":2450,"width_ft":75,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC82","iata":"","local":"NC82","name":"Dublin Field","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"Dublin","elevation_ft":126,"latitude":34.67084,"longitude":-78.700304,"has_tower":false,"has_beacon":false,"runways":[{"id":"03/21","length_ft":2186,"width_ft":66,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC83","iata":"","local":"NC83","name":"Cape Fear Valley Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Fayetteville","elevation_ft":213,"latitude":35.03350067138672,"longitude":-78.93720245361328,"has_tower":false,"has_beacon":true,"runways":[{"id":"H1","length_ft":90,"width_ft":90,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC84","iata":"","local":"","name":"West Wind Heliport","category":"closed","iso_country":"US","iso_region":"US-NC","municipality":"Lake Junaluska","elevation_ft":2700,"latitude":35.534801,"longitude":-82.9532,"has_tower":false,"has_beacon":false,"runways":[{"id":"12/30","length_ft":3335,"width_ft":55,"surface":"T"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC85","iata":"","local":"NC85","name":"Sampson Regional Medical Center Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Clinton","elevation_ft":159,"latitude":35.00849914550781,"longitude":-78.31919860839844,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":30,"width_ft":10,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC86","iata":"","local":"NC86","name":"Rocking A Farm Airport","category":"small_airport","iso_country":"US","iso_region":"US-NC","municipality":"White Oak","elevation_ft":58,"latitude":34.73360061645508,"longitude":-78.75309753417969,"has_tower":false,"has_beacon":false,"runways":[{"id":"05/23","length_ft":3300,"width_ft":25,"surface":"A"}],"frequencies":[],"has_metar":true,"public":true},{"icao":"NC88","iata":"","local":"NC88","name":"Outer Banks Heliport","category":"heliport","iso_country":"US","iso_region":"US-NC","municipality":"Nags Head","elevation_ft":30,"latitude":35.98270034790039,"longitude":-75.65129852294922,"has_tower":false,"has_beacon":false,"runways":[{"id":"H1","length_ft":64,"width_ft":64,"surface":"C"}],"frequencies":[],"has_metar":true,"public":true}] \ No newline at end of file From d04f5d04147c69b20077e82b88e33cc57d6e633b Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Wed, 9 Apr 2025 21:15:25 -0400 Subject: [PATCH 07/20] Adding latest_metars to airport queries --- api/src/airports/model/airport.rs | 40 ++++++++++++++++++++++++++--- api/src/airports/routes.rs | 12 +++++++-- api/src/metars/model.rs | 2 ++ bruno/Airports/Get Airport.bru | 6 ++++- bruno/Airports/Get All Airports.bru | 6 ++--- 5 files changed, 56 insertions(+), 10 deletions(-) diff --git a/api/src/airports/model/airport.rs b/api/src/airports/model/airport.rs index a03f36c..98ac600 100644 --- a/api/src/airports/model/airport.rs +++ b/api/src/airports/model/airport.rs @@ -160,7 +160,7 @@ impl From for Airport { } impl Airport { - pub async fn select(icao: &str) -> Option { + pub async fn select(icao: &str, metar: bool) -> Option { let pool = db::pool(); let airport_fut = async { @@ -170,11 +170,25 @@ impl Airport { .await }; + let metar_fut = async { + if metar { + match Metar::find_all(&[icao]).await { + Ok(m) => Some(m.into_iter().nth(0)), + Err(err) => { + log::error!("{}", err); + None + } + } + } else { + None + } + }; + let runways_fut = Runway::select_all(icao); let frequencies_fut = Frequency::select_all(icao); - let (airport_result, runways_result, frequencies_result) = - tokio::join!(airport_fut, runways_fut, frequencies_fut); + let (airport_result, runways_result, frequencies_result, metar_result) = + tokio::join!(airport_fut, runways_fut, frequencies_fut, metar_fut); let airport_row: Option = match airport_result { Ok(opt) => opt, @@ -204,10 +218,19 @@ impl Airport { } }; + let metar: Option = match metar_result { + Some(m_option) => match m_option { + Some(m) => Some(m), + None => None, + }, + None => None + }; + airport_row.map(|row| { let mut airport: Airport = row.into(); airport.runways = runways; airport.frequencies = frequencies; + airport.latest_metar = metar; airport }) } @@ -262,10 +285,19 @@ impl Airport { if !airports.is_empty() { let icaos: Vec = airports.iter().map(|a| a.icao.clone()).collect(); let mut runway_map = Runway::select_all_map(icaos.clone()).await?; - let mut frequency_map = Frequency::select_all_map(icaos).await?; + let mut frequency_map = Frequency::select_all_map(icaos.clone()).await?; + let mut metar_map: HashMap = HashMap::new(); + if query.metars.unwrap_or_else(|| false) { + let icaos_list: Vec<&str> = icaos.iter().map(|x| &**x).collect(); + let metars = Metar::find_all(&icaos_list).await?; + metar_map = metars.into_iter() + .map(|metar| (metar.station_id.clone(), metar)) + .collect(); + } for airport in airports.iter_mut() { airport.runways = runway_map.remove(&airport.icao).unwrap_or_default(); airport.frequencies = frequency_map.remove(&airport.icao).unwrap_or_default(); + airport.latest_metar = metar_map.remove(&airport.icao); } } diff --git a/api/src/airports/routes.rs b/api/src/airports/routes.rs index fb73fff..61c95a7 100644 --- a/api/src/airports/routes.rs +++ b/api/src/airports/routes.rs @@ -88,8 +88,16 @@ async fn get_airports(req: HttpRequest) -> HttpResponse { } #[get("/{icao}")] -async fn get_airport(icao: web::Path) -> HttpResponse { - match Airport::select(&icao.into_inner()).await { +async fn get_airport(icao: web::Path, req: HttpRequest) -> HttpResponse { + let metar = match web::Query::::from_query(req.query_string()) { + Ok(q) => q.metars.unwrap_or_else(|| false), + Err(err) => { + log::error!("{}", err); + false + } + }; + + match Airport::select(&icao.into_inner(), metar).await { Some(airport) => HttpResponse::Ok().json(airport), None => HttpResponse::NotFound().finish(), } diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index 1cf7ac7..74dbe3c 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -981,5 +981,7 @@ SLP125 P0003 60009 T00640036 10066 21012 58033 TSNO $".to_string(); .to_string(); let metar = Metar::parse(&metar_string).unwrap(); // dbg!(&metar); + + // metar_string = "KHEF 092356Z 13009KT 10SM CLR 08/M03 A3022 RMK AO2 SLP239 6//// T00831033 10133 20078 53002 PNO $".to_string(); } } diff --git a/bruno/Airports/Get Airport.bru b/bruno/Airports/Get Airport.bru index 3a40a4b..c25954e 100644 --- a/bruno/Airports/Get Airport.bru +++ b/bruno/Airports/Get Airport.bru @@ -5,7 +5,11 @@ meta { } get { - url: {{BASE_URL}}/airports/KHEF + url: {{BASE_URL}}/airports/KHEF?metars=true body: none auth: none } + +params:query { + metars: true +} diff --git a/bruno/Airports/Get All Airports.bru b/bruno/Airports/Get All Airports.bru index 966717c..b5890bc 100644 --- a/bruno/Airports/Get All Airports.bru +++ b/bruno/Airports/Get All Airports.bru @@ -5,7 +5,7 @@ meta { } get { - url: {{BASE_URL}}/airports?page=1&limit=1000&icaos=KHEF&metarss=true + url: {{BASE_URL}}/airports?page=1&limit=1000&icaos=KHEF,KJYO,KMRB,KOKV&metars=true body: none auth: none } @@ -13,6 +13,6 @@ get { params:query { page: 1 limit: 1000 - icaos: KHEF - metarss: true + icaos: KHEF,KJYO,KMRB,KOKV + metars: true } From 9bcad27ca5fe37412e8ce5623911ab9e680fc066 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Thu, 10 Apr 2025 09:03:38 -0400 Subject: [PATCH 08/20] Updated metars with redis caching on invalid metars --- api/Cargo.lock | 293 +++++++++++++++++++++++++++- api/Cargo.toml | 1 + api/src/airports/model/airport.rs | 63 ++++-- api/src/airports/model/frequency.rs | 2 +- api/src/airports/model/runway.rs | 2 +- api/src/main.rs | 3 +- api/src/metars/model.rs | 115 +++++++---- api/src/metars/routes.rs | 2 +- bruno/Airports/Get All Airports.bru | 5 +- 9 files changed, 414 insertions(+), 72 deletions(-) diff --git a/api/Cargo.lock b/api/Cargo.lock index 5eceef0..d8a78b9 100644 --- a/api/Cargo.lock +++ b/api/Cargo.lock @@ -381,6 +381,7 @@ dependencies = [ "futures-util", "geo-types", "log", + "moka", "rand 0.9.0", "rand_chacha 0.9.0", "redis", @@ -421,6 +422,17 @@ dependencies = [ "password-hash", ] +[[package]] +name = "async-lock" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +dependencies = [ + "event-listener", + "event-listener-strategy", + "pin-project-lite", +] + [[package]] name = "async-trait" version = "0.1.87" @@ -757,6 +769,24 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + [[package]] name = "crossbeam-queue" version = "0.3.12" @@ -1001,6 +1031,16 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "event-listener-strategy" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" +dependencies = [ + "event-listener", + "pin-project-lite", +] + [[package]] name = "fastrand" version = "2.3.0" @@ -1164,6 +1204,19 @@ dependencies = [ "slab", ] +[[package]] +name = "generator" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc6bd114ceda131d3b1d665eba35788690ad37f5916457286b32ab6fd3c438dd" +dependencies = [ + "cfg-if", + "libc", + "log", + "rustversion", + "windows", +] + [[package]] name = "generic-array" version = "0.14.7" @@ -1504,7 +1557,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -1820,6 +1873,28 @@ version = "0.4.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata 0.1.10", +] + [[package]] name = "maybe-async" version = "0.2.10" @@ -1889,6 +1964,28 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "moka" +version = "0.12.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" +dependencies = [ + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "event-listener", + "futures-util", + "loom", + "parking_lot", + "portable-atomic", + "rustc_version", + "smallvec", + "tagptr", + "thiserror 1.0.69", + "uuid", +] + [[package]] name = "native-tls" version = "0.2.14" @@ -1906,6 +2003,16 @@ dependencies = [ "tempfile", ] +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + [[package]] name = "num-bigint" version = "0.4.6" @@ -2038,6 +2145,12 @@ dependencies = [ "hashbrown 0.14.5", ] +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + [[package]] name = "parking" version = "2.2.1" @@ -2317,8 +2430,17 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", - "regex-automata", - "regex-syntax", + "regex-automata 0.4.9", + "regex-syntax 0.8.5", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", ] [[package]] @@ -2329,7 +2451,7 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", - "regex-syntax", + "regex-syntax 0.8.5", ] [[package]] @@ -2338,6 +2460,12 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" +[[package]] +name = "regex-syntax" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + [[package]] name = "regex-syntax" version = "0.8.5" @@ -2584,6 +2712,12 @@ dependencies = [ "parking_lot", ] +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + [[package]] name = "scopeguard" version = "1.2.0" @@ -2700,6 +2834,15 @@ dependencies = [ "digest", ] +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + [[package]] name = "shlex" version = "1.3.0" @@ -3065,6 +3208,12 @@ dependencies = [ "libc", ] +[[package]] +name = "tagptr" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + [[package]] name = "tempfile" version = "3.18.0" @@ -3119,6 +3268,16 @@ dependencies = [ "syn", ] +[[package]] +name = "thread_local" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +dependencies = [ + "cfg-if", + "once_cell", +] + [[package]] name = "time" version = "0.3.39" @@ -3314,6 +3473,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", ] [[package]] @@ -3412,6 +3601,12 @@ dependencies = [ "serde", ] +[[package]] +name = "valuable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" + [[package]] name = "vcpkg" version = "0.2.15" @@ -3545,6 +3740,38 @@ dependencies = [ "wasite", ] +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +dependencies = [ + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows-core" version = "0.52.0" @@ -3554,6 +3781,41 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-result 0.2.0", + "windows-strings 0.1.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-implement" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-interface" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "windows-link" version = "0.1.0" @@ -3566,11 +3828,20 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" dependencies = [ - "windows-result", - "windows-strings", + "windows-result 0.3.1", + "windows-strings 0.3.1", "windows-targets 0.53.0", ] +[[package]] +name = "windows-result" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-result" version = "0.3.1" @@ -3580,6 +3851,16 @@ dependencies = [ "windows-link", ] +[[package]] +name = "windows-strings" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +dependencies = [ + "windows-result 0.2.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows-strings" version = "0.3.1" diff --git a/api/Cargo.toml b/api/Cargo.toml index 06b142c..d998357 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -34,3 +34,4 @@ rand_chacha = "0.9.0" geo-types = "0.7.15" byteorder = "1.5.0" futures = "0.3.31" +moka = { version = "0.12.10", features = ["future"] } diff --git a/api/src/airports/model/airport.rs b/api/src/airports/model/airport.rs index 98ac600..f7c3dc2 100644 --- a/api/src/airports/model/airport.rs +++ b/api/src/airports/model/airport.rs @@ -1,6 +1,8 @@ use std::collections::HashMap; use std::str::FromStr; use actix_web::web::Json; +use futures_util::try_join; +use moka::future::Cache; use serde::{Deserialize, Serialize}; use sqlx::{Execute, Postgres, QueryBuilder}; use crate::airports::model::airport_category::AirportCategory; @@ -172,7 +174,7 @@ impl Airport { let metar_fut = async { if metar { - match Metar::find_all(&[icao]).await { + match Metar::find_all(&vec![icao.to_string()]).await { Ok(m) => Some(m.into_iter().nth(0)), Err(err) => { log::error!("{}", err); @@ -223,7 +225,7 @@ impl Airport { Some(m) => Some(m), None => None, }, - None => None + None => None, }; airport_row.map(|row| { @@ -281,22 +283,49 @@ impl Airport { let airport_rows: Vec = airport_query.fetch_all(pool).await?; let mut airports: Vec = airport_rows.into_iter().map(From::from).collect(); - // Bulk update airports with runways and frequencies - if !airports.is_empty() { - let icaos: Vec = airports.iter().map(|a| a.icao.clone()).collect(); - let mut runway_map = Runway::select_all_map(icaos.clone()).await?; - let mut frequency_map = Frequency::select_all_map(icaos.clone()).await?; - let mut metar_map: HashMap = HashMap::new(); - if query.metars.unwrap_or_else(|| false) { - let icaos_list: Vec<&str> = icaos.iter().map(|x| &**x).collect(); - let metars = Metar::find_all(&icaos_list).await?; - metar_map = metars.into_iter() - .map(|metar| (metar.station_id.clone(), metar)) - .collect(); + if airports.is_empty() { + return Ok(airports); + } + + // Bulk update airport sub-fields + let icaos: Vec = airports.iter().map(|a| a.icao.clone()).collect(); + + let runway_future = Runway::select_all_map(icaos.clone()); + let frequency_future = Frequency::select_all_map(icaos.clone()); + let metar_future = if query.metars.unwrap_or(false) { + Some(Metar::find_all(&icaos)) + } else { + None + }; + + let (runway_map, frequency_map, mut metars_opt) = match metar_future { + Some(future_metars) => { + let (runway_map, frequency_map, metars) = + try_join!(runway_future, frequency_future, future_metars)?; + ( + runway_map, + frequency_map, + Some( + metars + .into_iter() + .map(|m| (m.station_id.clone(), m)) + .collect::>(), + ), + ) } - for airport in airports.iter_mut() { - airport.runways = runway_map.remove(&airport.icao).unwrap_or_default(); - airport.frequencies = frequency_map.remove(&airport.icao).unwrap_or_default(); + None => { + let (runway_map, frequency_map) = try_join!(runway_future, frequency_future)?; + (runway_map, frequency_map, None) + } + }; + + for airport in airports.iter_mut() { + airport.runways = runway_map.get(&airport.icao).cloned().unwrap_or_default(); + airport.frequencies = frequency_map + .get(&airport.icao) + .cloned() + .unwrap_or_default(); + if let Some(ref mut metar_map) = metars_opt { airport.latest_metar = metar_map.remove(&airport.icao); } } diff --git a/api/src/airports/model/frequency.rs b/api/src/airports/model/frequency.rs index 7f92d1a..ad75b90 100644 --- a/api/src/airports/model/frequency.rs +++ b/api/src/airports/model/frequency.rs @@ -7,7 +7,7 @@ use crate::error::ApiResult; const TABLE_NAME: &str = "frequencies"; -#[derive(Debug, Serialize, Deserialize)] +#[derive(Debug, Clone, Serialize, Deserialize)] pub struct Frequency { #[serde(rename = "id")] pub frequency_id: String, diff --git a/api/src/airports/model/runway.rs b/api/src/airports/model/runway.rs index 5a5e3ef..5981218 100644 --- a/api/src/airports/model/runway.rs +++ b/api/src/airports/model/runway.rs @@ -7,7 +7,7 @@ use crate::error::ApiResult; const TABLE_NAME: &str = "runways"; -#[derive(Debug, Serialize, Deserialize)] +#[derive(Debug, Clone, Serialize, Deserialize)] pub struct Runway { #[serde(rename = "id")] pub runway_id: String, diff --git a/api/src/main.rs b/api/src/main.rs index 8f1aea6..31caf3d 100644 --- a/api/src/main.rs +++ b/api/src/main.rs @@ -1,8 +1,9 @@ use std::env; use actix_cors::Cors; -use actix_web::{App, HttpServer, middleware::Logger}; +use actix_web::{App, HttpServer, middleware::Logger, web}; use dotenv::from_filename; +use moka::future::Cache; use crate::auth::hash; use crate::users::{User, ADMIN_ROLE}; diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index 74dbe3c..f0ea6fb 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -2,7 +2,10 @@ use crate::error::Error; use crate::{error::ApiResult, db}; use chrono::{DateTime, Datelike, Utc}; use std::collections::HashSet; +use moka::future::Cache; +use redis::{AsyncCommands, RedisResult}; use serde::{Deserialize, Serialize}; +use crate::db::redis_async_connection; const TABLE_NAME: &str = "metars"; @@ -195,13 +198,39 @@ impl Default for Metar { } #[derive(Serialize, Deserialize, sqlx::FromRow, Debug)] -struct MetarDb { +struct MetarRow { icao: String, observation_time: DateTime, raw_text: String, data: serde_json::Value, } +impl MetarRow { + async fn insert(&self) -> ApiResult<()> { + let pool = db::pool(); + sqlx::query(&format!( + r#" + INSERT INTO {} ( + icao, + observation_time, + raw_text, + data + ) + VALUES ($1, $2, $3, $4, $5) + "#, + TABLE_NAME, + )) + .bind(self.icao.clone()) + .bind(self.observation_time.clone()) + .bind(self.raw_text.clone()) + .bind(self.data.clone()) + .execute(pool) + .await?; + + Ok(()) + } +} + impl Metar { fn parse_multiple(metar_strings: &Vec<&str>) -> ApiResult> { let mut metars: Vec = vec![]; @@ -794,14 +823,17 @@ impl Metar { Ok(metar) } - fn get_missing_metar_icaos(db_metars: &Vec, station_icaos: &[&str]) -> Vec { + async fn get_missing_metar_icaos( + db_metars: &Vec, + station_icaos: &Vec, + ) -> Vec { let mut missing_metar_icaos: Vec = vec![]; let current_time = chrono::Local::now().naive_local().and_utc().timestamp(); let db_metars_set: HashSet<&str> = db_metars .iter() .map(|icao| icao.station_id.as_str()) .collect(); - let station_icaos_set: HashSet<&str> = station_icaos.to_owned().into_iter().collect(); + let station_icaos_set: HashSet<&str> = station_icaos.iter().map(|s| s.as_str()).collect(); for difference in db_metars_set.symmetric_difference(&station_icaos_set) { missing_metar_icaos.push(difference.to_string()); } @@ -865,14 +897,14 @@ impl Metar { Ok(metars) } - fn from_db(metar_db: MetarDb) -> ApiResult { + fn from_db(metar_db: MetarRow) -> ApiResult { let metar: Metar = serde_json::from_value(metar_db.data)?; Ok(metar) } - fn to_db(&self) -> ApiResult { + fn to_db(&self) -> ApiResult { let data = serde_json::to_value(self)?; - Ok(MetarDb { + Ok(MetarRow { icao: self.station_id.clone(), observation_time: self.observation_time, raw_text: self.raw_text.clone(), @@ -880,13 +912,13 @@ impl Metar { }) } - pub async fn find_all(icao_list: &[&str]) -> ApiResult> { + pub async fn find_all(icao_list: &Vec) -> ApiResult> { if icao_list.is_empty() { return Ok(Vec::new()); } let pool = db::pool(); - let metar_dbs: Vec = match sqlx::query_as::<_, MetarDb>(&format!( + let metar_rows: Vec = sqlx::query_as::<_, MetarRow>(&format!( r#" SELECT DISTINCT ON (icao) * FROM {} WHERE icao = ANY($1) ORDER BY icao, observation_time DESC "#, @@ -894,28 +926,34 @@ impl Metar { )) .bind(icao_list) .fetch_all(pool) - .await - { - Ok(m) => m, - Err(err) => { - return Err(Error::new( - 500, - format!("Unable to find METARs with input {:?}: {}", icao_list, err), - )); - } - }; - let mut metars: Vec = metar_dbs + .await?; + let mut metars: Vec = metar_rows .into_iter() .filter_map(|metar_db| Metar::from_db(metar_db).ok()) .collect(); + let mut conn = redis_async_connection().await?; // Check for missing metars - let missing_icao_list = Self::get_missing_metar_icaos(&metars, icao_list); + let missing_icao_list = Self::get_missing_metar_icaos(&metars, icao_list).await; if !missing_icao_list.is_empty() { log::trace!("Retrieving missing METAR data for {:?}", missing_icao_list); - let missing_icao_list: Vec<&str> = missing_icao_list.iter().map(|s| s.as_str()).collect(); - let mut missing_icao_list = Self::get_remote_metars(&missing_icao_list) + let mut updated_missing_icao_list: Vec<&str> = Vec::new(); + for icao in &missing_icao_list { + let result: RedisResult> = conn.get(icao).await; + match result { + Ok(Some(value)) => { + if value { + updated_missing_icao_list.push(icao); + } + } + Ok(None) => { + updated_missing_icao_list.push(icao); + } + Err(err) => return Err(err.into()), + } + } + let mut missing_icao_list = Self::get_remote_metars(&updated_missing_icao_list) .await .unwrap_or_else(|err| { log::warn!("Unable to get remote METAR data; {}", err); @@ -925,37 +963,28 @@ impl Metar { if missing_icao_list.len() > 0 { // Insert missing METARs for missing_metar in &missing_icao_list { + let _: RedisResult<()> = conn.set(&missing_metar.station_id, true).await; missing_metar.insert().await?; } metars.append(&mut missing_icao_list) } + + // Invalidate the still missing icaos + let still_missing_icao_list = + Self::get_missing_metar_icaos(&missing_icao_list, icao_list).await; + if !still_missing_icao_list.is_empty() { + for icao in still_missing_icao_list { + let _: RedisResult<()> = conn.set_ex(&icao, false, 3600).await; + } + } } Ok(metars) } pub async fn insert(&self) -> ApiResult<()> { - let pool = db::pool(); - let metar: MetarDb = self.to_db()?; - sqlx::query(&format!( - r#" - INSERT INTO {} ( - icao, - observation_time, - raw_text, - data - ) - VALUES ($1, $2, $3, $4) - "#, - TABLE_NAME, - )) - .bind(metar.icao) - .bind(metar.observation_time) - .bind(metar.raw_text) - .bind(metar.data) - .execute(pool) - .await?; - + let metar: MetarRow = self.to_db()?; + metar.insert().await?; Ok(()) } } diff --git a/api/src/metars/routes.rs b/api/src/metars/routes.rs index bbfb335..fbe07ab 100644 --- a/api/src/metars/routes.rs +++ b/api/src/metars/routes.rs @@ -17,7 +17,7 @@ async fn find_all(req: HttpRequest) -> HttpResponse { Some(i) => i, None => return HttpResponse::UnprocessableEntity().body("Missing icaos parameter"), }; - let icaos: Vec<&str> = icao_string.split(',').collect(); + let icaos: Vec = icao_string.split(',').map(|s| s.to_string()).collect(); let metars = match Metar::find_all(&icaos).await { Ok(a) => a, diff --git a/bruno/Airports/Get All Airports.bru b/bruno/Airports/Get All Airports.bru index b5890bc..84b428c 100644 --- a/bruno/Airports/Get All Airports.bru +++ b/bruno/Airports/Get All Airports.bru @@ -5,7 +5,7 @@ meta { } get { - url: {{BASE_URL}}/airports?page=1&limit=1000&icaos=KHEF,KJYO,KMRB,KOKV&metars=true + url: {{BASE_URL}}/airports?page=1&limit=1000&metars=true body: none auth: none } @@ -13,6 +13,7 @@ get { params:query { page: 1 limit: 1000 - icaos: KHEF,KJYO,KMRB,KOKV metars: true + ~icaos: 00AA + ~icaos: KHEF,KJYO,KMRB,KOKV } From 527e1da43bc6b600ab993891363af57896ec13ae Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Thu, 10 Apr 2025 09:12:35 -0400 Subject: [PATCH 09/20] Working on logo --- docs/logo.png | Bin 0 -> 323681 bytes ui/index.html | 2 +- ui/public/logo.png | Bin 0 -> 323681 bytes 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 docs/logo.png create mode 100644 ui/public/logo.png diff --git a/docs/logo.png b/docs/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..41e6a5799f01e6544dc7dc36ec2ae9f6b8b35d54 GIT binary patch literal 323681 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®4DrNkkzGwXc;5nbLjue6m@ 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

6@;#30+&y(#L+s|2%*Ls)q0<}mytKfHp ztK;lPh?zze04)?dAxVFCHjeU?%Sv*mzMM-}N^1s)yHDO#NjT@EV|5r%Dd&?QN*N;@ z@C1yZ+~XYffvD^W*#Xd7YqS<(Rg)*v=gRa~g;mI$61gbuHKbvcwS(;PP=u|wMMTy( zCk)cod#naFHBW%LlOrwxa@kKbIkIB#h_hkW-ZL+}=Qt6d88rk3VzAH!@NGr0Spvfb zp~#c}`iL={`C)hPVV0cPWACuKc}Kj)w{vkf;P02Bosx+`K>px-T|nQG(&P* zJH$~)k6Qk3-3c0R2!w?wL`+bKfqRTL2_OLI!uX&kjNmE)cFWx$aZC`UI70&E7~6wwbs+;(CqUV*WG>+JxRld=sZ0#+o2Q@odt$h!pmF9`Jp7h zNYrUG0v+Ft8Ur3)OY01L57Np2O!F)JgD zY1sm?x#~Ir((^#VMp)%2A*2#3(Jh;U6>Dg>aulE#D}4c2%-v~y7Ieq@lQjldi}Gg) z{iqwSGQU(KqyZxZG}s&Usj+5=Gu;T8+m~7Hus`cV3)nbS-WEe?F2m> ziPHq2NSy#3an|oXe9k5JO%)brfRM8YT|oXTh@c?k2;s=;wsPo`cLyjA^h=k66cjLkYcQfaeo=8m5R5*tux@B?>vOLqnjZB8)HVXvE(^@br zDbC-xm}Hc-Rbke!%^48jF;+L=UGTzPd{dXA)boT35@LK&?I) z46YO#q*2kHMBz0YT6=2kg+vjOXa}5eng|eOfL72XXtfMpv7dPYv~&3UCqFPnAp$9YnUP!zyKK{NCwfugLa>)Y7mUgOWp{8i+`UvP+# zc(<`A{ezJ7$a_~Xl?)2^(O)4SvUWt0#L-uD5drcy{$>2EM<$~{Igwe}hQzBu?B^P6 z~D+{GW3W zYXIY*6ZoBP{pxLQQ0>_T0;J9YQv@iIpb0>cRDQ*_Go5uiMjrpvhl{f(<_QpXd0^qj z)&f~s{|7#9wK}XyPNCLV0)nd*(>O%JE(3aM^=04doIN?LusW_}T$eR+NkW?th%lsp zJ26}U5fual8hlRZs)(#98 zun?|2ayS-V?ckaf5!$zYPT&&V0jc_MJkE4=VG4Z*>zXqgqYyX<_J=H7N30TXkA*+) z(ib{ww|AxKD2!-gM5TWe0orz^vu68QmpprBu6&|anXXm~)kQO)IlsX0Vss*-B&`DH zx`rzSH5$#>2oAuc@#7o{VfkQe!96W@`dZTYBAyz|p*@B*F6c-i5ohF92RDW%uiY&0 zn1D2L9cG9t48mjRS50GKWi@}rpwtarxa^o1M$fy1Ww)Dm$-M>Xcs;x z665B9X4QvtX&L-Z+6Xb8iO?xvv1n4Yh)!+qBeQvQ*Emo`3)vBBOX{>~|QW;KY za!=>T4W|o?c-F{)Jx+)fn1XQr3ry5lIBvYeHad8L>V#8QXKfPZbO9Vhzm1a*c1DTw z0`vn2!y#mm@4K-yjPq8bdPFX^sa0(myuV4%68FZjR@b_TD00Or(h7JB!(-o za@^B`FWBPH8C+IS_GijIp5nSJ5t>9DIQGj!zC`|96yeYW7%is=F3fX2h%4;~c(q7% zrbZhZ&eUp;z3ipVnw{P0(P(@)qLzSB5-5?QNzkhXAODOO(gdJNd8)cVeLxb3i!N9Q zy2OAOIVh8enu9VBVy(aegv{9$*I*7S^rmvqXGQWQddpw_mJ;#2ntq#7sOV? ziHmdmBD@m|p9@vXuPjeGU9=G*I5b>j?l8{tRrwlg@w@V)Mebh3f*M z2E`WIyX3y)k0o@(e65NAisPW10~CqAtiqRT88_AFN+2Y2f&zGI#A_egDJm+XE@CrJ zdft`Jnw=}s4iC(hR z+JUA(fk0Lu%6js5y#$G0<92d(1wy!2ckbX8z)LZn0z8z{o&G&`VIXi|@Stk_Phnsx z`cTyGf>VZK-;Y4a81&`x0;j{ z2PKidivhusY6V^wt)cUdt6~gdIQt+SH>bW0>_c2^uQ{-@pO1 zl?egSV08-P8Ry1aORUHx5tJvABsVpQEn*4aiz^B%9lKMbR|c-Q)7`0 z+dqH(w-f;?x9tAhm<^3P3*r-S3SexU+33IOisRft$f!K|5kMFY1h`0PEYN5nSaiOf zx+B*TC4qpMabbc30V`BmtI)M0kuXqSp%V%+asW?_^lI~1*LYBC5drdQHy9JGaO0`N zMyxk}#wG};lJP-cZ9*1e?54y(+qwLa9xixry5qEIl&X&|;JSb!07zk<1o26NUsh!F zq(0mc;0r*fa`^x>lvw@(cbPxbVw$%0q0i5G^;OQPTUMk-PDzb+r}8TX#-ph*=d{Gd zFMJhE04kTKUD~9wN6p(If~E?C6Za*jdZUna*N}uOi2-9wvw8}a2`4B?na1w{c>4DG zN9SckLSS{kDmWVeF2)t&$<&)4;UKOkFj}jifD;)-3Oe4-C7;AxCqRjCZ#A9wP@qF6QAVZj8H}hVG& z5NENRk8|CWyA=RW-RZF97nX8#Lw@15ap2Z$rE)UFRmvGE4rd%XagYVvp=fJ^T$o%8 z<;)5Ag4fG9ie)?$tZ`W;L1PDy;|QltToJZQ4*mdsS>uxt7xcod{^Kd;$#3&&e_k(6 zn8HSSbrtTL_A}UAFaSNmB!e>*Euku)CY5tnbZc}c&7kZm--<`Np*MG+v%1D&kZ zj?b0;^=sE(_<}2rKIOR=zvwle{Er(7rBbO@o32!5s^$`mRbZ~53kPrly?3|@tM05| z!r5Dk7I39F+ybBj;==bxkjMCx@pGqeZyAUYrZ~EhctTENy;yx*`~u!BG1?+y2A*Uk z|6YPBOKKjibAY(HLPjI7!aWWfR?!$^q|q*|kwE_w#4VwEBv$41r#3I(CvpO0{oi-P zIK_2VP&)KrMFSAAQU@a-a@Hm9Akd%{;DA~|;rineM*xqvT=hIqm2y1AYPD9Yolu+o zoT$;i*-B};Txq!(fHEg`4v{$NagP{9VU&j6cWflsR*fcVwI8cf`zVd`S>1(kEu0B; zV<)SJ7bz;DFv}Ax6_O z+MzWhOS+@qk3m+VDPimfOhOXaj3`W0roO4q!Z$P@s8UgPRtvStRHZaioo7E)mO6M1 z_FS`p5;;ABU%AMq%NZBWnXcSmjOyV0+KM(-D8MBHF!A9R`VHJ}y~4u`+VsTct7XDI zM}s)Sv%(RuZQ!uhJFTEyV3g&_CP5ScmHHd!vYviw{Hb*(X#GhLi8)}xLdR;r8nU(l z-`OH-V7NkkSiRT!tHeYkHh~)ef(lk2@Jvru3+!J0xTg!_j9-4?ZNpM!&%r zKEdOlK=2JfTO(aKF^^3PUskmb^%AOuT6Nx%Y2!p=?GpCG#ePrj1}wxVA1rx{NZ2d= zc@~I{lExTs!?Z>S@77=2xw(DBF!oMjexBR}_@J>U&;Wo)+^<4#EAYLL3lrP`;L)GD zeH>%DFbTT36d*@kpdg~OsMG2aMgal4;Z!TEh3f*i6H5lD4ODG>$|_Y)YWC;7Rv@-^ zAFEYjW?p@OGX@T5toLA%dg{CHjsQ$FhEKhPMuf#Nn-dgJx_;+ubs?F@A-+qG^qw|v z3RUoK#u8hSTN?Hb9K(QR0v{B%4csPFAIEGs6?5NsZ9D*K++U-~wFwkBlz1{fs~vLk z_c*= z(IUB!2Hd;NIA`r9hm1li0d4?7Ahu4qzOed?;`NI79K;xb9;?`sQb1!k0ZP082!}Ic z<2P0v6}%f8Crpgvt$S~}yCcs3ufC*%-_8D|7Lgfy$F&(4Ek=Kd?^sO;iv_r0J0JsY zXemnWN+70kxXKwo^RM9TT4MY_cb;&V3r`qNyk5p~}dMucwG5RJsuhI9+qtA#oF7$E~oA9oZ-xPF9Vy5D+W~Jnh>d z=Vbu3fze`-0vUSkg~SL8Vu!N+3G~mihvgiFpqoIvmDwu%p*#Gzrev zgaHvdPJ#K!sOUBY4q74!bM34IEO2Lm$wAZTrQl{x1TFR_7n#+bBwlT_ek^(}D0;nS zy$3}r@#1_5++&Pn0Cur;`V$C;1zhbQ+~ONRT)}8Ac~JLcA2Kmom$Ciwm}E3*&Wv$? zf$wnlfB7OPr~E(|~t7Xp3-kIz2pm%(GN zmop(weVkch5C-iLIu6&tA}j>^i_!czkiq_fyR#H#Km@3{6k{+3t!&Yp72SZHNu&(a z$pN2UK5%=^@~kXa(%E9$TEupP?a%04)><%a0_Ndc2v!RLIyI^i>y9Hv^6dqghNK-v!LY|yN%7@6pWQ&-LTSFJ7@;S2CUF;1zAb4OXo8H^o^cx)V>h?+Yf}s z2#5Q{`8@8Oj~aoxaR|iaa02A8RiX<{sx1%7yDt}!)%>s*;9dZ|bNI%YvDHX`?*Ioe z7ATR1*Gs<3uoc9xy7fvy;Z_^g;nzxlawjH}ptc8iWllWP0TXoOwyA1L|pK8keNa`py3KKIjP1 z>1^S;ha2q^mCu?kJ{!3vdavY(bqc%nr+`T`sXvjI#`tv|`>1y-x10h~uzt-T-+i$qXX z@d9uL!OMqHagVcSfpKuGOW){nM#l!i5_Z4{g`Qf7IVRU;V@v`tQS6-lBuvG6ge|DF zQ!(D_)xk-N#u(7@t0Z_^Yr!_@<1%^;XKzNu={>bJTVe?y>~TtYFu*FeE zXmY^F0TLF)N(92;YL_6A&joNua^T_H!r%tlEmL zMyX2rVpWsT8iApLb^?I_90rdVEy`*YMmi;lY7%?n8sIPYBdpQ4R~nUwjTtixVPkMK z5n2c)yG8Fh@>Gsh8b-4O$m~^**y$GS1PwAk62RivhNl)|bny2$P>j*ZbqR1v;>>hO z181|En$J;sv|YXt$G5tT0b5r$r$NvXu3>Ga=&b?U7|bvf8haA`4(B-1SnDzxo~|H3N`Ra}gy4jRCCnkV(fILG63p~>;UtiiKly70?ha>5 zR%LlLS77!Wl@Z2h5buiO#>j8*LhamJRJ#ssK z!)XzC2yV9I0*BN-YA<}Yu2An@Z^j;O3^wu)LLc_jY^%o^8(>6U&{PhoalP1Fxu6K# zUxLm?FXNQRHA&JP5XrzdoWQMkC={|0W&!yC25F@}*d4gma-p4zsX(C;zi44UV7T0< z9e~x$)09OWmEbx_j6}2bV!=!>Ubzr>`$=eB##1(<8b%zH= z@54qptHs|K1)*!jYQb{HUY@I+Gu<8yz3^ej!bogxDKwfNM@p>L3#!9LA~bvJo&Hq0q_2OR zMkJ45mg$KG?8@mpcbfe&*J7CZ)HV>pyIUYC;oppYv7 zHDQ>;fG80iHXBZQMyudR2B%Pt)^M%mxQHh#72@!WxCG7sJb{~6?+{)~u{Itz5{GK; zHc15ZWH7*JG10MlnOAKVc(F(vN@C2wFF-9zPJoQU1wGUs_u)vK8n9xl&lYT(K7mT* z{gU*NleRvarz7kH{OT1-1YD0pFrx(;%?9`*)`*2YoH_R@<;xZpqc@ZbjMt@P1$q#lupZ?&#>pIa4aZ9f-H{U`Ns~DC zV?{!L-t8L+m+i8eu~Bg#-Wx5@N=hVJ;K0r5!hnbrWikPvY6UJ#7>qaIX0&fqEzdd< zm;;WD;hQrcVdFT))23SrZ4Q^ug%f#D@u98dSv5Ah#Po}c);^3I1Wpb?IFqa+F7k2^_Q=R@bg>&ngm3mu zfQ)T+Bxnv4gQ+M80}`79{wdM7Rj-`>tWg0#Dv(e63ga%xOm=GtZQcOn$=#q^cKd>o z7$gWGxQasOY>cxmzypNgR{tz%52uS3`S?f#N;->SSE3i8YK&-RY#}BSa;DM_*WsQ8 z@QW+LPGL3pHtoM7SNl6}ah<}PLt?$0kg@!^hGD@1(2#&tJEAKy`WPQeaBQ&)M-O^Nvs-qpXa4NGCeR zpa}HXjyiOv1wh1T`CQ=SA|Gxo2iewVt=|K=aSXx^9g)_8HZ!TZ`O_ji%^N5e4Q0 z*HbG2u(}l|G2rr6S+#T32@sY(CUl&O8r9?J@@nGpfM>N5qlS#?x8l2}Ff3`C^`t=V zfLlO@Iz9v@6hcRAgTo-Xw{+I2aBIQ$I3#dU(A@p`VSb5`OS%sbO%lwEQ5mZPUz`Z+!d1rYK!FgNtVS+DdoHwDbq8!1 zfP?Pcx)lkXkrPD$`YGTjo;rvv4e%{acWuITql(rcFs>#eApj!aSf0Oza_s@gYZRiV z8aWV=7^@ImtOmN&pwN8tBemOMn--!MWsCtONF2&2VSg0U zlP6kT*te$`r6=Jr0Q4{yk+2`EIBST-KLJ%5MT(7~gC5bT=-{tFAQ__za3*0a&^Hq@ z5+Go55^w`bFES=={Sv?nC%2XkVrP_h(}(>yI3RHm1=tF}4o?Be>Xue10J8(AZS1wx zbhtt~q9pyxmb{MFy%6<*FgXYE7siZVc0@!RE&!V}+Pt+%I4Veb?MaNTT8%-%3N9Em ze4r->^jy^E^dgD7I-YQUa;g+6!U)7xT(;5+U~EDT)c6w!R?;w|VE{5DksAl6?Rc)l zBm5z%@0U72JAi=!%80#>GaI9^;m~Gm74Bw%Z&k7FKdnmSB!I=*202ynwx;N+Q zMk!le)aoj@7Ngx5B`)!Eq3H`1Bh;BNG70DXfM@-c)vM#%8!)96O8;g7C*lO#f5A8513&i*>{c3Viw4*l-7N16sZW@fY`3$eGL; zAV4Mns#;af#V7Emr^sjQJb+p`7vY@2hn>j_5wf3_5Bg7D0YVae+mr)WW}6r)@mTOw zXZy0G7l?D5C+glOQ~`%^Mg-J98-MMT7_E9Vb_WQD!zfQ2NPiZnNm!=vL1U#>q!r4% z9TaWfn>vEPUTgGvn=V+6OyK{mCSh!kkN8qBHJ&qIF7AV_aUZzGW4mqN9(0&8FN3!- z8xG(wK5||v5gEoZz<4}~$;b(eI$mn`!+qDA&2b=ZLbUN&Pb=hon;?*?QKwk@oDUmK z8n{rW)XFuL>kII3{e#h`IC&b;3IM3^ODjHlt%bWm(j;MMFTCx)>MQ<#B* z+SHU@h`$0QfNP8&UWMGLHF2HucZN%jBRj4>@Bg~na_|1wnT>OLrpK)WK7!1YtM83aRJdd* zlSzUAEZg$8^;=-hg*n)P`$-DpnsW!cAMg#itqG-WO?ZOi!QBoIuAOZ}UIjQH@y%h+ z=U`wtU$dHj+qN~kQz<3|$d#+tjHkdrNZpkl;vgCa6?Yy2j7V-}&Yt2px%4Pk-w#Rn zIboia?1*~F%CXU_NtZSy><4*p zc}i#|j$HGUbN$%qezS~wgAd~@txS}xi@yv%_#N-Tk&>p@thyG;|0aa)dR5ByCat&f zoTSddfEA7Xd-|44A2S!*V|=U zWgM=nU%%P58P)Z{6Tg4mFItQj7|JR*B-awq%t?l?(}mc2k;OP&2GDY>QhEi~L?Iomwd=Nq zD^}v6ODA#Ryd@+cGwY1&l?ay&8I>EhglKUeAlV*eFRkM^25+JKOE!iw*F$P^iQ|X1 z@72`f+eweJ%KN2$%k;7b0yhxGHmlB&_rie1LUt|>W?6-u`2)#}Uv7pH`FBRanagBz zrEy-z&2`HjfW(QPo8pE*r`ekg!n~S5ky|F8-E}=%hY;x0Q_}V=MOzJP-gcES!V7^HnRefp|z8 zHaZ{n-tAhP{ppwcCEbn+(tDa{TL2A)=&0NYIw`dOA@FmA_El z%3+;@ajfBFk3|tUno01(Aa7wZ@id{`3H?xVn6x8@m0$yuK-L4Fu4A#{o?FhGJ%pMZvdeEG0b z2|Qj_&gZ(x@4z#Qh90ZLzZ=1o5;|+Gj;!Ejwt-H;cyXZJ+vt{NoDi;e-*E#uNfZWf0mwYNI*yY`|Q=ZxU?p0w`lFR~k&tUqQt?O*M zRp7L{TZ+l7x+57aK#@!Y;mG3~PL?0Haa!p8r(@ztVDxz;RqviFiu3uMGH9W=7jqt8Pk;*;B@ut znDmQVraa6owiQolJY4DNx4>kt@={?X0Qy#bkN^II6DL@>t6aFQ&Ffw}r|&@O^+j8P zJ!t!~G?JRn)+Onbm8zuNvJyC&E9noOg-&PkO7t~P>F2K&CpMhz6BqyhAOJ~3K~$x? z$;6J21W)7oMII^n*@@X&_dJ<0hL+ef>pHOU0^N#SgXD20&?8x#7{)#qu~;Fml-4eD0~d4L<$CT}Gb)Vvu!L1xy-N^wf4$Z-Kevof_p{ z=ZWpC6Oz>VRU0IBl?t#spy=x{A6||lK1pH86s7aKP3lZf$oq-Q3H9%Z8(ZWxmHf_K z-}N-_gXi7|2pM3^ZplHSoPDjJWOZlAy7U6g3q^5DlaM&o`>k zcb75jY#%^Q+4C%ErF^c-Nff2zus1?12b8!Y%}iLUJNolhu?!ZlwgeoxF!2g68i zbuOPw1g0jdz59v(mY)B*I}kALZ>Fqq3)i!2RCcl}SePIt^h zlFx$lfvu#-S#QWwo=6%yl~Qik6(ugDg^Ha!l6MIxS2B6L6v(b8hBP{H0zo>J&v7zc zU0MbLj7#o3;KUF!t*KW4B%)A0EB}HoaS4|LhM;8=&}zN4k2b*xXju;^OAI}}ANFMs z@_TNwVShX>ZiHCkuUq4@OWIFFe*6Fb#Z`%Np{;q4+R|LmAaUAhiU`wL^EJ zl6YB#8NDT{Ux*gS>T@*cP(7}u%YeNRBGZTLz>=Deq%3LdFpRSCj)V<;>+E?B!4`nr z=~BJc_>aK-p`JP7tJZAf3*Z0!-E}RcS(iWpT$Ms1iM52stlUTBYQNk``@6GB`3L=W zl`8AyH1Y-#X*Jx`r4TxNI`M`@l~8nPmy!?r&w?Ze!(f~;`L3X0`zJ+z`LN5xw&e1Y z{SH0#C*Z6*(pE=OElqV|iqm{6W71ir$YYFk@vF+e6hbVLAO!aeO0Y!5~EN$q^1R(LiaprEx(a1r2z>~hO?qB7v z7nNZp;QPSZTq>Qzkkth=B=I}7$gPhfg;UOBW#_PU$C0q-C{NFS>#gO|oKYT7+s`=n z?-LEar<6UHVaH;nms$r0mYgB;+Wx7v_dV-_SyY2n0O3dmD4j$pauNg5RlwAMt`cu< zWRPCg;~X#piG^CXD$YKpJgd7>87;SYsdo;6uZ_&JVCBL(W0LPvfhev3C7rgzfM+*H zAE1kgUJjbX)pEsz6cuOHXS0K7K@lBNkJJdp{LJs&x`dovY`08M6e(#=I7<;)^Tq@! zxw0%}xO|83FQJsOYb4}YkU+YeH!7V9G_|akG%L(AZm|$ji8^PJW)e6<$XUA+vUDji z5<*-HAaJmlV12HBN4^mg4v(_W!`0^<^R7oQs;gT!B;UzU1L(WZ?NI2LCj;EZ|nHX5OYkcsXvT#?k z1Y8survqxvx;x>O6{$Z2&F0kcsjSwz^L=~tm#tuGmh&+9S!~cVNhg${au46;3fINy zg0&x*uQE>i)@A(@c> zO5t(Sxn^`~mpsL@@JgjlJLQvjCNZMo}m;D;(pIgpQGQYS0&6hMy5JVfGX=Y^-Z zXPGKp_T;>B$-q2az&M-!DnA1xR|{wead{l~W!PmcLj{#f-u%D;$X;1;#-&?3>uw2v zFk^0k^4tL!0D& ze*4eg;zQ7~JS(J_<*#P;b6IL>@ET|N;wIVLZ_>8vBoUC?VRx8ZGS8K-J;}f9@FY~u z20UJ2213rO0MoFxLpd*CPwrtIN?cS6W89VOSwFLNul>lcjBUoi^#!c1D0Kyu7*h1kH|+}?rWAgM5{M^rN((l3LpVd+2uy^ot)dbU1LdE^-VqR6B#|(!8d6SR>fUVQPL_1&r z6=ao3DDG^uj;Vk@k8GDuU3W%@rI~*5mQxBS$X^DC$93*Wrm6I;AXhLHL%D3@TOww! zGY0hlxdkqehshUGEPJxgZ%KeQ0~T`<4ka!t0(f;Hxv=Hb9Mz!uxo|qDGlpSB+&J#3 ztD{>kIb}hQG)}&i!s*@%bF(Lig&84-P;^%;H(w8DO~tJp2g+ z5D|z3AaNbSeVS8mdf1iz%M zLM?CAD=bHXC@2tk1=oy{a$RQuT`&W$K{744Y%tW<_8e3MOfAIB8QY2H$mud;18W7^ zku3bG0P}&&?95xL+qdv7FlfawDU>QM#T!b{o(uE_I&_w<`Z18mx$DHL7KDL20xZHA8O~Z#IpFKFhF4CLYa!P2e*hS^s$^dYaLO%m* zmwQ4F1icg%dh_>L9jc)OE^O!ypfD(<<5SnCEN^-C*7q-*UuoT4>0|CEInwEkEGsv1 zNs`HcD_|TH8G+p65>!C-35u@KyCD+W&=<3cpWPh8JBn~6<0`+Zon>7H`AMX~5fodZ z+fYBR1%hyV`@?(-O!9Ks$z99lit0$bn{M_}CFyVKC6~N3K#ACgZlJ_L$q1#ND7!`S zQAzikD+S2CMq47N@3(}8a!V|&T`)kP>;c#yC*Ma9R8U7pMqeTfANVkJYs;||x)A4Y z*0j6+Vo){{|6zN@nSBABGAgnHxwG6PUwNt!Zmu0~0pZtB7J?Hi4{U|RP=?EWZ_+?nv9(=d6= z+9N!RLq#bkB_M&#WRP;bZraWy74i=}Ddd=#wW_APTs` ze3CYkPC1U5C-BAyVoKDGs?@3`LbSt%lJ`{fFdyjyzOXJ=sIk7Z7j*py<=2aM{(YXOcNf^Vxp7N?FfDN^5ADw`deTwNBh<%S*qJJm^WdW&v+niNGJb*q}<|^ z+?3;TrxsiSU`!y;ywJRbKb0^Z3SPLBa>by!jW5j*o0}3*97DGknB!JIcnvuuic z2>=H_GC+_uwS#r#8Fz$v0EJe2huD&@nItPol9GdzV?JHJ)f|9bNIYDN)*Zv1`t1u> zP^Sl6j`b9}>Y zu|ez=O6GE`7gnT|9LLw;TDYbqNIuCy>sms4$MBHU4?9Z{mAHLQTEJ$VDgpFhYhBl9 zAx}_Ex3%Te&LQz2341tdI*28AtF2b`2Nl1jH=`P(?z!#yJqEn~{(DM!rA(|(z3=(w zL(uSZVDJ)wdww84IcISvml=`UnuL;zcZ%m!-|dm5aW=&{1~xt6)cn+7?Yu5m>kumY zx7yp>SbpU4`Cq6G3lbDsj(k0K=N^E;pgMV+u3t7U>A@a=!E7Q|uU3z^DI8#uEh)!A z^(`me5$2p;%Gr~bYNztUKkIqcjJ{MY%Eh)`!Sd3Qx;rQImjP;ht=Cx%criC<^%g&t z7?tklc==C3$4L}>9cOyj0P(9mCik(|aWw*r0?|V%THEb=*N+yObMDsI)j2j;l7_;n z9n8j~<9{aX#5MB2IdWDM-O9=>06S$XwRl4^53J%yAzI3J764auY3h^k{@vad>{;rhkjqj^_)5V( zLU51T9l1v7Y&c^rvy#|N8B#Z6A84Y7syo-`)qvMOLmk%v6{K*Ku!f7qn z+e&W>5cz99ccnpQX`M8rn55M?q_sxQyzbZW!*78xEJG*cl37k&+OIqwF8b_^Bw3N; zCD=dRS%h1q+ySzzE&OmZio_lTMl%kuE{CH5`Q?fc62ShX6&VD(gMIf(g zQLYeDabWpuB*x}g8u$8JVBj;P1CUPT;I^W<>@?8z9rts5Y00GJyzWAdONB&3GS_D6 zO3S#$CZPqGeC%sHP=|CC zw>{20$thZKem{iyBlh>;_MA}WYq_QiChI@7pq_is%y}!H#mi*cdyN&A^ z;dJ&3;z``wtlp)BKe{=50IZ$qappB~DhHd#EunNjEoKaVf#FDX%AL}eJ9{)%Hg?qu?bUr{}><<4V(&(?a&j$R9txb63U!PdAJAq>9wI)+hEo;wRwj>CQW*A*c7%R4eqxv+7=50(*TAL_wFg`+{i+~80AnxlI?3hM$& zDl0zYDYga9syYML9aHAN`;q75@*(FC7VB(f3F9LK(Ou^2nL9>)V5mVh7@x`hFrTd; z%a(EH!o_`TMIc(+<0Nnop^n4IpZZfWI7$e^utm9LD;CgtRjl>eoc)Z-x zrJ+shQ)=Yv_uig}kev~VDQL)*T>i1&!_zS_n)`GT3-h%cfLNjwPa)LyT4o*9K~$P zA*4%={J!(ZCtgc(@7C*j@o#Fu6h&+FAGVOPsS?w>iJ$C2z^# z&JsbfZ-dY15=zsOqLne%ePhB(v`inK(Pgi@y?@~EWA5iR_3TGa%d2I#bKNHo z%5%BO+$l*v!r(FtFeTgzo09e=Z;$47EgbEvAsfqfZabb9plc77T?=)PuCEj1SsNhN z%-r*X*BJ*bXKTRmme+Cz#H%5YZ0=Z6@_v%ZvYH9wOXDx4OIqiBy7^e$^HR1T0p?E{ z#MajRef3jQls8^-*P&ggi4$F|kNk{FtLUyr;Ns<`WP%Zt)yQytYO= zwH)`UF#0?Z!DIQzq<91 z$sPQT9ON3Gp?AS zZr?84#*u1r1xy>x2ssXS|LoddUYWRuLY zuWfRC@HFnk(%QR8!2?O=l?WMh4!lEAV&LHR#IM2c&|kRTq$xg-tIym}dxvnt3qP!v zCEGxI9#oET#~sQ4({n*4yKd%VVIN%h!EeIv#BeoFQ%xb@_hqmyON+*OVM#|3NNyHhg@L$oC| zl!*oN#OrdTTwa_6#^)SD+kBz+k72Vpn#^iGPWbw#^^qO zl0z7EZpNMB@=j-NLY#~POBT*dGMh2+dBBS0!N-$ua2tG-f=$x;)raq$aY6vNw;<#( zrC$kOS_9-{7vFD$n2#$1k}F)--@RJku;p@>bK-bAi*iQHU^-_6ffSsBN!TCUPicc7 z8xI+p&wo&HpLSb5_@NZ#KPR%or};JMR_aQwD8<_``0?bs;MZ z1?HyTd}9h8*hFc7csedn7$-ZSL0Ya4GS2ajvpn%xq9ex~Sw;Dg%U)lGxF4UJRHkAle$MuF)D)gd4m&eB%Lmk_`}$Uvg!F)wBd_s{tTW48DPcNKW6OJh#&FnoVnPn4)BSFtTf?&I-#H(6jpP6UuX! zd`i-B2Mid$i!RAWt$e!IMY2comr}D;mscRV*<(K;`Pwx;ztY&xfTP?UQ<6;Dl^@P9 z%)(`Y5u7W9Qg$P3ozg80@I&kL@T1V-n>??WAIgMFEF~{)9Xwo+d=bR$6d!_?Mya%N z<+Bcmk2>Yf?w$*+D!$H_yxaGLSy1dDdx)B1ffz5K8@&S?h|DeAvm0l-j zrA9z+wt@$L^2=|5xzn6Bvt~=K86fX>*pg<>QN{IhHdeBB5^ZRQTQ6&p2YI^K$>q%Z z+*?iuNB+$FVr4CIAuK=B^Jpq&x>ycaCV?>tDdkBA@k?qwvL&O*savnk%ibT5s+@(L zqAS*_)==?Q>he`wU-1#?q$01Z1Z!eTQE>I@rkYKK^SjYoVC6-f8*bcL%oGgPF!d4* z`&D<@45J;x(e

oe(PU3%m~Im&oBDl2A%8lz?V1{0=Xn${;x#r`T4$6oFKqx}{rq zJF)cud7>iIy}oi**x7?HGqMd! z>46fw2XlW5OvVZ-SXw+VQn11!AjmN>?#$y~U0E3f?CnZ4oNaKQi6!OOBs96ojxIUE zo$WalIZKgY`yKU#C>KG45GRTk212j_0QUF$DmIl4ycDm}jMgkgLck&mPo?skC zCbT6tFywZIc?kQ*WgbGCt+|*7#=KV71puMJ^QBrrP#O>`jYwK$W;Wvl7@?ArC0;|Pz$*qDtnye9NP6;U@bS3tk!9yTeEy>CnF_2<+kH^Nu(Vv zV`f5egCsq$K5#6?xn(MJ&9epr82Al6P>b1t1!PU1i@7|e`->Uj^`yZRr?N5gH~cJj z?!g%cgUI%AFEH}iT~~tab;(>39S{iUlnW2sRoR%QaOH;mOygfZk~I~HH%RsmRysaL z)>pp;mUy>vsU?gYwr+z~C77|H2GB_mSro+GiVB6E}EiYq%*6y3Bkz@XBF*%9#l_GFt~}O2&9* zNtUaS%Xg~eT5@GA5FmGCvWMNz5zMzjeX0DcV)3o7Xprh8;1xvxS3XkT2k7U*x)yI; zUU{xlUkSTJ2<7@)vMp;V`vHhAcV>{!(sj8M0eQ(uWfkDyL8q0P;j$q)ddC*zCytqV z|Ew;J4uV;~YVMBt@OJ$kv$u|KG1Ak4fnq_}?ks3wH{g1JGa`ev13$3nINlCphO=Du zpn2WeLr<{Z8ctJQ>PWeq&=^1t^B~zB@-Y%NKew&7z`B-*#f{{8L1q&t>cF`rUqC@O4|{EVqwt94U0-^7`9-arpZ$6?dryD6 z{&r;89h+f?T>y;A99Z@sFLPZi*obg6w|3AMP@hr)IAF+_1B284Q#jwp_GOkM4`TsZ zQ|B@-M+-Ybsu%+aRQOfi2k6^!9q9evu4-~mvim7J90m`|3{~gxOH6YII8UO%|wR*aR~&31gGwQU`q)PEm477-8~Ma!NSz`^^d2=c7{!v1wO@KNERI_{v_-Ndg@g z?hChv!Wh8vc33ITAuX4)yfTTB?bdCCQhE~32O*afR91oU3~Z1Lco0hv*o7rKwSmg# z_?MN<_4McC$y;C`!w!XPK30L}IyrNYz^H7tgeGL4Kp9%#aA|QY!yp4Q(F%{*tqTk{ zGGGj9Js=3z^J^9OtRxcHIZ(I(S;+P|^-1UQ_bwn{34n01i9(-MjwIpv+QVZGB1EPx z7s7Bwq40EDk25d15h9cck)&Pb@U}CNi2?8irvseU)m_aB4z@M1AiJgfLE+?KQd#~n zKr%a}vP$^6nMzf2;tD+p<#FwiceP9XnvfQNpgmaZUD{n&CmeSK!8?PvM9H}%t|Y() z6a%~u^zBF-T5b?t0#w&TZn5R|{tj1iLCCQ!gzdVcWPAzfoz11ojX%qCSkQ6F%0Xnz z$r>GR%Rx%=afiWlkPV2659UOLO;@7G0clp;a;01#CtDXLfu%Nd3oHS*AoHTE@k=ss zIQho_b+<&|lRc$0hOHu#2vd|gSB5v1bGb$tKv)_M!{Olioi-Ow*`+f!aa8r5G)E|` z?#_;^BbULu7H|iz75~C5*Z8&K`H2sOdK5W9th?u zRV~4dV{^y|XAsKZ0tk<143)?z0Vm0~J94>}TlH^$OJj69;C5m+U{@DMiy=>i~VbR zc-aL2PU8JwSVAcFrL>gt4{CRPlt2}(+G z0-^Gh7NX!3R|uY$R|>!mv)amhw`3vOOJuI}*cFQ_8>gh}9jf0ycijn1`mg_1H}H5a z=-0NzVXA7)*!nkIbr{J`$zKnoz1-FdLgn!{Cp6AU(tbcUaLoHtEB+H9Tm^&ej-zts zN+x&5gHBc*GeS z_Q{wBO%LD}R?Yh*47IbPKTRg)G>+NVSb(6VSbGV;&+_| zxq_O8jRy42?c;a@O49;K3qqh`$&5b^SS8pU?AQZDK?3;l3xT0p8za*ZY%(?Ane%Wf z%`XOs8@sh^*-O0UefS0|yG zTMVv2%6^epVzmp~C)vWceakUtZN>O;|88DxzdYDB$84DjKosv>TN~8j-&cVC=Whcf zoyU#`a*Vd(751cE0X8iY0-eIM+s^=P=3+)b4&w5u zB(tU28mtt);Jx!6mK?u(BFxLJ!n`Ia6;k)UUw-?&?AU}>651`%=+eSW2Mj2Kl)54# zcd%svHT*Pk6fS{B|y7=9a zPva~FyBy9>`2eaA&cz6Eg_!;9u_K=@EL|1C2QA02gS5+R;rC-o!aTT&B%Xi0r_bFK z(FNp0I%LL@G2Jn)Gt1_ImJ74_eq$T3L1Fe!6?o^X<}w4hzym`8H@WF}QYffXO$WXub@<&Yt{BW25U4NwbCt-C60&c&Uw9yTD)1ZLm1$C00B<X+_+ z{P|zM^7gmCxBvR%?}Pt-Agd!e-|dnAa=jd+UvIn$v90%@0o48bssH`+{{V0URtbh% RQp^AV002ovPDHLkV1i7oeY*ev literal 0 HcmV?d00001 diff --git a/ui/index.html b/ui/index.html index 6139f5a..7fe90bc 100644 --- a/ui/index.html +++ b/ui/index.html @@ -2,7 +2,7 @@ - + diff --git a/ui/public/logo.png b/ui/public/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..41e6a5799f01e6544dc7dc36ec2ae9f6b8b35d54 GIT binary patch literal 323681 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®4DrNkkzGwXc;5nbLjue6m@ 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

6@;#30+&y(#L+s|2%*Ls)q0<}mytKfHp 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 RQp^AV002ovPDHLkV1i7oeY*ev literal 0 HcmV?d00001 From 2447f525c852f451b62948a88c20f409f2383ac1 Mon Sep 17 00:00:00 2001 From: Benjamin Sherriff Date: Thu, 10 Apr 2025 09:23:56 -0400 Subject: [PATCH 10/20] Fixed image --- docs/logo.afdesign | Bin 0 -> 571663 bytes docs/logo.png | Bin 323681 -> 196486 bytes ui/index.html | 2 +- ui/public/logo.png | Bin 323681 -> 0 bytes ui/public/logo.svg | 8 ++++++++ ui/public/vite.svg | 1 - 6 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 docs/logo.afdesign delete mode 100644 ui/public/logo.png create mode 100644 ui/public/logo.svg delete mode 100644 ui/public/vite.svg diff --git a/docs/logo.afdesign b/docs/logo.afdesign new file mode 100644 index 0000000000000000000000000000000000000000..8576717d101fd4d66085272e430549f1edc243a9 GIT binary patch literal 571663 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�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 z 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≤h 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¬MfS!^s_~%3?ZpaG02uKU%E3 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 x&K-e~EAH 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®4DrNkkzGwXc;5nbLjue6m@ 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

6@;#30+&y(#L+s|2%*Ls)q0<}mytKfHp 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 RQp^AV002ovPDHLkV1i7oeY*ev diff --git a/ui/index.html b/ui/index.html index 7fe90bc..9be3bce 100644 --- a/ui/index.html +++ b/ui/index.html @@ -2,7 +2,7 @@ - + diff --git a/ui/public/logo.png b/ui/public/logo.png deleted file mode 100644 index 41e6a5799f01e6544dc7dc36ec2ae9f6b8b35d54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 323681 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®4DrNkkzGwXc;5nbLjue6m@ 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

6@;#30+&y(#L+s|2%*Ls)q0<}mytKfHp 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 RQp^AV002ovPDHLkV1i7oeY*ev diff --git a/ui/public/logo.svg b/ui/public/logo.svg new file mode 100644 index 0000000..a066734 --- /dev/null +++ b/ui/public/logo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/ui/public/vite.svg b/ui/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/ui/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From 0f8edc192b9c9edc0558e5fbf2ada13e8f3757f9 Mon Sep 17 00:00:00 2001 From: Benjamin Sherriff Date: Thu, 10 Apr 2025 09:33:34 -0400 Subject: [PATCH 11/20] Removed extra space around svg --- ui/public/logo.svg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/public/logo.svg b/ui/public/logo.svg index a066734..5c983ec 100644 --- a/ui/public/logo.svg +++ b/ui/public/logo.svg @@ -1,7 +1,7 @@ - - + + From 05c49dee4c057fe31b7dfb2c546c208d368af962 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Thu, 10 Apr 2025 18:08:06 -0400 Subject: [PATCH 12/20] Added airport data to map --- api/src/airports/model/airport.rs | 109 ++++++++++++++++++++- api/src/auth/routes.rs | 60 ++++++++++-- api/src/error.rs | 6 ++ api/src/main.rs | 5 + api/src/metars/model.rs | 2 +- api/src/users/model.rs | 80 +++++++++++++-- bruno/Users/Change Password.bru | 20 ++++ bruno/Users/Create API Key.bru | 23 ----- bruno/Users/Login.bru | 2 +- bruno/Users/Logout.bru | 2 +- bruno/Users/Register.bru | 2 +- ui/src/App.css | 20 ++-- ui/src/App.tsx | 36 ++++--- ui/src/components/AirportLayer.tsx | 104 ++++++++++++++++++++ ui/src/components/Header/Header.module.css | 1 - ui/src/components/Header/index.tsx | 11 ++- ui/src/lib/airport.ts | 40 ++++++++ ui/src/lib/airport.types.ts | 93 ++++++++++++++++++ ui/src/lib/index.ts | 72 ++++++++++++++ ui/src/lib/metar.types.ts | 43 ++++++++ 20 files changed, 653 insertions(+), 78 deletions(-) create mode 100644 bruno/Users/Change Password.bru delete mode 100644 bruno/Users/Create API Key.bru create mode 100644 ui/src/components/AirportLayer.tsx create mode 100644 ui/src/lib/airport.ts create mode 100644 ui/src/lib/airport.types.ts create mode 100644 ui/src/lib/index.ts create mode 100644 ui/src/lib/metar.types.ts diff --git a/api/src/airports/model/airport.rs b/api/src/airports/model/airport.rs index f7c3dc2..e974ee4 100644 --- a/api/src/airports/model/airport.rs +++ b/api/src/airports/model/airport.rs @@ -46,11 +46,12 @@ pub struct AirportQuery { pub icaos: Option, pub iatas: Option, pub locals: Option, - pub names: Option, + pub name: Option, pub categories: Option, pub iso_countries: Option, pub iso_regions: Option, pub municipalities: Option, + pub bounds: Option, pub metars: Option, } @@ -62,16 +63,48 @@ impl Default for AirportQuery { icaos: None, iatas: None, locals: None, - names: None, + name: None, categories: None, iso_countries: None, iso_regions: None, municipalities: None, + bounds: None, metars: None, } } } +#[derive(Debug, Deserialize)] +pub struct Bounds { + pub north_east_lat: f32, + pub north_east_lon: f32, + pub south_west_lat: f32, + pub south_west_lon: f32, +} + +impl Bounds { + fn parse(input: &str) -> ApiResult { + let parts: Vec<&str> = input.split(',').collect(); + if parts.len() != 4 { + return Err(Error::new( + 400, + format!("Expected 4 fields in bounds but received {}", parts.len()), + )); + } + let north_east_lat = parts[0].trim().parse::()?; + let north_east_lon = parts[1].trim().parse::()?; + let south_west_lat = parts[2].trim().parse::()?; + let south_west_lon = parts[3].trim().parse::()?; + + Ok(Bounds { + north_east_lat, + north_east_lon, + south_west_lat, + south_west_lon, + }) + } +} + #[derive(Debug, Deserialize, sqlx::FromRow)] struct AirportRow { pub icao: String, @@ -265,8 +298,20 @@ impl Airport { &query.municipalities, ); Self::push_condition_array(&mut builder, &mut has_where, "local", &query.locals); - Self::push_condition_array(&mut builder, &mut has_where, "name", &query.names); Self::push_condition_array(&mut builder, &mut has_where, "category", &query.categories); + Self::push_condition_like(&mut builder, &mut has_where, "name", &query.name); + Self::push_condition_bounds(&mut builder, &mut has_where, &query.bounds)?; + + // Order by AircraftCategory + builder.push(" ORDER BY CASE category "); + builder.push(" WHEN 'large_airport' THEN 1 "); + builder.push(" WHEN 'medium_airport' THEN 2 "); + builder.push(" WHEN 'small_airport' THEN 3 "); + builder.push(" WHEN 'seaplane_base' THEN 4 "); + builder.push(" WHEN 'heliport' THEN 5 "); + builder.push(" WHEN 'balloon_port' THEN 6 "); + builder.push(" WHEN 'unknown' THEN 7 "); + builder.push(" ELSE 8 END"); // Apply pagination. if let Some(limit) = query.limit { @@ -361,8 +406,12 @@ impl Airport { &query.municipalities, ); Self::push_condition_array(&mut builder, &mut has_where, "local", &query.locals); - Self::push_condition_array(&mut builder, &mut has_where, "name", &query.names); Self::push_condition_array(&mut builder, &mut has_where, "category", &query.categories); + Self::push_condition_like(&mut builder, &mut has_where, "name", &query.name); + if let Err(err) = Self::push_condition_bounds(&mut builder, &mut has_where, &query.bounds) { + log::error!("Error parsing bounds string: {}", err); + return 0; + } let sql_query = builder.build_query_scalar(); sql_query.fetch_one(pool).await.unwrap_or_else(|_| 0) @@ -529,4 +578,56 @@ impl Airport { } } } + + fn push_condition_like<'a>( + builder: &mut QueryBuilder<'a, Postgres>, + has_where: &mut bool, + column: &str, + field: &'a Option, + ) { + // Query column like + if let Some(ref value) = field { + if !*has_where { + builder.push(" WHERE "); + *has_where = true; + } else { + builder.push(" AND "); + } + // Using ILIKE with wildcards for partial matching + builder + .push(column) + .push(" ILIKE ") + .push_bind(format!("%{}%", value)); + } + } + + fn push_condition_bounds<'a>( + builder: &mut QueryBuilder<'a, Postgres>, + has_where: &mut bool, + field: &'a Option, + ) -> ApiResult<()> { + // Query bounds + if let Some(ref bounds_string) = field { + if !*has_where { + builder.push(" WHERE "); + *has_where = true; + } else { + builder.push(" AND "); + } + let bounds = Bounds::parse(bounds_string)?; + builder + .push("(") + .push("latitude BETWEEN ") + .push_bind(bounds.south_west_lat) + .push(" AND ") + .push_bind(bounds.north_east_lat) + .push(" AND ") + .push("longitude BETWEEN ") + .push_bind(bounds.south_west_lon) + .push(" AND ") + .push_bind(bounds.north_east_lon) + .push(")"); + } + Ok(()) + } } diff --git a/api/src/auth/routes.rs b/api/src/auth/routes.rs index 3ca5d8d..7c12eba 100644 --- a/api/src/auth/routes.rs +++ b/api/src/auth/routes.rs @@ -2,7 +2,7 @@ use std::sync::OnceLock; use actix_web::{ post, web, HttpResponse, ResponseError, cookie::{Cookie, time::Duration}, - HttpRequest, + HttpRequest, put, }; use crate::{ auth::{verify_hash, Session, SESSION_COOKIE_NAME}, @@ -10,7 +10,9 @@ use crate::{ users::{LoginRequest, RegisterRequest, User, UserResponse}, }; -use crate::auth::{Auth, DEFAULT_SESSION_TTL}; +use crate::auth::{hash, Auth, DEFAULT_SESSION_TTL}; +use crate::error::ApiResult; +use crate::users::UpdateUser; #[post("/register")] async fn register(user: web::Json, req: HttpRequest) -> HttpResponse { @@ -132,21 +134,61 @@ async fn logout(req: HttpRequest, auth: Auth) -> HttpResponse { HttpResponse::Ok().cookie(session_cookie).finish() } -#[post("/key")] -async fn create_api_key(req: HttpRequest, auth: Auth) -> HttpResponse { +#[put("/password")] +async fn change_password( + password: web::Json, + req: HttpRequest, + auth: Auth, +) -> HttpResponse { let ip_address = req.peer_addr().unwrap().ip().to_string(); - let api_key = Session::new(128, &auth.user.email, &ip_address, None); + let email = auth.user.email; - // TODO: store api key - HttpResponse::Ok().body(api_key.session_id) + if let None = User::select(&email).await { + return HttpResponse::Unauthorized().finish(); + }; + + let update_user = UpdateUser { + email: None, + password: Some(password.into_inner()), + role: None, + first_name: None, + last_name: None, + }; + + match update_user.update(&email).await { + Ok(user) => { + let response: UserResponse = user.into(); + log::info!( + "Successful password change attempt [Email: {}] [IP Address: {}]", + &email, + ip_address + ); + HttpResponse::Ok().json(response) + } + Err(err) => { + log::error!( + "Invalid password change attempt [Email: {}] [IP Address: {}]: {}", + &email, + ip_address, + err + ); + ResponseError::error_response(&Error::new(500, err.to_string())) + } + } +} + +#[post("/password-reset")] +async fn password_reset(req: HttpRequest, auth: Auth) -> HttpResponse { + let ip_address = req.peer_addr().unwrap().ip().to_string(); + HttpResponse::Ok().finish() } pub fn init_routes(config: &mut web::ServiceConfig) { config.service( - web::scope("auth") + web::scope("account") .service(register) .service(login) .service(logout) - .service(create_api_key), + .service(change_password), ); } diff --git a/api/src/error.rs b/api/src/error.rs index b5fcc77..a86047d 100644 --- a/api/src/error.rs +++ b/api/src/error.rs @@ -80,6 +80,12 @@ impl From for Error { } } +impl From for Error { + fn from(error: core::num::ParseFloatError) -> Self { + Self::new(500, format!("Parse error: {}", error)) + } +} + impl From for Error { fn from(error: std::env::VarError) -> Self { Self::new( diff --git a/api/src/main.rs b/api/src/main.rs index 31caf3d..f206390 100644 --- a/api/src/main.rs +++ b/api/src/main.rs @@ -33,6 +33,11 @@ async fn main() -> Result<(), Box> { log::debug!("Creating default administrator"); let password = admin_password.unwrap(); let password_hash = hash(&password)?; + if email == "admin@example.com" || password == "CHANGEME" { + log::warn!( + "Default admin credentials are in use, update the ADMIN_EMAIL and ADMIN_PASSWORD." + ); + } let admin_user = User { email, password_hash, diff --git a/api/src/metars/model.rs b/api/src/metars/model.rs index f0ea6fb..e6a29cf 100644 --- a/api/src/metars/model.rs +++ b/api/src/metars/model.rs @@ -216,7 +216,7 @@ impl MetarRow { raw_text, data ) - VALUES ($1, $2, $3, $4, $5) + VALUES ($1, $2, $3, $4) "#, TABLE_NAME, )) diff --git a/api/src/users/model.rs b/api/src/users/model.rs index c9d5e4a..d6f7752 100644 --- a/api/src/users/model.rs +++ b/api/src/users/model.rs @@ -1,6 +1,6 @@ use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; - +use sqlx::{Postgres, QueryBuilder}; use crate::{auth::hash, error::ApiResult}; use crate::db; @@ -8,9 +8,6 @@ pub const ADMIN_ROLE: &str = "ADMIN"; pub const USER_ROLE: &str = "USER"; const TABLE_NAME: &str = "users"; -/** - * RegisterRequest - */ #[derive(Debug, Serialize, Deserialize)] pub struct RegisterRequest { pub email: String, @@ -34,18 +31,12 @@ impl RegisterRequest { } } -/** - * LoginRequest - */ #[derive(Debug, Serialize, Deserialize)] pub struct LoginRequest { pub email: String, pub password: String, } -/** - * UserResponse - */ #[derive(Debug, Serialize, Deserialize)] pub struct UserResponse { pub email: String, @@ -65,6 +56,75 @@ impl From for UserResponse { } } +#[derive(Debug, Serialize, Deserialize, sqlx::FromRow)] +pub struct UpdateUser { + pub email: Option, + pub password: Option, + pub role: Option, + pub first_name: Option, + pub last_name: Option, +} + +impl UpdateUser { + pub async fn update(&self, email: &str) -> ApiResult { + let pool = db::pool(); + + let mut query_builder: QueryBuilder = + QueryBuilder::new(&format!("UPDATE {} SET ", TABLE_NAME)); + + let mut first_clause = true; + + let mut push_comma = |query_builder: &mut QueryBuilder| { + if !first_clause { + query_builder.push(", "); + } else { + first_clause = false; + } + }; + + if let Some(ref email) = self.email { + push_comma(&mut query_builder); + query_builder.push("email = "); + query_builder.push_bind(email); + } + if let Some(ref password) = self.password { + push_comma(&mut query_builder); + let password_hash = hash(password)?; + query_builder.push("password_hash = "); + query_builder.push_bind(password_hash); + } + if let Some(ref role) = self.role { + push_comma(&mut query_builder); + query_builder.push("role = "); + query_builder.push_bind(role); + } + if let Some(ref first_name) = self.first_name { + push_comma(&mut query_builder); + query_builder.push("first_name = "); + query_builder.push_bind(first_name); + } + if let Some(ref last_name) = self.last_name { + push_comma(&mut query_builder); + query_builder.push("last_name = "); + query_builder.push_bind(last_name); + } + push_comma(&mut query_builder); + query_builder.push("updated_at = "); + query_builder.push_bind(Utc::now()); + + query_builder.push(" WHERE email = "); + query_builder.push_bind(email.to_string()); + query_builder.push(" RETURNING *"); + + dbg!(&query_builder.sql()); + + let query = query_builder.build_query_as::(); + let user = query.fetch_one(pool).await?; + + Ok(user) + } +} + #[derive(Serialize, Deserialize, sqlx::FromRow, Debug)] pub struct User { pub email: String, diff --git a/bruno/Users/Change Password.bru b/bruno/Users/Change Password.bru new file mode 100644 index 0000000..c550208 --- /dev/null +++ b/bruno/Users/Change Password.bru @@ -0,0 +1,20 @@ +meta { + name: Change Password + type: http + seq: 4 +} + +put { + url: {{BASE_URL}}/account/password + body: json + auth: none +} + +body:json { + "New Password" +} + +script:post-response { + const apiKey = res.body + bru.setVar("bearer",apiKey) +} diff --git a/bruno/Users/Create API Key.bru b/bruno/Users/Create API Key.bru deleted file mode 100644 index d426255..0000000 --- a/bruno/Users/Create API Key.bru +++ /dev/null @@ -1,23 +0,0 @@ -meta { - name: Create API Key - type: http - seq: 4 -} - -post { - url: {{BASE_URL}}/auth/key - body: none - auth: none -} - -body:json { - { - "email": "john.doe@gmail.com", - "password": "fake_password123" - } -} - -script:post-response { - const apiKey = res.body - bru.setVar("bearer",apiKey) -} diff --git a/bruno/Users/Login.bru b/bruno/Users/Login.bru index 3909e92..22ffd81 100644 --- a/bruno/Users/Login.bru +++ b/bruno/Users/Login.bru @@ -5,7 +5,7 @@ meta { } post { - url: {{BASE_URL}}/auth/login + url: {{BASE_URL}}/account/login body: json auth: none } diff --git a/bruno/Users/Logout.bru b/bruno/Users/Logout.bru index ea71de3..92e0bb6 100644 --- a/bruno/Users/Logout.bru +++ b/bruno/Users/Logout.bru @@ -5,7 +5,7 @@ meta { } post { - url: {{BASE_URL}}/auth/logout + url: {{BASE_URL}}/account/logout body: none auth: none } diff --git a/bruno/Users/Register.bru b/bruno/Users/Register.bru index db0b5da..0120590 100644 --- a/bruno/Users/Register.bru +++ b/bruno/Users/Register.bru @@ -5,7 +5,7 @@ meta { } post { - url: {{BASE_URL}}/auth/register + url: {{BASE_URL}}/account/register body: json auth: none } diff --git a/ui/src/App.css b/ui/src/App.css index aade941..c2430c7 100644 --- a/ui/src/App.css +++ b/ui/src/App.css @@ -6,22 +6,26 @@ body, height: 100%; margin: 0; padding: 0; + overflow: hidden; } /* Set up Flexbox layout */ .App { display: flex; flex-direction: column; - height: 100vh; /* Full viewport height */ + height: 100%; +} + +.app-header { + background-color: #333; + color: #fff; +} + +.map-wrapper { + flex: 1; } -/* Make the map container fill the remaining space */ .leaflet-container { - flex: 1 1 auto; /* Allow the map to grow and fill space */ + height: 100%; width: 100%; } - -/*.leaflet-container {*/ -/* width: 100%;*/ -/* height: 100vh;*/ -/*}*/ diff --git a/ui/src/App.tsx b/ui/src/App.tsx index 27e14b9..e1bf450 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -5,10 +5,11 @@ import './App.css'; import markerIcon2x from 'leaflet/dist/images/marker-icon-2x.png'; import markerIcon from 'leaflet/dist/images/marker-icon.png'; import markerShadow from 'leaflet/dist/images/marker-shadow.png'; -// import { Header } from '@components/Header'; // Fix for default marker icon issues in React-Leaflet import L from 'leaflet'; +import { Header } from '@components/Header'; +import AirportLayer from '@components/AirportLayer.tsx'; // Fix Leaflet's default icon path issues with Webpack // eslint-disable-next-line @typescript-eslint/ban-ts-comment @@ -26,21 +27,24 @@ const tileLayerUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'; function App() { return (

); } diff --git a/ui/src/components/AirportLayer.tsx b/ui/src/components/AirportLayer.tsx new file mode 100644 index 0000000..7d33679 --- /dev/null +++ b/ui/src/components/AirportLayer.tsx @@ -0,0 +1,104 @@ +import { useState } from 'react'; +import { Airport, AirportCategory } from '@lib/airport.types.ts'; +import { Marker, Popup, useMapEvents } from 'react-leaflet'; +import { getAirports } from '@lib/airport.ts'; +import L from 'leaflet'; + +interface Bounds { + northEast: { lat: number; lon: number }; + southWest: { lat: number; lon: number }; +} + +export default function AirportLayer() { + const [airports, setAirports] = useState([]); + + useMapEvents({ + moveend: (event) => { + const map = event.target; + const bounds = map.getBounds(); + + const boundsParam: Bounds = { + northEast: { + lat: bounds.getNorth(), + lon: bounds.getEast() + }, + southWest: { + lat: bounds.getSouth(), + lon: bounds.getWest() + } + }; + + // Call getAirports with the current map bounds and desired parameters. + getAirports({ + bounds: boundsParam, + metars: true, + categories: [AirportCategory.SMALL, AirportCategory.MEDIUM, AirportCategory.LARGE], + limit: 200 + }) + .then((response) => { + console.log(response); + setAirports(response.data); + }) + .catch((error) => { + console.error('Error fetching airports:', error); + setAirports([]); + }); + } + }); + + return ( + <> + {airports.map((airport, index) => { + const markerColor = getMarkerColor(airport); + const icon = createCustomIcon(markerColor); + return ( + + +
+

{airport.name || 'Unnamed Airport'}

+

ICAO: {airport.icao || 'N/A'}

+

Flight Category: {airport.latest_metar ? airport.latest_metar.flight_category : 'No METAR Data'}

+
+
+
+ ); + })} + + ); +} + +function getMarkerColor(airport: Airport): string { + if (airport.latest_metar) { + switch (airport.latest_metar.flight_category.toUpperCase()) { + case 'IFR': + return '#ff0100'; + case 'LIFR': + return '#7f007f'; + case 'MVFR': + return '#00f'; + case 'VFR': + return '#018000'; + case 'UNKNOWN': + return '#3e3e3e'; + default: + return '#3e3e3e'; + } + } else { + return '#696969'; + } +} + +function createCustomIcon(color: string): L.DivIcon { + return L.divIcon({ + html: `
`, + className: '', + iconSize: [20, 20], + iconAnchor: [10, 10] + }); +} diff --git a/ui/src/components/Header/Header.module.css b/ui/src/components/Header/Header.module.css index 52997aa..693393d 100644 --- a/ui/src/components/Header/Header.module.css +++ b/ui/src/components/Header/Header.module.css @@ -1,6 +1,5 @@ .header { height: 56px; - margin-bottom: 120px; background-color: var(--mantine-color-body); border-bottom: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4)); } diff --git a/ui/src/components/Header/index.tsx b/ui/src/components/Header/index.tsx index 9f3df62..b6f6d4e 100644 --- a/ui/src/components/Header/index.tsx +++ b/ui/src/components/Header/index.tsx @@ -1,12 +1,13 @@ import { useState } from 'react'; -import { Burger, Container, Group, Text } from '@mantine/core'; +import { Avatar, Burger, Container, Group, Text } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; +// import { ReactComponent as Logo } from '../../../public/logo.svg'; import classes from './Header.module.css'; const links = [ { link: '/', label: 'Map' }, { link: '/airports', label: 'Airports' }, - { link: '/metars', label: 'METARs' } + { link: '/metars', label: 'Metars' } ]; export function Header() { @@ -31,7 +32,11 @@ export function Header() { return (
- Aviation Weather + + Aviation Weather + + + {/**/} {items} diff --git a/ui/src/lib/airport.ts b/ui/src/lib/airport.ts new file mode 100644 index 0000000..bce99fb --- /dev/null +++ b/ui/src/lib/airport.ts @@ -0,0 +1,40 @@ +import { Airport, AirportCategory, Bounds, GetAirportsResponse } from '@lib/airport.types.ts'; +import { getRequest } from '@lib/index.ts'; + +export async function getAirport({ icao }: { icao: string }): Promise { + const response = await getRequest(`airports/${icao}`); + return response?.json() || {}; +} + +interface GetAirportsParameters { + icaos?: string[]; + name?: string; + categories?: AirportCategory[]; + bounds?: Bounds; + metars?: boolean; + page?: number; + limit?: number; +} + +export async function getAirports({ + icaos, + name, + categories, + bounds, + metars = false, + limit = 1000, + page = 1 +}: GetAirportsParameters): Promise { + const response = await getRequest('airports', { + bounds: bounds + ? `${bounds?.northEast.lat},${bounds?.northEast.lon},${bounds?.southWest.lat},${bounds?.southWest.lon}` + : undefined, + categories: categories ?? undefined, + icaos: icaos ?? undefined, + name: name ?? undefined, + metars: metars ?? undefined, + limit, + page + }); + return response?.json() || { data: [] }; +} diff --git a/ui/src/lib/airport.types.ts b/ui/src/lib/airport.types.ts new file mode 100644 index 0000000..786444c --- /dev/null +++ b/ui/src/lib/airport.types.ts @@ -0,0 +1,93 @@ +import { Metar } from './metar.types'; + +export enum AirportCategory { + SMALL = 'small_airport', + MEDIUM = 'medium_airport', + LARGE = 'large_airport', + HELIPORT = 'heliport', + BALLOONPORT = 'balloon_port', + CLOSED = 'closed', + SEAPLANE = 'seaplane_base', + UNKNOWN = 'unknown' +} + +export function airportCategoryToText(category: AirportCategory): string { + switch (category) { + case AirportCategory.SMALL: + return 'Small'; + case AirportCategory.MEDIUM: + return 'Medium'; + case AirportCategory.LARGE: + return 'Large'; + case AirportCategory.HELIPORT: + return 'Helipad'; + case AirportCategory.CLOSED: + return 'Closed'; + case AirportCategory.SEAPLANE: + return 'Seaplane Base'; + case AirportCategory.BALLOONPORT: + return 'Balloon Port'; + default: + return 'Unknown'; + } +} + +export enum AirportOrderField { + ICAO = 'icao', + NAME = 'name', + CATEGORY = 'category', + CONTINENT = 'continent', + ISO_COUNTRY = 'iso_country', + ISO_REGION = 'iso_region', + MUNICIPALITY = 'municipality' +} + +export interface Bounds { + northEast: Coordinate; + southWest: Coordinate; +} + +export interface Coordinate { + lat: number; + lon: number; +} + +export interface Airport { + icao: string; + iata: string; + local: string; + name: string; + category: AirportCategory; + iso_country: string; + iso_region: string; + municipality: string; + elevation_ft: number; + latitude: number; + longitude: number; + has_tower: boolean; + has_beacon: boolean; + has_metar: boolean; + public: boolean; + runways: Runway[]; + frequencies: Frequency[]; + latest_metar?: Metar; +} + +export interface Runway { + id: string; + length_ft: number; + width_ft: number; + surface: string; +} + +export interface Frequency { + id: string; + frequency_mhz: number; +} + +export interface GetAirportsResponse { + data: Airport[]; + limit: number; + page: number; + total: number; +} diff --git a/ui/src/lib/index.ts b/ui/src/lib/index.ts new file mode 100644 index 0000000..470dbee --- /dev/null +++ b/ui/src/lib/index.ts @@ -0,0 +1,72 @@ +// const serviceHost = process.env.SERVICE_HOST || 'http://localhost'; +// const servicePort = process.env.SERVICE_PORT || 5000;' +// const baseURL = `${serviceHost}:${servicePort}`; +const baseUrl = 'http://localhost:5000'; + +export async function getRequest(endpoint: string, params: Record = {}): Promise { + Object.keys(params).forEach((key) => params[key] === undefined && delete params[key]); + const urlParams = new URLSearchParams(params); + const url = urlParams && urlParams.size > 0 ? `${baseUrl}/${endpoint}?${urlParams}` : `${baseUrl}/${endpoint}`; + return await fetch(url, { + method: 'GET', + credentials: 'include' + }); +} + +interface PostOptions { + headers?: Record; + type?: 'json' | 'form'; +} + +export async function postRequest(endpoint: string, body?: any, options?: PostOptions): Promise { + const url = `${baseUrl}/${endpoint}`; + let response; + if (body && (!options?.type || options.type === 'json')) { + response = await fetch(url, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + credentials: 'include', + body: JSON.stringify(body) + }); + } else { + response = await fetch(url, { + method: 'POST', + credentials: 'include', + body + }); + } + return response; +} + +export async function putRequest(endpoint: string, body?: any, options?: PostOptions): Promise { + const url = `${baseUrl}/${endpoint}`; + let response; + if (body && (!options?.type || options.type === 'json')) { + response = await fetch(url, { + method: 'PUT', + headers: { + 'Content-Type': 'application/json' + }, + credentials: 'include', + body: JSON.stringify(body) + }); + } else { + response = await fetch(url, { + method: 'PUT', + credentials: 'include', + body + }); + } + return response; +} + +export async function deleteRequest(endpoint: string): Promise { + const url = `${baseUrl}/${endpoint}`; + const response = await fetch(url, { + method: 'DELETE', + credentials: 'include' + }); + return response; +} diff --git a/ui/src/lib/metar.types.ts b/ui/src/lib/metar.types.ts new file mode 100644 index 0000000..848f91f --- /dev/null +++ b/ui/src/lib/metar.types.ts @@ -0,0 +1,43 @@ +export interface SkyCondition { + sky_cover: string; + cloud_base_ft_agl: number; +} + +export interface QualityControlFlags { + auto: boolean; + auto_station_without_precipitation: boolean; + auto_station_with_precipication: boolean; + maintenance_indicator_on: boolean; + corrected: boolean; +} + +export interface RunwayVisualRange { + runway: string; + visibility_ft: string; + variable_visibility_high_ft: string; + variable_visibility_low_ft: string; +} + +export interface Metar { + raw_text: string; + station_id: string; + observation_time: string; + temp_c: number; + dewpoint_c: number; + wind_dir_degrees: string; + wind_speed_kt: number; + wind_gust_kt: number; + variable_wind_dir_degrees: string; + visibility_statute_mi: string; + runway_visual_range: RunwayVisualRange[]; + altim_in_hg: number; + sea_level_pressure_mb: number; + quality_control_flags: QualityControlFlags; + weather_phenomena: string[]; + sky_condition: SkyCondition[]; + flight_category: 'VFR' | 'MVFR' | 'LIFR' | 'IFR' | 'UNKN'; + three_hr_pressure_tendency_mb: number; + max_t_c: number; + min_t_c: number; + precip_in: number; +} From 8b68653b6f9abfa5c95bec0f1abac89965f649e5 Mon Sep 17 00:00:00 2001 From: Ben Sherriff Date: Thu, 10 Apr 2025 22:51:33 -0400 Subject: [PATCH 13/20] Cleanup old code --- .gitignore | 1 - README.md | 2 +- api/Dockerfile | 6 +- docker-compose.yml | 3 +- ui-old/.eslintrc.json | 17 - ui-old/.nvmrc | 1 - ui-old/.prettierrc.json | 8 - ui-old/Dockerfile | 39 - ui-old/Makefile | 34 - ui-old/next-env.d.ts | 5 - ui-old/next.config.js | 18 - ui-old/package-lock.json | 5445 ----------------- ui-old/package.json | 47 - ui-old/postcss.config.js | 16 - ui-old/public/favicon.ico | Bin 25931 -> 0 bytes ui-old/public/icons/ifr.svg | 12 - ui-old/public/icons/lifr.svg | 12 - ui-old/public/icons/mvfr.svg | 12 - ui-old/public/icons/nometar.svg | 7 - ui-old/public/icons/unkn.svg | 12 - ui-old/public/icons/vfr.svg | 7 - ui-old/public/layers-2x.png | Bin 1259 -> 0 bytes ui-old/public/layers.png | Bin 696 -> 0 bytes ui-old/public/marker-icon-2x.png | Bin 2586 -> 0 bytes ui-old/public/marker-icon.png | Bin 1466 -> 0 bytes ui-old/public/marker-shadow.png | Bin 618 -> 0 bytes ui-old/public/vercel.svg | 4 - ui-old/src/api/airport.ts | 79 - ui-old/src/api/airport.types.ts | 92 - ui-old/src/api/auth.ts | 63 - ui-old/src/api/auth.types.ts | 19 - ui-old/src/api/index.ts | 79 - ui-old/src/api/metar.ts | 11 - ui-old/src/api/metar.types.ts | 43 - ui-old/src/api/users.ts | 51 - ui-old/src/app/admin/page.tsx | 56 - ui-old/src/app/airport/[icao]/page.tsx | 63 - ui-old/src/app/layout.tsx | 36 - ui-old/src/app/page.tsx | 7 - ui-old/src/app/profile/page.tsx | 179 - ui-old/src/app/profile/profile.module.css | 14 - ui-old/src/app/recoil-root-wrapper.tsx | 8 - ui-old/src/components/Admin/AirportForm.tsx | 175 - .../components/Admin/AirportTablePanel.tsx | 210 - ui-old/src/components/Header/HeaderModal.tsx | 212 - ui-old/src/components/Header/UserMenu.tsx | 114 - ui-old/src/components/Header/index.tsx | 111 - ui-old/src/components/Header/styles.css | 27 - ui-old/src/components/Loader.tsx | 173 - ui-old/src/components/Metars/MapTiles.tsx | 118 - ui-old/src/components/Metars/MetarMap.tsx | 28 - ui-old/src/components/Metars/MetarModal.tsx | 255 - .../src/components/Metars/SkyConditions.tsx | 89 - ui-old/src/components/Metars/index.tsx | 13 - ui-old/src/components/Metars/metars.css | 26 - ui-old/src/components/Sidebar/Sidebar.css | 11 - ui-old/src/components/Sidebar/index.tsx | 7 - ui-old/src/js/theme.ts | 5 - ui-old/src/state/auth.ts | 20 - ui-old/src/state/map.ts | 12 - ui-old/src/state/user.ts | 6 - ui-old/styles/globals.css | 44 - ui-old/styles/leaflet.css | 623 -- ui-old/tsconfig.json | 44 - ui/Dockerfile | 2 +- ui/src/App.tsx | 20 +- ui/src/components/AirportDrawer.tsx | 72 + ui/src/components/AirportLayer.tsx | 124 +- ui/src/components/AirportMarker.tsx | 62 + ui/src/components/Header/Header.module.css | 27 +- ui/src/components/Header/index.tsx | 48 +- ui/src/lib/airport.types.ts | 34 +- ui/src/main.tsx | 2 +- 73 files changed, 249 insertions(+), 8973 deletions(-) delete mode 100755 ui-old/.eslintrc.json delete mode 100644 ui-old/.nvmrc delete mode 100644 ui-old/.prettierrc.json delete mode 100644 ui-old/Dockerfile delete mode 100644 ui-old/Makefile delete mode 100755 ui-old/next-env.d.ts delete mode 100755 ui-old/next.config.js delete mode 100644 ui-old/package-lock.json delete mode 100644 ui-old/package.json delete mode 100644 ui-old/postcss.config.js delete mode 100755 ui-old/public/favicon.ico delete mode 100644 ui-old/public/icons/ifr.svg delete mode 100644 ui-old/public/icons/lifr.svg delete mode 100644 ui-old/public/icons/mvfr.svg delete mode 100644 ui-old/public/icons/nometar.svg delete mode 100644 ui-old/public/icons/unkn.svg delete mode 100644 ui-old/public/icons/vfr.svg delete mode 100644 ui-old/public/layers-2x.png delete mode 100644 ui-old/public/layers.png delete mode 100644 ui-old/public/marker-icon-2x.png delete mode 100644 ui-old/public/marker-icon.png delete mode 100644 ui-old/public/marker-shadow.png delete mode 100755 ui-old/public/vercel.svg delete mode 100644 ui-old/src/api/airport.ts delete mode 100644 ui-old/src/api/airport.types.ts delete mode 100644 ui-old/src/api/auth.ts delete mode 100644 ui-old/src/api/auth.types.ts delete mode 100644 ui-old/src/api/index.ts delete mode 100644 ui-old/src/api/metar.ts delete mode 100644 ui-old/src/api/metar.types.ts delete mode 100644 ui-old/src/api/users.ts delete mode 100644 ui-old/src/app/admin/page.tsx delete mode 100644 ui-old/src/app/airport/[icao]/page.tsx delete mode 100644 ui-old/src/app/layout.tsx delete mode 100644 ui-old/src/app/page.tsx delete mode 100644 ui-old/src/app/profile/page.tsx delete mode 100644 ui-old/src/app/profile/profile.module.css delete mode 100644 ui-old/src/app/recoil-root-wrapper.tsx delete mode 100644 ui-old/src/components/Admin/AirportForm.tsx delete mode 100644 ui-old/src/components/Admin/AirportTablePanel.tsx delete mode 100644 ui-old/src/components/Header/HeaderModal.tsx delete mode 100644 ui-old/src/components/Header/UserMenu.tsx delete mode 100644 ui-old/src/components/Header/index.tsx delete mode 100644 ui-old/src/components/Header/styles.css delete mode 100644 ui-old/src/components/Loader.tsx delete mode 100644 ui-old/src/components/Metars/MapTiles.tsx delete mode 100644 ui-old/src/components/Metars/MetarMap.tsx delete mode 100644 ui-old/src/components/Metars/MetarModal.tsx delete mode 100644 ui-old/src/components/Metars/SkyConditions.tsx delete mode 100644 ui-old/src/components/Metars/index.tsx delete mode 100644 ui-old/src/components/Metars/metars.css delete mode 100644 ui-old/src/components/Sidebar/Sidebar.css delete mode 100644 ui-old/src/components/Sidebar/index.tsx delete mode 100644 ui-old/src/js/theme.ts delete mode 100644 ui-old/src/state/auth.ts delete mode 100644 ui-old/src/state/map.ts delete mode 100644 ui-old/src/state/user.ts delete mode 100755 ui-old/styles/globals.css delete mode 100644 ui-old/styles/leaflet.css delete mode 100755 ui-old/tsconfig.json create mode 100644 ui/src/components/AirportDrawer.tsx create mode 100644 ui/src/components/AirportMarker.tsx diff --git a/.gitignore b/.gitignore index 2b6b9e8..90507cb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. .vscode/ -venv/ .idea/ # dependencies diff --git a/README.md b/README.md index 2ffcf8c..8476049 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Aviation Weather +# Aviation ## Makefile `make help` to list all commands diff --git a/api/Dockerfile b/api/Dockerfile index 5885be3..5dd2df9 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,7 +1,7 @@ # ========= # Builder # ========= -FROM rust:bookworm as builder +FROM rust:bookworm AS builder WORKDIR /builder COPY migrations ./migrations @@ -14,7 +14,7 @@ RUN cargo build --release # ====== # Keys # ====== -FROM debian:bookworm-slim as keys +FROM debian:bookworm-slim AS keys WORKDIR /keys RUN apt-get update && apt-get install -y openssl libpq-dev @@ -26,7 +26,7 @@ RUN openssl rsa -in refresh.pem -pubout -outform PEM -out refresh.pem.pub # ========= # Runtime # ========= -FROM keys as runtime +FROM keys AS runtime WORKDIR /api USER root diff --git a/docker-compose.yml b/docker-compose.yml index 4cc0178..0955dad 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -68,6 +68,7 @@ services: - "${API_PORT:-5000}:5000" build: context: api + dockerfile: Dockerfile depends_on: - postgres - redis @@ -88,7 +89,7 @@ services: - ${UI_PORT:-3000}:3000 build: context: ./ui/ - target: dev + dockerfile: Dockerfile volumes: - ./ui/src:/app/src - ./ui/public:/app/public diff --git a/ui-old/.eslintrc.json b/ui-old/.eslintrc.json deleted file mode 100755 index 88dd4f0..0000000 --- a/ui-old/.eslintrc.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "root": true, - "parser": "@typescript-eslint/parser", - "plugins": [ - "@typescript-eslint/eslint-plugin" - ], - "extends": [ - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended" - ], - "rules": { - "@typescript-eslint/interface-name-prefix": "off", - "@typescript-eslint/explicit-function-return-type": "off", - "@typescript-eslint/explicit-module-boundary-types": "off", - "@typescript-eslint/no-explicit-any": "off" - } -} \ No newline at end of file diff --git a/ui-old/.nvmrc b/ui-old/.nvmrc deleted file mode 100644 index 7ec5619..0000000 --- a/ui-old/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -18.17.1 \ No newline at end of file diff --git a/ui-old/.prettierrc.json b/ui-old/.prettierrc.json deleted file mode 100644 index 2396656..0000000 --- a/ui-old/.prettierrc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "trailingComma": "none", - "tabWidth": 2, - "semi": true, - "singleQuote": true, - "jsxSingleQuote": true, - "printWidth": 120 -} \ No newline at end of file diff --git a/ui-old/Dockerfile b/ui-old/Dockerfile deleted file mode 100644 index 444537f..0000000 --- a/ui-old/Dockerfile +++ /dev/null @@ -1,39 +0,0 @@ -# Base -FROM node:21-alpine AS base - -# Dependencies -FROM base as deps -RUN apk add --no-cache libc6-compat -WORKDIR /app -COPY package.json package-lock.json ./ -RUN npm ci - -# Dev -FROM base AS dev -WORKDIR /app -COPY --from=deps /app/node_modules ./node_modules -COPY . . - -# Builder -FROM base AS builder -WORKDIR /app -COPY --from=deps /app/node_modules ./node_modules -COPY . . -RUN npm run build - -# Runner -FROM base AS runner -WORKDIR /app -RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs -COPY --from=builder /app/next.config.js ./ -COPY --from=builder /app/public ./public -COPY --from=builder /app/package.json ./package.json -COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ -COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static - -USER nextjs -EXPOSE 3000 -ENV PORT 3000 -ENV NEXT_TELEMETRY_DISABLED 1 - -CMD ["node", "server.js"] diff --git a/ui-old/Makefile b/ui-old/Makefile deleted file mode 100644 index 04a49d8..0000000 --- a/ui-old/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -#!make -SHELL := /bin/bash - -GIT_HASH ?= $(shell git log --format="%h" -n 1) - -include .env --include .env.local -export - -.PHONY: help build start stop lint - -help: ## This info - @echo - @cat Makefile | grep -E '^[a-zA-Z\/_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' - @echo - -build: ## Install the dependencies and build - docker compose build - -tag: ## Tag the Docker image - docker tag aviation-ui:latest aviation-ui:${GIT_HASH} - -up: ## Start the dev instance - docker compose up -d - -down: ## Stop the dev instance - docker compose down - -lint: ## Run the linter - npm run lint - -clean: ## Remove node modules - docker compose down && \ - docker image rm aviation-ui \ No newline at end of file diff --git a/ui-old/next-env.d.ts b/ui-old/next-env.d.ts deleted file mode 100755 index 4f11a03..0000000 --- a/ui-old/next-env.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -/// -/// - -// NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/ui-old/next.config.js b/ui-old/next.config.js deleted file mode 100755 index c53cb4b..0000000 --- a/ui-old/next.config.js +++ /dev/null @@ -1,18 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { - reactStrictMode: true, - swcMinify: true, - eslint: { - ignoreDuringBuilds: true - }, - publicRuntimeConfig: { - // remove private variables from processEnv - processEnv: Object.fromEntries(Object.entries(process.env).filter(([key]) => key.includes('NEXT_PUBLIC_'))) - }, - output: 'standalone', - experimental: { - optimizePackageImports: ['@mantine/core', '@mantine/hooks'], - }, -}; - -module.exports = nextConfig; diff --git a/ui-old/package-lock.json b/ui-old/package-lock.json deleted file mode 100644 index bddc514..0000000 --- a/ui-old/package-lock.json +++ /dev/null @@ -1,5445 +0,0 @@ -{ - "name": "aviation-weather", - "version": "0.1.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "aviation-weather", - "version": "0.1.0", - "dependencies": { - "@mantine/core": "^7.3.2", - "@mantine/form": "^7.3.2", - "@mantine/hooks": "^7.3.2", - "@mantine/modals": "^7.3.2", - "@mantine/notifications": "^7.3.2", - "js-cookie": "^3.0.5", - "leaflet": "^1.9.4", - "next": "^14.0.4", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-icons": "^4.11.0", - "react-leaflet": "^4.2.1", - "recharts": "^2.10.3", - "recoil": "^0.7.7" - }, - "devDependencies": { - "@types/js-cookie": "^3.0.6", - "@types/leaflet": "^1.9.8", - "@types/node": "20.10.5", - "@types/react": "18.2.45", - "@types/react-dom": "18.2.18", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", - "autoprefixer": "^10.4.16", - "eslint": "8.56.0", - "eslint-config-next": "14.0.4", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.0", - "postcss": "^8.4.32", - "postcss-import": "^15.1.0", - "postcss-preset-mantine": "^1.12.1", - "postcss-simple-vars": "^7.0.1", - "prettier": "^3.1.1", - "typescript": "5.3.3" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", - "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@floating-ui/core": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz", - "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==", - "dependencies": { - "@floating-ui/utils": "^0.1.3" - } - }, - "node_modules/@floating-ui/dom": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz", - "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==", - "dependencies": { - "@floating-ui/core": "^1.4.2", - "@floating-ui/utils": "^0.1.3" - } - }, - "node_modules/@floating-ui/react": { - "version": "0.24.8", - "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.24.8.tgz", - "integrity": "sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA==", - "dependencies": { - "@floating-ui/react-dom": "^2.0.1", - "aria-hidden": "^1.2.3", - "tabbable": "^6.0.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/react-dom": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.4.tgz", - "integrity": "sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==", - "dependencies": { - "@floating-ui/dom": "^1.5.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/utils": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz", - "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", - "dev": true - }, - "node_modules/@mantine/core": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/core/-/core-7.3.2.tgz", - "integrity": "sha512-CwAuQogVLcLR7O9e1eOgi3gtk4XX6cnaqevAxzJJpIOIyCnHiQ3cEGINVXyUUjUUipBlvK3sqz3NPGJ2ekLFDQ==", - "dependencies": { - "@floating-ui/react": "^0.24.8", - "clsx": "2.0.0", - "react-number-format": "^5.3.1", - "react-remove-scroll": "^2.5.7", - "react-textarea-autosize": "8.5.3", - "type-fest": "^3.13.1" - }, - "peerDependencies": { - "@mantine/hooks": "7.3.2", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@mantine/form": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/form/-/form-7.3.2.tgz", - "integrity": "sha512-/qa1KQKVC46XWgIU190r3XM3Xld8Lsvz4L/an//TO67RnAGEdC5OCvr2JCb+fprZZi3YdxaKOkVNvP20W23qkg==", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "klona": "^2.0.6" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/@mantine/hooks": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-7.3.2.tgz", - "integrity": "sha512-xgumuuI3PBWXff5N02HCI7PEy25mDEdyXDQklUYK93J6FKwpcosyZnGVitoUrV1gLtYYa9ZudeAWdhHuh/CpOg==", - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/@mantine/modals": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/modals/-/modals-7.3.2.tgz", - "integrity": "sha512-vhpcp0Yqgm+K/vorDbuweTjzDO4pJaG2POc00cSTV3zJdsbeMAzVClovTuseJT+UO2lUdUP3RG1cInaZqSclhA==", - "peerDependencies": { - "@mantine/core": "7.3.2", - "@mantine/hooks": "7.3.2", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@mantine/notifications": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/notifications/-/notifications-7.3.2.tgz", - "integrity": "sha512-XOzgm4pm4XszavVN0QUjN+IP0xiG2IochxJSz/FduTI0r3u1WxdpvDYlOvEJpHhtWvyqI8W8rx6cPJaD2HdAwQ==", - "dependencies": { - "@mantine/store": "7.3.2", - "react-transition-group": "4.4.5" - }, - "peerDependencies": { - "@mantine/core": "7.3.2", - "@mantine/hooks": "7.3.2", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@mantine/notifications/node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/@mantine/notifications/node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/@mantine/store": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@mantine/store/-/store-7.3.2.tgz", - "integrity": "sha512-M1eWHzTRCeCFvrpFhXKIM9zblrlIT5/XrMue/fP2HrkA43dpkgq+ArnZkN3LhG9lWR/EKbRwQWDhDIvdLtfD7w==", - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/@next/env": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.4.tgz", - "integrity": "sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==" - }, - "node_modules/@next/eslint-plugin-next": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.0.4.tgz", - "integrity": "sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==", - "dev": true, - "dependencies": { - "glob": "7.1.7" - } - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.4.tgz", - "integrity": "sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.4.tgz", - "integrity": "sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.4.tgz", - "integrity": "sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.4.tgz", - "integrity": "sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.4.tgz", - "integrity": "sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.4.tgz", - "integrity": "sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.4.tgz", - "integrity": "sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.4.tgz", - "integrity": "sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.4.tgz", - "integrity": "sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@react-leaflet/core": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", - "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", - "peerDependencies": { - "leaflet": "^1.9.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz", - "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==", - "dev": true - }, - "node_modules/@swc/helpers": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", - "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@types/d3-array": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", - "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" - }, - "node_modules/@types/d3-color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", - "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" - }, - "node_modules/@types/d3-ease": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", - "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" - }, - "node_modules/@types/d3-interpolate": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", - "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", - "dependencies": { - "@types/d3-color": "*" - } - }, - "node_modules/@types/d3-path": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.0.2.tgz", - "integrity": "sha512-WAIEVlOCdd/NKRYTsqCpOMHQHemKBEINf8YXMYOtXH0GA7SY0dqMB78P3Uhgfy+4X+/Mlw2wDtlETkN6kQUCMA==" - }, - "node_modules/@types/d3-scale": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", - "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", - "dependencies": { - "@types/d3-time": "*" - } - }, - "node_modules/@types/d3-shape": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.5.tgz", - "integrity": "sha512-dfEWpZJ1Pdg8meLlICX1M3WBIpxnaH2eQV2eY43Y5ysRJOTAV9f3/R++lgJKFstfrEOE2zdJ0sv5qwr2Bkic6Q==", - "dependencies": { - "@types/d3-path": "*" - } - }, - "node_modules/@types/d3-time": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", - "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" - }, - "node_modules/@types/d3-timer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", - "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" - }, - "node_modules/@types/geojson": { - "version": "7946.0.13", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.13.tgz", - "integrity": "sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==", - "dev": true - }, - "node_modules/@types/js-cookie": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-3.0.6.tgz", - "integrity": "sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/leaflet": { - "version": "1.9.8", - "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.8.tgz", - "integrity": "sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg==", - "dev": true, - "dependencies": { - "@types/geojson": "*" - } - }, - "node_modules/@types/node": { - "version": "20.10.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", - "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", - "dev": true, - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/prop-types": { - "version": "15.7.10", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", - "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==", - "devOptional": true - }, - "node_modules/@types/react": { - "version": "18.2.45", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.45.tgz", - "integrity": "sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==", - "devOptional": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.2.18", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", - "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", - "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==", - "devOptional": true - }, - "node_modules/@types/semver": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", - "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", - "dev": true - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.15.0.tgz", - "integrity": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==", - "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/type-utils": "6.15.0", - "@typescript-eslint/utils": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.4", - "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.15.0.tgz", - "integrity": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/typescript-estree": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.15.0.tgz", - "integrity": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.15.0.tgz", - "integrity": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "6.15.0", - "@typescript-eslint/utils": "6.15.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.15.0.tgz", - "integrity": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.15.0.tgz", - "integrity": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/visitor-keys": "6.15.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.15.0.tgz", - "integrity": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.15.0", - "@typescript-eslint/types": "6.15.0", - "@typescript-eslint/typescript-estree": "6.15.0", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.15.0.tgz", - "integrity": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.15.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/aria-hidden": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz", - "integrity": "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", - "dev": true - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - } - }, - "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001563", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", - "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/clsx": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", - "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/d3-array": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", - "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", - "dependencies": { - "internmap": "1 - 2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", - "dependencies": { - "d3-color": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", - "dependencies": { - "d3-path": "^3.1.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "dependencies": { - "d3-array": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", - "dependencies": { - "d3-time": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decimal.js-light": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", - "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", - "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", - "dependencies": { - "@babel/runtime": "^7.1.2" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.587", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.587.tgz", - "integrity": "sha512-RyJX0q/zOkAoefZhB9XHghGeATVP0Q3mwA253XD/zj2OeXc+JZB9pCaEv6R578JUYaWM9PRhye0kXvd/V1cQ3Q==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", - "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", - "dev": true, - "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.1", - "es-set-tostringtag": "^2.0.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.0.1" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", - "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.56.0", - "@humanwhocodes/config-array": "^0.11.13", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.0.4.tgz", - "integrity": "sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==", - "dev": true, - "dependencies": { - "@next/eslint-plugin-next": "14.0.4", - "@rushstack/eslint-patch": "^1.3.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-prettier": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", - "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", - "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", - "dev": true, - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", - "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.0.tgz", - "integrity": "sha512-hQc+2zbnMeXcIkg+pKZtVa+3Yqx4WY7SMkn1PLZ4VbBEU7jJIpVn9347P8BBhTbz6ne85aXvQf30kvexcqBeWw==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.5" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/prettier" - }, - "peerDependencies": { - "@types/eslint": ">=8.0.0", - "eslint": ">=8.0.0", - "eslint-config-prettier": "*", - "prettier": ">=3.0.0" - }, - "peerDependenciesMeta": { - "@types/eslint": { - "optional": true - }, - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true - }, - "node_modules/fast-equals": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", - "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", - "dev": true - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", - "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", - "dev": true, - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globals/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/hamt_plus": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", - "integrity": "sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==" - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", - "dev": true, - "dependencies": { - "which-typed-array": "^1.1.11" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", - "engines": { - "node": ">=14" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", - "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", - "dev": true, - "dependencies": { - "language-subtag-registry": "^0.3.20" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/leaflet": { - "version": "1.9.4", - "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", - "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/next": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/next/-/next-14.0.4.tgz", - "integrity": "sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==", - "dependencies": { - "@next/env": "14.0.4", - "@swc/helpers": "0.5.2", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "graceful-fs": "^4.2.11", - "postcss": "8.4.31", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=18.17.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "14.0.4", - "@next/swc-darwin-x64": "14.0.4", - "@next/swc-linux-arm64-gnu": "14.0.4", - "@next/swc-linux-arm64-musl": "14.0.4", - "@next/swc-linux-x64-gnu": "14.0.4", - "@next/swc-linux-x64-musl": "14.0.4", - "@next/swc-win32-arm64-msvc": "14.0.4", - "@next/swc-win32-ia32-msvc": "14.0.4", - "@next/swc-win32-x64-msvc": "14.0.4" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", - "dev": true - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" - } - }, - "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-mixins": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-9.0.4.tgz", - "integrity": "sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==", - "dev": true, - "dependencies": { - "fast-glob": "^3.2.11", - "postcss-js": "^4.0.0", - "postcss-simple-vars": "^7.0.0", - "sugarss": "^4.0.1" - }, - "engines": { - "node": ">=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-preset-mantine": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/postcss-preset-mantine/-/postcss-preset-mantine-1.12.1.tgz", - "integrity": "sha512-N1biscmlvJHYPWN6znrlFre80wh9baAaMETfERn8acQJykioGYmHIJLpQSwUSxqq/PG8QbayUyOnHgBV/tsZyA==", - "dev": true, - "dependencies": { - "postcss-mixins": "^9.0.4", - "postcss-nested": "^6.0.1" - }, - "peerDependencies": { - "postcss": ">=8.0.0" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-simple-vars": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz", - "integrity": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==", - "dev": true, - "engines": { - "node": ">=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.1" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", - "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", - "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-icons": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.12.0.tgz", - "integrity": "sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==", - "peerDependencies": { - "react": "*" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-leaflet": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", - "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", - "dependencies": { - "@react-leaflet/core": "^2.1.0" - }, - "peerDependencies": { - "leaflet": "^1.9.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-number-format": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/react-number-format/-/react-number-format-5.3.1.tgz", - "integrity": "sha512-qpYcQLauIeEhCZUZY9jXZnnroOtdy3jYaS1zQ3M1Sr6r/KMOBEIGNIb7eKT19g2N1wbYgFgvDzs19hw5TrB8XQ==", - "dependencies": { - "prop-types": "^15.7.2" - }, - "peerDependencies": { - "react": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-remove-scroll": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz", - "integrity": "sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==", - "dependencies": { - "react-remove-scroll-bar": "^2.3.4", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-remove-scroll-bar": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz", - "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==", - "dependencies": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-smooth": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-2.0.5.tgz", - "integrity": "sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA==", - "dependencies": { - "fast-equals": "^5.0.0", - "react-transition-group": "2.9.0" - }, - "peerDependencies": { - "prop-types": "^15.6.0", - "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "dependencies": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-textarea-autosize": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", - "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", - "dependencies": { - "@babel/runtime": "^7.20.13", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-transition-group": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", - "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", - "dependencies": { - "dom-helpers": "^3.4.0", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2", - "react-lifecycles-compat": "^3.0.4" - }, - "peerDependencies": { - "react": ">=15.0.0", - "react-dom": ">=15.0.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/recharts": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.10.3.tgz", - "integrity": "sha512-G4J96fKTZdfFQd6aQnZjo2nVNdXhp+uuLb00+cBTGLo85pChvm1+E67K3wBOHDE/77spcYb2Cy9gYWVqiZvQCg==", - "dependencies": { - "clsx": "^2.0.0", - "eventemitter3": "^4.0.1", - "lodash": "^4.17.19", - "react-is": "^16.10.2", - "react-smooth": "^2.0.5", - "recharts-scale": "^0.4.4", - "tiny-invariant": "^1.3.1", - "victory-vendor": "^36.6.8" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "prop-types": "^15.6.0", - "react": "^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/recharts-scale": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", - "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", - "dependencies": { - "decimal.js-light": "^2.4.1" - } - }, - "node_modules/recoil": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.7.tgz", - "integrity": "sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==", - "dependencies": { - "hamt_plus": "1.0.2" - }, - "peerDependencies": { - "react": ">=16.13.1" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/run-applescript/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/run-applescript/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/sugarss": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz", - "integrity": "sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==", - "dev": true, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", - "dev": true, - "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/tabbable": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", - "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "dev": true, - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typescript": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", - "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-callback-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz", - "integrity": "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "dependencies": { - "use-isomorphic-layout-effect": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "dependencies": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/victory-vendor": { - "version": "36.6.12", - "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.6.12.tgz", - "integrity": "sha512-pJrTkNHln+D83vDCCSUf0ZfxBvIaVrFHmrBOsnnLAbdqfudRACAj51He2zU94/IWq9464oTADcPVkmWAfNMwgA==", - "dependencies": { - "@types/d3-array": "^3.0.3", - "@types/d3-ease": "^3.0.0", - "@types/d3-interpolate": "^3.0.1", - "@types/d3-scale": "^4.0.2", - "@types/d3-shape": "^3.1.0", - "@types/d3-time": "^3.0.0", - "@types/d3-timer": "^3.0.0", - "d3-array": "^3.1.6", - "d3-ease": "^3.0.1", - "d3-interpolate": "^3.0.1", - "d3-scale": "^4.0.2", - "d3-shape": "^3.1.0", - "d3-time": "^3.0.0", - "d3-timer": "^3.0.1" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dev": true, - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/ui-old/package.json b/ui-old/package.json deleted file mode 100644 index 9655812..0000000 --- a/ui-old/package.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "name": "aviation-weather", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint" - }, - "dependencies": { - "@mantine/core": "^7.3.2", - "@mantine/form": "^7.3.2", - "@mantine/hooks": "^7.3.2", - "@mantine/modals": "^7.3.2", - "@mantine/notifications": "^7.3.2", - "js-cookie": "^3.0.5", - "leaflet": "^1.9.4", - "next": "^14.0.4", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "react-icons": "^4.11.0", - "react-leaflet": "^4.2.1", - "recharts": "^2.10.3", - "recoil": "^0.7.7" - }, - "devDependencies": { - "@types/js-cookie": "^3.0.6", - "@types/leaflet": "^1.9.8", - "@types/node": "20.10.5", - "@types/react": "18.2.45", - "@types/react-dom": "18.2.18", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", - "autoprefixer": "^10.4.16", - "eslint": "8.56.0", - "eslint-config-next": "14.0.4", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.0", - "postcss": "^8.4.32", - "postcss-import": "^15.1.0", - "postcss-preset-mantine": "^1.12.1", - "postcss-simple-vars": "^7.0.1", - "prettier": "^3.1.1", - "typescript": "5.3.3" - } -} diff --git a/ui-old/postcss.config.js b/ui-old/postcss.config.js deleted file mode 100644 index 87504f8..0000000 --- a/ui-old/postcss.config.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - plugins: { - 'postcss-preset-mantine': {}, - 'postcss-simple-vars': { - variables: { - 'mantine-breakpoint-xs': '36em', - 'mantine-breakpoint-sm': '48em', - 'mantine-breakpoint-md': '62em', - 'mantine-breakpoint-lg': '75em', - 'mantine-breakpoint-xl': '88em', - }, - }, - 'postcss-import': {}, - autoprefixer: {} - } -}; diff --git a/ui-old/public/favicon.ico b/ui-old/public/favicon.ico deleted file mode 100755 index 718d6fea4835ec2d246af9800eddb7ffb276240c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25931 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 LrJugUA?W`A8`#=m diff --git a/ui-old/public/icons/ifr.svg b/ui-old/public/icons/ifr.svg deleted file mode 100644 index f2026c9..0000000 --- a/ui-old/public/icons/ifr.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - I - - diff --git a/ui-old/public/icons/lifr.svg b/ui-old/public/icons/lifr.svg deleted file mode 100644 index 39e9b29..0000000 --- a/ui-old/public/icons/lifr.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - L - - diff --git a/ui-old/public/icons/mvfr.svg b/ui-old/public/icons/mvfr.svg deleted file mode 100644 index 695eba2..0000000 --- a/ui-old/public/icons/mvfr.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - M - - diff --git a/ui-old/public/icons/nometar.svg b/ui-old/public/icons/nometar.svg deleted file mode 100644 index ccfa9cb..0000000 --- a/ui-old/public/icons/nometar.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/ui-old/public/icons/unkn.svg b/ui-old/public/icons/unkn.svg deleted file mode 100644 index 92ea726..0000000 --- a/ui-old/public/icons/unkn.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - U - - diff --git a/ui-old/public/icons/vfr.svg b/ui-old/public/icons/vfr.svg deleted file mode 100644 index 84f7e3c..0000000 --- a/ui-old/public/icons/vfr.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/ui-old/public/layers-2x.png b/ui-old/public/layers-2x.png deleted file mode 100644 index 200c333dca9652ac4cba004d609e5af4eee168c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1259 zcmVFhCYNy;#0irRPomHqW|G1C*;4?@4#E?jH>?v@U%cy?3dQAc-DchXVErpOh~ z-jbon+tNbnl6hoEb;)TVk+%hTDDi_G%i3*RZ&15!$Fjr^f;Ke&A@|?=`2&+{zr+3a z{D*=t(`AXyS%X7N z%a#RZw6vD^t_rnM`L4E>m=U&R!A-&}nZIi$BOPvkhrCuUe@BN~-lRD)f44;J%TwgE zcze8u!PQ_NR7?o(NylLXVTfDO zxs5=@|GsYEsNo4M#nT%N!UE(?dnS)t2+{ELYAFp*3=iF=|EQnTp`#vlSXuGVraYo? z+RCzXo6h3qA8{KG?S4nE(lM+;Eb4nT3XV;7gcAxUi5m)`k5tv}cPy()8ZR3TLW3I- zAS^}cq-IJvL7a4RgR!yk@~RT%$lA7{L5ES*hyx)M4(yxI$Ub(4f)K|^v1>zvwQY!_ zIrWw8q9GS^!Dp~}+?mbnB6jDF8mVlbQ!jFKDY;w=7;XO{9bq7>LXGK24WA`;rL)_Z z)&j}pbV(;6gY;VMhbxgvn`X;6x}VUEE-7 z%)7j-%t8S=ZL3yc)HbXDAqJZvBTPoiW_A-+a8m3_Z?v{DN7Tnr#O_VUMT0UBt$;p` zDh6JbGHN8JJ*JN%y2%msb97@_S>9!%Egwk;?PEkU9ntz&3uR}%Fj5d$JHQbQb3}a{ zSzFT^#n=VInPpcAS}CNxj?_ zVscANk5Cfz(51EI1pz};AWWb|kgbYNb4wCEGUn3+eMUMV?1-{=I4TlmLJMot@rd07 zZuo2hk1ccu{YmGkcYdWAVdk{Z4Nm?^cTD&}jGm+Q1SYIXMwmG*oO*83&#>l%nbR`G zhh=lZ%xIb7kU3#;TBbfECrnC9P=-XpL|TG2BoZdj61*XiFbW8?1Z_wp%#;>${SUIy V$8qr;L*)Pf002ovPDHLkV1hYLS~36t diff --git a/ui-old/public/layers.png b/ui-old/public/layers.png deleted file mode 100644 index 1a72e5784b2b456eac5d7670738db80697af3377..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 696 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 UQO-*oc+)|Q_08}VdXD6O0C*xx%>V!Z diff --git a/ui-old/public/marker-icon.png b/ui-old/public/marker-icon.png deleted file mode 100644 index 950edf24677ded147df13b26f91baa2b0fa70513..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1466 zcmV;r1x5OaP)P001cn1^@s6z>|W`000GnNklGNuHDcIX17Zdjl&3`L?0sTjIws<{((Dh&g-s0<@jYQyl?D*X^?%13;ml^gy> ziMrY_^1WI=(g@LMizu=zCoA>C`6|QEq1eV92k*7m>G65*&@&6)aC&e}G zI)pf-Za|N`DT&Cn1J|o`19mumxW~hiKiKyc-P`S@q)rdTo84@QI@;0yXrG%9uhI>A zG5QHb6s4=<6xy{1 z@NMxEkryp{LS44%z$3lP^cX!9+2-;CTt3wM4(k*#C{aiIiLuB>jJj;KPhPzIC00bL zU3a#;aJld94lCW=`4&aAy8M7PY=HQ>O%$YEP4c4UY#CRxfgbE~(|uiI=YS8q;O9y6 zmIkXzR`}p7ti|PrM3a}WMnR=3NVnWdAAR>b9X@)DKL6=YsvmH%?I24wdq?Gh54_;# z$?_LvgjEdspdQlft#4CQ z`2Zyvy?*)N1Ftw|{_hakhG9WjS?Az@I@+IZ8JbWewR!XUK4&6346+d#~gsE0SY(LX8&JfY>Aj)RxGy96nwhs2rv zzW6pTnMpFkDSkT*a*6Dx|u@ds6ISVn0@^RmIsKZ5Y;bazbc;tTSq(kg(=481ODrPyNB6n z-$+U}(w$m6U6H$w17Bw+wDaFIe~GvNMYvnw31MpY0eQKT9l>SU``8k7w4)z!GZKMI z#_cEKq7k~i%nlK@6c-K?+R;B#5$?T#YpKD`t_4bAs^#E+@5QW$@OX3*`;(#{U^d-vY)&xEE>n5lYl&T?Amke9$Lam@{1K@O ze*LXqlKQHiv=gx+V^Cbb2?z@ISBQ*3amF;9UJ3SBg(N|710TLamQmYZ&Qjn2LuO<* zCZlB4n%@pc&7NNnY1}x+NWpHlq`OJEo|`aYN9<`RBUB+79g;>dgb6YlfN#kGL?lO_ z!6~M^7sOnbsUkKk<@Ysie&`G>ruxH&Mgy&8;i=A zB9OO!xR{AyODw>DS-q5YM{0ExFEAzt zm>RdS+ssW(-8|?xr0(?$vBVB*%(xDLtq3Hf0I5yFm<_g=W2`QWAax{1rWVH=I!VrP zs(rTFX@W#t$hXNvbgX`gK&^w_YD;CQ!B@e0QbLIWaKAXQe2-kkloo;{iF#6}z!4=W zi$giRj1{ zt;2w`VSCF#WE&*ev7jpsC=6175@(~nTE2;7M-L((0bH@yG}-TB$R~WXd?tA$s3|%y zA`9$sA(>F%J3ioz<-LJl*^o1|w84l>HBR`>3l9c8$5Xr@xCiIQ7{x$fMCzOk_-M=% z+{a_Q#;42`#KfUte@$NT77uaTz?b-fBe)1s5XE$yA79fm?KqM^VgLXD07*qoM6N<$ Ef<_J(9smFU diff --git a/ui-old/public/vercel.svg b/ui-old/public/vercel.svg deleted file mode 100755 index fbf0e25..0000000 --- a/ui-old/public/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/ui-old/src/api/airport.ts b/ui-old/src/api/airport.ts deleted file mode 100644 index 03efa4d..0000000 --- a/ui-old/src/api/airport.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { Airport, AirportOrderField, Bounds, GetAirportsResponse } from './airport.types'; -import { getRequest, deleteRequest, postRequest, putRequest } from '.'; - -interface GetAirportProps { - icao: string; -} - -export async function getAirport({ icao }: GetAirportProps): Promise { - const response = await getRequest(`airports/${icao}`); - return response?.json() || {}; -} - -interface GetAirportsProps { - bounds?: Bounds; - categories?: string[]; - icaos?: string[]; - name?: string; - order_field?: AirportOrderField; - order_by?: 'asc' | 'desc'; - has_metar?: boolean; - page?: number; - limit?: number; -} - -export async function getAirports({ - bounds, - categories, - icaos, - name, - order_field, - order_by, - has_metar, - limit = 10, - page = 1 -}: GetAirportsProps): Promise { - const response = await getRequest('airports', { - bounds: bounds - ? `${bounds?.northEast.lat},${bounds?.northEast.lon},${bounds?.southWest.lat},${bounds?.southWest.lon}` - : undefined, - categories: categories ?? undefined, - icaos: icaos ?? undefined, - name: name ?? undefined, - order_field: order_field ?? undefined, - order_by: order_by ?? undefined, - has_metar: has_metar ?? undefined, - limit, - page - }); - return response?.json() || { data: [] }; -} - -export async function removeAirport({ icao }: { icao?: string }): Promise { - let response - if (icao) { - response = await deleteRequest(`airports/${icao}`); - } else { - response = await deleteRequest('airports'); - } - return response.status == 204; -} - -export async function createAirport({ airport }: { airport: Airport }): Promise { - const response = await postRequest(`airports`, airport); - return response?.json() || { data: undefined }; -} - -export async function updateAirport({ airport }: { airport: Airport }): Promise { - const response = await putRequest(`airports/${airport.icao}`, airport); - return response?.json() || { data: undefined }; -} - -export async function importAirports(payload: File): Promise { - const data = new FormData(); - data.append('data', payload); - const response = await postRequest('airports/import', data, { - type: 'form' - }); - return response ? response.status === 200 : false; -} diff --git a/ui-old/src/api/airport.types.ts b/ui-old/src/api/airport.types.ts deleted file mode 100644 index 7d327d1..0000000 --- a/ui-old/src/api/airport.types.ts +++ /dev/null @@ -1,92 +0,0 @@ -import { Metadata } from '.'; -import { Metar } from './metar.types'; - -export enum AirportCategory { - SMALL = 'small_airport', - MEDIUM = 'medium_airport', - LARGE = 'large_airport', - HELIPORT = 'heliport', - BALLOONPORT = 'balloonport', - CLOSED = 'closed', - SEAPLANE = 'seaplane_base', - UNKNOWN = 'unknown', -} - -export function airportCategoryToText(category: AirportCategory): string { - switch (category) { - case AirportCategory.SMALL: - return 'Small'; - case AirportCategory.MEDIUM: - return 'Medium'; - case AirportCategory.LARGE: - return 'Large'; - case AirportCategory.HELIPORT: - return 'Helipad'; - case AirportCategory.CLOSED: - return 'Closed'; - case AirportCategory.SEAPLANE: - return 'Seaplane Base'; - case AirportCategory.BALLOONPORT: - return 'Balloonport'; - default: - return 'Unknown'; - } -} - -export enum AirportOrderField { - ICAO = 'icao', - NAME = 'name', - CATEGORY = 'category', - CONTINENT = 'continent', - ISO_COUNTRY = 'iso_country', - ISO_REGION = 'iso_region', - MUNICIPALITY = 'municipality', -} - -export interface Bounds { - northEast: Coordinate; - southWest: Coordinate; -} - -export interface Coordinate { - lat: number; - lon: number; -} - -export interface Airport { - icao: string; - iata: string; - local: string; - name: string; - category: AirportCategory; - iso_country: string; - iso_region: string; - municipality: string; - elevation_ft: number; - latitude: number; - longitude: number; - has_tower: boolean; - has_beacon: boolean; - has_metar: boolean; - public: boolean; - runways: Runway[]; - frequencies: Frequency[]; - latest_metar?: Metar; -} - -export interface Runway { - id: string; - length_ft: number; - width_ft: number; - surface: string; -} - -export interface Frequency { - id: string; - frequency_mhz: number; -} - -export interface GetAirportsResponse { - data: Airport[]; - meta: Metadata; -} diff --git a/ui-old/src/api/auth.ts b/ui-old/src/api/auth.ts deleted file mode 100644 index 7831fad..0000000 --- a/ui-old/src/api/auth.ts +++ /dev/null @@ -1,63 +0,0 @@ -import Cookies from 'js-cookie'; -import { getRequest, postRequest } from '.'; -import { RegisterUser, ResponseAuth } from './auth.types'; - -export async function login(email: string, password: string): Promise { - const response = await postRequest('auth/login', { email, password }); - if (response?.status === 200) { - return response.json(); - } else { - return undefined; - } -} - -export async function register(user: RegisterUser): Promise { - const response = await postRequest('auth/register', user); - if (response?.status === 201) { - return true; - } else { - return false; - } -} - -export async function logout() { - return await postRequest('auth/logout', {}); -} - -export async function refresh(refresh_token_rotation?: boolean): Promise { - const response = await getRequest('auth/refresh', { refresh_token_rotation }); - if (response?.status === 200) { - return response.json(); - } else { - return undefined; - } -} - -export async function me(): Promise { - const response = await getRequest('auth/me'); - if (response?.status === 200) { - return response.json(); - } else { - return undefined; - } -} - -/** - * Refreshes the logged_in cookie every interval. By default, the interval is 14 minutes. - * @param interval - * @returns interval id - */ -export function refreshLoggedIn(interval = 840000) { - let loggedIn = Cookies.get('logged_in'); - const id = setInterval(async () => { - const cookie = Cookies.get('logged_in'); - if (cookie != loggedIn) { - loggedIn = cookie; - const response = await refresh(true); - if (!response) { - Cookies.remove('logged_in'); - } - } - }, interval); - return id; -} diff --git a/ui-old/src/api/auth.types.ts b/ui-old/src/api/auth.types.ts deleted file mode 100644 index 76ac70a..0000000 --- a/ui-old/src/api/auth.types.ts +++ /dev/null @@ -1,19 +0,0 @@ -export interface ResponseAuth { - token: string; - user: User; -} - -export interface RegisterUser { - email: string; - password: string; - first_name: string; - last_name: string; -} - -export interface User { - email: string; - role: string; - first_name: string; - last_name: string; - profile_picture?: string; -} diff --git a/ui-old/src/api/index.ts b/ui-old/src/api/index.ts deleted file mode 100644 index 3954fe0..0000000 --- a/ui-old/src/api/index.ts +++ /dev/null @@ -1,79 +0,0 @@ -const serviceHost = process.env.SERVICE_HOST || 'http://localhost'; -const servicePort = process.env.SERVICE_PORT || 5000; -const baseURL = `${serviceHost}:${servicePort}`; - -export async function getRequest(endpoint: string, params: Record = {}): Promise { - // Remove undefined params - Object.keys(params).forEach((key) => params[key] === undefined && delete params[key]); - const urlParams = new URLSearchParams(params); - const url = urlParams && urlParams.size > 0 ? `${baseURL}/${endpoint}?${urlParams}` : `${baseURL}/${endpoint}`; - const response = await fetch(url, { - method: 'GET', - credentials: 'include' - }); - return response; -} - -interface PostOptions { - headers?: Record; - type?: 'json' | 'form'; -} - -export async function postRequest(endpoint: string, body?: any, options?: PostOptions): Promise { - const url = `${baseURL}/${endpoint}`; - let response; - if (body && (!options?.type || options.type === 'json')) { - response = await fetch(url, { - method: 'POST', - headers: { - 'Content-Type': 'application/json' - }, - credentials: 'include', - body: JSON.stringify(body) - }); - } else { - response = await fetch(url, { - method: 'POST', - credentials: 'include', - body - }); - } - return response; -} - -export async function putRequest(endpoint: string, body?: any, options?: PostOptions): Promise { - const url = `${baseURL}/${endpoint}`; - let response; - if (body && (!options?.type || options.type === 'json')) { - response = await fetch(url, { - method: 'PUT', - headers: { - 'Content-Type': 'application/json' - }, - credentials: 'include', - body: JSON.stringify(body) - }); - } else { - response = await fetch(url, { - method: 'PUT', - credentials: 'include', - body - }); - } - return response; -} - -export async function deleteRequest(endpoint: string): Promise { - const url = `${baseURL}/${endpoint}`; - const response = await fetch(url, { - method: 'DELETE', - credentials: 'include' - }); - return response; -} - -export interface Metadata { - limit: number; - page: number; - total: number; -} diff --git a/ui-old/src/api/metar.ts b/ui-old/src/api/metar.ts deleted file mode 100644 index 9a50c4e..0000000 --- a/ui-old/src/api/metar.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Metar } from './metar.types'; -import { getRequest } from '.'; - -export async function getMetars(icaos: string[]): Promise { - if (icaos.length == 0) { - return []; - } - const stationICAOs: string = icaos.map((icao) => icao).join(','); - const response = await getRequest(`metars`, { icaos: stationICAOs }); - return response?.json() || []; -} diff --git a/ui-old/src/api/metar.types.ts b/ui-old/src/api/metar.types.ts deleted file mode 100644 index 848f91f..0000000 --- a/ui-old/src/api/metar.types.ts +++ /dev/null @@ -1,43 +0,0 @@ -export interface SkyCondition { - sky_cover: string; - cloud_base_ft_agl: number; -} - -export interface QualityControlFlags { - auto: boolean; - auto_station_without_precipitation: boolean; - auto_station_with_precipication: boolean; - maintenance_indicator_on: boolean; - corrected: boolean; -} - -export interface RunwayVisualRange { - runway: string; - visibility_ft: string; - variable_visibility_high_ft: string; - variable_visibility_low_ft: string; -} - -export interface Metar { - raw_text: string; - station_id: string; - observation_time: string; - temp_c: number; - dewpoint_c: number; - wind_dir_degrees: string; - wind_speed_kt: number; - wind_gust_kt: number; - variable_wind_dir_degrees: string; - visibility_statute_mi: string; - runway_visual_range: RunwayVisualRange[]; - altim_in_hg: number; - sea_level_pressure_mb: number; - quality_control_flags: QualityControlFlags; - weather_phenomena: string[]; - sky_condition: SkyCondition[]; - flight_category: 'VFR' | 'MVFR' | 'LIFR' | 'IFR' | 'UNKN'; - three_hr_pressure_tendency_mb: number; - max_t_c: number; - min_t_c: number; - precip_in: number; -} diff --git a/ui-old/src/api/users.ts b/ui-old/src/api/users.ts deleted file mode 100644 index b2dda5a..0000000 --- a/ui-old/src/api/users.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { deleteRequest, getRequest, postRequest } from '.'; - -export async function getPicture(): Promise { - const response = await getRequest('users/picture'); - if (response?.status === 200) { - return await response.blob(); - } else { - return undefined; - } -} - -export async function setPicture(payload: File): Promise { - const data = new FormData(); - data.append('data', payload); - // TODO: Figure out why the form data object is empty - const response = await postRequest('users/picture', data, { - type: 'form' - }); - if (response?.status === 200) { - return true; - } else { - return false; - } -} - -export async function getFavorites(): Promise { - const response = await getRequest('users/favorites'); - if (response?.status === 200) { - return response.json(); - } else { - return []; - } -} - -export async function addFavorite(icao: string): Promise { - const response = await postRequest(`users/favorites/${icao}`); - if (response?.status === 200) { - return true; - } else { - return false; - } -} - -export async function removeFavorite(icao: string): Promise { - const response = await deleteRequest(`users/favorites/${icao}`); - if (response?.status === 200) { - return true; - } else { - return false; - } -} diff --git a/ui-old/src/app/admin/page.tsx b/ui-old/src/app/admin/page.tsx deleted file mode 100644 index cca1594..0000000 --- a/ui-old/src/app/admin/page.tsx +++ /dev/null @@ -1,56 +0,0 @@ -'use client'; - -import { createAirport, removeAirport, updateAirport } from "@/api/airport"; -import { Airport } from "@/api/airport.types"; -import AirportForm from "@/components/Admin/AirportForm"; -import AirportTablePanel from "@/components/Admin/AirportTablePanel"; -import { isAdminState } from "@/state/auth"; -import { Container, Grid, Modal, SimpleGrid } from "@mantine/core"; -import { useState } from "react"; -import { useRecoilValue } from "recoil"; - -export default function Page() { - const [showModal, setShowModal] = useState(false); - const [airport, setAirport] = useState(undefined); - const isAdmin = useRecoilValue(isAdminState); - - return ( - <> - {isAdmin && ( - - - - - - - - - { - setAirport(undefined); - setShowModal(false); - }}> - { - const response = await removeAirport({ icao: airport.icao }); - setShowModal(false); - } : undefined} - onSubmit={async (value) => { - if (airport) { - const response = await updateAirport({ airport: value }); - } else { - const response = await createAirport({ airport: value }); - } - setShowModal(false); - }} - /> - - - )} - - ); -} - - diff --git a/ui-old/src/app/airport/[icao]/page.tsx b/ui-old/src/app/airport/[icao]/page.tsx deleted file mode 100644 index 19ac83b..0000000 --- a/ui-old/src/app/airport/[icao]/page.tsx +++ /dev/null @@ -1,63 +0,0 @@ -'use client'; - -import { getAirport } from '@/api/airport'; -import { Airport } from '@/api/airport.types'; -import { getMetars } from '@/api/metar'; -import { Metar } from '@/api/metar.types'; -import { Grid, Title, Text } from '@mantine/core'; -import { useEffect, useState } from 'react'; - -export default function Page({ params }: { params: { icao: string } }) { - const [airport, setAirport] = useState(undefined); - const [metar, setMetar] = useState(undefined); - - useEffect(() => { - async function loadAirport() { - const airportData = await getAirport({ icao: params.icao }); - setAirport(airportData); - const metarData = await getMetars([airportData.icao]); - if (metarData.length > 0) { - setMetar(metarData[0]); - } - } - loadAirport(); - }, []); - - if (airport) { - return ( - - - {airport.icao} - {airport.name} - - {airport.municipality} | {airport.iso_region} | {airport.iso_country} - - {metar && ( - - {metar.raw_text} - - )} -

Frequencies

- {airport.frequencies.map((frequency) => ( -
-
    -
  • {frequency.id}: {frequency.frequency_mhz} MHz
  • -
-
- ))} -

Runway Information

- {airport.runways.map((runway) => ( -
- Runway {runway.id} -
    -
  • Dimensions: {runway.length_ft} x {runway.width_ft} ft.
  • -
  • Surface: {runway.surface}
  • -
-
- ))} -
-
- ); - } else { - return <>; - } -} diff --git a/ui-old/src/app/layout.tsx b/ui-old/src/app/layout.tsx deleted file mode 100644 index 58cc191..0000000 --- a/ui-old/src/app/layout.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import React from 'react'; -import RecoilRootWrapper from '@app/recoil-root-wrapper'; -import { MantineProvider, Skeleton } from '@mantine/core'; -import { ModalsProvider } from '@mantine/modals'; -import 'styles/globals.css'; -import 'styles/leaflet.css'; -import '@mantine/core/styles.css'; -import { Notifications } from '@mantine/notifications'; -import Loader from '@/components/Loader'; - -export const metadata = { - title: 'Aviation Weather', - description: '' -}; - -export default function RootLayout({ children }: { children: React.ReactNode }) { - return ( - - - Aviation Weather - - - - - - - }> - {children} - - - - - - - ); -} diff --git a/ui-old/src/app/page.tsx b/ui-old/src/app/page.tsx deleted file mode 100644 index 4761a4e..0000000 --- a/ui-old/src/app/page.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from 'react'; -import Metar from '@/components/Metars'; - -export default function Page() { - return ; - // return <>; -} diff --git a/ui-old/src/app/profile/page.tsx b/ui-old/src/app/profile/page.tsx deleted file mode 100644 index 87471e7..0000000 --- a/ui-old/src/app/profile/page.tsx +++ /dev/null @@ -1,179 +0,0 @@ -'use client'; - -import { getAirports } from "@/api/airport"; -import { Airport } from "@/api/airport.types"; -import { useEffect, useState } from "react"; -import { useRecoilState, useRecoilValue } from "recoil"; -import { Autocomplete, Badge, Box, Button, Card, Grid, Group, SimpleGrid, Text, Title } from "@mantine/core"; -import classes from './profile.module.css'; -import { addFavorite, getFavorites, removeFavorite } from "@/api/users"; -import { getMetars } from "@/api/metar"; -import { Metar } from "@/api/metar.types"; -import { MdLocationSearching } from 'react-icons/md'; -import { useRouter } from "next/navigation"; -import { coordinatesState } from "@/state/map"; -import { userState } from "@/state/auth"; - -export default function Page() { - const user = useRecoilValue(userState); - - return ( - - - - - {user?.first_name} {user?.last_name} - -
- - - -
-
- - - -
- ); -} - -function TopSection() { - const [airports, setAirports] = useState([]); - const [metars, setMetars] = useState([]); - const [search, setSearch] = useState(''); - const [searchAirports, setSearchAirports] = useState([]); - const router = useRouter(); - const [_, setCoordinates] = useRecoilState(coordinatesState); - - useEffect(() => { - updateFavorites(); - }, []); - - function metarColor(metar?: Metar): string { - switch (metar?.flight_category) { - case 'VFR': - return 'green'; - case 'MVFR': - return 'blue'; - case 'IFR': - return 'red'; - case 'LIFR': - return 'purple'; - default: - return 'gray'; - } - } - - function AirportCard(airport: Airport) { - let metar = metars.find((m) => m.station_id === airport.icao); - let color = metarColor(metar); - let text = metar?.flight_category || 'UNKN'; - - return ( - - - {airport.name} - {text} - - { - setCoordinates({ - lat: airport.latitude, - lon: airport.longitude, - }); - router.push('/'); - }}> - - - {airport.latitude.toFixed(3)}, {airport.longitude.toFixed(3)} - - - - - - - - ); - } - - async function updateFavorites() { - const favorites = await getFavorites(); - const m = (await getMetars(favorites)).data; - setMetars(m); - const a = (await getAirports({ icaos: favorites })).data; - setAirports(a); - } - - return ( -
- - - - Logbook - -
- - Your logbook is a list of your flights. You can add flights to your logbook by clicking the "Add to logbook" button on the flight page. - -
- - - Saved Airports - -
- ({ value: a.icao, label: `${a.icao} - ${a.name}` }))} - limit={5} - style={{ paddingBottom: '10px' }} - onChange={async (value) => { - setSearch(value); - if (value) { - const a = await getAirports({ icaos: [value], name: value }); - setSearchAirports(a.data); - } - }} - onOptionSubmit={async (value) => { - if (!airports.find((a) => a.icao === value)) { - await addFavorite(value); - await updateFavorites(); - } - setSearch(''); - }} - /> - - {airports.map((airport) => AirportCard(airport))} - -
-
-
- ); -} diff --git a/ui-old/src/app/profile/profile.module.css b/ui-old/src/app/profile/profile.module.css deleted file mode 100644 index 014353d..0000000 --- a/ui-old/src/app/profile/profile.module.css +++ /dev/null @@ -1,14 +0,0 @@ -.wrapper { - padding: calc(var(--mantine-spacing-xl) * 2) var(--mantine-spacing-xl); -} - -.title { - font-family: - Greycliff CF, - var(--mantine-font-family); - font-size: rem(36px); - font-weight: 900; - line-height: 1.1; - margin-bottom: var(--mantine-spacing-md); - color: light-dark(var(--mantine-color-black), var(--mantine-color-white)); -} \ No newline at end of file diff --git a/ui-old/src/app/recoil-root-wrapper.tsx b/ui-old/src/app/recoil-root-wrapper.tsx deleted file mode 100644 index 363f3f6..0000000 --- a/ui-old/src/app/recoil-root-wrapper.tsx +++ /dev/null @@ -1,8 +0,0 @@ -'use client'; - -import { RecoilRoot } from 'recoil'; -import React, { ReactNode } from 'react'; - -export default function RecoilRootWrapper({ children }: { children: ReactNode }) { - return {children}; -} diff --git a/ui-old/src/components/Admin/AirportForm.tsx b/ui-old/src/components/Admin/AirportForm.tsx deleted file mode 100644 index 8c2af62..0000000 --- a/ui-old/src/components/Admin/AirportForm.tsx +++ /dev/null @@ -1,175 +0,0 @@ -import { Airport, AirportCategory } from '@/api/airport.types'; -import { Button, Checkbox, Container, Flex, Group, NumberInput, Paper, Select, TextInput, Title } from '@mantine/core'; -import { useForm } from '@mantine/form'; - -interface AirportFormProps { - title: string; - airport?: Airport; - submitText: string; - onSubmit: (airport: Airport) => Promise; - onDelete?: () => Promise; -} - -export default function AirportForm({ title, airport, submitText, onSubmit, onDelete }: AirportFormProps) { - const form = useForm({ - initialValues: { - icao: airport?.icao || '', - category: airport?.category || AirportCategory.SMALL, - name: airport?.name || '', - elevation_ft: airport?.elevation_ft || 0, - iso_country: airport?.iso_country || '', - iso_region: airport?.iso_region || '', - municipality: airport?.municipality || '', - iata: airport?.iata || '', - local: airport?.local || '', - latitude: airport?.latitude || 0, - longitude: airport?.longitude || 0, - has_tower: airport?.has_tower || false, - has_beacon: airport?.has_beacon || false, - has_metar: airport?.has_metar || false, - public: airport?.public || false, - runways: airport?.runways || [], - frequencies: airport?.frequencies || [], - } - }); - - return ( - - {title} - -
{ - await onSubmit(values); - form.reset(); - })}> - - - - - - -